file_out.hpp 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // Copyright (c) 2006, 2007 Julio M. Merino Vidal
  2. // Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
  3. // Copyright (c) 2009 Boris Schaeling
  4. // Copyright (c) 2010 Felipe Tanus, Boris Schaeling
  5. // Copyright (c) 2011, 2012 Jeff Flinn, Boris Schaeling
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. #ifndef BOOST_PROCESS_DETAIL_WINDOWS_FILE_OUT_HPP
  10. #define BOOST_PROCESS_DETAIL_WINDOWS_FILE_OUT_HPP
  11. #include <boost/winapi/process.hpp>
  12. #include <boost/winapi/handles.hpp>
  13. #include <boost/winapi/handle_info.hpp>
  14. #include <boost/process/detail/handler_base.hpp>
  15. #include <boost/process/detail/used_handles.hpp>
  16. #include <boost/process/detail/windows/file_descriptor.hpp>
  17. namespace boost { namespace process { namespace detail { namespace windows {
  18. template<int p1, int p2>
  19. struct file_out : public ::boost::process::detail::handler_base,
  20. ::boost::process::detail::uses_handles
  21. {
  22. file_descriptor file;
  23. ::boost::winapi::HANDLE_ handle = file.handle();
  24. ::boost::winapi::HANDLE_ get_used_handles() const { return handle; }
  25. template<typename T>
  26. file_out(T&& t) : file(std::forward<T>(t), file_descriptor::write) {}
  27. file_out(FILE * f) : handle(reinterpret_cast<void*>(_get_osfhandle(_fileno(f)))) {}
  28. template <typename WindowsExecutor>
  29. inline void on_setup(WindowsExecutor &e) const;
  30. };
  31. template<>
  32. template<typename WindowsExecutor>
  33. void file_out<1,-1>::on_setup(WindowsExecutor &e) const
  34. {
  35. boost::winapi::SetHandleInformation(handle,
  36. boost::winapi::HANDLE_FLAG_INHERIT_,
  37. boost::winapi::HANDLE_FLAG_INHERIT_);
  38. e.startup_info.hStdOutput = handle;
  39. e.startup_info.dwFlags |= ::boost::winapi::STARTF_USESTDHANDLES_;
  40. e.inherit_handles = true;
  41. }
  42. template<>
  43. template<typename WindowsExecutor>
  44. void file_out<2,-1>::on_setup(WindowsExecutor &e) const
  45. {
  46. boost::winapi::SetHandleInformation(handle,
  47. boost::winapi::HANDLE_FLAG_INHERIT_,
  48. boost::winapi::HANDLE_FLAG_INHERIT_);
  49. e.startup_info.hStdError = handle;
  50. e.startup_info.dwFlags |= ::boost::winapi::STARTF_USESTDHANDLES_;
  51. e.inherit_handles = true;
  52. }
  53. template<>
  54. template<typename WindowsExecutor>
  55. void file_out<1,2>::on_setup(WindowsExecutor &e) const
  56. {
  57. boost::winapi::SetHandleInformation(handle,
  58. boost::winapi::HANDLE_FLAG_INHERIT_,
  59. boost::winapi::HANDLE_FLAG_INHERIT_);
  60. e.startup_info.hStdOutput = handle;
  61. e.startup_info.hStdError = handle;
  62. e.startup_info.dwFlags |= ::boost::winapi::STARTF_USESTDHANDLES_;
  63. e.inherit_handles = true;
  64. }
  65. }}}}
  66. #endif