95 lines
3.0 KiB
C++
95 lines
3.0 KiB
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2014, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#include <appl/debug.hpp>
|
|
#include <etk/etk.hpp>
|
|
|
|
#include <mutex>
|
|
#include <etk/os/FSNode.hpp>
|
|
#include <sstream>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <dlfcn.h>
|
|
|
|
#include <etk/stdTools.hpp>
|
|
|
|
typedef bool (*SERVICE_IO_init_t)(std::string _basePath);
|
|
typedef bool (*SERVICE_IO_uninit_t)();
|
|
typedef bool (*SERVICE_IO_execute_t)(std::string _ip, uint16_t _port);
|
|
|
|
int main(int _argc, const char *_argv[]) {
|
|
etk::init(_argc, _argv);
|
|
// TODO : permit module to init libraries ... zeus::init(_argc, _argv);
|
|
std::string ip;
|
|
uint16_t port = 0;
|
|
std::string basePath;
|
|
std::vector<std::string> services;
|
|
for (int32_t iii=0; iii<_argc ; ++iii) {
|
|
std::string data = _argv[iii];
|
|
if (etk::start_with(data, "--ip=") == true) {
|
|
ip = std::string(&data[5]);
|
|
} else if (etk::start_with(data, "--port=") == true) {
|
|
port = etk::string_to_uint16_t(std::string(&data[7]));
|
|
} else if (etk::start_with(data, "--base-path=") == true) {
|
|
basePath = std::string(&data[12]);
|
|
} else if (etk::start_with(data, "--srv=") == true) {
|
|
services.push_back(std::string(&data[6]));
|
|
} else if ( data == "-h"
|
|
|| data == "--help") {
|
|
APPL_PRINT(etk::getApplicationName() << " - help : ");
|
|
APPL_PRINT(" " << _argv[0] << " [options]");
|
|
APPL_PRINT(" --base-path=XXX base path to search data (default: 'USERDATA:')");
|
|
APPL_PRINT(" --ip=XXX Server connection IP (default: 1.7.0.0.1)");
|
|
APPL_PRINT(" --port=XXX Server connection PORT (default: 1983)");
|
|
APPL_PRINT(" --srv=XXX service path");
|
|
return -1;
|
|
}
|
|
}
|
|
if (basePath.size() == 0) {
|
|
basePath = "USERDATA:";
|
|
APPL_PRINT("Use base path: " << basePath);
|
|
}
|
|
for (auto &it : services) {
|
|
void *handle;
|
|
handle = dlopen(it.c_str(), RTLD_LAZY);
|
|
if (!handle) {
|
|
APPL_ERROR("Can not load Lbrary:" << dlerror());
|
|
return -1;
|
|
}
|
|
char *error = nullptr;
|
|
SERVICE_IO_init_t SERVICE_IO_init;
|
|
SERVICE_IO_uninit_t SERVICE_IO_uninit;
|
|
SERVICE_IO_execute_t SERVICE_IO_execute;
|
|
SERVICE_IO_init = (SERVICE_IO_init_t)dlsym(handle, "SERVICE_IO_init");
|
|
error = dlerror();
|
|
if (error != nullptr) {
|
|
APPL_ERROR("Can not function SERVICE_IO_init :" << error);
|
|
return -1;
|
|
}
|
|
SERVICE_IO_uninit = (SERVICE_IO_uninit_t)dlsym(handle, "SERVICE_IO_uninit");
|
|
error = dlerror();
|
|
if (error != nullptr) {
|
|
APPL_ERROR("Can not function SERVICE_IO_uninit :" << error);
|
|
return -1;
|
|
}
|
|
SERVICE_IO_execute = (SERVICE_IO_execute_t)dlsym(handle, "SERVICE_IO_execute");
|
|
error = dlerror();
|
|
if (error != nullptr) {
|
|
APPL_ERROR("Can not function SERVICE_IO_execute:" << error);
|
|
return -1;
|
|
}
|
|
(*SERVICE_IO_init)(basePath);
|
|
// TODO: Remove the While true, ==> sevice must be spown by a user call, if a service die, the wall system will die ...
|
|
while (true) {
|
|
(*SERVICE_IO_execute)(ip, port);
|
|
}
|
|
APPL_INFO("Stop service ==> flush internal datas ...");
|
|
(*SERVICE_IO_uninit)();
|
|
}
|
|
return 0;
|
|
}
|
|
|