hikyuu2/hikyuu_cpp/hikyuu_server/main.cpp

55 lines
1.2 KiB
C++

/*
* Copyright(C) 2021 hikyuu.org
*
* Create on: 2021-02-26
* Author: fasiondog
*/
#include <locale>
#include <hikyuu/utilities/os.h>
#include "http/HttpServer.h"
#include "db/db.h"
#include "service/user/UserService.h"
#include "service/assist/AssistService.h"
#include "service/trade/TradeService.h"
using namespace hku;
#define HKU_SERVICE_API(name) "/hku/" #name "/v1"
int main(int argc, char* argv[]) {
init_server_logger();
// 初始化多语言支持
MOHelper::init();
LOG_INFO("start server ... You can press Ctrl-C stop");
HttpServer server("http://*", 9001);
HttpHandle::enableTrace(true);
try {
DB::init(fmt::format("{}/.hikyuu/trade.ini", getUserHome()));
UserService usr_service(HKU_SERVICE_API(user));
usr_service.bind(&server);
AssistService assist(HKU_SERVICE_API(assist));
assist.bind(&server);
TradeService trade(HKU_SERVICE_API(trade));
trade.bind(&server);
server.start();
} catch (std::exception& e) {
LOG_FATAL(e.what());
server.stop();
} catch (...) {
LOG_FATAL("Unknow error!");
server.stop();
}
return 0;
}