Browse Source

Plug together Ui <-> client <-> session <-> plugin + bugfixes

Created a new class LodelSession to handle session datas
Created an automatic wrapper to acces to session handler plugin function throug SessionHandlerPlugin class methods
Bugfixes done for plugins. The plugin type is store in __plugin_type___ and not in __type__
Yann Weber 8 years ago
parent
commit
1453cf49f9

+ 12
- 10
lodel/auth/client.py View File

@@ -29,14 +29,14 @@ class LodelSession(object):
29 29
     #@warning Cause maybe a performance issue !
30 30
     def __token_checker(self):
31 31
         refcount = sys.getrefcount(self.__token)
32
-        if refcount > 1:
32
+        if self.__token is not None and refcount > 1:
33 33
             warnings.warn("More than one reference to the session token \
34
-exists !")
34
+exists ! (exactly %d)" % refcount)
35 35
 
36 36
     ##@brief Property. Equals True if a session is started else False
37 37
     @property
38 38
     def started(self):
39
-        res = self.__token is None
39
+        res = self.__token is not None
40 40
         if res:
41 41
             self.__token_checker()
42 42
         return res
@@ -74,7 +74,8 @@ a session is allready started !!!")
74 74
     def destroy(self):
75 75
         if not self.started:
76 76
             logger.debug("Destroying a session that is not started")
77
-        SessionHandler.destroy(self.__token)
77
+        else:
78
+            SessionHandler.destroy(self.__token)
78 79
         self.__token = None
79 80
         self.__datas = dict()
80 81
     
@@ -173,10 +174,8 @@ class Client(object, metaclass = ClientMetaclass):
173 174
     
174 175
 
175 176
     ##@brief Constructor
176
-    #@param ui_instance Lodel2Ui child class instance
177
-    #@param client_infos mixed : Depends on UI implemetation
178 177
     #@param session_token mixed : Session token provided by client to interface
179
-    def __init__(self,ui_instance, client_infos, session_token = None):
178
+    def __init__(self,session_token = None):
180 179
         if self.__class__ == Client:
181 180
             raise NotImplementedError("Abstract class")
182 181
         logger.debug("New instance of Client child class %s" %
@@ -189,14 +188,12 @@ class Client(object, metaclass = ClientMetaclass):
189 188
         else:
190 189
             #first instanciation, fetching settings
191 190
             self.fetch_settings()
192
-        ##@brief Stores instance of UI
193
-        self.__ui_instance = ui_instance
194 191
         ##@brief Stores infos for authenticated users (None == anonymous)
195 192
         self.__user = None
196 193
         ##@brief Stores the session handler
197 194
         Client._instance = self
198 195
         ##@brief Stores LodelSession instance
199
-        self.__session = LodelSession(token)
196
+        self.__session = LodelSession(session_token)
200 197
         logger.debug("New client : %s" % self)
201 198
     
202 199
     ##@brief Attempt to restore a session given a session token
@@ -249,6 +246,11 @@ class Client(object, metaclass = ClientMetaclass):
249 246
         if self.is_anon():
250 247
             self.fail() #Security logging
251 248
 
249
+    @classmethod
250
+    def destroy(cls):
251
+        cls._assert_instance()
252
+        cls._instance.__session.destroy()
253
+
252 254
     ##@brief Test wether a client is anonymous or logged in
253 255
     #@return True if client is anonymous
254 256
     @classmethod

+ 1
- 0
lodel/plugin/datasource_plugin.py View File

@@ -17,6 +17,7 @@ class DatasourcePlugin(Plugin):
17 17
         'key': 'datasource_connectors',
18 18
         'default': None,
19 19
         'validator': SettingValidator('strip', none_is_valid = False) }
20
+    _type_conf_name = 'datasource'
20 21
     
21 22
     def __init__(self, name):
22 23
         super().__init__(name)

+ 2
- 0
lodel/plugin/extensions.py View File

@@ -10,3 +10,5 @@ class Extension(Plugin):
10 10
         'default': [],
11 11
         'validator': SettingValidator('list', none_is_valid = False)}
12 12
 
13
+    _type_conf_name = 'extension'
14
+

+ 2
- 0
lodel/plugin/interface.py View File

@@ -12,6 +12,8 @@ class InterfacePlugin(Plugin):
12 12
         'key': 'interface',
13 13
         'default': None,
14 14
         'validator': SettingValidator('strip', none_is_valid = True)}
15
+
16
+    _type_conf_name = 'ui'
15 17
     
16 18
     def __init__(self, name):
17 19
         if InterfacePlugin._instance is not None:

+ 35
- 27
lodel/plugin/plugins.py View File

@@ -43,9 +43,7 @@ DEFAULT_PLUGINS_PATH_LIST = ['./plugins']
43 43
 MANDATORY_VARNAMES = [PLUGIN_NAME_VARNAME, LOADER_FILENAME_VARNAME, 
44 44
     PLUGIN_VERSION_VARNAME]
45 45
 
46
-DEFAULT_PLUGIN_TYPE = 'extension'
47
-PLUGINS_TYPES = [DEFAULT_PLUGIN_TYPE, 'datasource', 'session_handler', 'ui']
48
-
46
+DEFAULT_PLUGIN_TYPE = 'extension' #Value found in lodel/plugin/extensions.py::Extensions._type_conf_name
49 47
 
50 48
 ##@brief Describe and handle version numbers
51 49
 class PluginVersion(object):
@@ -149,37 +147,38 @@ to generic PluginVersion comparison function : '%s'" % cmp_fun_name)
149 147
         return {'major': self.major, 'minor': self.minor,
150 148
             'revision': self.revision}
151 149
 
152
-##@brief Stores plugin class registered
153
-__all_ptypes = list()
154
-
155 150
 ##@brief Plugin metaclass that allows to "catch" child class
156 151
 #declaration
157 152
 #
158 153
 #Automatic script registration on child class declaration
159 154
 class MetaPlugType(type):
160
-    
155
+        
156
+    ##@brief Dict storing all plugin types
157
+    #
158
+    #key is the _type_conf_name and value is the class
159
+    _all_ptypes = dict()
160
+
161 161
     def __init__(self, name, bases, attrs):
162 162
         #Here we can store all child classes of Plugin
163 163
         super().__init__(name, bases, attrs)
164 164
         if len(bases) == 1 and bases[0] == object:
165 165
             return
166
-        self.__register_types()
167
-        #list_name= [cls.__name__ for cls in __all_ptypes] 
168
-        #if self.name in list_name:
169
-        #    return
170
-        #else:
171
-        #    plug_type_register(self)
172
-
173
-    def __register_types(self):
174
-        plug_type_register(self)
166
+        #Regitering a new plugin type
167
+        MetaPlugType._all_ptypes[self._type_conf_name] = self
175 168
 
176
-def plug_type_register(cls):
177
-    __all_ptypes.append(cls)
178
-    logger.info("New child class registered : %s" % cls.__name__)
169
+    @classmethod
170
+    def all_types(cls):
171
+        return copy.copy(cls._all_ptypes)
179 172
 
180
-def all_types():
181
-    return copy.copy(__all_ptypes)
173
+    @classmethod
174
+    def all_ptype_names(cls):
175
+        return list(cls._all_ptypes.keys())
182 176
 
177
+    @classmethod
178
+    def type_from_name(cls, ptype_name):
179
+        if ptype_name not in cls._all_ptypes:
180
+            raise PluginError("Unknown plugin type '%s'" % ptype_name)
181
+        return cls._all_ptypes[ptype_name]
183 182
 
184 183
 ##@brief Handle plugins
185 184
 #
@@ -212,6 +211,11 @@ class Plugin(object, metaclass=MetaPlugType):
212 211
     #where plugin list is stored
213 212
     _plist_confspecs = None
214 213
 
214
+    ##@brief The name of the plugin type in the confguration
215
+    #
216
+    #None in abstract classes and implemented by child classes
217
+    _type_conf_name = None
218
+
215 219
     ##@brief Plugin class constructor
216 220
     #
217 221
     # Called by setting in early stage of lodel2 boot sequence using classmethod
@@ -290,7 +294,8 @@ class Plugin(object, metaclass=MetaPlugType):
290 294
         except AttributeError:
291 295
             self.__type = DEFAULT_PLUGIN_TYPE
292 296
         self.__type = str(self.__type).lower()
293
-        if self.__type not in PLUGINS_TYPES:
297
+        if self.__type not in MetaPlugType.all_ptype_names():
298
+            print("FUCK : ", MetaPlugType.all_ptype_names())
294 299
             raise PluginError("Unknown plugin type '%s'" % self.__type)
295 300
         # Load plugin name from init file (just for checking)
296 301
         try:
@@ -427,6 +432,9 @@ name differ from the one found in plugin's init file"
427 432
         logger.debug("Plugin '%s' loaded" % self.name)
428 433
         self.loaded = True
429 434
     
435
+    ##@brief Returns the loader module
436
+    #
437
+    #Accessor for the __loader__ python module
430 438
     def loader_module(self):
431 439
         if not self.loaded:
432 440
             raise RuntimeError("Plugin %s not loaded yet."%self.name)
@@ -535,10 +543,10 @@ file : '%s'. Running discover again..." % DISCOVER_CACHE_FILENAME)
535 543
             raise PluginError("No plugin named %s found" % plugin_name)
536 544
         pinfos = pdcache['plugins'][plugin_name]
537 545
         ptype = pinfos['type']
538
-        if ptype == 'datasource':
539
-            pcls = DatasourcePlugin
540
-        else:
541
-            pcls = cls
546
+        if ptype not in MetaPlugType.all_ptype_names():
547
+            raise PluginError("Unknown plugin type '%s'" % ptype)
548
+        pcls = MetaPlugType.type_from_name(ptype)
549
+        print("\n\n\nINSTANCIATING : ", pcls, " from name : ", ptype)
542 550
         plugin = pcls(plugin_name)
543 551
         cls._plugin_instances[plugin_name] = plugin
544 552
         logger.debug("Plugin %s available." % plugin)
@@ -655,7 +663,7 @@ file : '%s'. Running discover again..." % DISCOVER_CACHE_FILENAME)
655 663
     ##@brief Return a list of child Class Plugin
656 664
     @classmethod
657 665
     def plugin_types(cls):
658
-        return all_types()
666
+        return MetaPlugType.all_types()
659 667
 
660 668
     ##@brief Attempt to open and load plugin discover cache
661 669
     #@return discover cache

+ 14
- 7
lodel/plugin/sessionhandler.py View File

@@ -17,14 +17,19 @@ class SessionPluginWrapper(MetaPlugType):
17 17
 
18 18
     def __init__(self, name, bases, attrs):
19 19
         super().__init__(name, bases, attrs)
20
+        self._instance = None
20 21
         
21 22
     ##@brief Handles wrapper between class method and plugin loader functions
22
-    def __get_attribute__(self, name):
23
-        if name in SessionPluginWrapper._Actions:
23
+    def __getattribute__(self, name):
24
+        instance = super().__getattribute__('_instance')
25
+        if name in SessionPluginWrapper._ACTIONS:
26
+            if instance is None:
27
+                raise PluginError("Trying to access to SessionHandler \
28
+functions, but no session handler initialized")
24 29
             return getattr(
25
-                self._instance.loader_module(),
26
-                SessionPluginWrapper._Actions[name])
27
-        return super().__get_attribute__(name)
30
+                instance.loader_module(),
31
+                SessionPluginWrapper._ACTIONS[name])
32
+        return super().__getattribute__(name)
28 33
 
29 34
 
30 35
 ##@page lodel2_plugins Lodel2 plugins system
@@ -45,10 +50,12 @@ class SessionHandlerPlugin(Plugin, metaclass=SessionPluginWrapper):
45 50
         'key': 'session_handler',
46 51
         'default': None,
47 52
         'validator': SettingValidator('string', none_is_valid=False)}
53
+
54
+    _type_conf_name = 'session_handler'
48 55
             
49 56
     def __init__(self, plugin_name):
50 57
         if self._instance is None:
51
-            super(Plugin, self).__init__(plugin_name)
52
-            self._instance = self
58
+            super().__init__(plugin_name)
59
+            self.__class__._instance = self
53 60
         else:
54 61
             raise RuntimeError("A SessionHandler Plugin is already plug")

+ 1
- 2
lodel/settings/settings.py View File

@@ -135,7 +135,7 @@ class Settings(object, metaclass=MetaSettings):
135 135
         lodel2_specs = LODEL2_CONF_SPECS
136 136
         loader = SettingsLoader(self.__conf_dir) 
137 137
         plugin_list = []
138
-        for ptype in Plugin.plugin_types():
138
+        for ptype_name,ptype in Plugin.plugin_types().items():
139 139
             pls = ptype.plist_confspecs()
140 140
             lodel2_specs = confspec_append(lodel2_specs, **pls)
141 141
             cur_list = loader.getoption(
@@ -161,7 +161,6 @@ class Settings(object, metaclass=MetaSettings):
161 161
 
162 162
         # Starting the Plugins class
163 163
         logger.debug("Starting lodel.plugin.Plugin class")
164
-        print("DEBUG : plugin list : ", plugin_list)
165 164
         Plugin.start(plugin_list)
166 165
         # Fetching conf specs from plugins
167 166
         specs = [lodel2_specs]

+ 1
- 1
plugins/ram_sessions/__init__.py View File

@@ -2,7 +2,7 @@ from lodel.settings.validator import SettingValidator
2 2
 
3 3
 __plugin_name__ = 'ram_session'
4 4
 __version__ = [0,0,1]
5
-__type__ = 'session_handler'
5
+__plugin_type__ = 'session_handler'
6 6
 __loader__ = 'main.py'
7 7
 __author__ = "Lodel2 dev team"
8 8
 __fullname__ = "RAM Session Store Plugin"

+ 1
- 1
plugins/webui/__init__.py View File

@@ -1,5 +1,5 @@
1 1
 __plugin_name__ = 'webui'
2 2
 __version__ = '0.0.1'
3
-__type__ = 'ui'
3
+__plugin_type__ = 'ui'
4 4
 __loader__ = 'main.py'
5 5
 __confspec__ = 'confspec.py'

+ 2
- 2
plugins/webui/client.py View File

@@ -2,10 +2,10 @@ from lodel.auth.client import Client
2 2
 
3 3
 class WebUiClient(Client):
4 4
     
5
-    def __init__(self, ip, user_agent):
5
+    def __init__(self, ip, user_agent, session_token = None):
6 6
         self.__ip = ip
7 7
         self.__user_agent = user_agent
8
-        super().__init__()
8
+        super().__init__(session_token = session_token)
9 9
 
10 10
     def __str__(self):
11 11
         return "%s (%s)" % (self.__ip, self.__user_agent)

Loading…
Cancel
Save