acl/app/master/daemon/manage/action/service_stat.h

34 lines
562 B
C
Raw Normal View History

2017-06-16 17:00:49 +08:00
/**
* Copyright (C) 2015-2018
* All rights reserved.
*
* AUTHOR(S)
* Zheng Shuxin
* E-mail: zhengshuxin@qiyi.com
*
* VERSION
* Fri 16 Jun 2017 01:53:06 PM CST
*/
#pragma once
struct stat_req_t;
struct stat_res_t;
struct serv_info_t;
class http_client;
2017-06-16 17:00:49 +08:00
class service_stat
{
public:
service_stat(http_client& client) : client_(client) {}
2017-06-16 17:00:49 +08:00
~service_stat(void) {}
bool run(acl::json& json);
2017-06-16 17:00:49 +08:00
private:
bool handle(const stat_req_t& req, stat_res_t& res);
2017-06-27 17:11:04 +08:00
bool stat_one(const char* path, serv_info_t& info);
private:
http_client& client_;
2017-06-16 17:00:49 +08:00
};