acl/app/master/daemon/manage/action/service_start.cpp

58 lines
1023 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 02:00:01 PM CST
*/
#include "stdafx.h"
#include "master/master_api.h"
#include "service_start.h"
bool service_start::run(const start_req_t& req, start_res_t& res)
{
start_res_data_t data;
const ACL_MASTER_SERV* serv;
size_t n = 0;
for (std::vector<acl::string>::const_iterator cit = req.data.begin();
cit != req.data.end(); ++cit)
{
const char* name = (*cit).c_str();
if ((serv = acl_master_start(name)) == NULL)
{
data.status = 500;
data.name = name;
}
else
{
data.status = 200;
data.name = serv->name;
data.path = serv->path;
n++;
}
res.data.push_back(data);
}
if (n == req.data.size())
{
res.status = 200;
res.msg = "ok";
}
else
{
res.status = 500;
res.msg = "error";
logger_error("not all service have been started!, n=%d, %d",
(int) n, (int) req.data.size());
}
return true;
}