123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- // Copyright (c) 2022 Klemens D. Morgenstern
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- #ifndef BOOST_PROCESS_V2_DETAIL_PROCESS_HANDLE_SIGNAL_HPP
- #define BOOST_PROCESS_V2_DETAIL_PROCESS_HANDLE_SIGNAL_HPP
- #include <boost/process/v2/detail/config.hpp>
- #include <sys/types.h>
- #include <sys/wait.h>
- #include <boost/process/v2/detail/last_error.hpp>
- #include <boost/process/v2/detail/throw_error.hpp>
- #include <boost/process/v2/exit_code.hpp>
- #include <boost/process/v2/pid.hpp>
- #if defined(BOOST_PROCESS_V2_STANDALONE)
- #include <asio/any_io_executor.hpp>
- #include <asio/compose.hpp>
- #include <asio/dispatch.hpp>
- #include <asio/post.hpp>
- #include <asio/signal_set.hpp>
- #else
- #include <boost/asio/any_io_executor.hpp>
- #include <boost/asio/compose.hpp>
- #include <boost/asio/dispatch.hpp>
- #include <boost/asio/post.hpp>
- #include <boost/asio/signal_set.hpp>
- #endif
- BOOST_PROCESS_V2_BEGIN_NAMESPACE
- namespace detail
- {
- template<typename Executor = BOOST_PROCESS_V2_ASIO_NAMESPACE::any_io_executor>
- struct basic_process_handle_signal
- {
- struct native_handle_type
- {
- native_handle_type() = delete;
- native_handle_type(const native_handle_type & ) = delete;
- ~native_handle_type() = default;
- };
- typedef Executor executor_type;
- executor_type get_executor()
- { return signal_set_.get_executor(); }
- /// Rebinds the process_handle to another executor.
- template<typename Executor1>
- struct rebind_executor
- {
- /// The socket type when rebound to the specified executor.
- typedef basic_process_handle_signal<Executor1> other;
- };
- template<typename ExecutionContext>
- basic_process_handle_signal(ExecutionContext &context,
- typename std::enable_if<
- std::is_convertible<ExecutionContext &,
- BOOST_PROCESS_V2_ASIO_NAMESPACE::execution_context &>::value
- >::type * = nullptr)
- : pid_(-1), signal_set_(context, SIGCHLD)
- {
- }
- basic_process_handle_signal(Executor executor)
- : pid_(-1), signal_set_(executor, SIGCHLD)
- {
- }
- basic_process_handle_signal(Executor executor, pid_type pid)
- : pid_(pid), signal_set_(executor, SIGCHLD)
- {
- }
- basic_process_handle_signal(basic_process_handle_signal && handle)
- : pid_(handle.pid_), signal_set_(handle.signal_set_.get_executor(), SIGCHLD)
- {
- handle.pid_ = -1;
- }
- basic_process_handle_signal& operator=(basic_process_handle_signal && handle)
- {
- pid_ = handle.id();
- signal_set_.~basic_signal_set();
- using ss = BOOST_PROCESS_V2_ASIO_NAMESPACE::basic_signal_set<Executor>;
- new (&signal_set_) ss(handle.get_executor(), SIGCHLD);
- handle.pid_ = -1;
- return *this;
- }
- template<typename Executor1>
- basic_process_handle_signal(basic_process_handle_signal<Executor1> && handle)
- : pid_(handle.pid_), signal_set_(Executor1(handle.signal_set_.get_executor()), SIGCHLD)
- {
- handle.pid_ = -1;
- }
- pid_type id() const { return pid_; }
- native_handle_type native_handle() {return {};}
- void terminate_if_running(error_code &)
- {
- terminate_if_running();
- }
- void terminate_if_running()
- {
- if (pid_ <= 0)
- return;
- if (::waitpid(pid_, nullptr, WNOHANG) == 0)
- {
- ::kill(pid_, SIGKILL);
- ::waitpid(pid_, nullptr, 0);
- }
- }
- void wait(native_exit_code_type &exit_status, error_code &ec)
- {
- if (pid_ <= 0)
- return;
- while (::waitpid(pid_, &exit_status, 0) < 0)
- {
- if (errno != EINTR)
- {
- ec = get_last_error();
- break;
- }
- }
- }
- void wait(native_exit_code_type &exit_status)
- {
- if (pid_ <= 0)
- return;
- error_code ec;
- wait(exit_status, ec);
- if (ec)
- detail::throw_error(ec, "wait(pid)");
- }
- void interrupt(error_code &ec)
- {
- if (pid_ <= 0)
- return;
- if (::kill(pid_, SIGINT) == -1)
- ec = get_last_error();
- }
- void interrupt()
- {
- if (pid_ <= 0)
- return;
- error_code ec;
- interrupt(ec);
- if (ec)
- detail::throw_error(ec, "interrupt");
- }
- void request_exit(error_code &ec)
- {
- if (pid_ <= 0)
- return;
- if (::kill(pid_, SIGTERM) == -1)
- ec = get_last_error();
- }
- void request_exit()
- {
- if (pid_ <= 0)
- return;
- error_code ec;
- request_exit(ec);
- if (ec)
- detail::throw_error(ec, "request_exit");
- }
- void suspend()
- {
- if (pid_ <= 0)
- return;
- error_code ec;
- suspend(ec);
- if (ec)
- detail::throw_error(ec, "suspend");
- }
- void suspend(error_code &ec)
- {
- if (pid_ <= 0)
- return;
- if (::kill(pid_, SIGSTOP) == -1)
- ec = get_last_error();
- }
- void resume()
- {
- if (pid_ <= 0)
- return;
- error_code ec;
- resume(ec);
- if (ec)
- detail::throw_error(ec, "resume");
- }
- void resume(error_code &ec)
- {
- if (pid_ <= 0)
- return;
- if (::kill(pid_, SIGCONT) == -1)
- ec = get_last_error();
- }
- void terminate(native_exit_code_type &exit_status, error_code &ec)
- {
- if (pid_ <= 0)
- return;
- if (::kill(pid_, SIGKILL) == -1)
- ec = get_last_error();
- else
- wait(exit_status, ec);
- }
- void terminate(native_exit_code_type &exit_status)
- {
- if (pid_ <= 0)
- return;
- error_code ec;
- terminate(exit_status, ec);
- if (ec)
- detail::throw_error(ec, "terminate");
- }
- bool running(native_exit_code_type &exit_code, error_code & ec)
- {
- if (pid_ <= 0)
- return false;
- int code = 0;
- int res = ::waitpid(pid_, &code, WNOHANG);
- if (res == -1)
- ec = get_last_error();
-
- if (res == 0)
- return true;
- else
- exit_code = code;
- return false;
- }
- bool running(native_exit_code_type &exit_code)
- {
- if (pid_ <= 0)
- return false;
- error_code ec;
- bool res = running(exit_code, ec);
- if (ec)
- detail::throw_error(ec, "is_running");
- return res;
- }
- bool is_open() const
- {
- return pid_ != -1;
- }
- template<BOOST_PROCESS_V2_COMPLETION_TOKEN_FOR(void(error_code, int))
- WaitHandler BOOST_PROCESS_V2_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
- BOOST_PROCESS_V2_INITFN_AUTO_RESULT_TYPE(WaitHandler, void (error_code, native_exit_code_type))
- async_wait(WaitHandler &&handler BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type))
- {
- return BOOST_PROCESS_V2_ASIO_NAMESPACE::async_compose<WaitHandler, void(error_code, native_exit_code_type)>(
- async_wait_op_{signal_set_, pid_}, handler, signal_set_);
- }
- private:
- template<typename>
- friend struct basic_process_handle_signal;
- pid_type pid_ = -1;
- BOOST_PROCESS_V2_ASIO_NAMESPACE::basic_signal_set<Executor> signal_set_;
- struct async_wait_op_
- {
- BOOST_PROCESS_V2_ASIO_NAMESPACE::basic_signal_set<Executor> &handle;
- pid_type pid_;
-
- template<typename Self>
- void operator()(Self &&self)
- {
- handle.async_wait(std::move(self));
- handle.cancel();
- // we cancel so we end up on the signal-sets executor
- }
- template<typename Self>
- void operator()(Self &&self, error_code ec, int sig)
- {
- if (ec == BOOST_PROCESS_V2_ASIO_NAMESPACE::error::operation_aborted &&
- self.get_cancellation_state().cancelled()
- == BOOST_PROCESS_V2_ASIO_NAMESPACE::cancellation_type::none)
- ec.clear();
- native_exit_code_type exit_code = -1;
- int wait_res = -1;
- if (pid_ <= 0) // error, complete early
- ec = BOOST_PROCESS_V2_ASIO_NAMESPACE::error::bad_descriptor;
- else if (!ec)
- {
- wait_res = ::waitpid(pid_, &exit_code, WNOHANG);
- if (wait_res == -1)
- ec = get_last_error();
- }
- if (!ec && (wait_res == 0))
- {
- handle.async_wait(std::move(self));
- return;
- }
- struct completer
- {
- error_code ec;
- native_exit_code_type code;
- typename std::decay<Self>::type self;
- void operator()()
- {
- self.complete(ec, code);
- }
- };
- const auto exec = self.get_executor();
- BOOST_PROCESS_V2_ASIO_NAMESPACE::dispatch(exec, completer{ec, exit_code, std::move(self)});
- }
- };
- };
- }
- BOOST_PROCESS_V2_END_NAMESPACE
- #endif //BOOST_PROCESS_V2_DETAIL_PROCESS_HANDLE_SIGNAL_HPP
|