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