forked from AlloyTeam/Rythem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
124 lines (93 loc) · 3.29 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#include <QApplication>
#include <QStatusBar>
#include "mainwindow.h"
#include <QDebug>
#include <QDateTime>
#include <QtCore>
#include <QUrl>
#include "rule/ryrulemanager.h"
#include "proxy/ryproxyserver.h"
#include "proxy/rypipedata.h"
#include <QThread>
#include <QTranslator>
#include "singleapplication.h"
#ifdef Q_OS_MAC
#include "proxy/proxyautoconfig.h"
#endif
#include <QtNetwork>
QList<QNetworkProxy> macQueryInternal(const QNetworkProxyQuery &query);
using namespace rule;
QString version = "0.5.0";
QString appPath = "";
void myMessageHandler(QtMsgType type, const char *msg)
{
QString fileName = appPath+QString("/log-%1.txt").arg(QDateTime::currentDateTime().toMSecsSinceEpoch()/(1000*60*60*24));
QFile outFile;
outFile.setFileName(fileName);
outFile.open(QIODevice::WriteOnly | QIODevice::Append);
QString txt;
switch (type) {
case QtDebugMsg:
txt = QString("Debug: %1\r\n").arg(msg);
break;
case QtWarningMsg:
txt = QString("Warning: %1\r\n").arg(msg);
break;
case QtCriticalMsg:
txt = QString("Critical: %1\r\n").arg(msg);
break;
case QtFatalMsg:
txt = QString("Fatal: %1\r\n").arg(msg);
abort();
}
QTextStream ts(&outFile);
ts << txt << endl;
outFile.close();
}
//#define DEBUGTOFILE
int main(int argc, char *argv[])
{
SingleApplication a(argc, argv, "a");
if(a.isRunning()){
a.sendMessage("from other instance");
return 0;
}
#ifdef Q_OS_MAC
ProxyAutoConfig::instance();
#endif
a.setQuitOnLastWindowClosed(false);
appPath = qApp->applicationDirPath();
QSettings settings("alloyteam","rythem_rule_config");
// load app translate file
QTranslator translator;
bool isLoadSuccess = translator.load(appPath+"/rythem_zh_CN");
if(!isLoadSuccess)qDebug()<<" load language error";
a.installTranslator(&translator);
// load system translate file
QTranslator translator2;
translator2.load(appPath+"/qt_zh_CN");
a.installTranslator(&translator2);
#ifdef DEBUGTOFILE
qInstallMsgHandler(myMessageHandler);
#endif
RyRuleManager *manager = RyRuleManager::instance();
settings.setIniCodec("UTF-8");
manager->loadLocalConfig(settings.fileName());//appPath+"/rythem_config.txt");
// register metatypes
qRegisterMetaType<RyPipeData_ptr>("RyPipeData_ptr");
MainWindow w;
//a.connect(&a,SIGNAL(messageAvailable(QString)),&w,SLOT(raise()));
a.connect(&a,SIGNAL(messageAvailable(QString)),&w,SLOT(onMessageFromOtherInstance()));
RyProxyServer* server = RyProxyServer::instance();
server->connect(server,SIGNAL(pipeBegin(RyPipeData_ptr)),&w,SLOT(onNewPipe(RyPipeData_ptr)));
server->connect(server,SIGNAL(pipeComplete(RyPipeData_ptr)),&w,SLOT(onPipeUpdate(RyPipeData_ptr)));
server->connect(server,SIGNAL(pipeError(RyPipeData_ptr)),&w,SLOT(onPipeUpdate(RyPipeData_ptr)));
bool isListenSuccess = server->listen(QHostAddress::Any,8889);
if(!isListenSuccess){
exit(1);
}
qDebug()<<"listen success";
//w.showMaximized();
w.show();
return a.exec();
}