File: oscbndlrecv.c

package info (click to toggle)
o2 1.0~repack-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,156 kB
  • sloc: ansic: 9,132; python: 137; sh: 111; makefile: 10
file content (147 lines) | stat: -rw-r--r-- 5,389 bytes parent folder | download | duplicates (2)
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
//  oscrecvtest.c - test o2_osc_port_new()
//
//  this test is designed to run with oscsendtest.c

#include "o2.h"
#include "stdio.h"
#include "string.h"
#include "assert.h"

#ifdef WIN32
#include "usleep.h" // special windows implementation of sleep/usleep
#else
#include <unistd.h>
#endif

// Here's what is sent
//   at NOW+2.9: [/xyz/msg1 1009 "an arbitrary string at 2.9"],
//               [/abcdefg/msg2 2009 "another arbitrary string at 2.9"]
//   at NOW+2.8: [/xyz/msg1 1008 "an arbitrary string at 2.8"],
//               [/abcdefg/msg2 2008 "another arbitrary string at 2.8"]
//   at NOW+2.7: [/xyz/msg1 1007 "an arbitrary string at 2.7"],
//               [/abcdefg/msg2 2007 "another arbitrary string at 2.7"]
//   at NOW+2.6: [/xyz/msg1 1006 "an arbitrary string at 2.6"],
//               [/abcdefg/msg2 2006 "another arbitrary string at 2.6"]
//   at NOW+2.5: [/xyz/msg1 1005 "an arbitrary string at 2.5"],
//               [/abcdefg/msg2 2005 "another arbitrary string at 2.5"]
// Then we'll send a nested bundle:
//   at NOW+3:   [/first 1111 "an arbitrary string at 3.0"],
//               [#bundle NOW+3.1
//                 [/xyz/msg1 1011 "an arbitrary string at 3.1"],
//                 [/abcdefg/msg2 2011 "another arbitrary string at 3.1"]]
//
// Putting that in delivery order, we expect:
//   at NOW+2.5: /xyz/msg1 1005 "an arbitrary string at 2.5"
//               /abcdefg/msg2 2005 "another arbitrary string at 2.5"
//   at NOW+2.6: /xyz/msg1 1006 "an arbitrary string at 2.6"
//               /abcdefg/msg2 2006 "another arbitrary string at 2.6"
//   at NOW+2.7: /xyz/msg1 1007 "an arbitrary string at 2.7"
//               /abcdefg/msg2 2007 "another arbitrary string at 2.7"
//   at NOW+2.8: /xyz/msg1 1008 "an arbitrary string at 2.8"
//               /abcdefg/msg2 2008 "another arbitrary string at 2.8"
//   at NOW+2.9: /xyz/msg1 1009 "an arbitrary string at 2.9"
//               /abcdefg/msg2 2009 "another arbitrary string at 2.9"
//   at NOW+3:   /first 1111 "an arbitrary string at 3.0"
//   at NOW+3.1: /xyz/msg1 1011 "an arbitrary string at 3.1"
//               /abcdefg/msg2 2011 "another arbitrary string at 3.1"


int ints[] = {1005, 2005, 1006, 2006, 1007, 2007, 1008, 2008, 1009, 2009,
              3001, 3002, 3003, 4001, 4002, 4003, 999};

char *strings[] = {
    "an arbitrary string at 2.5",
    "another arbitrary string at 2.5",
    "an arbitrary string at 2.6",
    "another arbitrary string at 2.6",
    "an arbitrary string at 2.7",
    "another arbitrary string at 2.7",
    "an arbitrary string at 2.8",
    "another arbitrary string at 2.8",
    "an arbitrary string at 2.9",
    "another arbitrary string at 2.9",
    "first string at 3",
    "msg1 string at 0",
    "msg2 string at 0",
    "first string at 3.1",
    "msg1 string at 3.2",
    "msg2 string at 3.2",
    "not a valid string"};

o2_time times[] = {2.5, 2.5, 2.6, 2.6, 2.7, 2.7, 2.8, 2.8, 2.9, 2.9,
                   3.0, 3.0, 3.0, 3.1, 3.2, 3.2, 999};


int msg_count = 0;
o2_time start_time = 0.0;


// test if x and y are within 30ms (Note: 10ms was too tight under
// Windows, but I'm not sure why.
int approximate(o2_time x, o2_time y)
{
    return (x < y + 0.03) && (y < x + 0.03);
}


void meta_handler(char *name, o2_arg_ptr *argv, int argc, o2_msg_data_ptr msg)
{
    if (msg_count == 0) { // assume first message is delivered at the right time
        start_time = o2_time_get() - 2.5; // timestamp was "now + 2.5"
    }
    printf("%s receieved %d, \"%s\"\n",
           name, argv[0]->i, argv[1]->s);
    printf("    elapsed %g timestamp %g o2 time %g last_time %g\n",
           o2_time_get() - start_time, msg->timestamp, o2_time_get(),
           o2_gtsched.last_time);
    assert(argv);
    assert(argc == 2);
    assert(argv[0]->i == ints[msg_count]);
    assert(strcmp(argv[1]->s, strings[msg_count]) == 0);
    assert(approximate(o2_time_get() - start_time, times[msg_count]));
    msg_count++;
}

#define ARGS o2_msg_data_ptr msg, const char *types, \
             o2_arg_ptr *argv, int argc, void *user_data
void first_handler(ARGS) { meta_handler("first_handler", argv, argc, msg); }
void msg1_handler (ARGS) { meta_handler("msg1_handler",  argv, argc, msg); }
void msg2_handler (ARGS) { meta_handler("msg2_handler",  argv, argc, msg); }


int main(int argc, const char * argv[])
{
    printf("Usage: oscbndlrecv flags "
           "(see o2.h for flags, use a for all, also u for UDP)\n");
    int tcpflag = TRUE;
    if (argc == 2) {
        o2_debug_flags(argv[1]);
        tcpflag = (strchr(argv[1], 'u') == NULL);
    }
    if (argc > 2) {
        printf("WARNING: o2server ignoring extra command line argments\n");
    }

    o2_initialize("test");
    printf("tcpflag %d\n", tcpflag);
    o2_service_new("oscrecv");
    int err = o2_osc_port_new("oscrecv", 8100, tcpflag);
    assert(err == O2_SUCCESS);
    printf("created osc server port 8100\n");

    o2_clock_set(NULL, NULL);
    
    o2_method_new("/oscrecv/xyz/msg1", "is", msg1_handler, NULL, FALSE, TRUE);
    o2_method_new("/oscrecv/abcdefg/msg2", "is", msg2_handler, 
                  NULL, FALSE, TRUE);
    o2_method_new("/oscrecv/first", "is", first_handler, NULL, FALSE, TRUE);
    while (msg_count < 16) {
        o2_poll();
        usleep(1000); // 1ms
    }
    o2_osc_port_free(8100);
    o2_finish();
    sleep(1);
    printf("OSCRECV DONE\n");
    return 0;
}