/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-23 19:35:21 UTC
  • Revision ID: tim@ed.am-20160223193521-2vgtxbfos50rrpku
renamed version -> VERSION

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
                        lines = list()
 
47
 
 
48
                # parse config
 
49
                config = dict();
 
50
                for line in lines:
 
51
 
 
52
                        # clean up line and skip empty lines and comments
 
53
                        line = line.strip();
 
54
                        if not len( line ): continue
 
55
                        if line[ :1 ] == '#': continue
 
56
 
 
57
                        # if section
 
58
                        matches = re.search( '^\[(.*)\]$', line );
 
59
                        if matches:
 
60
                                section = matches.group( 1 )
 
61
                                continue
 
62
                        matches = re.search( '^([a-z0-9_-]+)\\s*=\\s*(.*)$', line, re.I )
 
63
                        if matches:
 
64
                                name = matches.group( 1 )
 
65
                                value = matches.group( 2 )
 
66
 
 
67
                                # parse value
 
68
                                matches = re.search(
 
69
                                        '^(["\'])((?:\\.|[^\\1])*)\\1(?:\\s*#.*)?$', value )
 
70
                                if matches:
 
71
                                        value = matches.group( 2 )
 
72
                                else:
 
73
                                        matches = re.search( '^([^#]+?)(?:\\s*#.*)?$', value )
 
74
                                        if( matches ):
 
75
                                                value = matches.group( 1 )
 
76
                                config[ "%s.%s" % ( section, name ) ] = value
 
77
                                #print "  %s.%s = %s" % ( section, name, value )
 
78
 
 
79
                # use config
 
80
                if 'stdhome.home-dir' in config:
 
81
                        the.home_dir = config[ 'stdhome.home-dir' ]
 
82
 
 
83
                # read file matcher lists
42
84
                self.symlinks = FileMatcher( config_file, 'symlink' )
43
85
                self.ignores = FileMatcher( config_file, 'ignore' )
 
86
 
 
87
 
 
88
        def to_bool( self, value ):
 
89
                value = value.lower()
 
90
                return value == 't' or value == 'true' or value == 'yes' or \
 
91
                        ( re.search( '^[0-9]+$', value ) and int( value ) != 0 )