summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmmq01/init.c
blob: a5ed4fcf39a0b76ecc8223afd0ee3262ceffaedf (plain) (blame)
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
/*
 *  COPYRIGHT (c) 1989-2013.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <fcntl.h>
#include <timesys.h>
#include <errno.h>
#include <rtems/btimer.h>
#include "test_support.h"
#include <tmacros.h>
#include <mqueue.h>
#include <signal.h>   /* signal facilities */

const char rtems_test_name[] = "PSXTMMQ 01";

/* forward declarations to avoid warnings */
void *POSIX_Init(void *argument);

#define MQ_MAXMSG     1
#define MQ_MSGSIZE    sizeof(int)

mqd_t       queue;
mqd_t       queue2;
const char *q_name;

static void benchmark_mq_open(int printable)
{
  benchmark_timer_t end_time;
  struct mq_attr  attr;

  attr.mq_maxmsg  = MQ_MAXMSG;
  attr.mq_msgsize = MQ_MSGSIZE;
  q_name= "queue";

  benchmark_timer_initialize();
    queue = mq_open( q_name, O_CREAT | O_RDWR , 0x777, &attr );
  end_time = benchmark_timer_read();
  rtems_test_assert( queue != (-1) );

  if (printable == 1)
    put_time(
      "mq_open: first open",
      end_time,
      1,        /* Only executed once */
      0,
      0
    );
}

static void benchmark_mq_open_second(int printable)
{
  benchmark_timer_t end_time;
  struct mq_attr  attr;

  attr.mq_maxmsg  = MQ_MAXMSG;
  attr.mq_msgsize = MQ_MSGSIZE;

  benchmark_timer_initialize();
    queue2 =mq_open( q_name, O_RDONLY | O_CREAT , 0x777, &attr);
  end_time = benchmark_timer_read();
  rtems_test_assert( queue2 != (-1) );

  if (printable == 1)
    put_time(
      "mq_open: second open",
      end_time,
      1,        /* Only executed once */
      0,
      0
    );

}

static void benchmark_mq_close(int printable)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
    status = mq_close(queue);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  if (printable == 1)
    put_time(
      "mq_close: close of first",
      end_time,
      1,        /* Only executed once */
      0,
      0
    );
}

static void benchmark_mq_close_second(int printable)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
    status = mq_close(queue2);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  if (printable == 1)
    put_time(
      "mq_close: close of second",
      end_time,
      1,        /* Only executed once */
      0,
      0
    );
}

static void benchmark_mq_unlink(void)
{
  benchmark_timer_t end_time;
  int  status;

  benchmark_timer_initialize();
    status = mq_unlink(q_name);
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "mq_unlink: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );
}

static void benchmark_mq_notify(void)
{
  benchmark_timer_t end_time;
  int             status;
  struct sigevent event;

  event.sigev_notify = SIGEV_SIGNAL;
  event.sigev_signo  = SIGUSR1;

  benchmark_timer_initialize();
    status = mq_notify( queue2, &event );
  end_time = benchmark_timer_read();
  rtems_test_assert( status == 0 );

  put_time(
    "mq_notify: only case",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );
}

static void benchmark_mq_send(void)
{
  benchmark_timer_t end_time;
  int  status;

  status = 9;
  benchmark_timer_initialize();
    status = mq_send( queue, (const char *)&status, MQ_MSGSIZE, 1 );
  end_time = benchmark_timer_read();
  rtems_test_assert( status != (-1) );

  put_time(
    "mq_send: no threads waiting",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );
}

static void benchmark_mq_receive(void)
{
  benchmark_timer_t end_time;
  int           status;
  unsigned int  priority;
  int           message[MQ_MAXMSG];
  priority = 1;       /*priority low*/

  benchmark_timer_initialize();
    status = mq_receive( queue2, ( char *)message, MQ_MSGSIZE, &priority );
  end_time = benchmark_timer_read();
  rtems_test_assert( status != (-1) );

  put_time(
    "mq_receive: available",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );
}

static void benchmark_mq_timedsend(void)
{
  benchmark_timer_t end_time;
  int              status;
  struct timespec  timeout;

  status = 5;
  timeout.tv_sec  = 0;
  timeout.tv_nsec = 1;
  benchmark_timer_initialize();
    status = mq_timedsend(
	     queue, (const char *)&status, MQ_MSGSIZE, 1, &timeout);
  end_time = benchmark_timer_read();
  rtems_test_assert( status != (-1) );

  put_time(
    "mq_timedsend: no threads waiting",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );
}

static void benchmark_mq_timedreceive(void)
{
  benchmark_timer_t end_time;
  int              status;
  unsigned int     priority;
  struct timespec  timeout;
  int              message[MQ_MAXMSG];

  priority = 1;       /*priority low*/
  timeout.tv_sec  = 0;
  timeout.tv_nsec = 0;
  benchmark_timer_initialize();
    status = mq_timedreceive(
		  queue2, ( char *)message, MQ_MSGSIZE, &priority, &timeout);
  end_time = benchmark_timer_read();
  rtems_test_assert( status != (-1) );

  put_time(
    "mq_timedreceive: available",
    end_time,
    1,        /* Only executed once */
    0,
    0
  );
}


void *POSIX_Init(
  void *argument
)
{
  TEST_BEGIN();
  /* create the first message queue READWRITE */
  benchmark_mq_open(1);
  /* send message using first queue */
  benchmark_mq_send();
  /* open a second message queue READ ONLY */
  benchmark_mq_open_second(1);
  /* receiving message using the seconde queue */
  benchmark_mq_receive();
  /* closing the second message queue */
  benchmark_mq_close_second(0);
  /* unlinking the first queue */
  benchmark_mq_unlink();
  /* closing the first queue */
  benchmark_mq_close(0);
  /* now repeat basically the same, but for the timed-send/recive */
  /* open the first queue */
  benchmark_mq_open(0);
  /* send message using the first queue */
  benchmark_mq_timedsend();
  /* open a second message queue READ ONLY */
  benchmark_mq_open_second(0);
  /* receiving message using the seconde queue */
  benchmark_mq_timedreceive();
  /* calling notify */
  benchmark_mq_notify();
  /* closing the second message queue */
  benchmark_mq_close_second(1);
  /* closing the first queue */
  benchmark_mq_close(1);

 TEST_END();
  rtems_test_exit(0);
}

/* configuration information */

#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER

#define CONFIGURE_MAXIMUM_POSIX_THREADS     1
#define CONFIGURE_POSIX_INIT_THREAD_TABLE
#define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES  2

#define CONFIGURE_INIT

#include <rtems/confdefs.h>
/* end of file */