author | Paul Beltyukov <beltyukov.p.a@gmail.com> |
Fri, 09 Sep 2016 11:47:00 +0500 | |
changeset 1527 | 642bae8e8607 |
parent 1455 | 4ba27ed51e48 |
child 1571 | 486f94a8032c |
permissions | -rwxr-xr-x |
203 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
# |
|
1455 | 4 |
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
203 | 5 |
# |
1455 | 6 |
# See COPYING file for copyrights details. |
203 | 7 |
# |
1455 | 8 |
# This library is free software; you can redistribute it and/or |
9 |
# modify it under the terms of the GNU General Public |
|
10 |
# License as published by the Free Software Foundation; either |
|
11 |
# version 2.1 of the License, or (at your option) any later version. |
|
203 | 12 |
# |
1455 | 13 |
# This library is distributed in the hope that it will be useful, |
14 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
16 |
# General Public License for more details. |
|
203 | 17 |
# |
1455 | 18 |
# You should have received a copy of the GNU General Public |
19 |
# License along with this library; if not, write to the Free Software |
|
20 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
203 | 21 |
|
22 |
# Package initialisation |
|
23 |
||
24 |
from os import listdir, path |
|
25 |
||
399 | 26 |
|
203 | 27 |
_base_path = path.split(__file__)[0] |
28 |
||
399 | 29 |
|
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
717
diff
changeset
|
30 |
def _GetLocalConnectorClassFactory(name): |
1455 | 31 |
return lambda: getattr(__import__(name, globals(), locals()), name + "_connector_factory") |
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
717
diff
changeset
|
32 |
|
1440
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
33 |
connectors = {name:_GetLocalConnectorClassFactory(name) |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
34 |
for name in listdir(_base_path) |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
35 |
if path.isdir(path.join(_base_path, name)) |
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
717
diff
changeset
|
36 |
and not name.startswith("__")} |
203 | 37 |
|
1455 | 38 |
|
717 | 39 |
def ConnectorFactory(uri, confnodesroot): |
203 | 40 |
""" |
41 |
Return a connector corresponding to the URI |
|
42 |
or None if cannot connect to URI |
|
43 |
""" |
|
1440
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
44 |
servicetype = uri.split("://")[0].upper() |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
45 |
if servicetype == "LOCAL": |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
46 |
# Local is special case |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
47 |
# pyro connection to local runtime |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
48 |
# started on demand, listening on random port |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
49 |
servicetype = "PYRO" |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
50 |
runtime_port = confnodesroot.AppFrame.StartLocalRuntime( |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
51 |
taskbaricon=True) |
1455 | 52 |
uri = "PYROLOC://127.0.0.1:" + str(runtime_port) |
1440
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
53 |
elif servicetype in connectors: |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
54 |
pass |
1455 | 55 |
elif servicetype[-1] == 'S' and servicetype[:-1] in connectors: |
1440
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
56 |
servicetype = servicetype[:-1] |
1455 | 57 |
else: |
1440
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
58 |
return None |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
59 |
|
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
60 |
# import module according to uri type |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
61 |
connectorclass = connectors[servicetype]() |
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
717
diff
changeset
|
62 |
return connectorclass(uri, confnodesroot) |