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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
# Copyright (C) 2009, 2010 Roman Zimbelmann <romanz@lavabit.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import ranger
from ranger.ext.signal_dispatcher import SignalDispatcher
from ranger.ext.openstruct import OpenStruct
ALLOWED_SETTINGS = {
'show_hidden': bool,
'show_cursor': bool,
'autosave_bookmarks': bool,
'save_console_history': bool,
'collapse_preview': bool,
'column_ratios': (tuple, list, set),
'display_size_in_main_column': bool,
'display_size_in_status_bar': bool,
'draw_borders': bool,
'draw_bookmark_borders': bool,
'sort': str,
'sort_reverse': bool,
'sort_case_insensitive': bool,
'sort_directories_first': bool,
'update_title': bool,
'shorten_title': int, # Note: False is an instance of int
'max_filesize_for_preview': (int, type(None)),
'max_history_size': (int, type(None)),
'scroll_offset': int,
'preview_files': bool,
'preview_directories': bool,
'flushinput': bool,
'colorscheme': str,
'colorscheme_overlay': (type(None), type(lambda:0)),
'hidden_filter': lambda x: isinstance(x, str) or hasattr(x, 'match'),
}
COMPAT_MAP = {
'sort_reverse': 'reverse',
'sort_directories_first': 'directories_first',
}
class SettingObject(SignalDispatcher):
def __init__(self):
SignalDispatcher.__init__(self)
self.__dict__['_settings'] = dict()
self.__dict__['_setting_sources'] = list()
def __setattr__(self, name, value):
if name[0] == '_':
self.__dict__[name] = value
else:
assert name in self._settings, "No such setting: {0}!".format(name)
assert self._check_type(name, value)
kws = dict(setting=name, value=value,
previous=self._settings[name])
self.signal_bind('setopt.'+name,
self._raw_set_with_signal, priority=0.2)
self.signal_emit('setopt', **kws)
self.signal_emit('setopt.'+name, **kws)
def __getattr__(self, name):
assert name in ALLOWED_SETTINGS or name in self._settings, \
"No such setting: {0}!".format(name)
try:
return self._settings[name]
except:
for struct in self._setting_sources:
try: value = getattr(struct, name)
except: pass
else: break
else:
raise Exception("The option `{0}' was not defined" \
" in the defaults!".format(name))
assert self._check_type(name, value)
self._raw_set(name, value)
self.__setattr__(name, value)
return self._settings[name]
def _check_type(self, name, value):
from inspect import isfunction
typ = ALLOWED_SETTINGS[name]
if isfunction(typ):
assert typ(value), \
"The option `" + name + "' has an incorrect type!"
else:
assert isinstance(value, typ), \
"The option `" + name + "' has an incorrect type!"\
" Got " + str(type(value)) + ", expected " + str(typ) + "!"
return True
__getitem__ = __getattr__
__setitem__ = __setattr__
def _raw_set(self, name, value):
self._settings[name] = value
def _raw_set_with_signal(self, signal):
self._settings[signal.setting] = signal.value
# -- globalize the settings --
class SettingsAware(object):
settings = OpenStruct()
@staticmethod
def _setup():
settings = SettingObject()
from ranger.gui.colorscheme import _colorscheme_name_to_class
settings.signal_bind('setopt.colorscheme',
_colorscheme_name_to_class, priority=1)
if not ranger.arg.clean:
# overwrite single default options with custom options
try:
import options as my_options
except ImportError:
pass
else:
settings._setting_sources.append(my_options)
# For backward compatibility:
for new, old in COMPAT_MAP.items():
try:
setattr(my_options, new, getattr(my_options, old))
print("Warning: the option `{0}'"\
" was renamed to `{1}'\nPlease update"\
" your configuration file soon." \
.format(old, new))
except AttributeError:
pass
from ranger.defaults import options as default_options
settings._setting_sources.append(default_options)
assert all(hasattr(default_options, setting) \
for setting in ALLOWED_SETTINGS), \
"Ensure that all options are defined in the defaults!"
try:
import apps
except ImportError:
from ranger.defaults import apps
settings._raw_set('apps', apps)
SettingsAware.settings = settings
@staticmethod
def _setup_keys(): # ugly! but works.
import ranger.api.keys
import ranger.shared
env = ranger.shared.EnvironmentAware.env
ranger.api.keys.keymanager = env.keymanager
try:
import keys
except ImportError:
from ranger.defaults import keys
|