1 | /* $Id: tstOnce.cpp 62477 2016-07-22 18:27:37Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - RTOnce.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008-2016 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include <iprt/once.h>
|
---|
32 | #include <iprt/stream.h>
|
---|
33 | #include <iprt/initterm.h>
|
---|
34 | #include <iprt/thread.h>
|
---|
35 | #include <iprt/semaphore.h>
|
---|
36 | #include <iprt/string.h>
|
---|
37 | #include <iprt/err.h>
|
---|
38 | #include <iprt/asm.h>
|
---|
39 |
|
---|
40 |
|
---|
41 | /*********************************************************************************************************************************
|
---|
42 | * Global Variables *
|
---|
43 | *********************************************************************************************************************************/
|
---|
44 | static int g_cErrors = 0;
|
---|
45 | static bool g_fOnceCB1 = false;
|
---|
46 | static uint32_t volatile g_cOnce2CB = 0;
|
---|
47 | static bool volatile g_fOnce2Ready = false;
|
---|
48 | static RTONCE g_Once2 = RTONCE_INITIALIZER;
|
---|
49 | static RTSEMEVENTMULTI g_hEventMulti = NIL_RTSEMEVENTMULTI;
|
---|
50 |
|
---|
51 |
|
---|
52 | static DECLCALLBACK(int) Once1CB(void *pvUser)
|
---|
53 | {
|
---|
54 | if (g_fOnceCB1)
|
---|
55 | return VERR_WRONG_ORDER;
|
---|
56 | if (pvUser != (void *)1)
|
---|
57 | {
|
---|
58 | RTPrintf("tstOnce: ERROR - Once1CB: pvUser=%p!\n", pvUser);
|
---|
59 | g_cErrors++;
|
---|
60 | return VERR_INVALID_PARAMETER;
|
---|
61 | }
|
---|
62 | return VINF_SUCCESS;
|
---|
63 | }
|
---|
64 |
|
---|
65 |
|
---|
66 | static DECLCALLBACK(int) Once2CB(void *pvUser)
|
---|
67 | {
|
---|
68 | if (ASMAtomicIncU32(&g_cOnce2CB) != 1)
|
---|
69 | {
|
---|
70 | RTPrintf("tstOnce: ERROR - Once2CB: g_cOnce2CB not zero!\n");
|
---|
71 | g_cErrors++;
|
---|
72 | return VERR_WRONG_ORDER;
|
---|
73 | }
|
---|
74 | if (pvUser != (void *)42)
|
---|
75 | {
|
---|
76 | RTPrintf("tstOnce: ERROR - Once2CB: pvUser=%p!\n", pvUser);
|
---|
77 | g_cErrors++;
|
---|
78 | return VERR_INVALID_PARAMETER;
|
---|
79 | }
|
---|
80 | RTThreadSleep(2);
|
---|
81 | Assert(!g_fOnce2Ready);
|
---|
82 | ASMAtomicWriteBool(&g_fOnce2Ready, true);
|
---|
83 | return VINF_SUCCESS;
|
---|
84 | }
|
---|
85 |
|
---|
86 | static DECLCALLBACK(int) Once2Thread(RTTHREAD hThread, void *pvUser)
|
---|
87 | {
|
---|
88 | NOREF(hThread); NOREF(pvUser);
|
---|
89 |
|
---|
90 | int rc = RTSemEventMultiWait(g_hEventMulti, RT_INDEFINITE_WAIT);
|
---|
91 | if (RT_FAILURE(rc))
|
---|
92 | return rc;
|
---|
93 | rc = RTOnce(&g_Once2, Once2CB, (void *)42);
|
---|
94 | if (RT_SUCCESS(rc))
|
---|
95 | {
|
---|
96 | if (!ASMAtomicUoReadBool(&g_fOnce2Ready))
|
---|
97 | {
|
---|
98 | RTPrintf("tstOnce: ERROR - Once2CB: Not initialized!\n");
|
---|
99 | g_cErrors++;
|
---|
100 | }
|
---|
101 | }
|
---|
102 | return rc;
|
---|
103 | }
|
---|
104 |
|
---|
105 |
|
---|
106 | int main()
|
---|
107 | {
|
---|
108 | RTR3InitExeNoArguments(0);
|
---|
109 |
|
---|
110 | /*
|
---|
111 | * Just a simple testcase.
|
---|
112 | */
|
---|
113 | RTPrintf("tstOnce: TESTING - smoke...\n");
|
---|
114 | RTONCE Once1 = RTONCE_INITIALIZER;
|
---|
115 | g_fOnceCB1 = false;
|
---|
116 | int rc = RTOnce(&Once1, Once1CB, (void *)1);
|
---|
117 | if (rc != VINF_SUCCESS)
|
---|
118 | RTPrintf("tstOnce: ERROR - Once1, 1 failed, rc=%Rrc\n", rc);
|
---|
119 | g_fOnceCB1 = false;
|
---|
120 | rc = RTOnce(&Once1, Once1CB, (void *)1);
|
---|
121 | if (rc != VINF_SUCCESS)
|
---|
122 | RTPrintf("tstOnce: ERROR - Once1, 2 failed, rc=%Rrc\n", rc);
|
---|
123 |
|
---|
124 | /*
|
---|
125 | * Throw a bunch of threads up against a init once thing.
|
---|
126 | */
|
---|
127 | RTPrintf("tstOnce: TESTING - bunch of threads...\n");
|
---|
128 | /* create the semaphore they'll be waiting on. */
|
---|
129 | rc = RTSemEventMultiCreate(&g_hEventMulti);
|
---|
130 | if (RT_FAILURE(rc))
|
---|
131 | {
|
---|
132 | RTPrintf("tstOnce: FATAL ERROR - RTSemEventMultiCreate returned %Rrc\n", rc);
|
---|
133 | return 1;
|
---|
134 | }
|
---|
135 |
|
---|
136 | /* create the threads */
|
---|
137 | RTTHREAD aThreads[32];
|
---|
138 | for (unsigned i = 0; i < RT_ELEMENTS(aThreads); i++)
|
---|
139 | {
|
---|
140 | char szName[16];
|
---|
141 | RTStrPrintf(szName, sizeof(szName), "ONCE2-%d\n", i);
|
---|
142 | rc = RTThreadCreate(&aThreads[i], Once2Thread, NULL, 0, RTTHREADTYPE_DEFAULT, RTTHREADFLAGS_WAITABLE, szName);
|
---|
143 | if (RT_FAILURE(rc))
|
---|
144 | {
|
---|
145 | RTPrintf("tstOnce: ERROR - failed to create thread #%d\n", i);
|
---|
146 | g_cErrors++;
|
---|
147 | }
|
---|
148 | }
|
---|
149 |
|
---|
150 | /* kick them off and yield */
|
---|
151 | rc = RTSemEventMultiSignal(g_hEventMulti);
|
---|
152 | if (RT_FAILURE(rc))
|
---|
153 | {
|
---|
154 | RTPrintf("tstOnce: FATAL ERROR - RTSemEventMultiSignal returned %Rrc\n", rc);
|
---|
155 | return 1;
|
---|
156 | }
|
---|
157 | RTThreadYield();
|
---|
158 |
|
---|
159 | /* wait for all of them to finish up, 30 seconds each. */
|
---|
160 | for (unsigned i = 0; i < RT_ELEMENTS(aThreads); i++)
|
---|
161 | if (aThreads[i] != NIL_RTTHREAD)
|
---|
162 | {
|
---|
163 | int rc2;
|
---|
164 | rc = RTThreadWait(aThreads[i], 30*1000, &rc2);
|
---|
165 | if (RT_FAILURE(rc))
|
---|
166 | {
|
---|
167 | RTPrintf("tstOnce: ERROR - RTThreadWait on thread #%u returned %Rrc\n", i, rc);
|
---|
168 | g_cErrors++;
|
---|
169 | }
|
---|
170 | else if (RT_FAILURE(rc2))
|
---|
171 | {
|
---|
172 | RTPrintf("tstOnce: ERROR - Thread #%u returned %Rrc\n", i, rc2);
|
---|
173 | g_cErrors++;
|
---|
174 | }
|
---|
175 | }
|
---|
176 |
|
---|
177 | /*
|
---|
178 | * Summary.
|
---|
179 | */
|
---|
180 | if (!g_cErrors)
|
---|
181 | RTPrintf("tstOnce: SUCCESS\n");
|
---|
182 | else
|
---|
183 | RTPrintf("tstOnce: FAILURE - %d errors\n", g_cErrors);
|
---|
184 |
|
---|
185 | return !!g_cErrors;
|
---|
186 | }
|
---|
187 |
|
---|