forked from scionproto/scion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
77 lines (66 loc) · 2.68 KB
/
config.py
File metadata and controls
77 lines (66 loc) · 2.68 KB
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
# Copyright 2014 ETH Zurich
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
:mod:`config` --- SCION configuration parser
============================================
"""
# SCION
from lib.defines import DEFAULT_SEGMENT_TTL
from lib.util import load_yaml_file
class Config(object):
"""
The Config class parses the configuration file of an AS and stores such
information for further use.
:ivar int propagation_time: the interval at which PCBs are propagated.
:ivar int registration_time: the interval at which paths are registered.
:ivar int registers_paths: whether or not the AS registers paths.
:ivar int cert_ver: initial version of the certificate chain.
:ivar int segment_ttl: the TTL of path segments registered by this AS (in seconds).
"""
def __init__(self): # pragma: no cover
self.propagation_time = 0
self.registration_time = 0
self.registers_paths = 0
self.cert_ver = 0
self.segment_ttl = 0
@classmethod
def from_file(cls, config_file): # pragma: no cover
"""
Create a Config instance from the configuration file.
:param str config_file: path to the configuration file
:returns: the newly created Config instance
:rtype: :class:`Config`
"""
return cls.from_dict(load_yaml_file(config_file))
@classmethod
def from_dict(cls, config_dict): # pragma: no cover
"""
Create a Config instance from the dictionary.
:param dict config_dict: dictionary representation of configuration
:returns: the newly created Config instance
:rtype: :class:`Config`
"""
config = cls()
config.parse_dict(config_dict)
return config
def parse_dict(self, config):
"""
Parse a configuration file and populate the instance's attributes.
:param dict config: the name of the configuration file.
"""
self.propagation_time = config['PropagateTime']
self.registration_time = config['RegisterTime']
self.registers_paths = config['RegisterPath']
self.cert_ver = config['CertChainVersion']
self.segment_ttl = config.get('PathSegmentTTL', DEFAULT_SEGMENT_TTL)