2022-06-28 11:20:36 +08:00
# include "app-info-table.h"
# include "app-info-table-private.h"
2022-07-12 11:26:03 +08:00
# include "app-info-dbus-argument.h"
2022-06-28 11:20:36 +08:00
2022-06-13 13:38:47 +08:00
# include <QDebug>
# include <QtGlobal>
# include <string>
# include <QStandardPaths>
# include <QProcess>
# include <QDBusInterface>
# include <QDBusReply>
2022-07-12 11:26:03 +08:00
# include <QDBusMetaType>
2022-06-13 13:38:47 +08:00
# include <QFileInfo>
# include <QTime>
# include <QSqlQuery>
# include <QSqlError>
# include <QApplication>
# include <qt5xdg/XdgDesktopFile>
2022-03-01 17:39:53 +08:00
using namespace UkuiSearch ;
2022-06-28 11:20:36 +08:00
AppInfoTablePrivate : : AppInfoTablePrivate ( AppInfoTable * parent ) : QObject ( parent ) , q ( parent ) , m_database ( QSqlDatabase ( ) )
2022-06-13 13:38:47 +08:00
{
2022-07-12 11:26:03 +08:00
//dbus接收数据库信号
2022-06-28 11:20:36 +08:00
2022-07-12 11:26:03 +08:00
qRegisterMetaType < AppInfoResult > ( " AppInfoResult " ) ;
qRegisterMetaType < QVector < AppInfoResult > > ( " QVector<AppInfoResult> " ) ;
qDBusRegisterMetaType < AppInfoResult > ( ) ;
qDBusRegisterMetaType < QVector < AppInfoResult > > ( ) ;
m_signalTransInterface = new QDBusInterface ( " com.ukui.search.appdb.service " ,
" /org/ukui/search/appDataBase/signalTransformer " ,
" org.ukui.search.signalTransformer " ) ;
if ( ! m_signalTransInterface - > isValid ( ) ) {
2022-06-28 11:20:36 +08:00
qCritical ( ) < < " Create privateDirWatcher Interface Failed Because: " < < QDBusConnection : : sessionBus ( ) . lastError ( ) ;
return ;
} else {
2022-07-12 11:26:03 +08:00
connect ( m_signalTransInterface , SIGNAL ( appDBItemsAdd ( QVector < AppInfoResult > ) ) , this , SLOT ( sendAppDBItemsAdd ( QVector < AppInfoResult > ) ) ) ;
connect ( m_signalTransInterface , SIGNAL ( appDBItemsUpdate ( QVector < AppInfoResult > ) ) , this , SLOT ( sendAppDBItemsUpdate ( QVector < AppInfoResult > ) ) ) ;
connect ( m_signalTransInterface , SIGNAL ( appDBItemsDelete ( QStringList ) ) , this , SLOT ( sendAppDBItemsDelete ( QStringList ) ) ) ;
2022-06-28 11:20:36 +08:00
}
2022-07-12 11:26:03 +08:00
//使用dbus操作数据库获取数据
m_appDBInterface = new QDBusInterface ( " com.ukui.search.appdb.service " ,
" /org/ukui/search/appDataBase/dbManager " ,
" org.ukui.search.appDBManager " ) ;
2022-06-13 13:38:47 +08:00
while ( 1 ) {
srand ( QTime ( 0 , 0 , 0 ) . secsTo ( QTime : : currentTime ( ) ) ) ;
m_ConnectionName = QString : : fromStdString ( std : : to_string ( rand ( ) ) ) ; //随机生产链接
if ( ! QSqlDatabase : : contains ( m_ConnectionName ) )
break ;
}
qDebug ( ) < < " App info database currunt connection name: " < < m_ConnectionName ;
2022-06-23 10:12:02 +08:00
if ( ! this - > openDataBase ( ) ) {
Q_EMIT q - > DBOpenFailed ( ) ;
2022-06-28 11:20:36 +08:00
qWarning ( ) < < " Fail to open App DataBase, because: " < < m_database . lastError ( ) ;
2022-06-23 10:12:02 +08:00
}
2022-06-13 13:38:47 +08:00
}
2022-07-12 11:26:03 +08:00
void AppInfoTablePrivate : : setAppFavoritesState ( QString & desktopfp , int num )
2022-06-13 13:38:47 +08:00
{
2022-07-12 11:26:03 +08:00
m_appDBInterface - > call ( " updateFavoritesState " , desktopfp , num ) ;
2022-06-13 13:38:47 +08:00
}
2022-07-12 11:26:03 +08:00
void AppInfoTablePrivate : : setAppTopState ( QString & desktopfp , int num )
2022-06-13 13:38:47 +08:00
{
2022-07-12 11:26:03 +08:00
m_appDBInterface - > call ( " updateTopState " , desktopfp , num ) ;
2022-06-13 13:38:47 +08:00
}
2022-07-12 11:26:03 +08:00
bool AppInfoTablePrivate : : changeFavoriteAppPos ( const QString & desktopfp , int pos )
2022-06-13 13:38:47 +08:00
{
2022-07-12 11:26:03 +08:00
QDBusReply < bool > reply = m_appDBInterface - > call ( " changeFavoriteAppPos " , desktopfp , pos ) ;
if ( reply . isValid ( ) ) {
return reply . value ( ) ;
2022-06-28 11:20:36 +08:00
} else {
2022-07-12 11:26:03 +08:00
qDebug ( ) < < m_appDBInterface - > lastError ( ) ;
return false ;
2022-06-28 11:20:36 +08:00
}
}
2022-07-12 11:26:03 +08:00
bool AppInfoTablePrivate : : changeTopAppPos ( const QString & desktopfp , int pos )
2022-06-28 11:20:36 +08:00
{
2022-07-12 11:26:03 +08:00
QDBusReply < bool > reply = m_appDBInterface - > call ( " changeTopAppPos " , desktopfp , pos ) ;
if ( reply . isValid ( ) ) {
return reply . value ( ) ;
2022-06-13 13:38:47 +08:00
} else {
2022-07-12 11:26:03 +08:00
qDebug ( ) < < m_appDBInterface - > lastError ( ) ;
return false ;
2022-06-13 13:38:47 +08:00
}
}
2022-06-28 11:20:36 +08:00
bool AppInfoTablePrivate : : getAppInfoResults ( QVector < AppInfoResult > & appInfoResults )
2022-06-13 13:38:47 +08:00
{
2022-07-12 11:26:03 +08:00
QDBusReply < QVector < AppInfoResult > > reply = m_appDBInterface - > call ( " getAppInfoResults " ) ;
if ( reply . isValid ( ) ) {
appInfoResults = reply . value ( ) ;
return true ;
2022-06-13 13:38:47 +08:00
} else {
2022-07-12 11:26:03 +08:00
return false ;
2022-06-13 13:38:47 +08:00
}
}
bool AppInfoTablePrivate : : getAppLockState ( QString & desktopfp , size_t & num )
{
2022-07-12 11:26:03 +08:00
QDBusReply < int > reply = m_appDBInterface - > call ( " getAppLockState " , desktopfp ) ;
if ( ! reply . isValid ( ) ) {
qWarning ( ) < < m_appDBInterface - > lastError ( ) ;
return false ;
2022-06-13 13:38:47 +08:00
} else {
2022-07-12 11:26:03 +08:00
num = reply . value ( ) ;
if ( num = = - 1 ) {
qWarning ( ) < < " There's something wrong while using database " ;
return false ;
}
return true ;
2022-06-13 13:38:47 +08:00
}
}
bool AppInfoTablePrivate : : getAppTopState ( QString & desktopfp , size_t & num )
{
2022-07-12 11:26:03 +08:00
QDBusReply < int > reply = m_appDBInterface - > call ( " getAppTopState " , desktopfp ) ;
if ( ! reply . isValid ( ) ) {
qWarning ( ) < < m_appDBInterface - > lastError ( ) ;
return false ;
2022-06-13 13:38:47 +08:00
} else {
2022-07-12 11:26:03 +08:00
num = reply . value ( ) ;
if ( num = = - 1 ) {
qWarning ( ) < < " There's something wrong while using database " ;
return false ;
}
return true ;
2022-06-13 13:38:47 +08:00
}
}
bool AppInfoTablePrivate : : getAppLaunchedState ( QString & desktopfp , size_t & num )
{
2022-07-12 11:26:03 +08:00
QDBusReply < int > reply = m_appDBInterface - > call ( " getAppLaunchedState " , desktopfp ) ;
if ( ! reply . isValid ( ) ) {
qWarning ( ) < < m_appDBInterface - > lastError ( ) ;
return false ;
2022-06-13 13:38:47 +08:00
} else {
2022-07-12 11:26:03 +08:00
num = reply . value ( ) ;
if ( num = = - 1 ) {
qWarning ( ) < < " There's something wrong while using database " ;
return false ;
}
return true ;
2022-06-13 13:38:47 +08:00
}
}
bool AppInfoTablePrivate : : getAppFavoriteState ( QString & desktopfp , size_t & num )
{
2022-07-12 11:26:03 +08:00
QDBusReply < int > reply = m_appDBInterface - > call ( " getAppFavoriteState " , desktopfp ) ;
if ( ! reply . isValid ( ) ) {
qWarning ( ) < < m_appDBInterface - > lastError ( ) ;
return false ;
} else {
num = reply . value ( ) ;
if ( num = = - 1 ) {
qWarning ( ) < < " There's something wrong while using database " ;
return false ;
2022-06-13 13:38:47 +08:00
}
2022-07-12 11:26:03 +08:00
return true ;
}
}
bool AppInfoTablePrivate : : getAppCategory ( QString & desktopfp , QString & category )
{
QDBusReply < QString > reply = m_appDBInterface - > call ( " getAppCategory " , desktopfp ) ;
if ( reply . isValid ( ) ) {
category = reply . value ( ) ;
return true ;
2022-06-13 13:38:47 +08:00
} else {
2022-07-12 11:26:03 +08:00
qDebug ( ) < < m_appDBInterface - > lastError ( ) ;
return false ;
2022-06-13 13:38:47 +08:00
}
}
bool AppInfoTablePrivate : : addAppShortcut2Desktop ( QString & desktopfp )
{
bool res ( true ) ;
QString dirpath = QStandardPaths : : writableLocation ( QStandardPaths : : DesktopLocation ) ;
QFileInfo fileInfo ( desktopfp ) ;
QString desktopfn = fileInfo . fileName ( ) ;
QFile file ( desktopfp ) ;
QString newName = QString ( dirpath + " / " + desktopfn ) ;
if ( file . copy ( QString ( dirpath + " / " + desktopfn ) ) ) {
QProcess process ;
process . startDetached ( QString ( " chmod a+x %1 " ) . arg ( newName ) ) ;
} else {
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : addAppShortcut2Panel ( QString & desktopfp )
{
bool res ( true ) ;
QDBusInterface iface ( " com.ukui.panel.desktop " ,
" / " ,
" com.ukui.panel.desktop " ,
QDBusConnection : : sessionBus ( ) ) ;
if ( iface . isValid ( ) ) {
QDBusReply < bool > isExist = iface . call ( " CheckIfExist " , desktopfp ) ;
if ( isExist ) {
qWarning ( ) < < " Add shortcut to panel failed, because it is already existed! " ;
} else {
QDBusReply < bool > ret = iface . call ( " AddToTaskbar " , desktopfp ) ;
if ( ret . value ( ) ) {
qDebug ( ) < < " Add shortcut to panel success. " ;
} else {
qWarning ( ) < < " Add shortcut to panel failed, reply: " < < ret . error ( ) ;
res = false ;
}
}
} else {
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : searchInstallApp ( QString & keyWord , QStringList & installAppInfoRes )
{
bool res ( true ) ;
2022-06-28 11:20:36 +08:00
if ( m_database . transaction ( ) ) {
QSqlQuery sql ( m_database ) ;
2022-06-13 13:38:47 +08:00
QString cmd ;
if ( keyWord . size ( ) < 2 ) {
2022-07-12 11:26:03 +08:00
cmd = QString ( " SELECT DESKTOP_FILE_PATH,LOCAL_NAME,ICON FROM APPINFO WHERE LOCAL_NAME OR NAME_EN OR NAME_ZH OR FIRST_LETTER_OF_PINYIN LIKE '%%0%' ORDER BY FAVORITES DESC " )
2022-06-13 13:38:47 +08:00
. arg ( keyWord ) ;
} else {
2022-07-12 11:26:03 +08:00
cmd = QString ( " SELECT DESKTOP_FILE_PATH,LOCAL_NAME,ICON FROM APPINFO WHERE LOCAL_NAME OR NAME_EN OR NAME_ZH OR PINYIN_NAME OR FIRST_LETTER_OF_PINYIN LIKE '%%0%' ORDER BY FAVORITES DESC " )
2022-06-13 13:38:47 +08:00
. arg ( keyWord ) ;
}
if ( sql . exec ( cmd ) ) {
while ( sql . next ( ) ) {
installAppInfoRes < < sql . value ( 0 ) . toString ( ) < < sql . value ( 1 ) . toString ( ) < < sql . value ( 2 ) . toString ( ) ;
}
} else {
2022-06-28 11:20:36 +08:00
qWarning ( ) < < QString ( " cmd %0 failed! " ) . arg ( cmd ) < < m_database . lastError ( ) ;
2022-06-13 13:38:47 +08:00
res = false ;
}
2022-06-28 11:20:36 +08:00
if ( ! m_database . commit ( ) ) {
2022-06-13 13:38:47 +08:00
qWarning ( ) < < " Failed to commit ! " < < cmd ;
2022-06-28 11:20:36 +08:00
m_database . rollback ( ) ;
2022-06-13 13:38:47 +08:00
res = false ;
}
} else {
qWarning ( ) < < " Failed to start transaction mode!!! " ;
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : searchInstallApp ( QStringList & keyWord , QStringList & installAppInfoRes )
{
bool res ( true ) ;
2022-06-28 11:20:36 +08:00
if ( m_database . transaction ( ) or keyWord . size ( ) ! = 0 ) {
QSqlQuery sql ( m_database ) ;
2022-06-13 13:38:47 +08:00
QString cmd ;
if ( keyWord . at ( 0 ) . size ( ) < 2 ) {
2022-07-12 11:26:03 +08:00
cmd = QString ( " SELECT DESKTOP_FILE_PATH,LOCAL_NAME,ICON,NAME_EN,NAME_ZH,FIRST_LETTER_OF_PINYIN FROM APPINFO "
2022-06-13 13:38:47 +08:00
" WHERE LOCAL_NAME LIKE '%%0%' OR NAME_EN LIKE '%%0%' OR NAME_ZH LIKE '%%0%' OR FIRST_LETTER_OF_PINYIN LIKE '%%0%' " )
. arg ( keyWord . at ( 0 ) ) ;
} else {
2022-07-12 11:26:03 +08:00
cmd = QString ( " SELECT DESKTOP_FILE_PATH,LOCAL_NAME,ICON,NAME_EN,NAME_ZH,FIRST_LETTER_OF_PINYIN FROM APPINFO "
2022-06-13 13:38:47 +08:00
" WHERE LOCAL_NAME LIKE '%%0%' OR NAME_EN LIKE '%%0%' OR NAME_ZH LIKE '%%0%' OR PINYIN_NAME LIKE '%%0%' OR FIRST_LETTER_OF_PINYIN LIKE '%%0%' " )
. arg ( keyWord . at ( 0 ) ) ;
}
for ( int i = 0 ; + + i < keyWord . size ( ) ; ) {
if ( keyWord . at ( i ) . size ( ) < 2 ) {
cmd + = QString ( " AND (LOCAL_NAME LIKE '%%1%' OR NAME_EN LIKE '%%1%' OR NAME_ZH LIKE '%%1%' OR FIRST_LETTER_OF_PINYIN LIKE '%%1%') " )
. arg ( keyWord . at ( i ) ) ;
} else {
cmd + = QString ( " AND (LOCAL_NAME LIKE '%%1%' OR NAME_EN LIKE '%%1%' OR NAME_ZH LIKE '%%1%' OR PINYIN_NAME LIKE '%%1%' OR FIRST_LETTER_OF_PINYIN LIKE '%%1%') " )
. arg ( keyWord . at ( i ) ) ;
}
}
cmd + = QString ( " ORDER BY LENGTH(LOCAL_NAME) " ) ;
if ( sql . exec ( cmd ) ) {
while ( sql . next ( ) ) {
installAppInfoRes < < sql . value ( 0 ) . toString ( ) < < sql . value ( 1 ) . toString ( ) < < sql . value ( 2 ) . toString ( ) ;
}
} else {
2022-06-28 11:20:36 +08:00
qWarning ( ) < < QString ( " cmd %0 failed! " ) . arg ( cmd ) < < m_database . lastError ( ) ;
2022-06-13 13:38:47 +08:00
res = false ;
}
2022-06-28 11:20:36 +08:00
if ( ! m_database . commit ( ) ) {
2022-06-13 13:38:47 +08:00
qWarning ( ) < < " Failed to commit ! " < < cmd ;
2022-06-28 11:20:36 +08:00
m_database . rollback ( ) ;
2022-06-13 13:38:47 +08:00
res = false ;
}
} else {
qWarning ( ) < < " Failed to start transaction mode!!! keyword size: " < < keyWord . size ( ) ;
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : uninstallApp ( QString & desktopfp )
{
bool res ( false ) ;
2022-06-28 14:00:57 +08:00
QString cmd = QString ( " kylin-uninstaller %1 " )
. arg ( desktopfp . toLocal8Bit ( ) . data ( ) ) ;
res = QProcess : : startDetached ( cmd ) ;
qDebug ( ) < < " kylin-uninstaller uninstall: " < < cmd < < res ;
return res ;
2022-06-13 13:38:47 +08:00
2022-06-28 14:00:57 +08:00
/*
2022-06-13 13:38:47 +08:00
bool isOsReleaseUbuntu ( false ) ;
QFile file ( " /etc/os-release " ) ;
if ( file . open ( QFile : : ReadOnly ) ) {
QByteArray line = file . readLine ( ) ;
file . close ( ) ;
if ( QString ( line ) . contains ( " Ubuntu " ) ) { //目前已无效
isOsReleaseUbuntu = true ;
}
}
QString cmd ;
QProcess process ;
if ( ! isOsReleaseUbuntu ) {
cmd = QString ( " kylin-uninstaller %1 " )
. arg ( desktopfp . toLocal8Bit ( ) . data ( ) ) ;
res = QProcess : : startDetached ( cmd ) ;
qDebug ( ) < < " kylin-uninstaller uninstall: " < < cmd < < res ;
} else {
cmd = QString ( " dpkg -S " + desktopfp ) ;
process . start ( " sh " , QStringList ( ) < < " -c " < < cmd ) ;
process . waitForFinished ( ) ;
QString output = process . readAllStandardOutput ( ) . trimmed ( ) ;
QString packageName = output . split ( " : " ) . at ( 0 ) ;
cmd = QString ( " kylin-installer -remove %0 " )
. arg ( packageName . toLocal8Bit ( ) . data ( ) ) ;
res = QProcess : : startDetached ( cmd ) ;
qDebug ( ) < < " dpkg -S uninstall: " < < cmd < < res ;
}
return res ;
2022-06-28 14:00:57 +08:00
*/
2022-06-13 13:38:47 +08:00
}
QString AppInfoTablePrivate : : lastError ( ) const
{
2022-06-28 11:20:36 +08:00
return m_database . lastError ( ) . text ( ) ;
2022-06-13 13:38:47 +08:00
}
2022-06-28 14:00:57 +08:00
bool AppInfoTablePrivate : : setAppLaunchTimes ( QString & desktopfp , size_t num )
{
bool res ( true ) ;
if ( m_database . transaction ( ) ) {
QSqlQuery sql ( m_database ) ;
QString cmd = QString ( " UPDATE appInfo SET MODIFYED_TIME='%0', LAUNCH_TIMES=%1, LAUNCHED=%2 WHERE DESKTOP_FILE_PATH='%3' " )
. arg ( QDateTime : : currentDateTime ( ) . toString ( " yyyy-MM-dd hh:mm:ss " ) )
. arg ( num )
. arg ( 1 )
. arg ( desktopfp ) ;
if ( ! sql . exec ( cmd ) ) {
qWarning ( ) < < " Set app favorites state failed! " < < m_database . lastError ( ) ;
res = false ;
}
if ( ! m_database . commit ( ) ) {
qWarning ( ) < < " Failed to commit ! " < < cmd ;
m_database . rollback ( ) ;
res = false ;
}
} else {
qWarning ( ) < < " Failed to start transaction mode!!! " ;
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : updateAppLaunchTimes ( QString & desktopfp )
{
bool res ( true ) ;
if ( m_database . transaction ( ) ) {
QSqlQuery sql ( m_database ) ;
2022-07-12 11:26:03 +08:00
QString cmd = QString ( " SELECT LAUNCH_TIMES FROM APPINFO WHERE DESKTOP_FILE_PATH='%1' " ) . arg ( desktopfp ) ;
2022-06-28 14:00:57 +08:00
if ( sql . exec ( cmd ) ) {
if ( sql . next ( ) ) {
cmd = QString ( " UPDATE appInfo SET MODIFYED_TIME='%0', LAUNCH_TIMES=%1, LAUNCHED=%2 WHERE DESKTOP_FILE_PATH='%3' " )
. arg ( QDateTime : : currentDateTime ( ) . toString ( " yyyy-MM-dd hh:mm:ss " ) )
. arg ( sql . value ( 0 ) . toInt ( ) + 1 )
. arg ( 1 )
. arg ( desktopfp ) ;
if ( ! sql . exec ( cmd ) ) {
qWarning ( ) < < " Set app favorites state failed! " < < m_database . lastError ( ) ;
res = false ;
}
} else {
qWarning ( ) < < " Failed to exec next! " < < cmd ;
res = false ;
}
} else {
qWarning ( ) < < " Failed to exec: " < < cmd ;
res = false ;
}
if ( ! m_database . commit ( ) ) {
qWarning ( ) < < " Failed to commit ! " < < cmd ;
m_database . rollback ( ) ;
res = false ;
}
} else {
qWarning ( ) < < " Failed to start transaction mode!!! " ;
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : setAppLockState ( QString & desktopfp , size_t num )
{
bool res ( true ) ;
if ( m_database . transaction ( ) ) {
QSqlQuery sql ( m_database ) ;
QString cmd = QString ( " UPDATE appInfo SET MODIFYED_TIME='%0', LOCK=%1 WHERE DESKTOP_FILE_PATH='%2' " )
. arg ( QDateTime : : currentDateTime ( ) . toString ( " yyyy-MM-dd hh:mm:ss " ) )
. arg ( num )
. arg ( desktopfp ) ;
if ( ! sql . exec ( cmd ) ) {
qWarning ( ) < < " Set app favorites state failed! " < < m_database . lastError ( ) ;
res = false ;
}
if ( ! m_database . commit ( ) ) {
qWarning ( ) < < " Failed to commit ! " < < cmd ;
m_database . rollback ( ) ;
res = false ;
}
} else {
qWarning ( ) < < " Failed to start transaction mode!!! " ;
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : getAllAppDesktopList ( QStringList & list )
{
bool res ( true ) ;
QSqlQuery sql ( m_database ) ;
2022-07-12 11:26:03 +08:00
QString cmd = QString ( " SELECT DESKTOP_FILE_PATH FROM APPINFO " ) ;
2022-06-28 14:00:57 +08:00
if ( sql . exec ( cmd ) ) {
while ( sql . next ( ) ) {
list . append ( sql . value ( 0 ) . toString ( ) ) ;
}
} else {
qWarning ( ) < < QString ( " cmd %0 failed! " ) . arg ( cmd ) < < m_database . lastError ( ) ;
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : getFavoritesAppList ( QStringList & list )
{
bool res ( true ) ;
QSqlQuery sql ( m_database ) ;
2022-07-12 11:26:03 +08:00
QString cmd = QString ( " SELECT DESKTOP_FILE_PATH FROM APPINFO WHERE FAVORITES!=0 ORDER BY FAVORITES " ) ;
2022-06-28 14:00:57 +08:00
if ( sql . exec ( cmd ) ) {
while ( sql . next ( ) ) {
list . append ( sql . value ( 0 ) . toString ( ) ) ;
}
} else {
qWarning ( ) < < QString ( " cmd %0 failed! " ) . arg ( cmd ) < < m_database . lastError ( ) ;
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : getTopAppList ( QStringList & list )
{
bool res ( true ) ;
QSqlQuery sql ( m_database ) ;
2022-07-12 11:26:03 +08:00
QString cmd = QString ( " SELECT DESKTOP_FILE_PATH FROM APPINFO WHERE TOP!=0 ORDER BY TOP " ) ;
2022-06-28 14:00:57 +08:00
if ( sql . exec ( cmd ) ) {
while ( sql . next ( ) ) {
list . append ( sql . value ( 0 ) . toString ( ) ) ;
}
} else {
qWarning ( ) < < QString ( " cmd %0 failed! " ) . arg ( cmd ) < < m_database . lastError ( ) ;
res = false ;
}
return res ;
}
bool AppInfoTablePrivate : : getLaunchTimesAppList ( QStringList & list )
{
bool res ( true ) ;
if ( m_database . transaction ( ) ) {
QSqlQuery sql ( m_database ) ;
QSqlQuery sqlque ( m_database ) ;
2022-07-12 11:26:03 +08:00
QString cmd = QString ( " SELECT DESKTOP_FILE_PATH FROM APPINFO ORDER BY LAUNCH_TIMES " ) ;
2022-06-28 14:00:57 +08:00
int count = 0 ;
if ( sql . exec ( cmd ) ) {
while ( sql . next ( ) ) {
list . append ( sql . value ( 0 ) . toString ( ) ) ;
cmd = QString ( " UPDATE appInfo SET TOP=%1 WHERE DESKTOP_FILE_PATH='%2' " )
. arg ( + + count )
. arg ( sql . value ( 0 ) . toString ( ) ) ;
if ( ! sqlque . exec ( cmd ) ) {
qWarning ( ) < < QString ( " cmd %0 failed! " ) . arg ( cmd ) < < m_database . lastError ( ) ;
res = false ;
break ;
}
}
} else {
qWarning ( ) < < QString ( " cmd %0 failed! " ) . arg ( cmd ) < < m_database . lastError ( ) ;
res = false ;
}
if ( ! m_database . commit ( ) ) {
qWarning ( ) < < " Failed to commit ! " < < cmd ;
m_database . rollback ( ) ;
res = false ;
}
} else {
qWarning ( ) < < " Failed to start transaction mode!!! " ;
res = false ;
}
return res ;
}
2022-06-13 13:38:47 +08:00
AppInfoTablePrivate : : ~ AppInfoTablePrivate ( )
{
this - > closeDataBase ( ) ;
}
2022-06-23 10:12:02 +08:00
bool AppInfoTablePrivate : : initDateBaseConnection ( )
2022-06-13 13:38:47 +08:00
{
2022-06-28 11:20:36 +08:00
m_database . setDatabaseName ( APP_DATABASE_PATH + APP_DATABASE_NAME ) ;
if ( ! m_database . open ( ) ) {
qWarning ( ) < < m_database . lastError ( ) ;
2022-06-23 10:12:02 +08:00
return false ;
// QApplication::quit();
2022-06-13 13:38:47 +08:00
}
2022-06-23 10:12:02 +08:00
return true ;
2022-06-13 13:38:47 +08:00
}
2022-06-23 10:12:02 +08:00
bool AppInfoTablePrivate : : openDataBase ( )
2022-06-13 13:38:47 +08:00
{
2022-06-28 11:20:36 +08:00
m_database = QSqlDatabase : : addDatabase ( " QSQLITE " , m_ConnectionName ) ;
m_database . setDatabaseName ( APP_DATABASE_PATH + APP_DATABASE_NAME ) ;
2022-06-13 13:38:47 +08:00
2022-06-28 11:20:36 +08:00
if ( ! m_database . open ( ) ) {
2022-06-23 10:12:02 +08:00
return false ;
2022-06-13 13:38:47 +08:00
}
2022-06-23 10:12:02 +08:00
return true ;
2022-06-13 13:38:47 +08:00
}
void AppInfoTablePrivate : : closeDataBase ( )
2022-03-01 17:39:53 +08:00
{
2022-06-28 11:20:36 +08:00
m_database . close ( ) ;
// delete m_database;
2022-06-13 13:38:47 +08:00
QSqlDatabase : : removeDatabase ( m_ConnectionName ) ;
2022-03-01 17:39:53 +08:00
}
2022-06-28 11:20:36 +08:00
void AppInfoTablePrivate : : sendAppDBItemsUpdate ( QVector < AppInfoResult > results )
{
Q_EMIT q - > appDBItems2BUpdate ( results ) ;
}
void AppInfoTablePrivate : : sendAppDBItemsAdd ( QVector < AppInfoResult > results )
{
Q_EMIT q - > appDBItems2BAdd ( results ) ;
}
void AppInfoTablePrivate : : sendAppDBItemsDelete ( QStringList desktopfps )
{
Q_EMIT q - > appDBItems2BDelete ( desktopfps ) ;
}
2022-03-01 17:39:53 +08:00
AppInfoTable : : AppInfoTable ( QObject * parent ) : QObject ( parent ) , d ( new AppInfoTablePrivate ( this ) )
{
}
2022-06-13 13:38:47 +08:00
2022-07-12 11:26:03 +08:00
void AppInfoTable : : setAppFavoritesState ( QString & desktopfp , size_t num )
2022-06-13 13:38:47 +08:00
{
return d - > setAppFavoritesState ( desktopfp , num ) ;
}
2022-07-12 11:26:03 +08:00
void AppInfoTable : : setAppTopState ( QString & desktopfp , size_t num )
2022-06-13 13:38:47 +08:00
{
return d - > setAppTopState ( desktopfp , num ) ;
}
bool AppInfoTable : : getAppCategory ( QString & desktopfp , QString & category )
{
return d - > getAppCategory ( desktopfp , category ) ;
}
2022-06-28 11:20:36 +08:00
bool AppInfoTable : : changeFavoriteAppPos ( const QString & desktopfp , size_t pos )
{
return d - > changeFavoriteAppPos ( desktopfp , pos ) ;
}
bool AppInfoTable : : changeTopAppPos ( const QString & desktopfp , size_t pos )
{
return d - > changeTopAppPos ( desktopfp , pos ) ;
}
bool AppInfoTable : : getAppInfoResults ( QVector < AppInfoResult > & appInfoResults )
2022-06-13 13:38:47 +08:00
{
return d - > getAppInfoResults ( appInfoResults ) ;
}
bool AppInfoTable : : getAppLockState ( QString & desktopfp , size_t & num )
{
return d - > getAppLockState ( desktopfp , num ) ;
}
bool AppInfoTable : : getAppTopState ( QString & desktopfp , size_t & num )
{
return d - > getAppTopState ( desktopfp , num ) ;
}
bool AppInfoTable : : getAppLaunchedState ( QString & desktopfp , size_t & num )
{
return d - > getAppLaunchedState ( desktopfp , num ) ;
}
bool AppInfoTable : : getAppFavoriteState ( QString & desktopfp , size_t & num )
{
return d - > getAppFavoriteState ( desktopfp , num ) ;
}
bool AppInfoTable : : addAppShortcut2Desktop ( QString & desktopfp )
{
return d - > addAppShortcut2Desktop ( desktopfp ) ;
}
bool AppInfoTable : : addAppShortcut2Panel ( QString & desktopfp )
{
return d - > addAppShortcut2Panel ( desktopfp ) ;
}
bool AppInfoTable : : searchInstallApp ( QString & keyWord , QStringList & installAppInfoRes )
{
return d - > searchInstallApp ( keyWord , installAppInfoRes ) ;
}
bool AppInfoTable : : searchInstallApp ( QStringList & keyWord , QStringList & installAppInfoRes )
{
return d - > searchInstallApp ( keyWord , installAppInfoRes ) ;
}
bool AppInfoTable : : uninstallApp ( QString & desktopfp )
{
return d - > uninstallApp ( desktopfp ) ;
}
QString AppInfoTable : : lastError ( ) const
{
return d - > lastError ( ) ;
}
2022-06-28 14:00:57 +08:00
//下面接口暂时没啥用,不外放。
bool AppInfoTable : : setAppLaunchTimes ( QString & desktopfp , size_t num )
{
return d - > setAppLaunchTimes ( desktopfp , num ) ;
}
bool AppInfoTable : : updateAppLaunchTimes ( QString & desktopfp )
{
return d - > updateAppLaunchTimes ( desktopfp ) ;
}
bool AppInfoTable : : setAppLockState ( QString & desktopfp , size_t num )
{
return d - > setAppLockState ( desktopfp , num ) ;
}
bool AppInfoTable : : getAllAppDesktopList ( QStringList & list )
{
return d - > getAllAppDesktopList ( list ) ;
}
bool AppInfoTable : : getFavoritesAppList ( QStringList & list )
{
return d - > getFavoritesAppList ( list ) ;
}
bool AppInfoTable : : getTopAppList ( QStringList & list )
{
return d - > getTopAppList ( list ) ;
}
bool AppInfoTable : : getLaunchTimesAppList ( QStringList & list )
{
return d - > getLaunchTimesAppList ( list ) ;
}