Blame view

RIOT/tests/posix_semaphore/main.c 7.76 KB
a752c7ab   elopes   add first test an...
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
  /*
   * Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de>
   * Copyright (C) 2013 René Kijewski <rene.kijewski@fu-berlin.de>
   * Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  /**
   * @ingroup tests
   * @{
   *
   * @file
   * @brief Semaphore test application
   *
   * @author Christian Mehlis <mehlis@inf.fu-berlin.de>
   * @author René Kijewski <rene.kijewski@fu-berlin.de>
   * @author Martine Lenders <mlenders@inf.fu-berlin.de>
   *
   * @}
   */
  
  #include <errno.h>
  #include <stdio.h>
  #include <semaphore.h>
  
  #include "fmt.h"
  #include "msg.h"
  #include "timex.h"
  #include "thread.h"
  #include "xtimer.h"
  
  #define SEMAPHORE_MSG_QUEUE_SIZE        (8)
  #define SEMAPHORE_TEST_THREADS          (5)
  static char test1_thread_stack[THREAD_STACKSIZE_MAIN];
  static char test2_thread_stack[SEMAPHORE_TEST_THREADS][THREAD_STACKSIZE_MAIN];
  static msg_t main_msg_queue[SEMAPHORE_MSG_QUEUE_SIZE];
  static msg_t test1_msg_queue[SEMAPHORE_MSG_QUEUE_SIZE];
  
  static sem_t s1;
  static sem_t s2;
  
  static void *test1_second_thread(void *arg)
  {
      (void) arg;
      msg_init_queue(test1_msg_queue, SEMAPHORE_MSG_QUEUE_SIZE);
      puts("second: sem_trywait");
  
      if (sem_trywait(&s1) < 0) {
          puts("second: sem_trywait failed");
      }
  
      puts("second: sem_trywait done with == 0");
  
      puts("second: wait for post");
  
      if (sem_wait(&s1) < 0) {
          puts("second: sem_wait failed");
      }
  
      puts("second: sem was posted");
  
      puts("second: end");
      return NULL;
  }
  
  static void test1(void)
  {
      puts("first: sem_init");
  
      if (sem_init(&s1, 0, 0) < 0) {
          puts("first: sem_init failed");
      }
  
      puts("first: thread create");
      kernel_pid_t pid = thread_create(test1_thread_stack,
                                       sizeof(test1_thread_stack),
                                       THREAD_PRIORITY_MAIN - 1,
                                       THREAD_CREATE_STACKTEST |
                                       THREAD_CREATE_WOUT_YIELD,
                                       test1_second_thread,
                                       NULL,
                                       "second");
      if (pid == KERNEL_PID_UNDEF) {
          puts("first: thread create failed");
      }
      puts("first: thread created");
  
      puts("first: sem_getvalue");
      int val;
  
      if (sem_getvalue(&s1, &val) < 0 || val != 0) {
          puts("first: sem_getvalue FAILED");
      }
  
      puts("first: sem_getvalue != 0");
  
      puts("first: do yield");
      thread_yield();
      puts("first: done yield");
  
      /*****************************************************************************/
  
      puts("first: sem_trywait");
  
      if (sem_trywait(&s1) < 0) {
          puts("first: sem_trywait FAILED");
      }
  
      puts("first: sem_trywait done");
  
      puts("first: sem_post");
  
      if (sem_post(&s1) < 0) {
          puts("first: sem_post FAILED");
      }
  
      puts("first: sem_post done");
  
      /*****************************************************************************/
  
      puts("first: sem_destroy");
  
      if (sem_destroy(&s1) < 0) {
          puts("first: sem_destroy FAILED");
      }
  
      puts("first: end");
  }
  
  static void *priority_sema_thread(void *name)
  {
      msg_t msg_queue[SEMAPHORE_MSG_QUEUE_SIZE];
      msg_init_queue(msg_queue, SEMAPHORE_MSG_QUEUE_SIZE);
      sem_wait(&s1);
      printf("Thread '%s' woke up.\n", (const char *) name);
      return NULL;
  }
  
  char names[SEMAPHORE_TEST_THREADS][16];
  void test2(void)
  {
      puts("first: sem_init");
  
      if (sem_init(&s1, 0, 0) < 0) {
          puts("first: sem_init FAILED");
      }
  
      for (int i = 0; i < SEMAPHORE_TEST_THREADS; i++) {
          int priority = THREAD_PRIORITY_MAIN - (i + 3) % 10 + 1;
  
          snprintf(names[i], sizeof(names[i]), "priority %d", priority);
          printf("first: thread create: %d\n", priority);
          kernel_pid_t pid = thread_create(test2_thread_stack[i],
                                           sizeof(test2_thread_stack[i]),
                                           priority,
                                           THREAD_CREATE_STACKTEST,
                                           priority_sema_thread,
                                           names[i],
                                           names[i]);
  
          if (pid == KERNEL_PID_UNDEF) {
              puts("first: thread create FAILED");
          }
  
          printf("first: thread created: %s (%d/%d)\n", names[i], i + 1, SEMAPHORE_TEST_THREADS);
      }
  
      puts("------------------------------------------");
  
      for (int i = 0; i < SEMAPHORE_TEST_THREADS; i++) {
          printf("post no. %d\n", i);
          sem_post(&s1);
          puts("Back in main thread.");
      }
  }
  
  static void *test3_one_two_thread(void *arg)
  {
      msg_t msg_queue[SEMAPHORE_MSG_QUEUE_SIZE];
      (void)arg;
      msg_init_queue(msg_queue, SEMAPHORE_MSG_QUEUE_SIZE);
      sem_wait(&s1);
      puts("Thread 1 woke up after waiting for s1.");
      sem_wait(&s2);
      puts("Thread 1 woke up after waiting for s2.");
      return NULL;
  }
  
  static void *test3_two_one_thread(void *arg)
  {
      msg_t msg_queue[SEMAPHORE_MSG_QUEUE_SIZE];
      (void)arg;
      msg_init_queue(msg_queue, SEMAPHORE_MSG_QUEUE_SIZE);
      sem_wait(&s2);
      puts("Thread 2 woke up after waiting for s2.");
      sem_wait(&s1);
      puts("Thread 2 woke up after waiting for s1.");
      return NULL;
  }
  
  void test3(void)
  {
      puts("first: sem_init s1");
      if (sem_init(&s1, 0, 0) < 0) {
          puts("first: sem_init FAILED");
      }
      puts("first: sem_init s2");
      if (sem_init(&s2, 0, 0) < 0) {
          puts("first: sem_init FAILED");
      }
      puts("first: create thread 1");
      if (thread_create(test2_thread_stack[0], sizeof(test2_thread_stack[0]),
                        THREAD_PRIORITY_MAIN - 1, THREAD_CREATE_STACKTEST,
                        test3_one_two_thread, NULL, "thread 1") < 0) {
          puts("first: thread create FAILED");
          return;
      }
      puts("first: create thread 2");
      if (thread_create(test2_thread_stack[1], sizeof(test2_thread_stack[1]),
                        THREAD_PRIORITY_MAIN - 1, THREAD_CREATE_STACKTEST,
                        test3_two_one_thread, NULL, "thread 2") < 0) {
          puts("first: thread create FAILED");
          return;
      }
      puts("------------------------------------------");
      puts("post s1");
      sem_post(&s1);
      puts("post s2");
      sem_post(&s2);
      puts("post s2");
      sem_post(&s2);
      puts("post s1");
      sem_post(&s1);
  }
  
  void test4(void)
  {
      char uint64_str[20];
      struct timespec abs;
      uint64_t now, start, stop;
      const uint64_t exp = 1000000;
      now = xtimer_now_usec64();
      abs.tv_sec = (time_t)((now / US_PER_SEC) + 1);
      abs.tv_nsec = (long)((now % US_PER_SEC) * 1000);
      puts("first: sem_init s1");
      if (sem_init(&s1, 0, 0) < 0) {
          puts("first: sem_init FAILED");
      }
      start = xtimer_now_usec64();
      puts("first: wait 1 sec for s1");
      if (sem_timedwait(&s1, &abs) != 0) {
          if (errno != ETIMEDOUT) {
              printf("error waiting: %d\n", errno);
              return;
          }
          else {
              puts("first: timed out");
          }
      }
      stop = xtimer_now_usec64() - start;
      if ((stop < (exp - 100)) || (stop > (exp + 100))) {
          fmt_u64_dec(uint64_str, stop);
          printf("first: waited only %s usec => FAILED\n", uint64_str);
      }
      else {
          fmt_u64_dec(uint64_str, stop);
          printf("first: waited %s usec\n", uint64_str);
      }
  }
  
  int main(void)
  {
      msg_init_queue(main_msg_queue, SEMAPHORE_MSG_QUEUE_SIZE);
      xtimer_init();
      puts("######################### TEST1:");
      test1();
      puts("######################### TEST2:");
      test2();
      puts("######################### TEST3:");
      test3();
      puts("######################### TEST4:");
      test4();
      puts("######################### DONE");
      return 0;
  }