connectors/__init__.py
author greg
Mon, 18 May 2009 07:47:24 +0200
changeset 344 25b7b7f854bc
parent 298 732e30ac8bf3
child 399 77e23bf04c33
permissions -rwxr-xr-x
Wait the debug thread has terminated before freeing PLC to avoid random segmentation fault.

Store working directory to globals copy, in order to be used in runtime.py.
203
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     1
#!/usr/bin/env python
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     3
#
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     4
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     5
#
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     6
#See COPYING file for copyrights details.
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     7
#
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     8
#This library is free software; you can redistribute it and/or
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
     9
#modify it under the terms of the GNU General Public
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    10
#License as published by the Free Software Foundation; either
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    11
#version 2.1 of the License, or (at your option) any later version.
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    12
#
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    13
#This library is distributed in the hope that it will be useful,
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    14
#but WITHOUT ANY WARRANTY; without even the implied warranty of
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    15
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    16
#General Public License for more details.
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    17
#
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    18
#You should have received a copy of the GNU General Public
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    19
#License along with this library; if not, write to the Free Software
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    20
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    21
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    22
# Package initialisation
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    23
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    24
from os import listdir, path
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    25
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    26
_base_path = path.split(__file__)[0]
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    27
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    28
connector_types = [name for name in listdir(_base_path) if path.isdir(path.join(_base_path, name)) and name.upper() != "CVS" and not name.startswith("__")]
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    29
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    30
def ConnectorFactory(uri, pluginsroot):
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    31
    """
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    32
    Return a connector corresponding to the URI
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    33
    or None if cannot connect to URI
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    34
    """
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    35
    servicetype = uri.split("://")[0]
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    36
    if servicetype in connector_types:
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    37
        # import module according to uri type
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    38
        connectormodule = getattr(__import__("connectors."+servicetype), servicetype)
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    39
        factoryname = servicetype + "_connector_factory"
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    40
        return getattr(connectormodule, factoryname)(uri, pluginsroot)
227
48c13b84505c - Some improovements in debug data feedback data
etisserant
parents: 203
diff changeset
    41
    elif servicetype == "LOCAL":
290
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 227
diff changeset
    42
        #handle incompatibility with tray icon and svgui...
298
732e30ac8bf3 Fixed the way LOCAL:// connector detects X11 poisoned plugins to avoid launching tray-icon enabled runtime (-x1)
etisserant
parents: 290
diff changeset
    43
        poisoned_plugin = False
732e30ac8bf3 Fixed the way LOCAL:// connector detects X11 poisoned plugins to avoid launching tray-icon enabled runtime (-x1)
etisserant
parents: 290
diff changeset
    44
        for PlugIn in pluginsroot.IterChilds():
732e30ac8bf3 Fixed the way LOCAL:// connector detects X11 poisoned plugins to avoid launching tray-icon enabled runtime (-x1)
etisserant
parents: 290
diff changeset
    45
            poisoned_plugin |= PlugIn.PlugType == "svgui"
732e30ac8bf3 Fixed the way LOCAL:// connector detects X11 poisoned plugins to avoid launching tray-icon enabled runtime (-x1)
etisserant
parents: 290
diff changeset
    46
        runtime_port = pluginsroot.AppFrame.StartLocalRuntime(taskbaricon = not poisoned_plugin)
227
48c13b84505c - Some improovements in debug data feedback data
etisserant
parents: 203
diff changeset
    47
        import PYRO
48c13b84505c - Some improovements in debug data feedback data
etisserant
parents: 203
diff changeset
    48
        return PYRO.PYRO_connector_factory(
290
3bd617ae7a05 Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents: 227
diff changeset
    49
                       "PYRO://127.0.0.1:"+str(runtime_port), 
227
48c13b84505c - Some improovements in debug data feedback data
etisserant
parents: 203
diff changeset
    50
                       pluginsroot)
203
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    51
    else :
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    52
        return None    
cb9901076a21 Added concepts :
etisserant
parents:
diff changeset
    53