"""
Functions to read values directly from a
:class:`staticconf.config.ConfigNamespace`. Values will be validated and
cast to the requested type.
Examples
--------
.. code-block:: python
import staticconf
# read an int
max_cycles = staticconf.read_int('max_cycles')
start_id = staticconf.read_int('poller.init.start_id', default=0)
# start_date will be a datetime.date
start_date = staticconf.read_date('start_date')
# matcher will be a regex object
matcher = staticconf.read_regex('matcher_pattern')
# Read a value from a different namespace
intervals = staticconf.read_float('intervals', namespace='something')
Readers can be attached to a namespace using a :class:`NamespaceReaders`
object.
.. code-block:: python
import staticconf
bling_reader = staticconf.NamespaceReaders('bling')
# These values are read from the `bling` ConfigNamespace
currency = bling_reader.read_string('currency')
value = bling_reader.read_float('value')
Arguments
---------
Readers accept the following kwargs:
config_key
string configuration key using dotted notation
default
if no `default` is given, the key must be present in the configuration.
If the key is missing a :class:`staticconf.errors.ConfigurationError`
is raised.
namespace
get the value from this namespace instead of DEFAULT.
Building custom readers
-----------------------
:func:`build_reader` is a factory function which can be used for creating
custom readers from a validation function. A validation function should handle
all exceptions and raise a :class:`staticconf.errors.ValidationError` if there
is a problem.
First create a validation function
.. code-block:: python
def validate_currency(value):
try:
# Assume a tuple or a list
name, decimal_points = value
return Currency(name, decimal_points)
except Exception, e:
raise ValidationErrror(...)
Example of a custom reader:
.. code-block:: python
from staticconf import readers
read_currency = readers.build_reader(validate_currency)
# Returns a Currency object using the data from the config namespace
# at they key `currencies.usd`.
usd_currency = read_currency('currencies.usd')
"""
from typing import Any
from typing import Callable
from typing import Dict
from typing import Iterator
from typing import Optional
from typing import Tuple
from typing import Type
from staticconf import validation, config, errors
from staticconf.config import ConfigNamespace
from staticconf.config import ConfigGetValue
from staticconf.proxy import ValueProxy
from staticconf.proxy import UndefToken
from staticconf.validation import Validator
import sys
if sys.version_info >= (3, 10):
from typing import Protocol
else:
from typing_extensions import Protocol
Builder = Callable[[Validator, str], ConfigGetValue]
def _read_config(
config_key: str,
config_namespace: ConfigNamespace,
default: Any
) -> Any:
value = config_namespace.get(config_key, default=default)
if value is UndefToken:
msg = '{} missing value for {}'.format(config_namespace, config_key)
raise errors.ConfigurationError(msg)
return value
[docs]
def build_reader(
validator: Validator,
reader_namespace: str = config.DEFAULT,
) -> ConfigGetValue:
"""A factory method for creating a custom config reader from a validation
function.
:param validator: a validation function which acceptance one argument (the
configuration value), and returns that value casted to
the appropriate type.
:param reader_namespace: the default namespace to use. Defaults to
`DEFAULT`.
"""
class Reader(ConfigGetValue):
def __call__(
self,
config_key: str,
default: Any = UndefToken,
namespace: Optional[str] = None,
unsued: Optional[str] = None,
) -> ValueProxy:
config_namespace = config.get_namespace(namespace or reader_namespace)
return validator(_read_config(config_key, config_namespace, default))
return Reader()
class NameFactory(Protocol):
@staticmethod
def get_name(name: str) -> str:
...
@staticmethod
def get_list_of_name(validator_name: str) -> str:
...
class ReaderNameFactory:
@staticmethod
def get_name(name: str) -> str:
return 'read_%s' % name if name else 'read'
@staticmethod
def get_list_of_name(name: str) -> str:
return 'read_list_of_%s' % name
def get_all_accessors(
name_factory: Type[NameFactory],
) -> Iterator[Tuple[str, Validator]]:
for name, validator in validation.get_validators():
yield name_factory.get_name(name), validator
yield (name_factory.get_list_of_name(name),
validation.build_list_type_validator(validator))
class NamespaceAccessor:
def __init__(
self,
name: str,
accessor_map: Dict[str, Any],
builder: Builder,
) -> None:
self.accessor_map = accessor_map
self.builder = builder
self.namespace = name
def __getattr__(self, item: str) -> Any:
if item not in self.accessor_map:
raise AttributeError(item)
return self.builder(self.accessor_map[item], self.namespace)
def get_methods(self) -> Dict[str, Any]:
return {name: getattr(self, name) for name in self.accessor_map}
def build_accessor_type(
name_factory: Type[NameFactory],
builder: Builder,
) -> Callable[[str], NamespaceAccessor]:
accessor_map = dict(get_all_accessors(name_factory))
return lambda name: NamespaceAccessor(name, accessor_map, builder)
NamespaceReaders = build_accessor_type(ReaderNameFactory, build_reader)
"""An object with all reader functions which retrieve configuration from
a named namespace, instead of `DEFAULT`.
"""
default_readers = NamespaceReaders(config.DEFAULT)
globals().update(default_readers.get_methods())
__all__ = ['NamespaceReaders'] + list(default_readers.get_methods())