acl/app/master/daemon/manage/action/service_stat.h
2017-06-27 17:11:04 +08:00

30 lines
447 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 service_stat
{
public:
service_stat(void) {}
~service_stat(void) {}
bool run(const stat_req_t& req, stat_res_t& res);
private:
bool stat_one(const char* path, serv_info_t& info);
};