larapaste and tomorrow night
[rainbowstream.git] / rainbowstream / config.py
CommitLineData
44d70096 1import json
72c02928 2import re
44d70096
VNM
3import os
4import os.path
6fa09c14 5
0a0ee6db
VNM
6# Regular expression for comments
7comment_re = re.compile(
8 '(^)?[^\S\n]*/(?:\*(.*?)\*/[^\S\n]*|/[^\n]*)($)?',
9 re.DOTALL | re.MULTILINE
10)
11
c075e6dc 12
0a0ee6db 13def load_config(filepath):
92be926e
VNM
14 """
15 Load config from filepath
16 """
ddb1e615
VNM
17 with open(filepath) as f:
18 content = ''.join(f.readlines())
19 match = comment_re.search(content)
20 while match:
21 content = content[:match.start()] + content[match.end():]
0a0ee6db 22 match = comment_re.search(content)
ddb1e615 23 return json.loads(content)
6fa09c14 24
1c8a5082 25# Config dictionary
632c6fa5 26c = {}
1c8a5082 27# Load default
15f3e155 28default_config = os.path.dirname(__file__) + '/colorset/default.json'
632c6fa5 29data = load_config(default_config)
ddb1e615
VNM
30for d in data:
31 c[d] = data[d]
32c['theme'] = 'default'
1c8a5082
O
33# Load init if exist
34try:
35 path = os.path.dirname(__file__) + '/colorset/init'
36 f = open(path)
37 lines = f.readlines()
38 if len(lines) > 1:
39 raise Exception('More than 1 default theme')
40 theme_name = lines[0].strip()
41 default_config = os.path.dirname(__file__)+'/colorset/'+theme_name+'.json'
42 data = load_config(default_config)
43 for d in data:
44 c[d] = data[d]
45 c['theme'] = theme_name
46 f.close()
47except:
48 pass
632c6fa5 49# Load user's colorset
c075e6dc
O
50rainbow_config = os.environ.get(
51 'HOME',
52 os.environ.get(
53 'USERPROFILE',
54 '')) + os.sep + '.rainbow_config.json'
ddb1e615
VNM
55try:
56 data = load_config(rainbow_config)
a5301bc0
VNM
57 for d in data:
58 c[d] = data[d]
ddb1e615
VNM
59 c['theme'] = 'custom'
60except:
61 pass