99c208819f79d59bade31e2bc8abecafa5f7c212
[ric-plt/lib/rmr.git] / src / bindings / rmr-python / rmr / rmr.py
1 # vim: expandtab ts=4 sw=4:
2 # ==================================================================================
3 #       Copyright (c) 2019 Nokia
4 #       Copyright (c) 2018-2019 AT&T Intellectual Property.
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #          http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 # ==================================================================================
18 import uuid
19 import json
20 from ctypes import RTLD_GLOBAL, Structure, c_int, POINTER, c_char, c_char_p, c_void_p, memmove, cast
21 from ctypes import CDLL
22 from ctypes import create_string_buffer
23 from rmr.exceptions import BadBufferAllocation
24
25 # https://docs.python.org/3.7/library/ctypes.html
26 # https://stackoverflow.com/questions/2327344/ctypes-loading-a-c-shared-library-that-has-dependencies/30845750#30845750
27 # make sure you do a set -x LD_LIBRARY_PATH /usr/local/lib/;
28
29 # even though we don't use these directly, they contain symbols we need
30 _ = CDLL("libnng.so", mode=RTLD_GLOBAL)
31 rmr_c_lib = CDLL("librmr_nng.so", mode=RTLD_GLOBAL)
32
33
34 # Internal Helpers (not a part of public api)
35
36
37 _rmr_const = rmr_c_lib.rmr_get_consts
38 _rmr_const.argtypes = []
39 _rmr_const.restype = c_char_p
40
41
42 def _get_constants(cache={}):
43     """
44     Get or build needed constants from rmr
45     TODO: are there constants that end user applications need?
46     """
47     if cache:
48         return cache
49
50     js = _rmr_const()  # read json string
51     cache = json.loads(str(js.decode()))  # create constants value object as a hash
52     return cache
53
54
55 def _get_mapping_dict(cache={}):
56     """
57     Get or build the state mapping dict
58
59     RMR_OK              0   state is good
60     RMR_ERR_BADARG      1   argument passd to function was unusable
61     RMR_ERR_NOENDPT     2   send/call could not find an endpoint based on msg type
62     RMR_ERR_EMPTY       3   msg received had no payload; attempt to send an empty message
63     RMR_ERR_NOHDR       4   message didn't contain a valid header
64     RMR_ERR_SENDFAILED  5   send failed; errno has nano reason
65     RMR_ERR_CALLFAILED  6   unable to send call() message
66     RMR_ERR_NOWHOPEN    7   no wormholes are open
67     RMR_ERR_WHID        8   wormhole id was invalid
68     RMR_ERR_OVERFLOW    9   operation would have busted through a buffer/field size
69     RMR_ERR_RETRY       10  request (send/call/rts) failed, but caller should retry (EAGAIN for wrappers)
70     RMR_ERR_RCVFAILED   11  receive failed (hard error)
71     RMR_ERR_TIMEOUT     12  message processing call timed out
72     RMR_ERR_UNSET       13  the message hasn't been populated with a transport buffer
73     RMR_ERR_TRUNC       14  received message likely truncated
74     RMR_ERR_INITFAILED  15  initialization of something (probably message) failed
75
76     """
77     if cache:
78         return cache
79
80     rmr_consts = _get_constants()
81     for key in rmr_consts:  # build the state mapping dict
82         if key[:7] in ["RMR_ERR", "RMR_OK"]:
83             en = int(rmr_consts[key])
84             cache[en] = key
85
86     return cache
87
88
89 def _state_to_status(stateno):
90     """
91     Convert a msg state to status
92
93     """
94     sdict = _get_mapping_dict()
95     return sdict.get(stateno, "UNKNOWN STATE")
96
97
98 _RCONST = _get_constants()
99
100
101 ##############
102 # PUBLIC API
103 ##############
104
105
106 # These constants are directly usable by importers of this library
107 # TODO: Are there others that will be useful?
108
109 RMR_MAX_RCV_BYTES = _RCONST["RMR_MAX_RCV_BYTES"]
110 RMRFL_MTCALL = _RCONST.get("RMRFL_MTCALL", 0x02)  # initialization flags
111 RMRFL_NONE = _RCONST.get("RMRFL_NONE", 0x0)
112 RMR_OK = _RCONST["RMR_OK"]  # useful state constants
113 RMR_ERR_TIMEOUT = _RCONST["RMR_ERR_TIMEOUT"]
114 RMR_ERR_RETRY = _RCONST["RMR_ERR_RETRY"]
115
116
117 class rmr_mbuf_t(Structure):
118     """
119     Reimplementation of rmr_mbuf_t which is in an unaccessible header file (src/common/include/rmr.h)
120
121     | typedef struct {
122     |    int     state;          // state of processing
123     |    int     mtype;          // message type
124     |    int     len;            // length of data in the payload (send or received)
125     |    unsigned char* payload; // transported data
126     |    unsigned char* xaction; // pointer to fixed length transaction id bytes
127     |    int sub_id;             // subscription id
128     |    int      tp_state;      // transport state (a.k.a errno)
129     |
130     | these things are off limits to the user application
131     |
132     |    void*   tp_buf;         // underlying transport allocated pointer (e.g. nng message)
133     |    void*   header;         // internal message header (whole buffer: header+payload)
134     |    unsigned char* id;      // if we need an ID in the message separate from the xaction id
135     |    int flags;              // various MFL (private) flags as needed
136     |    int alloc_len;          // the length of the allocated space (hdr+payload)
137     | } rmr_mbuf_t;
138
139     We do not include the fields we are not supposed to mess with
140
141     RE PAYLOADs type below, see the documentation for c_char_p:
142        class ctypes.c_char_p
143            Represents the C char * datatype when it points to a zero-terminated string. For a general character pointer that may also point to binary data, POINTER(c_char) must be used. The constructor accepts an integer address, or a bytes object.
144     """
145
146     _fields_ = [
147         ("state", c_int),
148         ("mtype", c_int),
149         ("len", c_int),
150         (
151             "payload",
152             POINTER(c_char),
153         ),  # according to th following the python bytes are already unsinged https://bytes.com/topic/python/answers/695078-ctypes-unsigned-char
154         ("xaction", POINTER(c_char)),
155         ("sub_id", c_int),
156         ("tp_state", c_int),
157     ]
158
159
160 # argtypes and restype are important: https://stackoverflow.com/questions/24377845/ctype-why-specify-argtypes
161
162
163 _rmr_init = rmr_c_lib.rmr_init
164 _rmr_init.argtypes = [c_char_p, c_int, c_int]
165 _rmr_init.restype = c_void_p
166
167
168 def rmr_init(uproto_port, max_msg_size, flags):
169     """
170     Refer to rmr C documentation for rmr_init
171     extern void* rmr_init(char* uproto_port, int max_msg_size, int flags)
172     """
173     return _rmr_init(uproto_port, max_msg_size, flags)
174
175
176 _rmr_ready = rmr_c_lib.rmr_ready
177 _rmr_ready.argtypes = [c_void_p]
178 _rmr_ready.restype = c_int
179
180
181 def rmr_ready(vctx):
182     """
183     Refer to rmr C documentation for rmr_ready
184     extern int rmr_ready(void* vctx)
185     """
186     return _rmr_ready(vctx)
187
188
189 _rmr_close = rmr_c_lib.rmr_close
190 _rmr_close.argtypes = [c_void_p]
191
192
193 def rmr_close(vctx):
194     """
195     Refer to rmr C documentation for rmr_close
196     extern void rmr_close(void* vctx)
197     """
198     return _rmr_close(vctx)
199
200
201 _rmr_set_stimeout = rmr_c_lib.rmr_set_stimeout
202 _rmr_set_stimeout.argtypes = [c_void_p, c_int]
203 _rmr_set_stimeout.restype = c_int
204
205
206 def rmr_set_stimeout(vctx, time):
207     """
208     Refer to the rmr C documentation for rmr_set_stimeout
209     extern int rmr_set_stimeout(void* vctx, int time)
210     """
211     return _rmr_set_stimeout(vctx, time)
212
213
214 _rmr_alloc_msg = rmr_c_lib.rmr_alloc_msg
215 _rmr_alloc_msg.argtypes = [c_void_p, c_int]
216 _rmr_alloc_msg.restype = POINTER(rmr_mbuf_t)
217
218
219 def rmr_alloc_msg(vctx, size, payload=None, gen_transaction_id=False, mtype=None, meid=None):
220     """
221     Refer to the rmr C documentation for rmr_alloc_msg
222     extern rmr_mbuf_t* rmr_alloc_msg(void* vctx, int size)
223
224     if payload is not None, attempts to set the payload
225     if gen_transaction_id is True, it generates and sets a transaction id
226     if mtype is not None, sets the sbuf's message type
227     if meid is not None, sets the sbuf's meid
228
229     """
230     sbuf = _rmr_alloc_msg(vctx, size)
231     # make sure it's good
232     try:
233         sbuf.contents
234         if payload:
235             set_payload_and_length(payload, sbuf)
236
237         if gen_transaction_id:
238             generate_and_set_transaction_id(sbuf)
239
240         if mtype:
241             sbuf.contents.mtype = mtype
242
243         if meid:
244             rmr_set_meid(sbuf, meid)
245
246         return sbuf
247
248     except ValueError:
249         raise BadBufferAllocation
250
251
252 _rmr_realloc_payload = rmr_c_lib.rmr_realloc_payload
253 _rmr_realloc_payload.argtypes = [POINTER(rmr_mbuf_t), c_int, c_int, c_int]  # new_len, copy, clone
254 _rmr_realloc_payload.restype = POINTER(rmr_mbuf_t)
255
256
257 def rmr_realloc_payload(ptr_mbuf, new_len, copy=False, clone=False):
258     """
259     Refer to the rmr C documentation for rmr_realloc_payload().
260     extern rmr_mbuf_t* rmr_realloc_payload(rmr_mbuf_t*, int, int, int)
261     """
262     return _rmr_realloc_payload(ptr_mbuf, new_len, copy, clone)
263
264
265 _rmr_free_msg = rmr_c_lib.rmr_free_msg
266 _rmr_free_msg.argtypes = [c_void_p]
267 _rmr_free_msg.restype = None
268
269
270 def rmr_free_msg(mbuf):
271     """
272     Refer to the rmr C documentation for rmr_free_msg
273     extern void rmr_free_msg(rmr_mbuf_t* mbuf )
274     """
275     if mbuf is not None:
276         _rmr_free_msg(mbuf)
277
278
279 _rmr_payload_size = rmr_c_lib.rmr_payload_size
280 _rmr_payload_size.argtypes = [POINTER(rmr_mbuf_t)]
281 _rmr_payload_size.restype = c_int
282
283
284 def rmr_payload_size(ptr_mbuf):
285     """
286     Refer to the rmr C documentation for rmr_payload_size
287     extern int rmr_payload_size(rmr_mbuf_t* msg)
288     """
289     return _rmr_payload_size(ptr_mbuf)
290
291
292 """
293 The following functions all seem to have the same interface
294 """
295
296 _rmr_send_msg = rmr_c_lib.rmr_send_msg
297 _rmr_send_msg.argtypes = [c_void_p, POINTER(rmr_mbuf_t)]
298 _rmr_send_msg.restype = POINTER(rmr_mbuf_t)
299
300
301 def rmr_send_msg(vctx, ptr_mbuf):
302     """
303     Refer to the rmr C documentation for rmr_send_msg
304     extern rmr_mbuf_t* rmr_send_msg(void* vctx, rmr_mbuf_t* msg)
305     """
306     return _rmr_send_msg(vctx, ptr_mbuf)
307
308
309 # TODO: the old message (Send param) is actually optional, but I don't know how to specify that in Ctypes.
310 _rmr_rcv_msg = rmr_c_lib.rmr_rcv_msg
311 _rmr_rcv_msg.argtypes = [c_void_p, POINTER(rmr_mbuf_t)]
312 _rmr_rcv_msg.restype = POINTER(rmr_mbuf_t)
313
314
315 def rmr_rcv_msg(vctx, ptr_mbuf):
316     """
317     Refer to the rmr C documentation for rmr_rcv_msg
318     extern rmr_mbuf_t* rmr_rcv_msg(void* vctx, rmr_mbuf_t* old_msg)
319     """
320     return _rmr_rcv_msg(vctx, ptr_mbuf)
321
322
323 _rmr_torcv_msg = rmr_c_lib.rmr_torcv_msg
324 _rmr_torcv_msg.argtypes = [c_void_p, POINTER(rmr_mbuf_t), c_int]
325 _rmr_torcv_msg.restype = POINTER(rmr_mbuf_t)
326
327
328 def rmr_torcv_msg(vctx, ptr_mbuf, ms_to):
329     """
330     Refer to the rmr C documentation for rmr_torcv_msg
331     extern rmr_mbuf_t* rmr_torcv_msg(void* vctx, rmr_mbuf_t* old_msg, int ms_to)
332     """
333     return _rmr_torcv_msg(vctx, ptr_mbuf, ms_to)
334
335
336 _rmr_rts_msg = rmr_c_lib.rmr_rts_msg
337 _rmr_rts_msg.argtypes = [c_void_p, POINTER(rmr_mbuf_t)]
338 _rmr_rts_msg.restype = POINTER(rmr_mbuf_t)
339
340
341 def rmr_rts_msg(vctx, ptr_mbuf):
342     """
343     Refer to the rmr C documentation for rmr_rts_msg
344     extern rmr_mbuf_t*  rmr_rts_msg(void* vctx, rmr_mbuf_t* msg)
345     """
346     return _rmr_rts_msg(vctx, ptr_mbuf)
347
348
349 _rmr_call = rmr_c_lib.rmr_call
350 _rmr_call.argtypes = [c_void_p, POINTER(rmr_mbuf_t)]
351 _rmr_call.restype = POINTER(rmr_mbuf_t)
352
353
354 def rmr_call(vctx, ptr_mbuf):
355     """
356     Refer to the rmr C documentation for rmr_call
357     extern rmr_mbuf_t* rmr_call(void* vctx, rmr_mbuf_t* msg)
358     """
359     return _rmr_call(vctx, ptr_mbuf)
360
361
362 _rmr_bytes2meid = rmr_c_lib.rmr_bytes2meid
363 _rmr_bytes2meid.argtypes = [POINTER(rmr_mbuf_t), c_char_p, c_int]
364 _rmr_bytes2meid.restype = c_int
365
366
367 def rmr_set_meid(ptr_mbuf, byte_str):
368     """
369     Refer to the rmr C documentation for rmr_bytes2meid
370     extern int rmr_bytes2meid(rmr_mbuf_t* mbuf, unsigned char const* src, int len);
371     """
372     return _rmr_bytes2meid(ptr_mbuf, byte_str, len(byte_str))
373
374
375 # CAUTION:  Some of the C functions expect a mutable buffer to copy the bytes into;
376 #           if there is a get_* function below, use it to set up and return the
377 #           buffer properly.
378
379 # extern unsigned char*  rmr_get_meid(rmr_mbuf_t* mbuf, unsigned char* dest);
380 # we don't provide direct access to this function (unless it is asked for) because it is not really useful to provide your own buffer.
381 # Rather, rmr_get_meid does this for you, and just returns the string.
382 _rmr_get_meid = rmr_c_lib.rmr_get_meid
383 _rmr_get_meid.argtypes = [POINTER(rmr_mbuf_t), c_char_p]
384 _rmr_get_meid.restype = c_char_p
385
386
387 def rmr_get_meid(ptr_mbuf):
388     """
389     Get the managed equipment ID (meid) from the message header.
390
391     Parameters
392     ----------
393     ptr_mbuf: ctypes c_void_p
394         Pointer to an rmr message buffer
395
396     Returns
397     -------
398     string:
399         meid
400     """
401     sz = _get_constants().get("RMR_MAX_MEID", 64)  # size for buffer to fill
402     buf = create_string_buffer(sz)
403     _rmr_get_meid(ptr_mbuf, buf)
404     return buf.value
405
406
407 _rmr_get_src = rmr_c_lib.rmr_get_src
408 _rmr_get_src.argtypes = [POINTER(rmr_mbuf_t), c_char_p]
409 _rmr_get_src.restype = c_char_p
410
411
412 def rmr_get_src(ptr_mbuf, dest):
413     """
414     Refer to the rmr C documentation for rmr_get_src
415     extern unsigned char*  rmr_get_src(rmr_mbuf_t* mbuf, unsigned char* dest);
416     """
417     return _rmr_get_src(ptr_mbuf, dest)
418
419
420 # Methods that exist ONLY in rmr-python, and are not wrapped methods
421 # In hindsight, I wish i put these in a seperate module, but leaving this here to prevent api breakage.
422
423
424 def get_payload(ptr_mbuf):
425     """
426     Given a rmr_buf_t*, get it's binary payload as a bytes object
427
428     Parameters
429     ----------
430     ptr_mbuf: ctypes c_void_p
431         Pointer to an rmr message buffer
432
433     Returns
434     -------
435     bytes:
436         the message payload
437     """
438     # Logic came from the answer here: https://stackoverflow.com/questions/55103298/python-ctypes-read-pointerc-char-in-python
439     sz = ptr_mbuf.contents.len
440     CharArr = c_char * sz
441     return CharArr(*ptr_mbuf.contents.payload[:sz]).raw
442
443
444 def get_xaction(ptr_mbuf):
445     """
446     given a rmr_buf_t*, get it's transaction id
447
448     Parameters
449     ----------
450     ptr_mbuf: ctypes c_void_p
451         Pointer to an rmr message buffer
452
453     Returns
454     -------
455     bytes:
456         the transaction id
457     """
458     val = cast(ptr_mbuf.contents.xaction, c_char_p).value
459     sz = _get_constants().get("RMR_MAX_XID", 0)
460     return val[:sz]
461
462
463 def message_summary(ptr_mbuf):
464     """
465     Returns a dict that contains the fields of a message
466
467     Parameters
468     ----------
469     ptr_mbuf: ctypes c_void_p
470         Pointer to an rmr message buffer
471
472     Returns
473     -------
474     dict:
475         dict message summary
476     """
477     return {
478         "payload": get_payload(ptr_mbuf) if ptr_mbuf.contents.state == RMR_OK else None,
479         "payload length": ptr_mbuf.contents.len,
480         "message type": ptr_mbuf.contents.mtype,
481         "subscription id": ptr_mbuf.contents.sub_id,
482         "transaction id": get_xaction(ptr_mbuf),
483         "message state": ptr_mbuf.contents.state,
484         "message status": _state_to_status(ptr_mbuf.contents.state),
485         "payload max size": rmr_payload_size(ptr_mbuf),
486         "meid": rmr_get_meid(ptr_mbuf),
487         "message source": get_src(ptr_mbuf),
488         "errno": ptr_mbuf.contents.tp_state,
489     }
490
491
492 def set_payload_and_length(byte_str, ptr_mbuf):
493     """
494     | Set an rmr payload and content length
495     | In place method, no return
496
497     Parameters
498     ----------
499     byte_str: bytes
500         the bytes to set the payload to
501     ptr_mbuf: ctypes c_void_p
502         Pointer to an rmr message buffer
503     """
504     if rmr_payload_size(ptr_mbuf) < len(byte_str):  # existing message payload too small
505         ptr_mbuf = rmr_realloc_payload(ptr_mbuf, len(byte_str), True)
506
507     memmove(ptr_mbuf.contents.payload, byte_str, len(byte_str))
508     ptr_mbuf.contents.len = len(byte_str)
509
510
511 def generate_and_set_transaction_id(ptr_mbuf):
512     """
513     | Generate a UUID and Set an rmr transaction id to it
514     | In place method, no return
515
516     Parameters
517     ----------
518     ptr_mbuf: ctypes c_void_p
519         Pointer to an rmr message buffer
520     """
521     uu_id = uuid.uuid1().hex.encode("utf-8")
522     sz = _get_constants().get("RMR_MAX_XID", 0)
523     memmove(ptr_mbuf.contents.xaction, uu_id, sz)
524
525
526 def get_src(ptr_mbuf):
527     """
528     Get the message source (likely host:port)
529
530     Parameters
531     ----------
532     ptr_mbuf: ctypes c_void_p
533         Pointer to an rmr message buffer
534
535     Returns
536     -------
537     string:
538         message source
539     """
540     sz = _get_constants().get("RMR_MAX_SRC", 64)  # size to fill
541     buf = create_string_buffer(sz)
542     rmr_get_src(ptr_mbuf, buf)
543     return buf.value.decode()