704ae154783d51962f98625f8a689c264df4da4f
[ric-app/mc.git] / sidecars / listener / sender.c
1 // vim: ts=4 sw=4 noet:
2 /*
3 --------------------------------------------------------------------------------
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 */
19
20 /*
21         Mnemonic:       sender.c
22         Abstract:       Very simple test sender. Sends messages with a given delay between each.
23                                 The sender also uses epoll_wait() to ensure that any received messages
24                                 don't clog the queue.
25
26         Parms:          The following positional parameters are recognised on the command line:
27                                         [listen_port [delay [stats-freq] [msg-type]]]]
28
29                                         Defaults:
30                                                 listen_port 43086 
31                                                 delay (mu-sec) 1000000 (1 sec)
32                                                 stats-freq 10
33                                                 msg-type 0
34
35         Date:           1 April 2019
36 */
37
38 #include <unistd.h>
39 #include <errno.h>
40 #include <string.h>
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <sys/epoll.h>
44 #include <time.h>
45
46 #include <rmr/rmr.h>
47
48 int main( int argc, char** argv ) {
49         void* mrc;                                                      //msg router context
50         struct epoll_event events[1];                   // list of events to give to epoll
51         struct epoll_event epe;                 // event definition for event to listen to
52         int     ep_fd = -1;                                             // epoll's file des (given to epoll_wait)
53         int rcv_fd;                                                     // file des that NNG tickles -- give this to epoll to listen on
54         int nready;                                                             // number of events ready for receive
55         rmr_mbuf_t*             sbuf;                                   // send buffer
56         rmr_mbuf_t*             rbuf;                                   // received buffer
57         int     count = 0;
58         int     rcvd_count = 0;
59         char*   listen_port = "43086";
60         int             delay = 1000000;                                                // mu-sec delay between messages
61         int             mtype = 0;
62         int             stats_freq = 100;
63
64         if( argc > 1 ) {
65                 listen_port = argv[1];
66         }
67         if( argc > 2 ) {
68                 delay = atoi( argv[2] );
69         }
70         if( argc > 3 ) {
71                 mtype = atoi( argv[3] );
72         }
73
74         fprintf( stderr, "<DEMO> listen port: %s; mtype: %d; delay: %d\n", listen_port, mtype, delay );
75
76         if( (mrc = rmr_init( listen_port, 1400, RMRFL_NONE )) == NULL ) {
77                 fprintf( stderr, "<DEMO> unable to initialise RMr\n" );
78                 exit( 1 );
79         }
80
81         rcv_fd = rmr_get_rcvfd( mrc );                                  // set up epoll things, start by getting the FD from MRr
82         if( rcv_fd < 0 ) {
83                 fprintf( stderr, "<DEMO> unable to set up polling fd\n" );
84                 exit( 1 );
85         }
86         if( (ep_fd = epoll_create1( 0 )) < 0 ) {
87                 fprintf( stderr, "[FAIL] unable to create epoll fd: %d\n", errno );
88                 exit( 1 );
89         }
90         epe.events = EPOLLIN;
91         epe.data.fd = rcv_fd;
92
93         if( epoll_ctl( ep_fd, EPOLL_CTL_ADD, rcv_fd, &epe ) != 0 )  {
94                 fprintf( stderr, "[FAIL] epoll_ctl status not 0 : %s\n", strerror( errno ) );
95                 exit( 1 );
96         }
97
98         sbuf = rmr_alloc_msg( mrc, 256 );       // alloc first send buffer; subsequent buffers allcoated on send
99         rbuf = NULL;                                            // don't need to alloc receive buffer
100
101         while( ! rmr_ready( mrc ) ) {           // must have a route table before we can send; wait til RMr say it has one
102                 sleep( 1 );
103         }
104         fprintf( stderr, "<DEMO> rmr is ready\n" );
105         
106
107         while( 1 ) {                                                                            // send messages until the cows come home
108                 snprintf( sbuf->payload, 200, "count=%d received= %d ts=%lld %d stand up and cheer!\n",         // create the payload
109                         count, rcvd_count, (long long) time( NULL ), rand() );
110
111                 sbuf->mtype = mtype;                                                    // fill in the message bits
112                 sbuf->len =  strlen( sbuf->payload ) + 1;               // our receiver likely wants a nice acsii-z string
113                 sbuf->state = 0;
114                 sbuf = rmr_send_msg( mrc, sbuf );                               // send it (send returns an empty payload on success, or the original payload on fail/retry)
115                 while( sbuf->state == RMR_ERR_RETRY ) {                 // soft failure (device busy?) retry
116                         sbuf = rmr_send_msg( mrc, sbuf );                       // retry send until it's good (simple test; real programmes should do better)
117                 }
118                 count++;
119                 fprintf( stderr, "<SNDR> sent message\n" );
120
121                 usleep( delay );
122                 mtype++;
123                 if( mtype > 6 ) {
124                         mtype = 1;
125                 }
126         }
127 }
128