Statistics
| Branch: | Tag: | Revision:

root / kamaki / cli / config.py @ a9fca388

History | View | Annotate | Download (4.9 kB)

1
# Copyright 2011-2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
import os
35

    
36
from collections import defaultdict
37
from ConfigParser import RawConfigParser, NoOptionError, NoSectionError
38

    
39
try:
40
    from collections import OrderedDict
41
except ImportError:
42
    from kamaki.clients.commissioning.utils.ordereddict import OrderedDict
43

    
44

    
45
# Path to the file that stores the configuration
46
CONFIG_PATH = os.path.expanduser('~/.kamakirc')
47
HISTORY_PATH = os.path.expanduser('~/.kamaki.history')
48

    
49
# Name of a shell variable to bypass the CONFIG_PATH value
50
CONFIG_ENV = 'KAMAKI_CONFIG'
51

    
52
HEADER = """
53
# Kamaki configuration file
54
"""
55

    
56
DEFAULTS = {
57
    'global': {
58
        'colors': 'off',
59
        'account':  '',
60
        'token': ''
61
    },
62
    'config': {
63
        'cli': 'config_cli',
64
        'description': 'Configuration commands'
65
    },
66
    'history': {
67
        'cli': 'history_cli',
68
        'file': HISTORY_PATH
69
    },
70
    'store': {
71
        'cli': 'pithos_cli',
72
        'url': 'https://pithos.okeanos.grnet.gr/v1'
73
    },
74
    'compute': {
75
        'url': 'https://cyclades.okeanos.grnet.gr/api/v1.1'
76
    },
77
    'server': {
78
        'cli': 'cyclades_cli'
79
    },
80
    'flavor': {
81
        'cli': 'cyclades_cli'
82
    },
83
    'network': {
84
        'cli': 'cyclades_cli'
85
    },
86
    'image': {
87
        'cli': 'image_cli',
88
        'url': 'https://cyclades.okeanos.grnet.gr/plankton'
89
    },
90
    'astakos': {
91
        'cli': 'astakos_cli',
92
        'url': 'https://accounts.okeanos.grnet.gr'
93
    }
94
}
95

    
96

    
97
class Config(RawConfigParser):
98
    def __init__(self, path=None):
99
        RawConfigParser.__init__(self, dict_type=OrderedDict)
100
        self.path = path or os.environ.get(CONFIG_ENV, CONFIG_PATH)
101
        self._overrides = defaultdict(dict)
102
        self._load_defaults()
103
        self.read(self.path)
104

    
105
    def _load_defaults(self):
106
        for section, options in DEFAULTS.items():
107
            for option, val in options.items():
108
                self.set(section, option, val)
109

    
110
    def reload(self):
111
        self = self.__init__(self.path)
112

    
113
    def apis(self):
114
        return [api for api in self.sections() if api != 'global']
115

    
116
    def get(self, section, option):
117
        value = self._overrides.get(section, {}).get(option)
118
        if value is not None:
119
            return value
120

    
121
        try:
122
            return RawConfigParser.get(self, section, option)
123
        except (NoSectionError, NoOptionError):
124
            return DEFAULTS.get(section, {}).get(option)
125

    
126
    def set(self, section, option, value):
127
        if section not in RawConfigParser.sections(self):
128
            self.add_section(section)
129
        RawConfigParser.set(self, section, option, value)
130

    
131
    def remove_option(self, section, option, also_remove_default=False):
132
        try:
133
            if also_remove_default:
134
                DEFAULTS[section].pop(option)
135
            RawConfigParser.remove_option(self, section, option)
136
        except NoSectionError:
137
            pass
138

    
139
    def items(self, section, include_defaults=True):
140
        try:
141
            d = dict(DEFAULTS[section]) if include_defaults else {}
142
        except KeyError:
143
            d = {}
144
        try:
145
            d.update(RawConfigParser.items(self, section))
146
        except NoSectionError:
147
            pass
148
        return d.items()
149

    
150
    def override(self, section, option, value):
151
        self._overrides[section][option] = value
152

    
153
    def write(self):
154
        with open(self.path, 'w') as f:
155
            os.chmod(self.path, 0600)
156
            f.write(HEADER.lstrip())
157
            f.flush()
158
            RawConfigParser.write(self, f)