start_dir.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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_POSIX_START_DIR_HPP
  10. #define BOOST_PROCESS_DETAIL_POSIX_START_DIR_HPP
  11. #include <boost/process/v1/detail/posix/handler.hpp>
  12. #include <string>
  13. #include <unistd.h>
  14. #include <boost/core/ignore_unused.hpp>
  15. namespace boost { namespace process { BOOST_PROCESS_V1_INLINE namespace v1 { namespace detail { namespace posix {
  16. template<typename Char>
  17. struct start_dir_init : handler_base_ext
  18. {
  19. typedef Char value_type;
  20. typedef std::basic_string<value_type> string_type;
  21. start_dir_init(string_type s) : s_(std::move(s)) {}
  22. template <class PosixExecutor>
  23. void on_exec_setup(PosixExecutor&) const
  24. {
  25. boost::ignore_unused(::chdir(s_.c_str()));
  26. }
  27. const string_type & str() const {return s_;}
  28. private:
  29. string_type s_;
  30. };
  31. }}}}}
  32. #endif