2021-05-22 21:29:43 +08:00
|
|
|
|
/*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2020, KylinSoft Co., Ltd.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
*
|
|
|
|
|
* Authors: zhangjiaping <zhangjiaping@kylinos.cn>
|
|
|
|
|
* Modified by: zhangpengfei <zhangpengfei@kylinos.cn>
|
|
|
|
|
* Modified by: zhangzihao <zhangzihao@kylinos.cn>
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
#include <QDesktopWidget>
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QScreen>
|
|
|
|
|
#include <QTranslator>
|
|
|
|
|
#include <QLocale>
|
|
|
|
|
#include <syslog.h>
|
|
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
|
|
|
|
|
#include <ukui-log4qt.h>
|
|
|
|
|
#endif
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
#include "qt-single-application.h"
|
|
|
|
|
#include "qt-local-peer.h"
|
|
|
|
|
#include "libsearch.h"
|
|
|
|
|
#include "global-settings.h"
|
2021-08-09 21:00:15 +08:00
|
|
|
|
#include "ukui-search-dbus-service.h"
|
2021-08-16 19:34:40 +08:00
|
|
|
|
#include "plugin-manager.h"
|
2021-08-18 14:23:14 +08:00
|
|
|
|
#include <X11/Xlib.h>
|
2021-05-22 21:29:43 +08:00
|
|
|
|
|
|
|
|
|
using namespace Zeeker;
|
|
|
|
|
|
|
|
|
|
void messageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg)
|
|
|
|
|
{
|
|
|
|
|
QByteArray localMsg = msg.toLocal8Bit();
|
|
|
|
|
QByteArray currentTime = QTime::currentTime().toString().toLocal8Bit();
|
|
|
|
|
|
|
|
|
|
bool showDebug = true;
|
|
|
|
|
// QString logFilePath = QStandardPaths::writableLocation(QStandardPaths::TempLocation) + "/ukui-search.log";
|
|
|
|
|
// QString logFilePath = QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/.config/org.ukui/ukui-search/ukui-search.log";
|
|
|
|
|
QString logFilePath = QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/.config/org.ukui/ukui-search.log";
|
|
|
|
|
if (!QFile::exists(logFilePath)) {
|
|
|
|
|
showDebug = false;
|
|
|
|
|
}
|
|
|
|
|
FILE *log_file = nullptr;
|
|
|
|
|
|
|
|
|
|
if (showDebug) {
|
|
|
|
|
log_file = fopen(logFilePath.toLocal8Bit().constData(), "a+");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *file = context.file ? context.file : "";
|
|
|
|
|
const char *function = context.function ? context.function : "";
|
|
|
|
|
switch (type) {
|
|
|
|
|
case QtDebugMsg:
|
|
|
|
|
if (!log_file) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
fprintf(log_file, "Debug: %s: %s (%s:%u, %s)\n", currentTime.constData(), localMsg.constData(), file, context.line, function);
|
|
|
|
|
break;
|
|
|
|
|
case QtInfoMsg:
|
|
|
|
|
fprintf(log_file? log_file: stdout, "Info: %s: %s (%s:%u, %s)\n", currentTime.constData(), localMsg.constData(), file, context.line, function);
|
|
|
|
|
break;
|
|
|
|
|
case QtWarningMsg:
|
|
|
|
|
fprintf(log_file? log_file: stderr, "Warning: %s: %s (%s:%u, %s)\n", currentTime.constData(), localMsg.constData(), file, context.line, function);
|
|
|
|
|
break;
|
|
|
|
|
case QtCriticalMsg:
|
|
|
|
|
fprintf(log_file? log_file: stderr, "Critical: %s: %s (%s:%u, %s)\n", currentTime.constData(), localMsg.constData(), file, context.line, function);
|
|
|
|
|
break;
|
|
|
|
|
case QtFatalMsg:
|
|
|
|
|
fprintf(log_file? log_file: stderr, "Fatal: %s: %s (%s:%u, %s)\n", currentTime.constData(), localMsg.constData(), file, context.line, function);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (log_file)
|
|
|
|
|
fclose(log_file);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void centerToScreen(QWidget* widget) {
|
|
|
|
|
if(!widget)
|
|
|
|
|
return;
|
|
|
|
|
QDesktopWidget* m = QApplication::desktop();
|
|
|
|
|
QRect desk_rect = m->screenGeometry(m->screenNumber(QCursor::pos()));
|
|
|
|
|
int desk_x = desk_rect.width();
|
|
|
|
|
int desk_y = desk_rect.height();
|
|
|
|
|
int x = widget->width();
|
|
|
|
|
int y = widget->height();
|
|
|
|
|
widget->move(desk_x / 2 - x / 2 + desk_rect.left(), desk_y / 2 - y / 2 + desk_rect.top());
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
void searchMethod(FileUtils::SearchMethod sm){
|
|
|
|
|
qWarning() << "searchMethod start: " << static_cast<int>(sm);
|
|
|
|
|
if (FileUtils::SearchMethod::INDEXSEARCH == sm || FileUtils::SearchMethod::DIRECTSEARCH == sm) {
|
|
|
|
|
FileUtils::searchMethod = sm;
|
|
|
|
|
} else {
|
|
|
|
|
printf("enum class error!!!\n");
|
|
|
|
|
qWarning("enum class error!!!\n");
|
|
|
|
|
}
|
2021-11-11 10:03:57 +08:00
|
|
|
|
if (FileUtils::SearchMethod::INDEXSEARCH == sm && 0 == FileUtils::indexStatus) {
|
2021-05-22 21:29:43 +08:00
|
|
|
|
qWarning() << "start first index";
|
|
|
|
|
FirstIndex fi("/home/zhangzihao/Desktop");
|
|
|
|
|
fi.start();
|
|
|
|
|
qWarning() << "start inotify index";
|
|
|
|
|
// InotifyIndex ii("/home");
|
|
|
|
|
// ii.start();
|
|
|
|
|
InotifyIndex* ii = InotifyIndex::getInstance("/home");
|
|
|
|
|
if (!ii->isRunning()) {
|
|
|
|
|
ii->start();
|
|
|
|
|
}
|
|
|
|
|
qDebug()<<"Search method has been set to INDEXSEARCH";
|
|
|
|
|
}
|
|
|
|
|
qWarning() << "searchMethod end: " << static_cast<int>(FileUtils::searchMethod);
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
|
//v101日志模块
|
|
|
|
|
//#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
|
|
|
|
|
// //Init log module
|
|
|
|
|
// initUkuiLog4qt("ukui-search");
|
|
|
|
|
//#endif
|
|
|
|
|
|
|
|
|
|
// Determine whether the home directory has been created, and if not, keep waiting.
|
|
|
|
|
char *p_home = NULL;
|
|
|
|
|
|
|
|
|
|
unsigned int i = 0;
|
|
|
|
|
while(p_home == NULL) {
|
|
|
|
|
::sleep(1);
|
|
|
|
|
++i;
|
|
|
|
|
p_home = getenv("HOME");
|
|
|
|
|
if(i % 5 == 0) {
|
|
|
|
|
qWarning() << "I can't find home! I'm done here!!";
|
|
|
|
|
printf("I can't find home! I'm done here!!");
|
|
|
|
|
syslog(LOG_ERR, "I can't find home! I'm done here!!\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
p_home = NULL;
|
|
|
|
|
while(!QDir(QDir::homePath()).exists()) {
|
|
|
|
|
qWarning() << "Home is not exits!!";
|
|
|
|
|
printf("Home is not exits!!");
|
|
|
|
|
syslog(LOG_ERR, "Home is not exits!!\n");
|
|
|
|
|
::sleep(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Output log to file
|
|
|
|
|
qInstallMessageHandler(messageOutput);
|
|
|
|
|
//若使用v101日志模块,可以解放如下判断条件
|
|
|
|
|
//#if (QT_VERSION < QT_VERSION_CHECK(5, 12, 0))
|
|
|
|
|
// // Output log to file
|
|
|
|
|
// qInstallMessageHandler(messageOutput);
|
|
|
|
|
//#endif
|
|
|
|
|
|
|
|
|
|
// Register meta type
|
|
|
|
|
qDebug() << "ukui-search main start";
|
|
|
|
|
qRegisterMetaType<QPair<QString, QStringList>>("QPair<QString,QStringList>");
|
|
|
|
|
qRegisterMetaType<Document>("Document");
|
|
|
|
|
|
|
|
|
|
// If qt version bigger than 5.12, enable high dpi scaling and use high dpi pixmaps?
|
|
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
|
|
|
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
|
|
|
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
|
|
|
|
|
#endif
|
|
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
|
|
|
|
|
QApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Make sure only one ukui-search is running.
|
|
|
|
|
QtSingleApplication app("ukui-search", argc, argv);
|
|
|
|
|
app.setQuitOnLastWindowClosed(false);
|
|
|
|
|
|
|
|
|
|
if(app.isRunning()) {
|
|
|
|
|
app.sendMessage(QApplication::arguments().length() > 1 ? QApplication::arguments().at(1) : app.applicationFilePath());
|
|
|
|
|
qDebug() << QObject::tr("ukui-search is already running!");
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
}/*else {
|
|
|
|
|
QCommandLineParser parser;
|
|
|
|
|
QCommandLineOption debugOption({"d", "debug"}, QObject::tr("Display debug information"));
|
|
|
|
|
QCommandLineOption showsearch({"s", "show"}, QObject::tr("show search widget"));
|
|
|
|
|
parser.addOptions({debugOption, showsearch});
|
|
|
|
|
parser.process(app);
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
UkuiSearchQDBus usQDBus;
|
|
|
|
|
usQDBus.setInotifyMaxUserWatches();
|
|
|
|
|
|
|
|
|
|
// load chinese character and pinyin file to a Map
|
|
|
|
|
FileUtils::loadHanziTable("://index/pinyinWithoutTone.txt");
|
|
|
|
|
|
|
|
|
|
// Load translations
|
|
|
|
|
QTranslator translator;
|
|
|
|
|
try {
|
|
|
|
|
if(! translator.load("/usr/share/ukui-search/translations/" + QLocale::system().name())) throw - 1;
|
|
|
|
|
app.installTranslator(&translator);
|
|
|
|
|
} catch(...) {
|
|
|
|
|
qDebug() << "Load translations file" << QLocale() << "failed!";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTranslator qt_translator;
|
|
|
|
|
try {
|
|
|
|
|
if(! qt_translator.load(":/res/qt-translations/qt_zh_CN.qm")) throw - 1;
|
|
|
|
|
app.installTranslator(&qt_translator);
|
|
|
|
|
} catch(...) {
|
|
|
|
|
qDebug() << "Load translations file" << QLocale() << "failed!";
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-27 21:10:11 +08:00
|
|
|
|
QTranslator lib_translator;
|
|
|
|
|
try {
|
|
|
|
|
if(! lib_translator.load("/usr/share/ukui-search/translations/libukui-search_" + QLocale::system().name())) throw - 1;
|
|
|
|
|
app.installTranslator(&lib_translator);
|
|
|
|
|
} catch(...) {
|
|
|
|
|
qDebug() << "Load translations file" << QLocale() << "failed!";
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-16 19:34:40 +08:00
|
|
|
|
PluginManager::getInstance();
|
2021-05-22 21:29:43 +08:00
|
|
|
|
//set main window to the center of screen
|
|
|
|
|
MainWindow *w = new MainWindow;
|
2021-08-09 21:00:15 +08:00
|
|
|
|
UkuiSearchDbusServices dbusService(w);
|
2021-05-22 21:29:43 +08:00
|
|
|
|
qApp->setWindowIcon(QIcon::fromTheme("kylin-search"));
|
|
|
|
|
|
|
|
|
|
app.setActivationWindow(w);
|
|
|
|
|
|
|
|
|
|
// Processing startup parameters
|
|
|
|
|
if(QString::compare(QString("-s"), QString(QLatin1String(argv[1]))) == 0) {
|
|
|
|
|
centerToScreen(w);
|
|
|
|
|
w->show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QObject::connect(&app, &QtSingleApplication::messageReceived, w, &MainWindow::bootOptionsFilter);
|
|
|
|
|
|
|
|
|
|
// NEW_TODO
|
|
|
|
|
// Set threads which in global thread pool expiry time in 5ms, some prolems here
|
|
|
|
|
QThreadPool::globalInstance()->setExpiryTimeout(5);
|
|
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
|
}
|