aboutsummaryrefslogtreecommitdiff
path: root/api/umosapi.cpp
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2019-08-07 11:03:58 +0200
committerneodarz <neodarz@neodarz.net>2019-08-07 11:03:58 +0200
commit4c65baa7b6e0a85635f8028a5ff9979b870d7be0 (patch)
tree01a285bb270ada1363ca56c00538ef8b56c5e821 /api/umosapi.cpp
parent7dc4e5bfc85474700b3731fc06e48a0e5c1d387b (diff)
downloadumosapicpp-4c65baa7b6e0a85635f8028a5ff9979b870d7be0.tar.xz
umosapicpp-4c65baa7b6e0a85635f8028a5ff9979b870d7be0.zip
Refactoring umosapi service
Diffstat (limited to '')
-rw-r--r--api/umosapi.cpp (renamed from umosapi.cpp)77
1 files changed, 4 insertions, 73 deletions
diff --git a/umosapi.cpp b/api/umosapi.cpp
index 72c4728..65f28d2 100644
--- a/umosapi.cpp
+++ b/api/umosapi.cpp
@@ -1,10 +1,3 @@
-#include "umosapi.h"
-
-#include <string.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include <pwd.h>
-
#include <bsoncxx/builder/stream/document.hpp>
#include <bsoncxx/json.hpp>
@@ -19,14 +12,9 @@
#include <nlohmann/json.hpp>
-#include "clara.hpp"
-#include "shared.h"
-#include "config.h"
-
-std::map<std::string, std::string> config;
+#include "umosapi.h"
+#include "../shared.h"
-using namespace std;
-using namespace Pistache;
using bsoncxx::builder::stream::close_array;
using bsoncxx::builder::stream::close_document;
@@ -37,7 +25,8 @@ using bsoncxx::builder::stream::open_document;
using json = nlohmann::json;
-using namespace clara;
+using namespace std;
+using namespace Pistache;
namespace Generic {
void handleReady(const Rest::Request&, Http::ResponseWriter response) {
@@ -184,61 +173,3 @@ void UmosapiService::addUObject(const Rest::Request& request, Http::ResponseWrit
response.send(Http::Code::Ok, json_object_to_json_string_ext(jsonObject, JSON_C_TO_STRING_SPACED | JSON_C_TO_STRING_PRETTY), MIME(Application, Json));
json_object_put(jsonObject);
}
-
-
-int main(int argc, char *argv[]) {
-
- string config_path = "";
- const char *homedir;
-
- if ((homedir = getenv("XDG_CONFIG_HOME")) == NULL || (homedir = getenv("HOME")) == NULL) {
- homedir = getpwuid(getuid())->pw_dir;
- }
-
- config_path.append(homedir);
- config_path.append("/.config/umosapi/config.txt");
-
- bool showHelp = false;
- int config_port = 9080;
- int thr = 2;
- auto cli = clara::detail::Help(showHelp)
- | clara::detail::Opt( config_path, "config" )["-c"]["--config"]("Config file path. Default `~/.config/umosapi/config.txt`.")
- | clara::detail::Opt( config_port, "port" )["-p"]["--port"]("Port to listen. Default: `9080`.")
- | clara::detail::Opt( thr, "treads" )["-t"]["--threads"]("Number of threads. Default: `2`.");
- auto result = cli.parse( clara::detail::Args( argc, argv ) );
- if( !result )
- {
- std::cerr << "Error in command line: " << result.errorMessage() << std::endl;
- std::cerr << cli << std::endl;
- exit(1);
- }
-
- if ( showHelp ) {
- std::cerr << cli << std::endl;
- exit(1);
- }
-
- Address addr(Ipv4::any(), Port(config_port));
-
- cout << "Using " << hardware_concurrency() << " cores";
- cout << " - " << thr << " threads" << endl;
- cout << "Listen on 0.0.0.0:" << config_port << endl;
-
- cout << "Using config file '" << config_path << "'" << endl;
-
- if (!std::filesystem::exists(config_path)) {
- cout << "Error fatal : config file '" << config_path << "' not found" << endl;
- cout << "config.txt is search here: ~/.config/umosapi/config.txt" << endl;
- exit (EXIT_FAILURE);
- }
-
- load_config(config_path);
-
- cout << "Using swaggerui " << config["swaggerui"] << " path" << endl;
- cout << "Using mongoURI " << config["mongoURI"] << endl;
-
- UmosapiService umosapi(addr);
-
- umosapi.init(thr);
- umosapi.start(config["swaggerui"]);
-}