2021-06-17 14:08:55 +08:00
|
|
|
#include "app-search-plugin.h"
|
|
|
|
#include <gio/gdesktopappinfo.h>
|
2021-07-08 18:53:16 +08:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QLabel>
|
2021-07-31 16:12:04 +08:00
|
|
|
#include "file-utils.h"
|
2021-12-14 14:43:35 +08:00
|
|
|
using namespace UkuiSearch;
|
2021-06-17 14:08:55 +08:00
|
|
|
size_t AppSearchPlugin::uniqueSymbol = 0;
|
|
|
|
QMutex AppSearchPlugin::m_mutex;
|
2022-06-23 10:13:58 +08:00
|
|
|
AppSearchPlugin::AppSearchPlugin(QObject *parent) : QThread(parent), m_appSearchTask(new UkuiSearchTask(this))
|
2021-06-17 14:08:55 +08:00
|
|
|
{
|
|
|
|
SearchPluginIface::Actioninfo open { 0, tr("Open")};
|
|
|
|
SearchPluginIface::Actioninfo addtoDesktop { 1, tr("Add Shortcut to Desktop")};
|
|
|
|
SearchPluginIface::Actioninfo addtoPanel { 2, tr("Add Shortcut to Panel")};
|
|
|
|
SearchPluginIface::Actioninfo install { 0, tr("Install")};
|
|
|
|
m_actionInfo_installed << open << addtoDesktop << addtoPanel;
|
|
|
|
m_actionInfo_not_installed << install;
|
2022-06-23 10:13:58 +08:00
|
|
|
// m_pool.setMaxThreadCount(1);
|
|
|
|
// m_pool.setExpiryTimeout(1000);
|
2021-07-31 16:12:04 +08:00
|
|
|
initDetailPage();
|
2022-06-13 13:38:47 +08:00
|
|
|
|
2022-11-22 10:17:36 +08:00
|
|
|
m_timer = new QTimer;
|
2022-06-23 10:13:58 +08:00
|
|
|
m_timer->setInterval(3000);
|
|
|
|
m_timer->moveToThread(this);
|
2022-11-22 10:17:36 +08:00
|
|
|
connect(this, SIGNAL(startTimer()), m_timer, SLOT(start()));
|
2022-06-23 10:13:58 +08:00
|
|
|
connect(this, &AppSearchPlugin::stopTimer, m_timer, &QTimer::stop);
|
|
|
|
connect(m_timer, &QTimer::timeout, this, [ & ]{
|
2022-06-23 10:21:22 +08:00
|
|
|
qWarning() << "The app-search thread stopped because of timeout.";
|
2022-06-23 10:13:58 +08:00
|
|
|
this->quit();
|
|
|
|
});
|
|
|
|
|
2022-06-13 13:38:47 +08:00
|
|
|
m_appSearchResults = m_appSearchTask->init();
|
|
|
|
m_appSearchTask->initSearchPlugin(SearchType::Application);
|
|
|
|
m_appSearchTask->setSearchOnlineApps(true);
|
|
|
|
m_appSearchTask->setResultDataType(SearchType::Application, UkuiSearch::ApplicationDesktopPath |
|
|
|
|
UkuiSearch::ApplicationLocalName |
|
|
|
|
UkuiSearch::ApplicationIconName |
|
|
|
|
UkuiSearch::ApplicationDescription |
|
|
|
|
UkuiSearch::IsOnlineApplication);
|
2022-06-23 10:13:58 +08:00
|
|
|
|
|
|
|
connect(m_appSearchTask, &UkuiSearchTask::searchFinished, this, [ & ] {
|
|
|
|
if (m_timer->isActive()) {
|
|
|
|
Q_EMIT this->stopTimer();
|
|
|
|
m_timer->setInterval(3000);
|
|
|
|
}
|
|
|
|
|
|
|
|
while(!m_appSearchResults->isEmpty()) {
|
|
|
|
ResultItem oneResult = m_appSearchResults->dequeue();
|
|
|
|
SearchPluginIface::ResultInfo ri;
|
|
|
|
ri.actionKey = oneResult.getExtral().at(0).toString();
|
|
|
|
ri.name = oneResult.getExtral().at(1).toString();
|
|
|
|
ri.icon = oneResult.getExtral().at(2).value<QIcon>();
|
|
|
|
SearchPluginIface::DescriptionInfo description;
|
|
|
|
description.key = QString(tr("Application Description:"));
|
|
|
|
description.value = oneResult.getExtral().at(3).toString();
|
|
|
|
ri.description.append(description);
|
|
|
|
ri.type = oneResult.getExtral().at(4).toInt();
|
|
|
|
m_searchResult->enqueue(ri);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!m_timer->isActive()) {
|
|
|
|
Q_EMIT this->startTimer();
|
|
|
|
}
|
|
|
|
});
|
2021-06-17 14:08:55 +08:00
|
|
|
}
|
|
|
|
|
2022-11-22 10:17:36 +08:00
|
|
|
AppSearchPlugin::~AppSearchPlugin()
|
|
|
|
{
|
|
|
|
this->quit();
|
|
|
|
this->wait();
|
|
|
|
if (m_timer) {
|
|
|
|
delete m_timer;
|
|
|
|
m_timer = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-17 14:08:55 +08:00
|
|
|
const QString AppSearchPlugin::name()
|
|
|
|
{
|
2021-10-27 11:37:55 +08:00
|
|
|
return "Applications Search";
|
2021-06-17 14:08:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString AppSearchPlugin::description()
|
|
|
|
{
|
|
|
|
return tr("Applications Search");
|
|
|
|
}
|
|
|
|
|
|
|
|
QString AppSearchPlugin::getPluginName()
|
|
|
|
{
|
|
|
|
return tr("Applications Search");
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppSearchPlugin::KeywordSearch(QString keyword, DataQueue<SearchPluginIface::ResultInfo> *searchResult)
|
|
|
|
{
|
|
|
|
m_mutex.lock();
|
|
|
|
++uniqueSymbol;
|
|
|
|
m_mutex.unlock();
|
2022-06-23 10:13:58 +08:00
|
|
|
|
|
|
|
if (!this->isRunning()) {
|
|
|
|
this->start();
|
|
|
|
}
|
|
|
|
m_searchResult = searchResult;
|
|
|
|
m_appSearchTask->clearKeyWords();
|
|
|
|
m_appSearchTask->addKeyword(keyword);
|
|
|
|
m_appSearchTask->startSearch(SearchType::Application);
|
|
|
|
|
|
|
|
// AppSearch *appsearch = new AppSearch(searchResult, m_appSearchResults, m_appSearchTask, keyword, uniqueSymbol);
|
|
|
|
// m_pool.start(appsearch);
|
2021-06-17 14:08:55 +08:00
|
|
|
}
|
|
|
|
|
2022-02-12 14:20:55 +08:00
|
|
|
void AppSearchPlugin::stopSearch()
|
|
|
|
{
|
|
|
|
m_mutex.lock();
|
|
|
|
++uniqueSymbol;
|
|
|
|
m_mutex.unlock();
|
|
|
|
}
|
|
|
|
|
2021-06-17 14:08:55 +08:00
|
|
|
QList<SearchPluginIface::Actioninfo> AppSearchPlugin::getActioninfo(int type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case 0:
|
|
|
|
return m_actionInfo_installed;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
return m_actionInfo_not_installed;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return QList<SearchPluginIface::Actioninfo>();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppSearchPlugin::openAction(int actionkey, QString key, int type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case 0:
|
|
|
|
switch (actionkey) {
|
|
|
|
case 0:
|
|
|
|
if(!launch(key)) {
|
|
|
|
qWarning() << "Fail to launch:" << key;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if(!addDesktopShortcut(key)) {
|
|
|
|
qWarning() << "Fail to add Desktop Shortcut:" << key;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if(!addPanelShortcut(key)) {
|
|
|
|
qWarning() << "Fail to add Panel Shortcut:" << key;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if(!installAppAction(key)) {
|
|
|
|
qWarning() << "Fail to install:" << key;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-31 16:12:04 +08:00
|
|
|
QWidget *AppSearchPlugin::detailPage(const ResultInfo &ri)
|
2021-07-08 18:53:16 +08:00
|
|
|
{
|
2021-07-31 16:12:04 +08:00
|
|
|
m_currentActionKey = ri.actionKey;
|
2022-06-13 13:38:47 +08:00
|
|
|
m_iconLabel->setPixmap(ri.icon.isNull() ? QIcon(":/res/icons/desktop.png").pixmap(120, 120) : ri.icon.pixmap(120, 120));
|
2021-07-31 16:12:04 +08:00
|
|
|
QFontMetrics fontMetrics = m_nameLabel->fontMetrics();
|
2021-08-10 17:50:50 +08:00
|
|
|
QString showname = fontMetrics.elidedText(ri.name, Qt::ElideRight, 215); //当字体长度超过215时显示为省略号
|
2021-12-17 17:39:37 +08:00
|
|
|
m_nameLabel->setText(FileUtils::setAllTextBold(showname));
|
2021-07-31 16:12:04 +08:00
|
|
|
if(QString::compare(showname, ri.name)) {
|
|
|
|
m_nameLabel->setToolTip(ri.name);
|
2022-02-16 17:12:48 +08:00
|
|
|
} else {
|
|
|
|
m_nameLabel->setToolTip("");
|
2021-07-31 16:12:04 +08:00
|
|
|
}
|
|
|
|
m_pluginLabel->setText(tr("Application"));
|
|
|
|
if(ri.type == 1) {
|
|
|
|
m_actionLabel1->hide();
|
|
|
|
m_actionLabel2->hide();
|
|
|
|
m_actionLabel3->hide();
|
|
|
|
m_actionLabel4->show();
|
|
|
|
QString showDesc = fontMetrics.elidedText(ri.description.at(0).key + " " + ri.description.at(0).value, Qt::ElideRight, 3114); //当字体长度超过215时显示为省略号
|
|
|
|
m_descLabel->setText(FileUtils::escapeHtml(showDesc));
|
|
|
|
m_descFrame->show();
|
|
|
|
m_line_2->show();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
m_descFrame->hide();
|
|
|
|
m_line_2->hide();
|
|
|
|
m_actionLabel1->show();
|
|
|
|
m_actionLabel2->show();
|
|
|
|
m_actionLabel3->show();
|
|
|
|
m_actionLabel4->hide();
|
|
|
|
}
|
|
|
|
return m_detailPage;
|
2021-07-08 18:53:16 +08:00
|
|
|
}
|
|
|
|
|
2022-06-23 10:13:58 +08:00
|
|
|
void AppSearchPlugin::run()
|
|
|
|
{
|
|
|
|
exec();
|
|
|
|
}
|
|
|
|
|
2021-07-31 16:12:04 +08:00
|
|
|
void AppSearchPlugin::initDetailPage()
|
2021-07-08 18:53:16 +08:00
|
|
|
{
|
2021-07-31 16:12:04 +08:00
|
|
|
m_detailPage = new QWidget();
|
|
|
|
m_detailPage->setFixedWidth(360);
|
|
|
|
m_detailPage->setAttribute(Qt::WA_TranslucentBackground);
|
|
|
|
m_detailLyt = new QVBoxLayout(m_detailPage);
|
|
|
|
m_detailLyt->setContentsMargins(8, 0, 16, 0);
|
|
|
|
m_iconLabel = new QLabel(m_detailPage);
|
|
|
|
m_iconLabel->setAlignment(Qt::AlignCenter);
|
|
|
|
m_iconLabel->setFixedHeight(128);
|
|
|
|
|
|
|
|
m_nameFrame = new QFrame(m_detailPage);
|
|
|
|
m_nameFrameLyt = new QHBoxLayout(m_nameFrame);
|
|
|
|
m_nameFrame->setLayout(m_nameFrameLyt);
|
|
|
|
m_nameFrameLyt->setContentsMargins(8, 0, 0, 0);
|
|
|
|
m_nameLabel = new QLabel(m_nameFrame);
|
|
|
|
m_nameLabel->setMaximumWidth(280);
|
|
|
|
m_pluginLabel = new QLabel(m_nameFrame);
|
|
|
|
m_pluginLabel->setEnabled(false);
|
|
|
|
m_nameFrameLyt->addWidget(m_nameLabel);
|
|
|
|
m_nameFrameLyt->addStretch();
|
|
|
|
m_nameFrameLyt->addWidget(m_pluginLabel);
|
|
|
|
|
2021-12-09 13:57:19 +08:00
|
|
|
m_line_1 = new SeparationLine(m_detailPage);
|
2021-07-31 16:12:04 +08:00
|
|
|
m_descFrame = new QFrame(m_detailPage);
|
|
|
|
m_descFrameLyt = new QVBoxLayout(m_descFrame);
|
|
|
|
m_descLabel = new QLabel(m_descFrame);
|
|
|
|
m_descLabel->setTextFormat(Qt::PlainText);
|
|
|
|
m_descLabel->setWordWrap(true);
|
|
|
|
m_descFrameLyt->addWidget(m_descLabel);
|
|
|
|
m_descFrame->setLayout(m_descFrameLyt);
|
|
|
|
m_descFrameLyt->setContentsMargins(8, 0, 0, 0);
|
2021-12-09 13:57:19 +08:00
|
|
|
m_line_2 = new SeparationLine(m_detailPage);
|
2021-07-31 16:12:04 +08:00
|
|
|
|
|
|
|
m_actionFrame = new QFrame(m_detailPage);
|
|
|
|
m_actionFrameLyt = new QVBoxLayout(m_actionFrame);
|
|
|
|
m_actionFrameLyt->setContentsMargins(8, 0, 0, 0);
|
|
|
|
m_actionLabel1 = new ActionLabel(tr("Open"), m_currentActionKey, m_actionFrame);
|
|
|
|
m_actionLabel2 = new ActionLabel(tr("Add Shortcut to Desktop"), m_currentActionKey, m_actionFrame);
|
|
|
|
m_actionLabel3 = new ActionLabel(tr("Add Shortcut to Panel"), m_currentActionKey, m_actionFrame);
|
|
|
|
m_actionLabel4 = new ActionLabel(tr("Install"), m_currentActionKey, m_actionFrame);
|
|
|
|
|
|
|
|
m_actionFrameLyt->addWidget(m_actionLabel1);
|
|
|
|
m_actionFrameLyt->addWidget(m_actionLabel2);
|
|
|
|
m_actionFrameLyt->addWidget(m_actionLabel3);
|
|
|
|
m_actionFrameLyt->addWidget(m_actionLabel4);
|
|
|
|
m_actionFrame->setLayout(m_actionFrameLyt);
|
|
|
|
|
|
|
|
m_detailLyt->addSpacing(50);
|
|
|
|
m_detailLyt->addWidget(m_iconLabel);
|
|
|
|
m_detailLyt->addWidget(m_nameFrame);
|
|
|
|
m_detailLyt->addWidget(m_line_1);
|
|
|
|
m_detailLyt->addWidget(m_descFrame);
|
|
|
|
m_detailLyt->addWidget(m_line_2);
|
|
|
|
m_detailLyt->addWidget(m_actionFrame);
|
|
|
|
m_detailPage->setLayout(m_detailLyt);
|
|
|
|
m_detailLyt->addStretch();
|
|
|
|
|
|
|
|
connect(m_actionLabel1, &ActionLabel::actionTriggered, [ & ](){
|
|
|
|
launch(m_currentActionKey);
|
|
|
|
});
|
|
|
|
connect(m_actionLabel2, &ActionLabel::actionTriggered, [ & ](){
|
|
|
|
addDesktopShortcut(m_currentActionKey);
|
|
|
|
});
|
|
|
|
connect(m_actionLabel3, &ActionLabel::actionTriggered, [ & ](){
|
|
|
|
addPanelShortcut(m_currentActionKey);
|
|
|
|
});
|
|
|
|
connect(m_actionLabel4, &ActionLabel::actionTriggered, [ & ](){
|
|
|
|
installAppAction(m_currentActionKey);
|
|
|
|
});
|
2021-07-08 18:53:16 +08:00
|
|
|
}
|
|
|
|
|
2021-06-17 14:08:55 +08:00
|
|
|
bool AppSearchPlugin::launch(const QString &path)
|
|
|
|
{
|
2022-11-02 20:50:30 +08:00
|
|
|
if(QFileInfo(path).fileName() == "kylin-screenshot.desktop") {
|
|
|
|
invokeActions(InvokableAction::HideUI);
|
|
|
|
}
|
2022-05-10 13:49:54 +08:00
|
|
|
bool res(false);
|
|
|
|
QDBusInterface * appLaunchInterface = new QDBusInterface("com.kylin.AppManager",
|
|
|
|
"/com/kylin/AppManager",
|
|
|
|
"com.kylin.AppManager",
|
|
|
|
QDBusConnection::sessionBus());
|
|
|
|
if(!appLaunchInterface->isValid()) {
|
|
|
|
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
|
|
|
|
res = false;
|
|
|
|
} else {
|
|
|
|
appLaunchInterface->setTimeout(10000);
|
|
|
|
QDBusReply<bool> reply = appLaunchInterface->call("LaunchApp", path);
|
|
|
|
if(reply.isValid()) {
|
|
|
|
res = reply;
|
|
|
|
} else {
|
|
|
|
qWarning() << "SoftWareCenter dbus called failed!";
|
|
|
|
res = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(appLaunchInterface) {
|
|
|
|
delete appLaunchInterface;
|
|
|
|
}
|
|
|
|
appLaunchInterface = NULL;
|
|
|
|
if (res)
|
|
|
|
return true;
|
|
|
|
|
2021-06-17 14:08:55 +08:00
|
|
|
GDesktopAppInfo * desktopAppInfo = g_desktop_app_info_new_from_filename(path.toLocal8Bit().data());
|
2022-05-10 13:49:54 +08:00
|
|
|
res = static_cast<bool>(g_app_info_launch(G_APP_INFO(desktopAppInfo), nullptr, nullptr, nullptr));
|
2021-06-17 14:08:55 +08:00
|
|
|
g_object_unref(desktopAppInfo);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
bool AppSearchPlugin::addPanelShortcut(const QString& path) {
|
|
|
|
QDBusInterface iface("com.ukui.panel.desktop",
|
|
|
|
"/",
|
|
|
|
"com.ukui.panel.desktop",
|
|
|
|
QDBusConnection::sessionBus());
|
|
|
|
if(iface.isValid()) {
|
|
|
|
QDBusReply<bool> isExist = iface.call("CheckIfExist", path);
|
|
|
|
if(isExist) {
|
2021-07-05 14:27:14 +08:00
|
|
|
qWarning() << "Add shortcut to panel failed, because it is already existed!";
|
2021-06-17 14:08:55 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QDBusReply<QVariant> ret = iface.call("AddToTaskbar", path);
|
2021-07-05 14:27:14 +08:00
|
|
|
qDebug() << "Add shortcut to panel successed!";
|
2021-06-17 14:08:55 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AppSearchPlugin::addDesktopShortcut(const QString& path) {
|
|
|
|
QString dirpath = QStandardPaths::writableLocation(QStandardPaths::DesktopLocation);
|
|
|
|
QFileInfo fileInfo(path);
|
|
|
|
QString desktopfn = fileInfo.fileName();
|
|
|
|
QFile file(path);
|
|
|
|
QString newName = QString(dirpath + "/" + desktopfn);
|
|
|
|
bool ret = file.copy(QString(dirpath + "/" + desktopfn));
|
|
|
|
if(ret) {
|
|
|
|
QProcess process;
|
|
|
|
process.startDetached(QString("chmod a+x %1").arg(newName));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AppSearchPlugin::installAppAction(const QString & name) {
|
|
|
|
QDBusInterface * interface = new QDBusInterface("com.kylin.softwarecenter",
|
|
|
|
"/com/kylin/softwarecenter",
|
|
|
|
"com.kylin.utiliface",
|
|
|
|
QDBusConnection::sessionBus());
|
2022-10-19 17:11:05 +08:00
|
|
|
bool res(false);
|
2021-06-17 14:08:55 +08:00
|
|
|
if(interface->isValid()) {
|
|
|
|
//软件商店已打开,直接跳转
|
|
|
|
interface->call("show_search_result", name);
|
2022-10-19 17:11:05 +08:00
|
|
|
res = QDBusReply<bool>(interface->call(QString("show_search_result"), name));
|
2021-06-17 14:08:55 +08:00
|
|
|
} else {
|
|
|
|
//软件商店未打开,打开软件商店下载此软件
|
|
|
|
qDebug() << "Softwarecenter has not been launched, now launch it." << name;
|
2022-05-10 13:49:54 +08:00
|
|
|
QDBusInterface * appLaunchInterface = new QDBusInterface("com.kylin.AppManager",
|
|
|
|
"/com/kylin/AppManager",
|
|
|
|
"com.kylin.AppManager",
|
|
|
|
QDBusConnection::sessionBus());
|
|
|
|
if(!appLaunchInterface->isValid()) {
|
|
|
|
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
|
|
|
|
res = false;
|
|
|
|
} else {
|
|
|
|
appLaunchInterface->setTimeout(10000);
|
|
|
|
QDBusReply<bool> reply = appLaunchInterface->call("LaunchAppWithArguments", "kylin-software-center.desktop", QStringList() << "-find" << name);
|
|
|
|
if(reply.isValid()) {
|
|
|
|
res = reply;
|
|
|
|
} else {
|
|
|
|
qWarning() << "SoftWareCenter dbus called failed!";
|
|
|
|
res = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(appLaunchInterface) {
|
|
|
|
delete appLaunchInterface;
|
|
|
|
}
|
2022-10-19 17:11:05 +08:00
|
|
|
appLaunchInterface = nullptr;
|
|
|
|
if (!res) {
|
|
|
|
QProcess process;
|
|
|
|
res = process.startDetached(QString("kylin-software-center -find %1").arg(name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(interface) {
|
|
|
|
delete interface;
|
2021-06-17 14:08:55 +08:00
|
|
|
}
|
2022-10-19 17:11:05 +08:00
|
|
|
interface = nullptr;
|
|
|
|
return res;
|
2021-06-17 14:08:55 +08:00
|
|
|
}
|
|
|
|
|
2022-06-23 10:13:58 +08:00
|
|
|
//AppSearch::AppSearch(DataQueue<SearchPluginIface::ResultInfo> *searchResult, DataQueue<ResultItem>* appSearchResults, UkuiSearchTask *appSearchTask, QString keyword, size_t uniqueSymbol)
|
|
|
|
//{
|
|
|
|
// this->setAutoDelete(true);
|
|
|
|
// m_search_result = searchResult;
|
|
|
|
// m_appSearchResults = appSearchResults;
|
|
|
|
// m_appSearchTask = appSearchTask;
|
|
|
|
// m_appSearchTask->clearKeyWords();
|
|
|
|
// m_appSearchTask->addKeyword(keyword);
|
|
|
|
// m_uniqueSymbol = uniqueSymbol;
|
|
|
|
//}
|
2021-06-17 14:08:55 +08:00
|
|
|
|
2022-06-23 10:13:58 +08:00
|
|
|
//AppSearch::~AppSearch()
|
|
|
|
//{
|
|
|
|
//}
|
2021-06-17 14:08:55 +08:00
|
|
|
|
2022-06-23 10:13:58 +08:00
|
|
|
//void AppSearch::run()
|
|
|
|
//{
|
|
|
|
//// m_appSearchTask->startSearch(SearchType::Application);
|
|
|
|
// QTimer timer;
|
|
|
|
// timer.setInterval(3000);
|
|
|
|
// bool is_empty;
|
|
|
|
// while(1) {
|
|
|
|
// is_empty = false;
|
|
|
|
// if(!m_appSearchResults->isEmpty()) {
|
2022-06-13 13:38:47 +08:00
|
|
|
|
2022-06-23 10:13:58 +08:00
|
|
|
// ResultItem oneResult = m_appSearchResults->dequeue();
|
|
|
|
|
|
|
|
// SearchPluginIface::ResultInfo ri;
|
|
|
|
// ri.actionKey = oneResult.getExtral().at(0).toString();
|
|
|
|
// ri.name = oneResult.getExtral().at(1).toString();
|
|
|
|
// ri.icon = oneResult.getExtral().at(2).value<QIcon>();
|
|
|
|
// SearchPluginIface::DescriptionInfo description;
|
|
|
|
// description.key = QString(tr("Application Description:"));
|
|
|
|
// description.value = oneResult.getExtral().at(3).toString();
|
|
|
|
// ri.description.append(description);
|
|
|
|
// ri.type = oneResult.getExtral().at(4).toInt();
|
|
|
|
//// if (isUniqueSymbolChanged()) {
|
|
|
|
//// m_appSearchResults->clear();
|
|
|
|
//// break;
|
|
|
|
//// }
|
|
|
|
// m_search_result->enqueue(ri);
|
|
|
|
// } else {
|
|
|
|
// is_empty = true;
|
|
|
|
// }
|
|
|
|
// if (isUniqueSymbolChanged()) {
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
// if(timer.isActive() && timer.remainingTime() < 0.01) {
|
|
|
|
// qWarning()<<"-------------->stopped by itself";
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
// if(is_empty && !timer.isActive()) {
|
|
|
|
// timer.start();
|
|
|
|
// } else if(!is_empty) {
|
|
|
|
// timer.stop();
|
|
|
|
|
|
|
|
// } else {
|
|
|
|
// QThread::msleep(100);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
|
|
|
|
//bool AppSearch::isUniqueSymbolChanged()
|
|
|
|
//{
|
|
|
|
// QMutexLocker locker(&AppSearchPlugin::m_mutex);
|
|
|
|
// if (m_uniqueSymbol != AppSearchPlugin::uniqueSymbol) {
|
|
|
|
// qDebug() << "uniqueSymbol changged, app search finished!";
|
|
|
|
// return true;
|
|
|
|
// } else {
|
|
|
|
// return false;
|
|
|
|
// }
|
|
|
|
//}
|