a1a0325283
This also fixes the problem where no keybindings are loaded on the first start.
218 lines
6.7 KiB
Python
218 lines
6.7 KiB
Python
# Copyright 2014 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
#
|
|
# This file is part of qutebrowser.
|
|
#
|
|
# qutebrowser 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.
|
|
#
|
|
# qutebrowser 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 qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""Setting sections used for qutebrowser."""
|
|
|
|
import logging
|
|
from collections import OrderedDict, ChainMap
|
|
|
|
from qutebrowser.config.value import SettingValue
|
|
|
|
|
|
class KeyValue:
|
|
|
|
"""Representation of a section with ordinary key-value mappings.
|
|
|
|
This is a section which contains normal "key = value" pairs with a fixed
|
|
set of keys.
|
|
|
|
Attributes:
|
|
values: An OrderedDict with key as index and value as value.
|
|
key: string
|
|
value: SettingValue
|
|
descriptions: A dict with the description strings for the keys.
|
|
"""
|
|
|
|
def __init__(self, *args):
|
|
"""Constructor.
|
|
|
|
Args:
|
|
*args: Key/Value pairs to set.
|
|
key: string
|
|
value: SettingValue
|
|
"""
|
|
if args:
|
|
self.descriptions = {}
|
|
self.values = OrderedDict()
|
|
for (k, settingval, desc) in args:
|
|
self.values[k] = settingval
|
|
self.descriptions[k] = desc
|
|
|
|
def __getitem__(self, key):
|
|
"""Get the value for key.
|
|
|
|
Args:
|
|
key: The key to get a value for, as a string.
|
|
|
|
Return:
|
|
The value, as value class.
|
|
"""
|
|
return self.values[key]
|
|
|
|
def __setitem__(self, key, value):
|
|
"""Set the config value for key.
|
|
|
|
Args:
|
|
key: The key to set the value for, as a string.
|
|
value: The value to set, as a string
|
|
"""
|
|
self.setv('conf', key, value)
|
|
|
|
def __iter__(self):
|
|
"""Iterate over all set values."""
|
|
# FIXME using a custom iterator this could be done more efficiently.
|
|
return self.values.__iter__()
|
|
|
|
def __bool__(self):
|
|
"""Get boolean state."""
|
|
return bool(self.values)
|
|
|
|
def __contains__(self, key):
|
|
"""Return whether the section contains a given key."""
|
|
return key in self.values
|
|
|
|
def setv(self, layer, key, value):
|
|
"""Set the value on a layer.
|
|
|
|
Arguments:
|
|
layer: The layer to set the value on, an element name of the
|
|
ValueLayers dict.
|
|
key: The key of the element to set.
|
|
value: The value to set.
|
|
"""
|
|
self.values[key].setv(layer, value)
|
|
|
|
def items(self):
|
|
"""Get dict item tuples."""
|
|
return self.values.items()
|
|
|
|
def keys(self):
|
|
"""Get value keys."""
|
|
return self.values.keys()
|
|
|
|
def from_cp(self, sect):
|
|
"""Initialize the values from a configparser section.
|
|
|
|
We assume all keys already exist from the defaults.
|
|
"""
|
|
for k, v in sect.items():
|
|
logging.debug("'{}' = '{}'".format(k, v))
|
|
self.values[k].setv('conf', v)
|
|
|
|
|
|
class ValueList:
|
|
|
|
"""This class represents a section with a list key-value settings.
|
|
|
|
These are settings inside sections which don't have fixed keys, but instead
|
|
have a dynamic list of "key = value" pairs, like keybindings or
|
|
searchengines.
|
|
|
|
They basically consist of two different SettingValues and have no defaults.
|
|
|
|
Attributes:
|
|
values: An OrderedDict with key as index and value as value.
|
|
default: An OrderedDict with the default configuration as strings.
|
|
keytype: The type to use for the key (only used for validating)
|
|
valtype: The type to use for the value.
|
|
valdict: The "true value" dict.
|
|
#descriptions: A dict with the description strings for the keys.
|
|
# Currently a global empty dict to be compatible with
|
|
# KeyValue section.
|
|
"""
|
|
|
|
# FIXME how to handle value layers here?
|
|
|
|
def __init__(self, keytype, valtype, *defaults):
|
|
"""Wrap types over default values. Take care when overriding this."""
|
|
self.keytype = keytype
|
|
self.valtype = valtype
|
|
self.layers = OrderedDict([
|
|
('default', OrderedDict([(key, SettingValue(valtype, value))
|
|
for key, value in defaults])),
|
|
('conf', OrderedDict()),
|
|
('temp', OrderedDict()),
|
|
])
|
|
self.values = ChainMap(self.layers['temp'], self.layers['conf'],
|
|
self.layers['default'])
|
|
|
|
def __getitem__(self, key):
|
|
"""Get the value for key.
|
|
|
|
Args:
|
|
key: The key to get a value for, as a string.
|
|
|
|
Return:
|
|
The value, as value class.
|
|
"""
|
|
return self.values[key]
|
|
|
|
def __setitem__(self, key, value):
|
|
"""Set the config value for key.
|
|
|
|
Args:
|
|
key: The key to set the value for, as a string.
|
|
value: The value to set, as a string
|
|
"""
|
|
self.setv('conf', key, value)
|
|
|
|
def __iter__(self):
|
|
"""Iterate over all set values."""
|
|
# FIXME using a custon iterator this could be done more efficiently
|
|
return self.values.__iter__()
|
|
|
|
def __bool__(self):
|
|
"""Get boolean state of section."""
|
|
return bool(self.values)
|
|
|
|
def __contains__(self, key):
|
|
"""Return whether the section contains a given key."""
|
|
return key in self.values
|
|
|
|
def setv(self, layer, key, value):
|
|
"""Set the value on a layer.
|
|
|
|
Arguments:
|
|
layer: The layer to set the value on, an element name of the
|
|
ValueLayers dict.
|
|
key: The key of the element to set.
|
|
value: The value to set.
|
|
"""
|
|
if key in self.layers[layer]:
|
|
self.layers[layer][key].setv(layer, value)
|
|
else:
|
|
val = SettingValue(self.valtype)
|
|
val.setv(layer, value)
|
|
self.layers[layer][key] = val
|
|
|
|
def items(self):
|
|
"""Get dict items."""
|
|
return self.values.items()
|
|
|
|
def keys(self):
|
|
"""Get value keys."""
|
|
return self.values.keys()
|
|
|
|
def from_cp(self, sect):
|
|
"""Initialize the values from a configparser section."""
|
|
keytype = self.keytype()
|
|
valtype = self.valtype()
|
|
for k, v in sect.items():
|
|
keytype.validate(k)
|
|
valtype.validate(v)
|
|
self.setv('conf', k, v)
|