source: ogAgent-Git/src/opengnsys/loader.py

qndtest
Last change on this file was 11f7a07, checked in by ramon <ramongomez@…>, 8 years ago

#718: Integrar código fuente de agente OGAgent en rama de desarrollo.

git-svn-id: https://opengnsys.es/svn/branches/version1.1@4865 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 4.3 KB
Line 
1# -*- coding: utf-8 -*-
2#
3# Copyright (c) 2014 Virtual Cable S.L.
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without modification,
7# are permitted provided that the following conditions are met:
8#
9#    * Redistributions of source code must retain the above copyright notice,
10#      this list of conditions and the following disclaimer.
11#    * Redistributions in binary form must reproduce the above copyright notice,
12#      this list of conditions and the following disclaimer in the documentation
13#      and/or other materials provided with the distribution.
14#    * Neither the name of Virtual Cable S.L. nor the names of its contributors
15#      may be used to endorse or promote products derived from this software
16#      without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29'''
30@author: Adolfo Gómez, dkmaster at dkmon dot com
31'''
32# pylint: disable=unused-wildcard-import,wildcard-import
33
34# This is a simple module loader, so we can add "external opengnsys" modules as addons
35# Modules under "opengsnsys/modules" are always autoloaded
36from __future__ import unicode_literals
37
38import pkgutil
39import os.path
40
41from opengnsys.workers import ServerWorker
42from opengnsys.workers import ClientWorker
43from .log import logger
44
45
46def loadModules(controller, client=False):
47    '''
48    Load own provided modules plus the modules that are in the configuration path.
49    The loading order is not defined (they are loaded as found, because modules MUST be "standalone" modules
50    @param service: The service that:
51       * Holds the configuration
52       * Will be used to initialize modules.
53    '''
54
55    ogModules = []
56   
57    if client is False:
58        from opengnsys.modules.server import OpenGnSys  # @UnusedImport
59        from .modules import server  # @UnusedImport, just used to ensure opengnsys modules are initialized
60        modPath = 'opengnsys.modules.server'
61        modType = ServerWorker
62    else:
63        from opengnsys.modules.client import OpenGnSys  # @UnusedImport @Reimport
64        from .modules import client  # @UnusedImport, just used to ensure opengnsys modules are initialized
65        modPath = 'opengnsys.modules.client'
66        modType = ClientWorker
67   
68    def addCls(cls):
69        logger.debug('Found module class {}'.format(cls))
70        try:
71            if cls.name is None:
72                # Error, cls has no name
73                # Log the issue and
74                logger.error('Class {} has no name attribute'.format(cls))
75                return
76            ogModules.append(cls(controller))
77        except Exception as e:
78            logger.error('Error loading module {}'.format(e))
79
80    def recursiveAdd(p):
81        subcls = p.__subclasses__()
82       
83        if len(subcls) == 0:
84            addCls(p) 
85        else:
86            for c in subcls:
87                recursiveAdd(c)
88
89    def doLoad(paths):
90        for (module_loader, name, ispkg) in pkgutil.iter_modules(paths, modPath + '.'):
91            if ispkg:
92                logger.debug('Found module package {}'.format(name))
93                module_loader.find_module(name).load_module(name)
94
95   
96    if controller.config.has_option('opengnsys', 'path') is True:
97        paths = tuple(os.path.abspath(v) for v in controller.config.get('opengnsys', 'path').split(','))
98    else:
99        paths = ()
100   
101    # paths += (os.path.dirname(sys.modules[modPath].__file__),)
102
103    logger.debug('Loading modules from {}'.format(paths))
104   
105    # Load modules     
106    doLoad(paths)
107   
108    # Add to list of available modules
109    recursiveAdd(modType)
110   
111    return ogModules
Note: See TracBrowser for help on using the repository browser.