file_out.hpp 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. // Copyright (c) 2016 Klemens D. Morgenstern
  7. //
  8. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  9. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  10. #ifndef BOOST_PROCESS_POSIX_FILE_OUT_HPP
  11. #define BOOST_PROCESS_POSIX_FILE_OUT_HPP
  12. #include <boost/process/detail/posix/handler.hpp>
  13. #include <boost/process/detail/posix/file_descriptor.hpp>
  14. #include <unistd.h>
  15. namespace boost { namespace process { namespace detail { namespace posix {
  16. template<int p1, int p2>
  17. struct file_out : handler_base_ext
  18. {
  19. file_descriptor file;
  20. int handle = file.handle();
  21. template<typename T>
  22. file_out(T&& t) : file(std::forward<T>(t), file_descriptor::write), handle(file.handle()) {}
  23. file_out(FILE * f) : handle(fileno(f)) {}
  24. template <typename Executor>
  25. void on_exec_setup(Executor &e) const;
  26. };
  27. template<>
  28. template<typename Executor>
  29. void file_out<1,-1>::on_exec_setup(Executor &e) const
  30. {
  31. if (::dup2(handle, STDOUT_FILENO) == -1)
  32. e.set_error(::boost::process::detail::get_last_error(), "dup2() failed");
  33. }
  34. template<>
  35. template<typename Executor>
  36. void file_out<2,-1>::on_exec_setup(Executor &e) const
  37. {
  38. if (::dup2(handle, STDERR_FILENO) == -1)
  39. e.set_error(::boost::process::detail::get_last_error(), "dup2() failed");
  40. }
  41. template<>
  42. template<typename Executor>
  43. void file_out<1,2>::on_exec_setup(Executor &e) const
  44. {
  45. if (::dup2(handle, STDOUT_FILENO) == -1)
  46. e.set_error(::boost::process::detail::get_last_error(), "dup2() failed");
  47. if (::dup2(handle, STDERR_FILENO) == -1)
  48. e.set_error(::boost::process::detail::get_last_error(), "dup2() failed");
  49. }
  50. }}}}
  51. #endif