mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-16 01:40:52 +08:00
59 lines
795 B
Plaintext
59 lines
795 B
Plaintext
#pragma once
|
|
|
|
struct service_base
|
|
{
|
|
int status;
|
|
// Gson@optional
|
|
acl::string cmd;
|
|
};
|
|
|
|
struct service_info_t
|
|
{
|
|
int status;
|
|
long start;
|
|
acl::string name;
|
|
acl::string conf;
|
|
// Gson@optional
|
|
acl::string path;
|
|
// Gson@optional
|
|
acl::string version;
|
|
// Gson@optional
|
|
int fds;
|
|
// Gson@optional
|
|
long mem;
|
|
// Gson@optional
|
|
double cpu;
|
|
// Gson@optional
|
|
long io;
|
|
|
|
service_info_t(void)
|
|
{
|
|
status = -1;
|
|
start = -1;
|
|
fds = -1;
|
|
mem = -1;
|
|
cpu = -1;
|
|
io = -1;
|
|
}
|
|
};
|
|
|
|
struct service_list_res_t : service_base
|
|
{
|
|
std::vector<service_info_t> data;
|
|
};
|
|
|
|
struct service_dead_res_t : service_base
|
|
{
|
|
service_dead_res_t(void)
|
|
{
|
|
pid = -1;
|
|
}
|
|
acl::string path;
|
|
// Gson@optional
|
|
acl::string conf;
|
|
acl::string version;
|
|
int pid;
|
|
acl::string rcpt;
|
|
acl::string info;
|
|
};
|