/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to lib/stdhome/config.py

  • Committer: Tim Marston
  • Date: 2016-02-13 13:20:44 UTC
  • Revision ID: tim@ed.am-20160213132044-t5zaxhdlhjyn4t1v
moved handling of --verbose to main program; manuall parse config file (because
ConfigFileParse does not support allow_no_value in python 2.6)

Show diffs side-by-side

added added

removed removed

19
19
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
20
 
21
21
 
22
 
import ConfigParser
 
22
import os, re, errno
23
23
from file_matcher import FileMatcher
24
24
import the
25
25
 
34
34
 
35
35
 
36
36
        def read_config( self, config_file ):
37
 
                config = ConfigParser.SafeConfigParser( allow_no_value = True )
38
 
                config.read( config_file )
39
 
                if config.has_option( 'stdhome', 'home-dir' ):
40
 
                        the.home_dir = config.get( 'stdhome', 'home-dir' )
41
 
 
 
37
 
 
38
                # read file
 
39
                if the.verbose >= 1: print "reading config: %s" % ( config_file )
 
40
                file = os.path.expanduser( config_file )
 
41
                try:
 
42
                        with open( file ) as f:
 
43
                                lines = f.readlines()
 
44
                except IOError as e:
 
45
                        if e.errno != errno.ENOENT: raise
 
46
 
 
47
                # parse config
 
48
                config = dict();
 
49
                for line in lines:
 
50
 
 
51
                        # clean up line and skip empty lines and comments
 
52
                        line = line.strip();
 
53
                        if not len( line ): continue
 
54
                        if line[ :1 ] == '#': continue
 
55
 
 
56
                        # if section
 
57
                        matches = re.match( '\[(.*)\]$', line );
 
58
                        if matches:
 
59
                                section = matches.group( 1 )
 
60
                                continue
 
61
                        matches = re.match( '([a-z0-9_-]+)\\s*=\\s*(.*)$', line, re.I )
 
62
                        if matches:
 
63
                                name = matches.group( 1 )
 
64
                                value = matches.group( 2 )
 
65
 
 
66
                                # parse value
 
67
                                matches = re.match( '(["\'])((?:\\.|[^\\1])*)\\1(?:\\s*#.*)?$',
 
68
                                                                        value )
 
69
                                if matches:
 
70
                                        value = matches.group( 2 )
 
71
                                else:
 
72
                                        matches = re.match( '([^#]+?)(?:\\s*#.*)?$', value )
 
73
                                        if( matches ):
 
74
                                                value = matches.group( 1 )
 
75
                                config[ "%s.%s" % ( section, name ) ] = value
 
76
                                print "  %s.%s = %s" % ( section, name, value )
 
77
 
 
78
                # use config
 
79
                if 'stdhome.home-dir' in config:
 
80
                        the.home_dir = config[ 'stdhome.home-dir' ]
 
81
 
 
82
                # read file matcher lists
42
83
                self.symlinks = FileMatcher( config_file, 'symlink' )
43
84
                self.ignores = FileMatcher( config_file, 'ignore' )
 
85
 
 
86
 
 
87
        def to_bool( self, value ):
 
88
                value = value.lower()
 
89
                return value == 't' || value == 'true' || value == 'yes' || \
 
90
                        ( re.match( '[0-9]+$', value ) && int( value ) != 0 )