mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-25 03:39:24 +08:00
feat: 增加配置文件
This commit is contained in:
parent
f9a7924658
commit
34eb14edb2
@ -1,6 +1,17 @@
|
|||||||
#include "config.h"
|
#include "pch.h"
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
namespace wxhelper {
|
namespace wxhelper {
|
||||||
Config::Config(/* args */) {}
|
Config::Config(/* args */) {}
|
||||||
|
|
||||||
Config::~Config() {}
|
Config::~Config() {}
|
||||||
|
|
||||||
|
|
||||||
|
void Config::Initialize(){
|
||||||
|
port_ = GetPrivateProfileInt("config", "Port", 19088, "./config.ini");
|
||||||
|
}
|
||||||
|
int Config::GetPort(){
|
||||||
|
return port_;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace wxhelper
|
} // namespace wxhelper
|
12
src/config.h
12
src/config.h
@ -3,13 +3,15 @@
|
|||||||
|
|
||||||
namespace wxhelper {
|
namespace wxhelper {
|
||||||
|
|
||||||
class Config
|
class Config {
|
||||||
{
|
|
||||||
private:
|
|
||||||
/* data */
|
|
||||||
public:
|
public:
|
||||||
Config(/* args */);
|
Config(/* args */);
|
||||||
~Config();
|
~Config();
|
||||||
|
void Initialize();
|
||||||
|
int GetPort();
|
||||||
|
|
||||||
|
private:
|
||||||
|
int port_;
|
||||||
};
|
};
|
||||||
}
|
} // namespace wxhelper
|
||||||
#endif
|
#endif
|
@ -11,14 +11,15 @@ void GlobalContext::initialize(HMODULE module) {
|
|||||||
module_ = module;
|
module_ = module;
|
||||||
DWORD base = Utils::GetWeChatWinBase();
|
DWORD base = Utils::GetWeChatWinBase();
|
||||||
config.emplace();
|
config.emplace();
|
||||||
|
config->Initialize();
|
||||||
log.emplace();
|
log.emplace();
|
||||||
log->initialize();
|
log->Initialize();
|
||||||
hide_module.emplace();
|
hide_module.emplace();
|
||||||
#ifndef _DEBUG
|
#ifndef _DEBUG
|
||||||
hide_module->Hide(module_);
|
hide_module->Hide(module_);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
HttpServer::GetInstance().Init(19088);
|
HttpServer::GetInstance().Init(config->GetPort());
|
||||||
HttpServer::GetInstance().HttpStart();
|
HttpServer::GetInstance().HttpStart();
|
||||||
DB::GetInstance().init(base);
|
DB::GetInstance().init(base);
|
||||||
contact_mgr.emplace(ContactMgr{base});
|
contact_mgr.emplace(ContactMgr{base});
|
||||||
|
@ -7,7 +7,7 @@ Log::Log(/* args */) {}
|
|||||||
|
|
||||||
Log::~Log() {}
|
Log::~Log() {}
|
||||||
|
|
||||||
void Log::initialize() {
|
void Log::Initialize() {
|
||||||
|
|
||||||
el::Configurations conf;
|
el::Configurations conf;
|
||||||
// 启用日志
|
// 启用日志
|
||||||
|
Loading…
Reference in New Issue
Block a user