2009-05-12 01:40:57 +02:00
/*
* Copyright 2008 Aaron Seigo < aseigo @ kde . org >
*
* 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 2 ,
* 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 Library General Public
* License along with this program ; if not , write to the
* Free Software Foundation , Inc . ,
* 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 , USA .
*/
# include <iostream>
# include <QDir>
# include <QDBusInterface>
# include <KApplication>
# include <KAboutData>
# include <KCmdLineArgs>
# include <KLocale>
# include <KService>
# include <KServiceTypeTrader>
# include <KShell>
# include <KStandardDirs>
# include <Plasma/PackageStructure>
# include <Plasma/Package>
# include <Plasma/PackageMetadata>
static const char description [ ] = I18N_NOOP ( " Install, list, remove Plasma packages " ) ;
static const char version [ ] = " 0.1 " ;
void output ( const QString & msg )
{
std : : cout < < msg . toLocal8Bit ( ) . constData ( ) < < std : : endl ;
}
void runKbuildsycoca ( )
{
QDBusInterface dbus ( " org.kde.kded " , " /kbuildsycoca " , " org.kde.kbuildsycoca " ) ;
2009-05-12 01:58:03 +02:00
dbus . call ( QDBus : : NoBlock , " recreate " ) ;
2009-05-12 01:40:57 +02:00
}
2009-07-26 16:17:08 +02:00
QStringList packages ( const QStringList & types )
2009-05-12 01:40:57 +02:00
{
QStringList result ;
2009-07-26 16:17:08 +02:00
foreach ( const QString & type , types ) {
KService : : List services = KServiceTypeTrader : : self ( ) - > query ( " Plasma/ " + type ) ;
foreach ( const KService : : Ptr & service , services ) {
result < < service - > property ( " X-KDE-PluginInfo-Name " , QVariant : : String ) . toString ( ) ;
}
2009-05-12 01:40:57 +02:00
}
return result ;
}
2009-07-26 16:17:08 +02:00
void listPackages ( const QStringList & types )
2009-05-12 01:40:57 +02:00
{
2009-07-26 16:17:08 +02:00
QStringList list = packages ( types ) ;
2009-05-12 01:40:57 +02:00
list . sort ( ) ;
foreach ( const QString & package , list ) {
output ( package ) ;
}
}
int main ( int argc , char * * argv )
{
KAboutData aboutData ( " plasmapkg " , 0 , ki18n ( " Plasma Package Manager " ) ,
version , ki18n ( description ) , KAboutData : : License_GPL ,
ki18n ( " (C) 2008, Aaron Seigo " ) ) ;
aboutData . addAuthor ( ki18n ( " Aaron Seigo " ) ,
ki18n ( " Original author " ) ,
" aseigo@kde.org " ) ;
KComponentData componentData ( aboutData ) ;
KCmdLineArgs : : init ( argc , argv , & aboutData ) ;
KCmdLineOptions options ;
options . add ( " g " ) ;
options . add ( " global " , ki18n ( " For install or remove, operates on packages installed for all users. " ) ) ;
options . add ( " t " ) ;
options . add ( " type <type> " ,
ki18nc ( " theme, wallpaper, etc. are keywords, but they may be translated, as both versions "
" are recognized by the application "
" (if translated, should be same as messages with 'package type' context below) " ,
2010-04-28 01:30:40 +02:00
" The type of package, e.g. theme, wallpaper, plasmoid, dataengine, runner, layout-template, etc. " ) ,
2009-05-12 01:40:57 +02:00
" plasmoid " ) ;
options . add ( " s " ) ;
options . add ( " i " ) ;
options . add ( " install <path> " , ki18nc ( " Do not translate <path> " , " Install the package at <path> " ) ) ;
options . add ( " u " ) ;
options . add ( " upgrade <path> " , ki18nc ( " Do not translate <path> " , " Upgrade the package at <path> " ) ) ;
options . add ( " l " ) ;
options . add ( " list " , ki18n ( " List installed packages " ) ) ;
options . add ( " r " ) ;
options . add ( " remove <name> " , ki18nc ( " Do not translate <name> " , " Remove the package named <name> " ) ) ;
options . add ( " p " ) ;
options . add ( " packageroot <path> " , ki18n ( " Absolute path to the package root. If not supplied, then the standard data directories for this KDE session will be searched instead. " ) ) ;
KCmdLineArgs : : addCmdLineOptions ( options ) ;
KApplication app ;
KCmdLineArgs * args = KCmdLineArgs : : parsedArgs ( ) ;
2009-11-03 19:37:30 +01:00
QString type = args - > getOption ( " type " ) . toLower ( ) ;
2009-05-12 01:40:57 +02:00
QString packageRoot = type ;
QString servicePrefix ;
2009-07-26 16:17:08 +02:00
QStringList pluginTypes ;
2009-05-12 01:40:57 +02:00
Plasma : : PackageStructure * installer = 0 ;
2009-11-03 19:37:30 +01:00
QString package ;
QString packageFile ;
if ( args - > isSet ( " remove " ) ) {
package = args - > getOption ( " remove " ) ;
} else if ( args - > isSet ( " upgrade " ) ) {
package = args - > getOption ( " upgrade " ) ;
} else if ( args - > isSet ( " install " ) ) {
package = args - > getOption ( " install " ) ;
}
if ( ! QDir : : isAbsolutePath ( package ) ) {
packageFile = QDir ( QDir : : currentPath ( ) + ' / ' + package ) . absolutePath ( ) ;
} else {
packageFile = package ;
}
if ( ! packageFile . isEmpty ( ) & & ( ! args - > isSet ( " type " ) | |
2010-06-17 10:15:37 +02:00
type = = i18nc ( " package type " , " wallpaper " ) . toLower ( ) | | type = = " wallpaper " ) ) {
2009-11-03 19:37:30 +01:00
// Check type for common plasma packages
Plasma : : PackageStructure package ;
package . setPath ( packageFile ) ;
QString serviceType = package . metadata ( ) . serviceType ( ) ;
if ( ! serviceType . isEmpty ( ) ) {
2010-02-24 00:11:26 +01:00
if ( serviceType = = " Plasma/Applet "
| | serviceType = = " Plasma/Containment "
| | serviceType = = " Plasma/PopupApplet " )
{
2009-11-03 19:37:30 +01:00
type = " plasmoid " ;
} else if ( serviceType = = " Plasma/DataEngine " ) {
type = " dataengine " ;
} else if ( serviceType = = " Plasma/Runner " ) {
type = " runner " ;
} else if ( serviceType = = " Plasma/Wallpaper " ) {
// This also changes type to wallpaperplugin when --type wallpaper
// was specified and we have wallpaper plugin package (instead of
// wallpaper image package)
type = " wallpaperplugin " ;
}
}
}
2009-05-12 01:40:57 +02:00
2010-06-17 10:15:37 +02:00
if ( type = = i18nc ( " package type " , " plasmoid " ) . toLower ( ) | | type = = " plasmoid " ) {
2009-05-12 01:40:57 +02:00
packageRoot = " plasma/plasmoids/ " ;
servicePrefix = " plasma-applet- " ;
2009-07-26 16:17:08 +02:00
pluginTypes < < " Applet " ;
pluginTypes < < " PopupApplet " ;
2010-02-24 00:11:26 +01:00
pluginTypes < < " Containment " ;
2010-06-17 10:15:37 +02:00
} else if ( type = = i18nc ( " package type " , " theme " ) . toLower ( ) | | type = = " theme " ) {
2009-05-12 01:40:57 +02:00
packageRoot = " desktoptheme/ " ;
2010-06-17 10:15:37 +02:00
} else if ( type = = i18nc ( " package type " , " wallpaper " ) . toLower ( ) | | type = = " wallpaper " ) {
2009-05-12 01:40:57 +02:00
packageRoot = " wallpapers/ " ;
2010-06-17 10:15:37 +02:00
} else if ( type = = i18nc ( " package type " , " dataengine " ) . toLower ( ) | | type = = " dataengine " ) {
2009-05-12 01:40:57 +02:00
packageRoot = " plasma/dataengines/ " ;
servicePrefix = " plasma-dataengine- " ;
2009-07-26 16:17:08 +02:00
pluginTypes < < " DataEngine " ;
2010-06-17 10:15:37 +02:00
} else if ( type = = i18nc ( " package type " , " runner " ) . toLower ( ) | | type = = " runner " ) {
2009-05-12 01:40:57 +02:00
packageRoot = " plasma/runners/ " ;
servicePrefix = " plasma-runner- " ;
2009-07-26 16:17:08 +02:00
pluginTypes < < " Runner " ;
2010-06-17 10:15:37 +02:00
} else if ( type = = i18nc ( " package type " , " wallpaperplugin " ) . toLower ( ) | | type = = " wallpaperplugin " ) {
2009-11-03 19:37:30 +01:00
packageRoot = " plasma/wallpapers/ " ;
servicePrefix = " plasma-wallpaper- " ;
pluginTypes < < " Wallpaper " ;
2010-06-17 10:15:37 +02:00
} else if ( type = = i18nc ( " package type " , " layout-template " ) . toLower ( ) | | type = = " layout-template " ) {
2010-04-28 01:30:40 +02:00
packageRoot = " plasma/layout-templates/ " ;
servicePrefix = " plasma-layout- " ;
pluginTypes < < " LayoutTemplate " ;
2009-05-12 01:40:57 +02:00
} else {
QString constraint = QString ( " '%1' == [X-KDE-PluginInfo-Name] " ) . arg ( packageRoot ) ;
KService : : List offers = KServiceTypeTrader : : self ( ) - > query ( " Plasma/PackageStructure " , constraint ) ;
if ( offers . isEmpty ( ) ) {
output ( i18n ( " Could not find a suitable installer for package of type %1 " , type ) ) ;
return 1 ;
}
KService : : Ptr offer = offers . first ( ) ;
QString error ;
installer = offer - > createInstance < Plasma : : PackageStructure > ( 0 , QVariantList ( ) , & error ) ;
if ( ! installer ) {
output ( i18n ( " Could not load installer for package of type %1. Error reported was: %2 " ,
type , error ) ) ;
return 1 ;
}
packageRoot = installer - > defaultPackageRoot ( ) ;
2009-07-26 16:17:08 +02:00
pluginTypes < < installer - > type ( ) ;
2009-05-12 01:40:57 +02:00
}
if ( args - > isSet ( " list " ) ) {
2009-07-26 16:17:08 +02:00
listPackages ( pluginTypes ) ;
2009-05-12 01:40:57 +02:00
} else {
// install, remove or upgrade
if ( ! installer ) {
installer = new Plasma : : PackageStructure ( ) ;
installer - > setServicePrefix ( servicePrefix ) ;
}
2009-07-20 14:59:50 +02:00
if ( args - > isSet ( " packageroot " ) & & args - > isSet ( " global " ) ) {
KCmdLineArgs : : usageError ( i18nc ( " The user entered conflicting options packageroot and global, this is the error message telling the user he can use only one " , " The packageroot and global options conflict each other, please select only one. " ) ) ;
} else if ( args - > isSet ( " packageroot " ) ) {
2009-05-12 01:40:57 +02:00
packageRoot = args - > getOption ( " packageroot " ) ;
} else if ( args - > isSet ( " global " ) ) {
packageRoot = KStandardDirs : : locate ( " data " , packageRoot ) ;
} else {
packageRoot = KStandardDirs : : locateLocal ( " data " , packageRoot ) ;
}
if ( args - > isSet ( " remove " ) | | args - > isSet ( " upgrade " ) ) {
installer - > setPath ( packageFile ) ;
Plasma : : PackageMetadata metadata = installer - > metadata ( ) ;
QString pluginName ;
if ( metadata . pluginName ( ) . isEmpty ( ) ) {
// plugin name given in command line
pluginName = package ;
} else {
// Parameter was a plasma package, get plugin name from the package
pluginName = metadata . pluginName ( ) ;
}
2009-07-26 16:17:08 +02:00
QStringList installed = packages ( pluginTypes ) ;
2009-05-12 01:40:57 +02:00
if ( installed . contains ( pluginName ) ) {
if ( installer - > uninstallPackage ( pluginName , packageRoot ) ) {
output ( i18n ( " Successfully removed %1 " , pluginName ) ) ;
} else if ( ! args - > isSet ( " upgrade " ) ) {
output ( i18n ( " Removal of %1 failed. " , pluginName ) ) ;
2009-05-12 01:58:03 +02:00
delete installer ;
2009-05-12 01:40:57 +02:00
return 1 ;
}
} else {
output ( i18n ( " Plugin %1 is not installed. " , pluginName ) ) ;
}
}
if ( args - > isSet ( " install " ) | | args - > isSet ( " upgrade " ) ) {
if ( installer - > installPackage ( packageFile , packageRoot ) ) {
output ( i18n ( " Successfully installed %1 " , packageFile ) ) ;
} else {
output ( i18n ( " Installation of %1 failed. " , packageFile ) ) ;
2009-05-12 01:58:03 +02:00
delete installer ;
2009-05-12 01:40:57 +02:00
return 1 ;
}
}
if ( package . isEmpty ( ) ) {
KCmdLineArgs : : usageError ( i18nc ( " No option was given, this is the error message telling the user he needs at least one, do not translate install, remove, upgrade nor list " , " One of install, remove, upgrade or list is required. " ) ) ;
} else {
runKbuildsycoca ( ) ;
}
}
delete installer ;
return 0 ;
}