Browse Source

More comments + a script to list default settings validators

Yann Weber 9 years ago
parent
commit
e0717c9317

+ 32
- 3
lodel/plugin/__init__.py View File

@@ -4,10 +4,39 @@
4 4
 #
5 5
 # @section howto_writeplugin_basicstruct Plugin basic structure
6 6
 # A plugins is a python package that have to contains 3 files :
7
-# - <code>__init__.py</code>
8
-# - <code>main.py</code> ( defined in @ref lodel.plugin.plugins.MAIN_NAME )
9
-# - <code>confspec.py</code> ( defined in @ref lodel.plugin.plugins.CONFSPEC_NAME )
7
+#- <code>__init__.py</code>
8
+#- <code>main.py</code> ( defined in @ref lodel.plugin.plugins.MAIN_FILENAME )
9
+#- <code>confspec.py</code> ( defined in
10
+#@ref lodel.plugin.plugins.CONFSPEC_FILENAME )
10 11
 #
12
+# There is an example plugin in @ref plugins/dummy
13
+#
14
+# @subsection howto_writreplugin_confspec Plugin configuration specification
15
+# First of all a good practice is to preffix all plugin specific configuration
16
+# key with <code>lodel2.plugin.PLUGIN_NAME</code>.
17
+#
18
+# A configuration specification is a dict containing dict containing
19
+# tupe(DEFAULT_VALUE, VALIDATOR). The first level dict keys are sections, and
20
+# the dictionnary contained in it contains conf keys. More information on 
21
+# validators : @ref lodel.settings.validator
22
+# 
23
+# @subsubsection howto_writreplugin_confspec_example Example :
24
+#
25
+#A confspec that matches this peace of configuration file
26
+#<pre>
27
+#[lodel2.plugin.fooplugin]
28
+#hello = ...
29
+#foo = ...
30
+#bar = ...
31
+#</pre>
32
+#would be
33
+#<pre>
34
+#{
35
+#   'lodel2.plugin.fooplugin': {
36
+#                                   'foo': ...,
37
+#                                   'bar': ...,
38
+#                                   'hello': ..., } }
39
+#</pre>
11 40
12 41
 
13 42
 from .hooks import LodelHook

+ 11
- 1
lodel/settings/__init__.py View File

@@ -1,7 +1,17 @@
1 1
 #-*- coding: utf-8 -*-
2 2
 
3 3
 ## @package lodel.settings Lodel2 settings package
4
-# 
4
+#
5
+# @par Configuration files
6
+# The configurations files are in ini format (thank's python ConfigParser...).
7
+# To know how the settings are validated and specified see
8
+# @ref lodel.settings.validator and @ref howto_writeplugin_basicstruct
9
+# The configuration is divided in two parts :
10
+#- a global configuration file that contains
11
+# - the path to the lodel2 lib directory
12
+# - the paths of directories containing plugins
13
+#- a conf.d directories containing multiple configuration files
14
+#  
5 15
 # @par Bootstrap/load/use in lodel instance
6 16
 # To use Settings in production you have to write a loader that will bootstrap
7 17
 # the Settings class allowing @ref lodel.settings.__init__.py to expose a copy

+ 3
- 14
lodel/settings/settings.py View File

@@ -14,20 +14,7 @@ from lodel.settings.settings_loader import SettingsLoader
14 14
 
15 15
 ## @package lodel.settings.settings Lodel2 settings module
16 16
 #
17
-# Handles configuration load/parse/check.
18
-#
19
-# @subsection Configuration load process
20
-#
21
-# The configuration load process is not trivial. In fact loaded plugins are 
22
-# able to add their own options. But the list of plugins to load and the 
23
-# plugins options are in the same file, the instance configuration file.
24
-#
25
-# @subsection Configuration specification
26
-#
27
-# Configuration specification is divided in 2 parts :
28
-# - default values
29
-# - value validation/cast (see @ref Lodel.settings.validator.ConfValidator )
30
-# 
17
+# Contains the class that handles the namedtuple tree of settings
31 18
 
32 19
 ##@brief A default python system lib path
33 20
 PYTHON_SYS_LIB_PATH = '/usr/local/lib/python{major}.{minor}/'.format(
@@ -82,6 +69,8 @@ class Settings(object):
82 69
     instance = None
83 70
     
84 71
     ##@brief Should be called only by the boostrap classmethod
72
+    # @param conf_file str : Path to the global lodel2 configuration file
73
+    # @param conf_dir str : Path to the conf directory
85 74
     def __init__(self, conf_file = '/etc/lodel2/lodel2.conf', conf_dir = 'conf.d'):
86 75
         self.__confs = dict()
87 76
         self.__conf_dir = conf_dir

+ 7
- 4
lodel/settings/validator.py View File

@@ -9,6 +9,8 @@ import copy
9 9
 ## @package lodel.settings.validator Lodel2 settings validators/cast module
10 10
 #
11 11
 # Validator are registered in the SettingValidator class.
12
+# @note to get a list of registered default validators just run
13
+# <pre>$ python scripts/settings_validator.py</pre>
12 14
 
13 15
 class SettingsValidationError(Exception):
14 16
     pass
@@ -100,12 +102,13 @@ class SettingValidator(object):
100 102
 
101 103
     
102 104
     ## @return a list of registered validators
105
+    @classmethod
103 106
     def validators_list_str(cls):
104 107
         result = ''
105
-        for name in cls._validators:
106
-            result += "\t%s" % name
107
-            if name in self._description and self._description[name] is not None:
108
-                result += "\t: %s" % self._description[name]
108
+        for name in sorted(cls._validators.keys()):
109
+            result += "\t%016s" % name
110
+            if name in cls._description and cls._description[name] is not None:
111
+                result += ": %s" % cls._description[name]
109 112
             result += "\n"
110 113
         return result
111 114
 

+ 6
- 0
scripts/settings_validator.py View File

@@ -0,0 +1,6 @@
1
+#-*- coding: utf-8 -*-
2
+import sys
3
+import os, os.path
4
+sys.path.append(os.path.dirname(os.getcwd()+'/..'))
5
+from lodel.settings.validator import SettingValidator
6
+print(SettingValidator.validators_list_str())

Loading…
Cancel
Save