author | Edouard Tisserant 7BB06627 <edouard.tisserant@gmail.com> |
Tue, 24 Jan 2017 01:09:54 +0100 | |
branch | 1.2 |
changeset 1641 | 24168e52fc2b |
parent 1571 | 486f94a8032c |
child 1680 | 6db967480b7d |
permissions | -rwxr-xr-x |
203 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
3 |
|
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
4 |
# This file is part of Beremiz, a Integrated Development Environment for |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
5 |
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival. |
203 | 6 |
# |
1455 | 7 |
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
203 | 8 |
# |
1455 | 9 |
# See COPYING file for copyrights details. |
203 | 10 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
11 |
# This program is free software; you can redistribute it and/or |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
12 |
# modify it under the terms of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
13 |
# as published by the Free Software Foundation; either version 2 |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
14 |
# of the License, or (at your option) any later version. |
203 | 15 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
16 |
# This program is distributed in the hope that it will be useful, |
1455 | 17 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
18 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
19 |
# GNU General Public License for more details. |
203 | 20 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
21 |
# You should have received a copy of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
22 |
# along with this program; if not, write to the Free Software |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1455
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
203 | 24 |
|
25 |
# Package initialisation |
|
26 |
||
27 |
from os import listdir, path |
|
28 |
||
399 | 29 |
|
203 | 30 |
_base_path = path.split(__file__)[0] |
31 |
||
399 | 32 |
|
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
717
diff
changeset
|
33 |
def _GetLocalConnectorClassFactory(name): |
1455 | 34 |
return lambda: getattr(__import__(name, globals(), locals()), name + "_connector_factory") |
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
717
diff
changeset
|
35 |
|
1440
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
36 |
connectors = {name:_GetLocalConnectorClassFactory(name) |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
37 |
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
|
38 |
if path.isdir(path.join(_base_path, name)) |
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
717
diff
changeset
|
39 |
and not name.startswith("__")} |
203 | 40 |
|
1455 | 41 |
|
717 | 42 |
def ConnectorFactory(uri, confnodesroot): |
203 | 43 |
""" |
44 |
Return a connector corresponding to the URI |
|
45 |
or None if cannot connect to URI |
|
46 |
""" |
|
1440
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
47 |
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
|
48 |
if servicetype == "LOCAL": |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
49 |
# Local is special case |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
50 |
# 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
|
51 |
# 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
|
52 |
servicetype = "PYRO" |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
53 |
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
|
54 |
taskbaricon=True) |
1455 | 55 |
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
|
56 |
elif servicetype in connectors: |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
57 |
pass |
1455 | 58 |
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
|
59 |
servicetype = servicetype[:-1] |
1455 | 60 |
else: |
1440
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
61 |
return None |
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
62 |
|
e8daabf2c438
Runtime : Added PLCobject methods registring. IDE : Added WAMP connector. Still need some fixes
Edouard Tisserant
parents:
763
diff
changeset
|
63 |
# 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
|
64 |
connectorclass = connectors[servicetype]() |
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
717
diff
changeset
|
65 |
return connectorclass(uri, confnodesroot) |