aboutsummaryrefslogtreecommitdiff
blob: eae6185bef9ef099e722e9365054af5ae042a5ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# -*- coding: UTF-8 -*-

# Copyright 2004-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

from Errors import *
import os


class FileParser:
    """
    Parse some basic key=value configuration files.
    Values are passed to the pair function.
    """
    def parse(self, file):
        if not os.path.isfile(file):
            raise InvalidConfigError(file)
        if not os.access(file, os.R_OK):
            raise PermissionError

        stream = open(file, 'r')
        for line in stream:
            line = line.strip('\n')
            if line.isspace() or line == '' or line.startswith('#'):
                continue
            else:
                index = line.find('=')
                name = line[:index]
                value = line [index+1:]

                if value == '':
                    continue
                    #raise InvalidConfigError(file)

                value = value.strip('\\\'\"')

                while value.find('${') >= 0:
                    item = value[value.find('${')+2:value.find('}')]

                    if self.config.has_key(item):
                        val = self.config[item]
                    else:
                        val = ''
                        
                    value = value.replace('${%s}' % item, val)
                
                self.pair(name,value)

        stream.close()


    def pair(self, key, value):
        pass

class EnvFileParser(FileParser):
    """
    Stores the configuation in a dictionary
    """
    def __init__(self, file):
        self.config = {}
        self.parse(file)

    def pair(self, key, value):
        self.config[key] = value

    def get_config(self):
        return self.config.copy()

class PrefsFileParser(FileParser):
    """
    Stores it in a list.
    """
    def __init__(self, file):
        self.config = []
        self.parse(file)

    def pair(self, key, value):
        self.config.append([key,value.strip('\t ').split(' ')])

    def get_config(self):
        return self.config

# vim:set expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap: