forked from antlampas/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oggetto.py
197 lines (160 loc) · 6.84 KB
/
oggetto.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
"""
Autore: Francesco Antonetti Lamorgese Passeri
This work is licensed under the Creative Commons Attribution 4.0 International
License. To view a copy of this license, visit
http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative
Commons, PO Box 1866, Mountain View, CA 94042, USA.
"""
import logging
import sys
from multiprocessing import Process,Lock,Queue
from gestore_segnali import gestore_segnali
from contextlib import contextmanager
from time import sleep
ATTESA_CICLO_PRINCIPALE = 0.01
class oggetto(Process):
"""
Oggetto
Classe base per tutti gli oggetti del framework. Ha le caratterisiche di
base per la gestione del processo associato ed imposta ed avvia il Gestore
Segnali dell'oggetto
Object
Base class for all framework objects. It has the characteristics of
basis for the management of the associated process and sets and starts the Manager
Object signals
"""
def __init__(self,
coda_ipc_entrata,
lock_ipc_entrata,
coda_ipc_uscita,
lock_ipc_uscita):
#################### Inizializzazione oggetto ##########################
super().__init__()
logging.info(f"{type(self).__name__}: inizializzazione") # initialization object
self.impostazioni_in_aggiornamento = 0
self.stato = "idle"
# Coda in cui il Gestore Segali mette i segnali ricevuti
self.coda_segnali_entrata = Queue()
self.lock_segnali_entrata = Lock()
# Coda in cui l'oggetto mette i segnali da inviare all'esterno. È presa
# in carico dal Gestore Segnali
self.coda_segnali_uscita = Queue()
self.lock_segnali_uscita = Lock()
##### Impostazione, inizializzazione ed avvio del Gestore Segnali ######
self.gestore_segnali = gestore_segnali(type(self).__name__,
coda_ipc_entrata,
lock_ipc_entrata,
coda_ipc_uscita,
lock_ipc_uscita,
self.coda_segnali_entrata,
self.lock_segnali_entrata,
self.coda_segnali_uscita,
self.lock_segnali_uscita)
self.gestore_segnali.start()
sleep(0.01)
logging.info(f"{type(self).__name__}: avviando gestore segnali") # starting signal manager
with self.lock_segnali_uscita:
self.coda_segnali_uscita.put_nowait(["avvia","gestore_segnali"]) # start "," signal_manager "
################## Fine Inizializzazione oggetto #######################
logging.info(f"{type(self).__name__} inizializzato") # initialized
def run(self):
"""
Punto d'entrata del processo/thread
Entry point of the process / thread
"""
logging.info(f"{type(self).__name__} creato")
# Entra nello stato richiesto
while True:
logging.info(f"{type(self).__name__} entrando in {self.stato}")
s = getattr(self,self.stato)()
if isinstance(s,int):
if s != 0:
break
return int(s)
def idle(self):
"""Stato Idle
This version of the function uses a single call
to self.leggi_segnale to read the next incoming signal,
instead of using a separate block of code to read from the input queue.
It also removes the unnecessary copying of lists by directly unpacking
the return value of self.leggi_segnale.
Finally, it catches exceptions thrown by self.scrivi_segnale and
self.leggi_segnale and returns -1 if an error occurs,
instead of raising an exception.
This allows the caller to handle the error gracefully.
"""
logging.info(f"{type(self).__name__} idle")
try:
self.scrivi_segnale("idle", "")
except Exception as e:
logging.error(f"{type(self).__name__} {e}")
return -1
while True:
try:
segnale, mittente, destinatario, timestamp = self.leggi_segnale()
except Exception as e:
logging.error(f"{type(self).__name__} {e}")
return -1
if segnale == "stop":
try:
self.scrivi_segnale(segnale, "gestore_segnali")
except Exception as e:
logging.error(f"{type(self).__name__} {e}")
return -1
return -1
if hasattr(self, segnale):
self.stato = segnale
return 0
try:
self.scrivi_segnale("segnale non valido", "")
except Exception as e:
logging.error(f"{type(self).__name__} {e}")
return -1
sleep(ATTESA_CICLO_PRINCIPALE)
@staticmethod
def avvia():
"""Stato Avviato - Status Started"""
pass
def ferma(self):
"""Stato Fermato - Status Stopped"""
pass
def termina(self):
"""Stato Terminazione - Status Termination"""
pass
def sospendi(self):
"""Stato Sospensione - Status Suspension"""
pass
def uccidi(self):
"""Stato Uccisione - Status Killing"""
pass
def leggi_segnale(self, timeout=1):
"""
Lettura del primo segnale in entrata - Reading of the first incoming signal
"""
try:
pacchetto_segnale = self.coda_segnali_entrata.get(timeout=timeout)
except Queue.Empty:
raise Exception("Coda segnali entrata vuota - Entry queue empty")
except Exception as e:
logging.error(f"{type(self).__name__} {e}")
raise
segnale, mittente, destinatario, timestamp = pacchetto_segnale + [""] * (4 - len(pacchetto_segnale))
if segnale == "stop":
try:
self.scrivi_segnale(segnale, "gestore_segnali")
except Exception as e:
logging.error(f"{type(self).__name__} {e}")
raise
return [segnale, mittente, destinatario, timestamp]
def scrivi_segnale(self, segnale, destinatario):
"""
Scrittura del segnale in uscita
"""
try:
self.coda_segnali_uscita.put([segnale, destinatario], timeout=1)
except Queue.Full:
raise Exception("Coda Segnali Uscita piena")
except Exception as e:
logging.error(f"{type(self).__name__} {e}")
raise
return 0