VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstOnce.cpp@ 13841

Last change on this file since 13841 was 10947, checked in by vboxsync, 16 years ago

tstOnce: extended the checks a bit.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.9 KB
Line 
1/* $Id: tstOnce.cpp 10947 2008-07-29 18:27:35Z vboxsync $ */
2/** @file
3 * IPRT Testcase - RTOnce.
4 */
5
6/*
7 * Copyright (C) 2008 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31/*******************************************************************************
32* Header Files *
33*******************************************************************************/
34#include <iprt/once.h>
35#include <iprt/stream.h>
36#include <iprt/initterm.h>
37#include <iprt/thread.h>
38#include <iprt/semaphore.h>
39#include <iprt/string.h>
40#include <iprt/err.h>
41#include <iprt/asm.h>
42
43
44/*******************************************************************************
45* Global Variables *
46*******************************************************************************/
47static int g_cErrors = 0;
48static bool g_fOnceCB1 = false;
49static uint32_t volatile g_cOnce2CB = 0;
50static bool volatile g_fOnce2Ready = false;
51static RTONCE g_Once2 = RTONCE_INITIALIZER;
52static RTSEMEVENTMULTI g_hEventMulti = NIL_RTSEMEVENTMULTI;
53
54
55static DECLCALLBACK(int) Once1CB(void *pvUser1, void *pvUser2)
56{
57 if (g_fOnceCB1)
58 return VERR_WRONG_ORDER;
59 if (pvUser1 != (void *)1 || pvUser2 != (void *)42)
60 {
61 RTPrintf("tstOnce: ERROR - Once1CB: pvUser1=%p pvUser2=%p!\n", pvUser1, pvUser2);
62 g_cErrors++;
63 return VERR_INVALID_PARAMETER;
64 }
65 return VINF_SUCCESS;
66}
67
68
69static DECLCALLBACK(int) Once2CB(void *pvUser1, void *pvUser2)
70{
71 if (ASMAtomicIncU32(&g_cOnce2CB) != 1)
72 {
73 RTPrintf("tstOnce: ERROR - Once2CB: g_cOnce2CB not zero!\n");
74 g_cErrors++;
75 return VERR_WRONG_ORDER;
76 }
77 if (pvUser1 != (void *)42 || pvUser2 != (void *)1)
78 {
79 RTPrintf("tstOnce: ERROR - Once2CB: pvUser1=%p pvUser2=%p!\n", pvUser1, pvUser2);
80 g_cErrors++;
81 return VERR_INVALID_PARAMETER;
82 }
83 RTThreadSleep(2);
84 Assert(!g_fOnce2Ready);
85 ASMAtomicWriteBool(&g_fOnce2Ready, true);
86 return VINF_SUCCESS;
87}
88
89static DECLCALLBACK(int) Once2Thread(RTTHREAD hThread, void *pvUser)
90{
91 NOREF(hThread); NOREF(pvUser);
92
93 int rc = RTSemEventMultiWait(g_hEventMulti, RT_INDEFINITE_WAIT);
94 if (RT_FAILURE(rc))
95 return rc;
96 rc = RTOnce(&g_Once2, Once2CB, (void *)42, (void *)1);
97 if (RT_SUCCESS(rc))
98 {
99 if (!ASMAtomicUoReadBool(&g_fOnce2Ready))
100 {
101 RTPrintf("tstOnce: ERROR - Once2CB: Not initialized!\n");
102 g_cErrors++;
103 }
104 }
105 return rc;
106}
107
108
109int main()
110{
111 RTR3Init();
112
113 /*
114 * Just a simple testcase.
115 */
116 RTPrintf("tstOnce: TESTING - smoke...\n");
117 RTONCE Once1 = RTONCE_INITIALIZER;
118 g_fOnceCB1 = false;
119 int rc = RTOnce(&Once1, Once1CB, (void *)1, (void *)42);
120 if (rc != VINF_SUCCESS)
121 RTPrintf("tstOnce: ERROR - Once1, 1 failed, rc=%Rrc\n", rc);
122 g_fOnceCB1 = false;
123 rc = RTOnce(&Once1, Once1CB, (void *)1, (void *)42);
124 if (rc != VINF_SUCCESS)
125 RTPrintf("tstOnce: ERROR - Once1, 2 failed, rc=%Rrc\n", rc);
126
127 /*
128 * Throw a bunch of threads up against a init once thing.
129 */
130 RTPrintf("tstOnce: TESTING - bunch of threads...\n");
131 /* create the semaphore they'll be waiting on. */
132 rc = RTSemEventMultiCreate(&g_hEventMulti);
133 if (RT_FAILURE(rc))
134 {
135 RTPrintf("tstOnce: FATAL ERROR - RTSemEventMultiCreate returned %Rrc\n", rc);
136 return 1;
137 }
138
139 /* create the threads */
140 RTTHREAD aThreads[32];
141 for (unsigned i = 0; i < RT_ELEMENTS(aThreads); i++)
142 {
143 char szName[16];
144 RTStrPrintf(szName, sizeof(szName), "ONCE2-%d\n", i);
145 int rc = RTThreadCreate(&aThreads[i], Once2Thread, NULL, 0, RTTHREADTYPE_DEFAULT, RTTHREADFLAGS_WAITABLE, szName);
146 if (RT_FAILURE(rc))
147 {
148 RTPrintf("tstOnce: ERROR - failed to create thread #%d\n", i);
149 g_cErrors++;
150 }
151 }
152
153 /* kick them off and yield */
154 rc = RTSemEventMultiSignal(g_hEventMulti);
155 if (RT_FAILURE(rc))
156 {
157 RTPrintf("tstOnce: FATAL ERROR - RTSemEventMultiSignal returned %Rrc\n", rc);
158 return 1;
159 }
160 RTThreadYield();
161
162 /* wait for all of them to finish up, 30 seconds each. */
163 for (unsigned i = 0; i < RT_ELEMENTS(aThreads); i++)
164 if (aThreads[i] != NIL_RTTHREAD)
165 {
166 int rc2;
167 int rc = RTThreadWait(aThreads[i], 30*1000, &rc2);
168 if (RT_FAILURE(rc))
169 {
170 RTPrintf("tstOnce: ERROR - RTThreadWait on thread #%u returned %Rrc\n", i, rc);
171 g_cErrors++;
172 }
173 else if (RT_FAILURE(rc2))
174 {
175 RTPrintf("tstOnce: ERROR - Thread #%u returned %Rrc\n", i, rc2);
176 g_cErrors++;
177 }
178 }
179
180 /*
181 * Summary.
182 */
183 if (!g_cErrors)
184 RTPrintf("tstOnce: SUCCESS\n");
185 else
186 RTPrintf("tstOnce: FAILURE - %d errors\n", g_cErrors);
187
188 return !!g_cErrors;
189}
190
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette