mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 09:20:52 +08:00
34 lines
562 B
C++
34 lines
562 B
C++
/**
|
|
* 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;
|
|
|
|
class service_stat
|
|
{
|
|
public:
|
|
service_stat(http_client& client) : client_(client) {}
|
|
~service_stat(void) {}
|
|
|
|
bool run(acl::json& json);
|
|
private:
|
|
bool handle(const stat_req_t& req, stat_res_t& res);
|
|
bool stat_one(const char* path, serv_info_t& info);
|
|
|
|
private:
|
|
http_client& client_;
|
|
};
|