bluetooth: Remove commented out code.
[profile/ivi/pulseaudio-panda.git] / src / tests / asyncmsgq-test.c
1 /***
2   This file is part of PulseAudio.
3
4   PulseAudio is free software; you can redistribute it and/or modify
5   it under the terms of the GNU Lesser General Public License as published
6   by the Free Software Foundation; either version 2.1 of the License,
7   or (at your option) any later version.
8
9   PulseAudio is distributed in the hope that it will be useful, but
10   WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12   General Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public License
15   along with PulseAudio; if not, write to the Free Software
16   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17   USA.
18 ***/
19
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <assert.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27
28 #include <pulsecore/asyncmsgq.h>
29 #include <pulsecore/thread.h>
30 #include <pulsecore/log.h>
31 #include <pulsecore/macro.h>
32
33 enum {
34     OPERATION_A,
35     OPERATION_B,
36     OPERATION_C,
37     QUIT
38 };
39
40 static void the_thread(void *_q) {
41     pa_asyncmsgq *q = _q;
42     int quit = 0;
43
44     do {
45         int code = 0;
46
47         pa_assert_se(pa_asyncmsgq_get(q, NULL, &code, NULL, NULL, NULL, 1) == 0);
48
49         switch (code) {
50
51             case OPERATION_A:
52                 pa_log_info("Operation A");
53                 break;
54
55             case OPERATION_B:
56                 pa_log_info("Operation B");
57                 break;
58
59             case OPERATION_C:
60                 pa_log_info("Operation C");
61                 break;
62
63             case QUIT:
64                 pa_log_info("quit");
65                 quit = 1;
66                 break;
67         }
68
69         pa_asyncmsgq_done(q, 0);
70
71     } while (!quit);
72 }
73
74 int main(int argc, char *argv[]) {
75     pa_asyncmsgq *q;
76     pa_thread *t;
77
78     pa_assert_se(q = pa_asyncmsgq_new(0));
79
80     pa_assert_se(t = pa_thread_new("test", the_thread, q));
81
82     pa_log_info("Operation A post");
83     pa_asyncmsgq_post(q, NULL, OPERATION_A, NULL, 0, NULL, NULL);
84
85     pa_thread_yield();
86
87     pa_log_info("Operation B post");
88     pa_asyncmsgq_post(q, NULL, OPERATION_B, NULL, 0, NULL, NULL);
89
90     pa_thread_yield();
91
92     pa_log_info("Operation C send");
93     pa_asyncmsgq_send(q, NULL, OPERATION_C, NULL, 0, NULL);
94
95     pa_thread_yield();
96
97     pa_log_info("Quit post");
98     pa_asyncmsgq_post(q, NULL, QUIT, NULL, 0, NULL, NULL);
99
100     pa_thread_free(t);
101
102     pa_asyncmsgq_unref(q);
103
104     return 0;
105 }