X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/cd4be4497c82b49b78567956755727408fe34c1e..a91e9542b384905187890f161d4da5396996fcfd:/projects/sgconf/services.cpp diff --git a/projects/sgconf/services.cpp b/projects/sgconf/services.cpp index e2bf9bf6..2d0caa04 100644 --- a/projects/sgconf/services.cpp +++ b/projects/sgconf/services.cpp @@ -2,6 +2,7 @@ #include "api_action.h" #include "options.h" +#include "makeproto.h" #include "config.h" #include "utils.h" @@ -24,7 +25,7 @@ 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" @@ -55,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) @@ -70,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) @@ -85,75 +86,45 @@ bool GetServicesFunction(const SGCONF::CONFIG & config, const std::string & /*arg*/, const std::map & /*options*/) { -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.GetServices(GetServicesCallback, NULL) == STG::st_ok; +return makeProto(config).GetServices(GetServicesCallback, NULL) == STG::st_ok; } bool GetServiceFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & /*options*/) { -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.GetService(arg, GetServiceCallback, NULL) == STG::st_ok; +return makeProto(config).GetService(arg, GetServiceCallback, NULL) == STG::st_ok; } bool DelServiceFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & /*options*/) { -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.DelService(arg, SimpleCallback, NULL) == STG::st_ok; +return makeProto(config).DelService(arg, SimpleCallback, NULL) == STG::st_ok; } bool AddServiceFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & options) { -SERVICE_CONF_RES conf; +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); -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.AddService(arg, conf, SimpleCallback, NULL) == STG::st_ok; +return makeProto(config).AddService(arg, conf, SimpleCallback, NULL) == STG::st_ok; } bool ChgServiceFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & options) { -SERVICE_CONF_RES conf; +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); -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.ChgService(conf, SimpleCallback, NULL) == STG::st_ok; +return makeProto(config).ChgService(conf, SimpleCallback, NULL) == STG::st_ok; } } // namespace anonymous