Add API allowing xAPPs to send alarm messages
[ric-plt/xapp-frame-cpp.git] / src / messaging / callback.cpp
1 // vi: ts=4 sw=4 noet:
2 /*
3 ==================================================================================
4         Copyright (c) 2020 Nokia
5         Copyright (c) 2020 AT&T Intellectual Property.
6
7    Licensed under the Apache License, Version 2.0 (the "License");
8    you may not use this file except in compliance with the License.
9    You may obtain a copy of the License at
10
11        http://www.apache.org/licenses/LICENSE-2.0
12
13    Unless required by applicable law or agreed to in writing, software
14    distributed under the License is distributed on an "AS IS" BASIS,
15    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16    See the License for the specific language governing permissions and
17    limitations under the License.
18 ==================================================================================
19 */
20
21 /*
22         Mnemonic:       callback.cpp
23         Abstract:       Function defs for the callback managment object
24         Date:           9 March 2020
25         Author:         E. Scott Daniels
26 */
27
28 #include <cstdlib>
29
30 #include <rmr/rmr.h>
31
32 #include "message.hpp"
33
34 namespace xapp {
35
36 /*
37         Builder.
38 */
39 Callback::Callback( user_callback ufun, void* data ) {          // builder
40         user_fun = ufun;
41         udata = data;
42 }
43
44 /*
45         there is nothing to be done from a destruction perspective, so no
46         destruction function needed at the moment.
47 */
48
49 /*
50         Drive_cb will invoke the callback and pass along the stuff passed here.
51 */
52 void xapp::Callback::Drive_cb( Message& m ) {
53         if( user_fun != NULL ) {
54                 user_fun( m, m.Get_mtype(), m.Get_subid(), m.Get_len(), m.Get_payload(),  udata );
55         }
56 }
57
58
59
60 } // namespace