2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-07-13 21:07:39 +02:00
|
|
|
|
2012-07-13 21:00:54 +02:00
|
|
|
#ifndef PROCESS_H
|
|
|
|
#define PROCESS_H
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
#include "base/dictionary.hpp"
|
2024-03-25 11:53:57 +01:00
|
|
|
#include <cstdint>
|
2018-01-04 18:24:45 +01:00
|
|
|
#include <iosfwd>
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <deque>
|
2014-05-11 17:14:35 +02:00
|
|
|
#include <vector>
|
2018-01-26 14:38:55 +01:00
|
|
|
#include <sstream>
|
2020-11-16 17:10:26 +01:00
|
|
|
#include <mutex>
|
|
|
|
#include <condition_variable>
|
2013-03-15 18:21:29 +01:00
|
|
|
|
2012-07-13 21:00:54 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-09-17 13:35:55 +02:00
|
|
|
/**
|
|
|
|
* The result of a Process task.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
2012-07-15 10:58:03 +02:00
|
|
|
struct ProcessResult
|
|
|
|
{
|
2014-08-21 11:25:04 +02:00
|
|
|
pid_t PID;
|
2012-07-25 12:59:17 +02:00
|
|
|
double ExecutionStart;
|
|
|
|
double ExecutionEnd;
|
2024-03-25 11:53:57 +01:00
|
|
|
int_fast64_t ExitStatus;
|
2012-08-02 09:38:08 +02:00
|
|
|
String Output;
|
2012-07-15 10:58:03 +02:00
|
|
|
};
|
|
|
|
|
2012-09-17 13:35:55 +02:00
|
|
|
/**
|
|
|
|
* A process task. Executes an external application and returns the exit
|
|
|
|
* code and console output.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class Process final : public Object
|
2012-07-13 21:00:54 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-07 12:32:25 +01:00
|
|
|
DECLARE_PTR_TYPEDEFS(Process);
|
2012-07-13 21:00:54 +02:00
|
|
|
|
2014-04-21 14:39:35 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
typedef String Arguments;
|
|
|
|
typedef HANDLE ProcessHandle;
|
|
|
|
typedef HANDLE ConsoleHandle;
|
|
|
|
#else /* _WIN32 */
|
|
|
|
typedef std::vector<String> Arguments;
|
|
|
|
typedef pid_t ProcessHandle;
|
|
|
|
typedef int ConsoleHandle;
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
static const std::deque<Process::Ptr>::size_type MaxTasksPerThread = 512;
|
2012-07-13 21:00:54 +02:00
|
|
|
|
2018-01-04 08:54:18 +01:00
|
|
|
Process(Arguments arguments, Dictionary::Ptr extraEnvironment = nullptr);
|
2018-01-04 05:12:56 +01:00
|
|
|
~Process() override;
|
2012-07-14 12:44:37 +02:00
|
|
|
|
2013-06-13 12:05:24 +02:00
|
|
|
void SetTimeout(double timeout);
|
2018-01-04 04:25:35 +01:00
|
|
|
double GetTimeout() const;
|
2013-06-13 12:05:24 +02:00
|
|
|
|
2017-02-21 11:31:07 +01:00
|
|
|
void SetAdjustPriority(bool adjust);
|
2018-01-04 04:25:35 +01:00
|
|
|
bool GetAdjustPriority() const;
|
2017-02-21 11:31:07 +01:00
|
|
|
|
2017-11-21 11:52:55 +01:00
|
|
|
void Run(const std::function<void (const ProcessResult&)>& callback = std::function<void (const ProcessResult&)>());
|
2013-03-25 18:36:15 +01:00
|
|
|
|
2020-11-16 17:10:26 +01:00
|
|
|
const ProcessResult& WaitForResult();
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
pid_t GetPID() const;
|
2014-05-17 23:07:10 +02:00
|
|
|
|
2014-04-21 14:39:35 +02:00
|
|
|
static Arguments PrepareCommand(const Value& command);
|
2014-03-12 10:05:36 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static void ThreadInitialize();
|
2014-03-12 10:05:36 +01:00
|
|
|
|
2014-08-21 11:25:04 +02:00
|
|
|
static String PrettyPrintArguments(const Arguments& arguments);
|
|
|
|
|
2016-09-29 12:35:10 +02:00
|
|
|
#ifndef _WIN32
|
2018-01-04 04:25:35 +01:00
|
|
|
static void InitializeSpawnHelper();
|
2016-09-29 12:35:10 +02:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2012-07-13 21:00:54 +02:00
|
|
|
private:
|
2014-04-21 14:39:35 +02:00
|
|
|
Arguments m_Arguments;
|
2013-02-13 11:39:24 +01:00
|
|
|
Dictionary::Ptr m_ExtraEnvironment;
|
2012-07-13 21:00:54 +02:00
|
|
|
|
2013-06-13 12:05:24 +02:00
|
|
|
double m_Timeout;
|
2021-01-14 12:00:11 +01:00
|
|
|
#ifndef _WIN32
|
|
|
|
bool m_SentSigterm;
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2017-02-21 11:31:07 +01:00
|
|
|
bool m_AdjustPriority;
|
2013-06-13 12:05:24 +02:00
|
|
|
|
2014-04-21 14:39:35 +02:00
|
|
|
ProcessHandle m_Process;
|
2014-05-18 18:04:34 +02:00
|
|
|
pid_t m_PID;
|
2014-04-21 14:39:35 +02:00
|
|
|
ConsoleHandle m_FD;
|
|
|
|
|
2015-08-10 13:33:32 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
bool m_ReadPending;
|
|
|
|
bool m_ReadFailed;
|
|
|
|
OVERLAPPED m_Overlapped;
|
|
|
|
char m_ReadBuffer[1024];
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2014-03-12 10:05:36 +01:00
|
|
|
std::ostringstream m_OutputStream;
|
2017-11-21 11:52:55 +01:00
|
|
|
std::function<void (const ProcessResult&)> m_Callback;
|
2014-03-12 10:05:36 +01:00
|
|
|
ProcessResult m_Result;
|
2020-11-16 17:10:26 +01:00
|
|
|
bool m_ResultAvailable;
|
|
|
|
std::mutex m_ResultMutex;
|
|
|
|
std::condition_variable m_ResultCondition;
|
2013-02-09 23:02:33 +01:00
|
|
|
|
2014-03-14 13:21:11 +01:00
|
|
|
static void IOThreadProc(int tid);
|
2018-01-04 04:25:35 +01:00
|
|
|
bool DoEvents();
|
|
|
|
int GetTID() const;
|
2021-01-14 12:00:11 +01:00
|
|
|
double GetNextTimeout() const;
|
2012-07-13 21:00:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PROCESS_H */
|