[790] | 1 | #!/usr/bin/env python
|
---|
| 2 | # -*- coding: utf-8 -*-
|
---|
| 3 |
|
---|
[791] | 4 | """
|
---|
| 5 | kreadconfig.py dumps KDE configuration files.
|
---|
| 6 | It is usefull for debugging KDE Kiosks settings,
|
---|
| 7 | where multiple config files are merged into the final configuration.
|
---|
| 8 |
|
---|
| 9 | The directory hierarchie for config files
|
---|
| 10 | is based on the KDEDIRS environment variable
|
---|
| 11 | and can be made visible by the command
|
---|
| 12 | kde4-config --path config
|
---|
| 13 |
|
---|
| 14 | kreadconfig has a similiar purpose,
|
---|
| 15 | but is limited to a single value
|
---|
| 16 | """
|
---|
| 17 |
|
---|
| 18 | # $Id: kreadconfig.py 817 2010-02-01 15:20:49Z joergs $
|
---|
| 19 |
|
---|
[790] | 20 | import sys
|
---|
[793] | 21 | from PyKDE4.kdecore import ki18n, KAboutData, KCmdLineArgs, KCmdLineOptions, KConfig
|
---|
[790] | 22 | from PyKDE4.kdeui import KApplication
|
---|
| 23 |
|
---|
| 24 | #import pprint
|
---|
| 25 | #pp = pprint.PrettyPrinter(indent=4)
|
---|
| 26 |
|
---|
| 27 | def getFullName( config ):
|
---|
[792] | 28 | """get the full name of a config group"""
|
---|
[790] | 29 | if config.name() == "<default>":
|
---|
| 30 | return ""
|
---|
[793] | 31 |
|
---|
| 32 | # check, if function config.parent is defined
|
---|
| 33 | try: config.parent
|
---|
| 34 | except AttributeError:
|
---|
| 35 | # x doesn't exist, do something
|
---|
| 36 | return "[" + config.name() + "]"
|
---|
[790] | 37 | else:
|
---|
[793] | 38 | # x exists, do something else
|
---|
| 39 | parentsNames = getFullName( config.parent() )
|
---|
[790] | 40 | return parentsNames + "[" + config.name() + "]"
|
---|
| 41 |
|
---|
[793] | 42 |
|
---|
| 43 |
|
---|
[790] | 44 | def dumpGroup( config ):
|
---|
[792] | 45 | """print the entries of a config group"""
|
---|
[793] | 46 |
|
---|
| 47 | # print secton name only if entries exists
|
---|
| 48 | if config.entryMap():
|
---|
| 49 | print getFullName( config )
|
---|
| 50 | #print dir(config)
|
---|
[817] | 51 | #for i in config.entryMap():
|
---|
| 52 | for i in config.keyList():
|
---|
[796] | 53 | immutaleString = ''
|
---|
| 54 | if config.isEntryImmutable( i ):
|
---|
| 55 | immutaleString = "[$i]"
|
---|
[793] | 56 | try:
|
---|
[796] | 57 | print i + immutaleString, "=", config.readEntry( i ).toUtf8()
|
---|
[793] | 58 | except AttributeError:
|
---|
[796] | 59 | # ignore when readEntry does not exist
|
---|
| 60 | print i + " => readEntry not defined"
|
---|
| 61 | #, i.count(), dir(i)
|
---|
| 62 | pass
|
---|
[795] | 63 | except UnicodeEncodeError:
|
---|
[796] | 64 | print i + " => encoding error"
|
---|
| 65 | pass
|
---|
[790] | 66 | print
|
---|
| 67 |
|
---|
[793] | 68 |
|
---|
| 69 |
|
---|
[790] | 70 | def dumpSubGroups( config ):
|
---|
[792] | 71 | """print entries of the config group and all subgroups"""
|
---|
[790] | 72 | dumpGroup( config )
|
---|
| 73 | #print dir( config )
|
---|
| 74 | for i in config.groupList():
|
---|
| 75 | configGroup=config.group(str(i))
|
---|
| 76 | dumpSubGroups( configGroup )
|
---|
| 77 |
|
---|
| 78 |
|
---|
[792] | 79 | appName = "kreadconfig.py"
|
---|
[790] | 80 | catalog = ""
|
---|
[792] | 81 | programName = ki18n ("kreadconfig.py")
|
---|
| 82 | version = "$Rev: 817 $"
|
---|
| 83 | description = ki18n ("show KDE configuration files")
|
---|
[790] | 84 | license = KAboutData.License_GPL
|
---|
| 85 | copyright = ki18n ("(c) 2009 Jörg Steffens")
|
---|
| 86 | text = ki18n ("none")
|
---|
| 87 | homePage = "www.dass-it.de"
|
---|
| 88 | bugEmail = "rt@dass-it.de"
|
---|
| 89 |
|
---|
| 90 | aboutData = KAboutData (appName, catalog, programName, version, description,
|
---|
| 91 | license, copyright, text, homePage, bugEmail)
|
---|
[793] | 92 |
|
---|
| 93 | # command line argument handling
|
---|
| 94 | options = KCmdLineOptions()
|
---|
| 95 | options.add("+configfile", ki18n("KDE config file name"))
|
---|
[790] | 96 |
|
---|
[793] | 97 | KCmdLineArgs.init(sys.argv, aboutData)
|
---|
| 98 | # Register the supported options
|
---|
| 99 | KCmdLineArgs.addCmdLineOptions( options )
|
---|
| 100 |
|
---|
[790] | 101 | app = KApplication ()
|
---|
| 102 |
|
---|
[793] | 103 | args = KCmdLineArgs.parsedArgs();
|
---|
[790] | 104 |
|
---|
[793] | 105 | # TODO: why is this not detected automatically?
|
---|
| 106 | if args.count() != 1:
|
---|
| 107 | args.usage()
|
---|
| 108 |
|
---|
| 109 | configfilename = args.arg(0)
|
---|
| 110 | #print configfilename
|
---|
| 111 |
|
---|
| 112 | config = KConfig(configfilename, KConfig.NoGlobals)
|
---|
| 113 |
|
---|
| 114 |
|
---|
| 115 | # only show the sub-groups.
|
---|
| 116 | # top-level entries will be in the section [MainWindow]
|
---|
| 117 | #dumpSubGroups( config )
|
---|
[790] | 118 | for i in config.groupList():
|
---|
[793] | 119 | configGroup=config.group(str(i))
|
---|
[790] | 120 | dumpSubGroups( configGroup )
|
---|