ZLMediaKit/server/Process.h

44 lines
1.0 KiB
C++
Raw Permalink Normal View History

2020-01-07 15:10:59 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2019-06-11 09:25:54 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2019-06-11 09:25:54 +08:00
*
2020-04-04 20:30:09 +08:00
* Use of this source code is governed by MIT license that can be found in the
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
2019-06-11 09:25:54 +08:00
*/
2020-04-04 20:30:09 +08:00
2020-01-07 14:37:18 +08:00
#ifndef ZLMEDIAKIT_PROCESS_H
#define ZLMEDIAKIT_PROCESS_H
2019-05-20 11:22:59 +08:00
2022-11-03 10:51:49 +08:00
#if defined(_WIN32)
#if !defined(__MINGW32__)
2020-01-07 14:37:18 +08:00
typedef int pid_t;
2022-11-03 10:51:49 +08:00
#endif
2020-01-07 14:37:18 +08:00
#else
2019-05-20 11:22:59 +08:00
#include <sys/wait.h>
2020-01-07 14:37:18 +08:00
#endif // _WIN32
#include <fcntl.h>
2019-05-20 11:22:59 +08:00
#include <string>
class Process {
public:
Process();
~Process();
Push force replace (#2899) Co-authored-by: Alex <liyu7352@gmail.com> Co-authored-by: xia-chu <771730766@qq.com> Co-authored-by: Johnny <hellojinqiang@gmail.com> Co-authored-by: BackT0TheFuture <10088733+BackT0TheFuture@users.noreply.github.com> Co-authored-by: ljx0305 <ljx0305@gmail.com> Co-authored-by: Per-Arne Andersen <per@sysx.no> Co-authored-by: codeRATny <60806889+codeRATny@users.noreply.github.com> Co-authored-by: 老衲不出家 <tannzh2018@outlook.com> Co-authored-by: Kiki <haijuanchen.sun@gmail.com> Co-authored-by: PioLing <964472638@qq.com> Co-authored-by: dengjfzh <76604422+dengjfzh@users.noreply.github.com> Co-authored-by: a-ucontrol <55526028+a-ucontrol@users.noreply.github.com> Co-authored-by: 百鸣 <94030128+ixingqiao@users.noreply.github.com> Co-authored-by: fruit Juice <2317232721@qq.com> Co-authored-by: Luosh <fjlshyyyy@qq.com> Co-authored-by: tbago <moonzalor@gmail.com> Co-authored-by: Talus <xiaoxiaochenjian@gmail.com> Co-authored-by: 朱如洪 <zhu410289616@163.com> Co-authored-by: pedoc <pedoc@qq.com> Co-authored-by: XiaoYan Lin <linxiaoyan87@foxmail.com> Co-authored-by: xiangshengjye <46069012+xiangshengjye@users.noreply.github.com> Co-authored-by: tjpgt <602950305@qq.com> Co-authored-by: Nick <joyouswind@gmail.com> Co-authored-by: yogo-zhangyingzhe <100331270+yogo-zhangyingzhe@users.noreply.github.com> Co-authored-by: Xiaofeng Wang <wasphin@gmail.com> Co-authored-by: Dw9 <xweimvp@gmail.com> Co-authored-by: waken <33921191+mc373906408@users.noreply.github.com> Co-authored-by: Deepslient <1154547394@qq.com>
2023-10-12 17:09:20 +08:00
void run(const std::string &cmd, std::string log_file);
2019-10-24 11:42:39 +08:00
void kill(int max_delay,bool force = false);
2019-05-20 11:22:59 +08:00
bool wait(bool block = true);
int exit_code();
private:
int _exit_code = 0;
2019-05-20 11:22:59 +08:00
pid_t _pid = -1;
2020-06-08 16:26:55 +08:00
void *_handle = nullptr;
#if (defined(__linux) || defined(__linux__))
void *_process_stack = nullptr;
#endif
2019-05-20 11:22:59 +08:00
};
2020-01-07 14:37:18 +08:00
#endif //ZLMEDIAKIT_PROCESS_H