X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/70c7a7e4463c27aa6592225fd3ea5e2bc49f048c..a91e9542b384905187890f161d4da5396996fcfd:/projects/sgconf/services.cpp diff --git a/projects/sgconf/services.cpp b/projects/sgconf/services.cpp index 3609166d..2d0caa04 100644 --- a/projects/sgconf/services.cpp +++ b/projects/sgconf/services.cpp @@ -1,6 +1,10 @@ #include "services.h" +#include "api_action.h" +#include "options.h" +#include "makeproto.h" #include "config.h" +#include "utils.h" #include "stg/servconf.h" #include "stg/servconf_types.h" @@ -8,6 +12,8 @@ #include "stg/common.h" #include +#include +#include namespace { @@ -19,14 +25,23 @@ if (level == 0) return dash ? std::string(level * 4 - 2, ' ') + "- " : std::string(level * 4, ' '); } -void PrintService(const STG::GET_SERVICE::INFO & info, size_t level = 0) +void PrintService(const STG::GetService::Info & info, size_t level = 0) { std::cout << Indent(level, true) << "name: " << info.name << "\n" << Indent(level) << "cost: " << info.cost << "\n" - << Indent(level) << "payment day: " << info.payDay << "\n" + << Indent(level) << "payment day: " << static_cast(info.payDay) << "\n" << Indent(level) << "comment: " << info.comment << "\n"; } +std::vector GetServiceParams() +{ +std::vector params; +params.push_back(SGCONF::API_ACTION::PARAM("cost", "", "\tcost of the service")); +params.push_back(SGCONF::API_ACTION::PARAM("pay-day", "", "payment day")); +params.push_back(SGCONF::API_ACTION::PARAM("comment", "", "comment")); +return params; +} + void SimpleCallback(bool result, const std::string & reason, void * /*data*/) @@ -41,7 +56,7 @@ std::cout << "Success.\n"; void GetServicesCallback(bool result, const std::string & reason, - const std::vector & info, + const std::vector & info, void * /*data*/) { if (!result) @@ -56,7 +71,7 @@ for (size_t i = 0; i < info.size(); ++i) void GetServiceCallback(bool result, const std::string & reason, - const STG::GET_SERVICE::INFO & info, + const STG::GetService::Info & info, void * /*data*/) { if (!result) @@ -67,55 +82,60 @@ if (!result) PrintService(info); } -} // namespace anonymous +bool GetServicesFunction(const SGCONF::CONFIG & config, + const std::string & /*arg*/, + const std::map & /*options*/) +{ +return makeProto(config).GetServices(GetServicesCallback, NULL) == STG::st_ok; +} -bool SGCONF::GetServicesFunction(const SGCONF::CONFIG & config, - const std::string & /*arg*/, - const std::map & /*options*/) +bool GetServiceFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & /*options*/) { -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.userName.data(), - config.userPass.data()); -return proto.GetServices(GetServicesCallback, NULL) == STG::st_ok; +return makeProto(config).GetService(arg, GetServiceCallback, NULL) == STG::st_ok; } -bool SGCONF::GetServiceFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & /*options*/) +bool DelServiceFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & /*options*/) { -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.userName.data(), - config.userPass.data()); -return proto.GetService(arg, GetServiceCallback, NULL) == STG::st_ok; +return makeProto(config).DelService(arg, SimpleCallback, NULL) == STG::st_ok; } -bool SGCONF::DelServiceFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & /*options*/) +bool AddServiceFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & options) { -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.userName.data(), - config.userPass.data()); -return proto.DelService(arg, SimpleCallback, NULL) == STG::st_ok; +STG::ServiceConfOpt conf; +conf.name = arg; +SGCONF::MaybeSet(options, "cost", conf.cost); +SGCONF::MaybeSet(options, "pay-day", conf.payDay); +SGCONF::MaybeSet(options, "comment", conf.comment); +return makeProto(config).AddService(arg, conf, SimpleCallback, NULL) == STG::st_ok; } -bool SGCONF::AddServiceFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & /*options*/) +bool ChgServiceFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & options) { -// TODO -std::cerr << "Unimplemented.\n"; -return false; +STG::ServiceConfOpt conf; +conf.name = arg; +SGCONF::MaybeSet(options, "cost", conf.cost); +SGCONF::MaybeSet(options, "pay-day", conf.payDay); +SGCONF::MaybeSet(options, "comment", conf.comment); +return makeProto(config).ChgService(conf, SimpleCallback, NULL) == STG::st_ok; } -bool SGCONF::ChgServiceFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & options) +} // namespace anonymous + +void SGCONF::AppendServicesOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks) { -// TODO -std::cerr << "Unimplemented.\n"; -return false; +std::vector params(GetServiceParams()); +blocks.Add("Service management options") + .Add("get-services", SGCONF::MakeAPIAction(commands, GetServicesFunction), "\tget service list") + .Add("get-service", SGCONF::MakeAPIAction(commands, "", GetServiceFunction), "get service") + .Add("add-service", SGCONF::MakeAPIAction(commands, "", params, AddServiceFunction), "add service") + .Add("del-service", SGCONF::MakeAPIAction(commands, "", DelServiceFunction), "delete service") + .Add("chg-service", SGCONF::MakeAPIAction(commands, "", params, ChgServiceFunction), "change service"); }