-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtibrvfttime.py
235 lines (178 loc) · 5.92 KB
/
tibrvfttime.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
##
# tibrvfttime.py - example timestamp message program using
# TIBRV Fault Tolerant API
#
# rewrite TIBRV example: tibrvfttime.c
#
# LAST MODIFIED: V1.0 2016-12-26 ARIEN [email protected]
#
import sys
import signal
import getopt
from datetime import datetime
from pytibrv.Tibrv import *
from pytibrv.TibrvFt import *
# Module Variables
_running = True
def signal_proc(signal, frame):
global _running
_running = False
print()
print('CRTL-C PRESSED')
def usage():
print()
print('tibrvfttime.py [options]')
print('')
print('options:')
print(' [--service service] RVD Service')
print(' [--network network] RVD Network')
print(' [--daemon daemon] RVD Daemon')
print(' [--ft-service ft-svc] RVFT Service')
print(' [--ft-network ft-net] RVFT Network')
print(' [--ft-daemon ft-daemon] RVFT Daemon')
print(' [--ft-weight weight] RVFT Weight, default 50')
print()
sys.exit(1)
def get_params(argv):
params = ['service=', 'network=', 'daemon=',
'ft-service=', 'ft-network=', 'ft-daemon=', 'ft-weight='
]
try:
opts, args = getopt.getopt(argv, '', params)
except getopt.GetoptError:
usage()
service = None
network = None
daemon = None
ft_svc = None
ft_net = None
ft_daemon = None
ft_weight = 50
for opt, arg in opts:
if opt == '--service':
service = arg
elif opt == '--network':
network = arg
elif opt == '--daemon':
daemon = arg
elif opt == '--ft-service':
ft_svc = arg
elif opt == '--ft-network':
ft_net = arg
elif opt == '--ft-daemon':
ft_daemon = arg
elif opt == '--ft-weight':
ft_weight = arg
else:
usage()
if len(args) != 0:
usage()
return service, network, daemon, ft_svc, ft_net, ft_daemon, ft_weight
class App:
def __init__(self):
self.tx = None
self.timerId = None
self.ft_tx = None
self.ft_mem = None
self.active = False
self.subj = ''
self.progname = ''
def advCB(event: TibrvEvent, message: TibrvMsg, closure):
print('#### RVFT ADVISORY: {}'.format(message.sendSubject))
print('Advisory message is: {}'.format(str(message)))
return
def pubTime(event: TibrvEvent, message: TibrvMsg, closure):
ap = closure
# do nothing if not active
if not ap.active:
return
tt = TibrvMsgDateTime.now()
msg = TibrvMsg()
err = msg.addDateTime('DATA', tt)
if err != TIBRV_OK:
print('Error generating timestamp data: {}'.format(TibrvStatus.text(err)))
tibrvMsg_Destroy(msg)
return
err = ap.tx.send(msg, ap.subj)
if err != TIBRV_OK:
print('Error publishing timestamp message: {}'.format(TibrvStatus.text(err)))
print(datetime.now(), '>', str(msg))
msg.destroy()
def processInstruction(id: TibrvFtMember, groupName: str, action: int, closure):
ap = closure
if action == TIBRVFT_PREPARE_TO_ACTIVATE:
print('####### PREPARE TO ACTIVATE: {}'.format(groupName))
elif action == TIBRVFT_ACTIVATE:
print('####### ACTIVATE: {}'.format(groupName))
ap.active = True
elif action == TIBRVFT_DEACTIVATE:
print('####### DEACTIVATE: {}'.format(groupName))
ap.active = False
return
# MAIN PROGRAM
def main(argv):
service, network, daemon, ft_svc, ft_net, ft_daemon, ft_weight = get_params(argv[1:])
timeInt = 10.0
groupName = 'TIBRVFT_TIME_EXAMPLE'
numactive = 1
hbInterval = 1.5
prepareInterval = 0
activateInterval = 4.8
ap = App()
ap.progname = argv[0]
ap.subj = 'TIBRVFT_TIME'
err = Tibrv.open()
if err != TIBRV_OK:
print('{}: Failed to open TIB/RV: {}'.format('', ap.progname, TibrvStatus.text(err)))
sys.exit(1)
ap.tx = TibrvTx()
err = ap.tx.create(service, network, daemon)
if err != TIBRV_OK:
print('{}: Failed to initialize transport: {}'.format('', ap.progname, TibrvStatus.text(err)))
sys.exit(1)
print('Active group member will publish time every {} seconds.'.format(timeInt))
print('Subject is {}'.format(ap.subj))
print('Inactive will not publish time')
que = TibrvQueue()
ap.timerId = TibrvTimer()
err = ap.timerId.create(que, TibrvTimerCallback(pubTime), timeInt, ap)
if err != TIBRV_OK:
print('Error adding repeating timer: -- {}'.foramt(TibrvStatus.text(err)))
sys.exit(3)
# create RVFT
ap.ft_tx = TibrvTx()
err = ap.ft_tx.create(ft_svc, ft_net, ft_daemon)
if err != TIBRV_OK:
print('{}: Failed to initialize fault tolerant transport -- {}'.format(
ap.progname, TibrvStatus.text(err)))
sys.exit(3)
# join RVFT
ap.ft_mem = TibrvFtMember()
err = ap.ft_mem.create(que, TibrvFtMemberCallback(processInstruction), ap.ft_tx,
groupName, ft_weight, numactive,
hbInterval, prepareInterval, activateInterval,
ap)
if err != TIBRV_OK:
print('{} : Failed to join group - {}'.format(ap.progname,TibrvStatus.text(err)))
sys.exit(4)
# Subscribe to RVFT advisories
advId = TibrvListener()
err = advId.create(que, TibrvMsgCallback(advCB), ap.ft_tx,
'_RV.*.RVFT.*.' + groupName,
ap)
if err != TIBRV_OK:
print('{} : Failed to start listening to advisories - {}'.format(
ap.progname, TibrvStatus.text(err)))
sys.exit(5)
# Set Signal Handler for Ctrl-C
global _running
signal.signal(signal.SIGINT, signal_proc)
while _running:
que.timedDispatch(0.5)
advId.destroy()
ap.timerId.destroy()
ap.ft_mem.destroy()
Tibrv.close()
return
if __name__ == "__main__":
main(sys.argv)