ebs-linuxnode-core 3.1.3__tar.gz → 3.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {ebs-linuxnode-core-3.1.3/ebs_linuxnode_core.egg-info → ebs-linuxnode-core-3.1.4}/PKG-INFO +1 -1
  2. ebs-linuxnode-core-3.1.4/ebs/linuxnode/core/shell.py +96 -0
  3. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4/ebs_linuxnode_core.egg-info}/PKG-INFO +1 -1
  4. ebs-linuxnode-core-3.1.3/ebs/linuxnode/core/shell.py +0 -21
  5. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/.gitignore +0 -0
  6. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/__init__.py +0 -0
  7. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/__init__.py +0 -0
  8. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/__init__.py +0 -0
  9. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/background.py +0 -0
  10. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/basemixin.py +0 -0
  11. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/basenode.py +0 -0
  12. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/busy.py +0 -0
  13. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/config.py +0 -0
  14. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/constants.py +0 -0
  15. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/http.py +0 -0
  16. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/log.py +0 -0
  17. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/nodeid.py +0 -0
  18. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/core/resources.py +0 -0
  19. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/db/__init__.py +0 -0
  20. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs/linuxnode/db/sequence.py +0 -0
  21. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs_linuxnode_core.egg-info/SOURCES.txt +0 -0
  22. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs_linuxnode_core.egg-info/dependency_links.txt +0 -0
  23. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs_linuxnode_core.egg-info/requires.txt +0 -0
  24. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/ebs_linuxnode_core.egg-info/top_level.txt +0 -0
  25. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/example.py +0 -0
  26. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/setup.cfg +0 -0
  27. {ebs-linuxnode-core-3.1.3 → ebs-linuxnode-core-3.1.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ebs-linuxnode-core
3
- Version: 3.1.3
3
+ Version: 3.1.4
4
4
  Summary: Twisted based linux application node core
5
5
  Home-page: https://github.com/ebs-universe/ebs-linuxnode-core
6
6
  Author: Chintalagiri Shashank
@@ -0,0 +1,96 @@
1
+
2
+
3
+ from os import environ
4
+ from twisted.internet.utils import getProcessOutput
5
+ from twisted.internet.error import ProcessExitedAlready
6
+ from twisted.internet.protocol import ProcessProtocol
7
+ from .basemixin import BaseMixin
8
+ from .config import ConfigMixin
9
+
10
+
11
+ class ProcessClient(ProcessProtocol):
12
+ def __init__(self, line_handler=None, exit_handler=None,
13
+ name=None, *args, **kwargs):
14
+ super(ProcessClient, self).__init__(*args, **kwargs)
15
+ self._line_handler = line_handler
16
+ self._exit_handler = exit_handler
17
+ self._name = name
18
+
19
+ def connectionMade(self):
20
+ pass
21
+
22
+ def outReceived(self, data: bytes):
23
+ if self._line_handler:
24
+ self._line_handler(data.strip().decode())
25
+
26
+ def errReceived(self, data):
27
+ pass
28
+
29
+ def inConnectionLost(self):
30
+ # stdin is closed. (we probably did it)"
31
+ pass
32
+
33
+ def outConnectionLost(self):
34
+ # The child closed their stdout.
35
+ pass
36
+
37
+ def errConnectionLost(self):
38
+ # The child closed their stderr.
39
+ pass
40
+
41
+ def processExited(self, reason):
42
+ pass
43
+
44
+ def processEnded(self, reason):
45
+ if self._exit_handler:
46
+ self._exit_handler(reason.value.exitCode)
47
+
48
+
49
+ class BaseShellMixin(ConfigMixin, BaseMixin):
50
+ def __init__(self, *args, **kwargs):
51
+ self._shell_processes = {}
52
+ super(BaseShellMixin, self).__init__(*args, **kwargs)
53
+
54
+ def _shell_execute(self, command, response_handler):
55
+ if len(command) > 1:
56
+ args = command[1:]
57
+ else:
58
+ args = []
59
+ d = getProcessOutput(command[0], args, env=environ)
60
+ d.addCallback(response_handler)
61
+ return d
62
+
63
+ def shell_process(self, executable, args=None, env=None,
64
+ protocol=None, usePTY=True,
65
+ line_handler=None, exit_handler=None, name=None):
66
+ if not name:
67
+ name = executable
68
+
69
+ if protocol:
70
+ client = protocol()
71
+ elif line_handler:
72
+ usePTY = True
73
+ client = ProcessClient(
74
+ exit_handler=exit_handler,
75
+ line_handler=line_handler,
76
+ name=name
77
+ )
78
+ else:
79
+ raise AttributeError("Either protocol or line_handler must be provided")
80
+
81
+ self._shell_processes[name] = client
82
+ if not args:
83
+ args = []
84
+ if not len(args) or args[0] != executable:
85
+ args.insert(0, executable)
86
+ self.reactor.spawnProcess(client, executable, args=args, env=env, usePTY=usePTY)
87
+
88
+ def stop(self):
89
+ super(BaseShellMixin, self).stop()
90
+ for name, process in self._shell_processes.items():
91
+ try:
92
+ process.transport.signalProcess('TERM')
93
+ process.transport.loseConnection()
94
+ self.log.info(f"Terminated child process {name}")
95
+ except ProcessExitedAlready:
96
+ self.log.info(f"Child process {name} not running")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ebs-linuxnode-core
3
- Version: 3.1.3
3
+ Version: 3.1.4
4
4
  Summary: Twisted based linux application node core
5
5
  Home-page: https://github.com/ebs-universe/ebs-linuxnode-core
6
6
  Author: Chintalagiri Shashank
@@ -1,21 +0,0 @@
1
-
2
-
3
- from os import environ
4
- from twisted.internet.utils import getProcessOutput
5
- from .basemixin import BaseMixin
6
- from .config import ConfigMixin
7
-
8
-
9
- class BaseShellMixin(ConfigMixin, BaseMixin):
10
- # def __init__(self, *args, **kwargs):
11
- # self._shell_processes = {}
12
- # super(BaseShellMixin, self).__init__(self, *args, **kwargs)
13
-
14
- def _shell_execute(self, command, response_handler):
15
- if len(command) > 1:
16
- args = command[1:]
17
- else:
18
- args = []
19
- d = getProcessOutput(command[0], args, env=environ)
20
- d.addCallback(response_handler)
21
- return d