代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/Rythem 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#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();
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。