Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 # This Source Code Form is subject to the terms of the Mozilla Public | 1 # This Source Code Form is subject to the terms of the Mozilla Public |
2 # License, v. 2.0. If a copy of the MPL was not distributed with this | 2 # License, v. 2.0. If a copy of the MPL was not distributed with this |
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
4 | 4 |
5 import os | 5 import os |
6 import io | 6 import io |
7 import ConfigParser | 7 import ConfigParser |
8 from StringIO import StringIO | 8 from StringIO import StringIO |
9 | 9 |
10 | 10 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
86 is_addition = option.endswith('+') | 86 is_addition = option.endswith('+') |
87 is_diff = is_addition or option.endswith('-') | 87 is_diff = is_addition or option.endswith('-') |
88 | 88 |
89 if is_diff: | 89 if is_diff: |
90 option = option[:-1].rstrip() | 90 option = option[:-1].rstrip() |
91 try: | 91 try: |
92 orig_value = self.get(section, option) | 92 orig_value = self.get(section, option) |
93 except ConfigParser.NoOptionError: | 93 except ConfigParser.NoOptionError: |
94 raise DiffForUnknownOptionError(option, section) | 94 raise DiffForUnknownOptionError(option, section) |
95 | 95 |
96 orig_values = orig_value.split() | 96 orig_values = orig_value.splitlines() |
97 diff_values = value.split() | 97 diff_values = value.splitlines() |
98 | 98 |
99 if is_addition: | 99 if is_addition: |
100 new_values = orig_values + [v for v in diff_values if v not in o rig_values] | 100 new_values = orig_values + [v for v in diff_values if v not in o rig_values] |
101 else: | 101 else: |
102 new_values = [v for v in orig_values if v not in diff_values] | 102 new_values = [v for v in orig_values if v not in diff_values] |
103 | 103 |
104 value = ' '.join(new_values) | 104 value = '\n'.join(new_values) |
105 | 105 |
106 return is_diff, option, value | 106 return is_diff, option, value |
107 | 107 |
108 def _process_parsers(self, parsers): | 108 def _process_parsers(self, parsers): |
109 for parser, filename in parsers: | 109 for parser, filename in parsers: |
110 for section in parser.sections(): | 110 for section in parser.sections(): |
111 if not self.has_section(section): | 111 if not self.has_section(section): |
112 try: | 112 try: |
113 ConfigParser.SafeConfigParser.add_section(self, section) | 113 ConfigParser.SafeConfigParser.add_section(self, section) |
114 except ValueError: | 114 except ValueError: |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
150 | 150 |
151 def option_source(self, section, option): | 151 def option_source(self, section, option): |
152 option = self.optionxform(option) | 152 option = self.optionxform(option) |
153 try: | 153 try: |
154 return self._origin[(section, option)] | 154 return self._origin[(section, option)] |
155 except KeyError: | 155 except KeyError: |
156 if not self.has_section(section): | 156 if not self.has_section(section): |
157 raise ConfigParser.NoSectionError(section) | 157 raise ConfigParser.NoSectionError(section) |
158 raise ConfigParser.NoOptionError(option, section) | 158 raise ConfigParser.NoOptionError(option, section) |
159 | 159 |
160 def as_json_object(self, section): | 160 def serialize_section_if_present(self, section, base): |
Vasily Kuznetsov
2018/04/19 14:40:10
What this method does seems more like parsing than
Sebastian Noack
2018/04/19 15:02:59
In the end it gets serialized (as JSON). But you m
| |
161 r"""Parse a given section into a JSON object. | 161 """Serialize a given section as a dictionary into `base`. |
162 | 162 |
163 Parse arbitrary key/value pairs from 'section' of the current | 163 Parse arbitrary key/value pairs from 'section' of the current |
164 configuration into a nested JSON object. | 164 configuration into a dictionary and deep merge it into `base`. |
165 | 165 |
166 The following rules need to be considered: | 166 The following rules need to be considered: |
167 | 167 |
168 * An option's key may be declared as a series of nested dictionary keys, | 168 * An option's key may be declared as a series of nested dictionary keys, |
169 seperated by '.'. | 169 seperated by '.'. |
170 * An option's key must end with '[]', to mark this option as an array | 170 * Declaring an option's value in a new line (even if only one is given) |
171 * When an option is marked as an array, no other nested objects may | 171 will define the option's value as a list. |
172 follow | 172 * When an option's value is defined as a list, no other nested |
173 * An array is expandable by the ConfigParser's '+=' token. | 173 objects may follow. |
174 * Values may be marked as special types by appending '\{code}': | 174 * A list is expandable by the ConfigParser's '+=' token (Note: A |
175 * \b - boolean | 175 previously declared string will be converted into a list). |
176 * \i - integer | 176 * Values may be marked as `number` or `bool` by prefixing them |
177 * \f - float | 177 accordingly (this also applies to values in a list): |
178 * bool:<value> | |
179 * number:<value> | |
178 | 180 |
179 Example: | 181 Example: |
180 | 182 { |
181 { | 183 foo = foo "foo": "foo", |
182 "good": false, | 184 asd = "asd": ["asd"], |
183 "bar": { | 185 asd "bar": { |
184 "baz": ["bar", "bazinga"] | 186 bar.baz = a "baz": ["a", "c", "d"] |
185 foo = foo }, | 187 baz.foo = a }, |
186 bar.baz[] = bar "is": { | 188 baz.z = "baz": { |
187 baz.foo = a "integer": 1, | 189 bar "foo": "a", |
188 baz.z[] = b "float": 1.4 | 190 bool:true ===> "z": ["bar", true] |
189 bar.baz[] += bazinga ==> }, | 191 bar.baz += }, |
190 bad = true\b "baz": { | 192 c "bad": true, |
191 good = f\b "foo": "a", | 193 d "good": false, |
192 is.integer = 1\i "z": ["b"] | 194 bad = bool:true "is": { |
193 is.float = 1.4\f }, | 195 good = bool:false "integer": 1, |
194 "bad": true | 196 is.integer = number:1 "float": 1.4 |
195 "foo": "foo" | 197 is.float = number:1.4 } |
196 } | 198 } |
197 """ | 199 """ |
198 def parse_values(v): | 200 def parse_value(v): |
199 import distutils | 201 if v.startswith('number:'): |
200 if isinstance(v, list): | 202 v = v.split(':', 1)[1] |
201 return [parse_values(x) for x in v] | 203 try: |
202 | 204 return int(v) |
203 mapping = { | 205 except ValueError: |
204 '\\b': lambda x: bool(distutils.util.strtobool(x)), | 206 return float(v) |
205 '\\i': int, | 207 if v == 'bool:true': |
206 '\\f': float, | 208 return True |
207 } | 209 if v == 'bool:false': |
208 if '\\' in v: | 210 return False |
209 return mapping[v[-2:]](v[:-2]) | |
210 return v | 211 return v |
Sebastian Noack
2018/04/12 12:19:23
* I cannot think of any relevant manifest key wher
tlucas
2018/04/12 13:47:39
I do not fully oppose your thoughts, but what abou
Sebastian Noack
2018/04/12 14:39:29
I was thinking about the version number, but its n
tlucas
2018/04/13 09:14:59
Done.
| |
211 | 212 |
212 def setdefault_recursive(target, arr): | 213 if self.has_section(section): |
213 if len(arr) == 2: | 214 for k, v in self.items(section): |
214 target.setdefault(arr[0], parse_values(arr[1])) | 215 parents = k.split('.') |
215 else: | 216 tail = parents.pop() |
216 current = target.setdefault(arr[0], {}) | 217 current = base |
Sebastian Noack
2018/04/12 12:19:23
You might want to use an OrderedDict to make sure
tlucas
2018/04/12 13:47:38
Good point, done.
| |
217 setdefault_recursive(current, arr[1:]) | 218 for name in parents: |
218 | 219 current = base.setdefault(name, {}) |
219 data = self.items(section) | 220 |
220 result = {} | 221 if '\n' in v: |
Sebastian Noack
2018/04/12 12:19:23
Same here.
tlucas
2018/04/12 13:47:38
See above, done.
| |
221 | 222 current[tail] = [parse_value(x) for x in v.splitlines() if x ] |
222 for k, v in data: | 223 else: |
223 is_array = k.endswith('[]') | 224 current[tail] = parse_value(v) |
224 | |
225 sub_keys = (k if not is_array else k[:-2]).split('.') | |
226 value = v.split() if is_array else v | |
Sebastian Noack
2018/04/12 12:19:23
It seems the logic here can be simplified:
if k
tlucas
2018/04/12 13:47:39
Done.
| |
227 | |
228 setdefault_recursive(result, sub_keys + [value]) | |
229 | |
230 return result | |
231 | 225 |
232 def readfp(self, fp, filename=None): | 226 def readfp(self, fp, filename=None): |
233 raise NotImplementedError | 227 raise NotImplementedError |
234 | 228 |
235 def set(self, section, option, value=None): | 229 def set(self, section, option, value=None): |
236 raise NotImplementedError | 230 raise NotImplementedError |
237 | 231 |
238 def add_section(self, section): | 232 def add_section(self, section): |
239 raise NotImplementedError | 233 raise NotImplementedError |
240 | 234 |
241 def remove_option(self, section, option): | 235 def remove_option(self, section, option): |
242 raise NotImplementedError | 236 raise NotImplementedError |
243 | 237 |
244 def remove_section(self, section): | 238 def remove_section(self, section): |
245 raise NotImplementedError | 239 raise NotImplementedError |
LEFT | RIGHT |