1 | /* $Id: tstRTStrCache.cpp 20647 2009-06-16 21:58:09Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - StrCache.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009 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/strcache.h>
|
---|
35 |
|
---|
36 | #include <iprt/asm.h>
|
---|
37 | #include <iprt/err.h>
|
---|
38 | #include <iprt/initterm.h>
|
---|
39 | #include <iprt/string.h>
|
---|
40 | #include <iprt/test.h>
|
---|
41 | #include <iprt/thread.h>
|
---|
42 | #include <iprt/rand.h>
|
---|
43 |
|
---|
44 |
|
---|
45 | /**
|
---|
46 | * Basic API checks.
|
---|
47 | * We'll return if any of these fails.
|
---|
48 | */
|
---|
49 | static void tst1(RTSTRCACHE hStrCache)
|
---|
50 | {
|
---|
51 | const char *psz;
|
---|
52 |
|
---|
53 | /* Simple string entering and length. */
|
---|
54 | RTTESTI_CHECK_RETV(psz = RTStrCacheEnter(hStrCache, "abcdefgh"));
|
---|
55 | RTTESTI_CHECK_RETV(strcmp(psz, "abcdefgh") == 0);
|
---|
56 | RTTESTI_CHECK_RETV(RTStrCacheLength(psz) == strlen("abcdefgh"));
|
---|
57 | RTTESTI_CHECK_RETV(RTStrCacheRelease(hStrCache, psz) == 0);
|
---|
58 |
|
---|
59 | RTTESTI_CHECK_RETV(psz = RTStrCacheEnter(hStrCache, "abcdefghijklmnopqrstuvwxyz"));
|
---|
60 | RTTESTI_CHECK_RETV(strcmp(psz, "abcdefghijklmnopqrstuvwxyz") == 0);
|
---|
61 | RTTESTI_CHECK_RETV(RTStrCacheLength(psz) == strlen("abcdefghijklmnopqrstuvwxyz"));
|
---|
62 | RTTESTI_CHECK_RETV(RTStrCacheRelease(hStrCache, psz) == 0);
|
---|
63 |
|
---|
64 | /* Unterminated strings. */
|
---|
65 | RTTESTI_CHECK_RETV(psz = RTStrCacheEnterN(hStrCache, "0123456789", 3));
|
---|
66 | RTTESTI_CHECK_RETV(strcmp(psz, "012") == 0);
|
---|
67 | RTTESTI_CHECK_RETV(RTStrCacheLength(psz) == strlen("012"));
|
---|
68 | RTTESTI_CHECK_RETV(RTStrCacheRelease(hStrCache, psz) == 0);
|
---|
69 |
|
---|
70 | RTTESTI_CHECK_RETV(psz = RTStrCacheEnterN(hStrCache, "0123456789abcdefghijklmnopqrstuvwxyz", 16));
|
---|
71 | RTTESTI_CHECK_RETV(strcmp(psz, "0123456789abcdef") == 0);
|
---|
72 | RTTESTI_CHECK_RETV(RTStrCacheLength(psz) == strlen("0123456789abcdef"));
|
---|
73 | RTTESTI_CHECK_RETV(RTStrCacheRelease(hStrCache, psz) == 0);
|
---|
74 |
|
---|
75 | /* String referencing. */
|
---|
76 | char szTest[4096+16];
|
---|
77 | memset(szTest, 'a', sizeof(szTest));
|
---|
78 | char szTest2[4096+16];
|
---|
79 | memset(szTest2, 'f', sizeof(szTest));
|
---|
80 | for (int32_t i = 4096; i > 3; i /= 3)
|
---|
81 | {
|
---|
82 | void *pv2;
|
---|
83 | RTTESTI_CHECK_RETV(psz = RTStrCacheEnterN(hStrCache, szTest, i));
|
---|
84 | RTTESTI_CHECK_MSG_RETV((pv2 = ASMMemIsAll8(psz, i, 'a')) == NULL && !psz[i], ("i=%#x psz=%p off=%#x\n", i, psz, (uintptr_t)pv2 - (uintptr_t)psz));
|
---|
85 | RTTESTI_CHECK(RTStrCacheRetain(psz) == 2);
|
---|
86 | RTTESTI_CHECK(RTStrCacheRetain(psz) == 3);
|
---|
87 | RTTESTI_CHECK(RTStrCacheRetain(psz) == 4);
|
---|
88 | RTTESTI_CHECK_MSG_RETV((pv2 = ASMMemIsAll8(psz, i, 'a')) == NULL && !psz[i], ("i=%#x psz=%p off=%#x\n", i, psz, (uintptr_t)pv2 - (uintptr_t)psz));
|
---|
89 | RTTESTI_CHECK(RTStrCacheRelease(hStrCache, psz) == 3);
|
---|
90 | RTTESTI_CHECK_MSG_RETV((pv2 = ASMMemIsAll8(psz, i, 'a')) == NULL && !psz[i], ("i=%#x psz=%p off=%#x\n", i, psz, (uintptr_t)pv2 - (uintptr_t)psz));
|
---|
91 | RTTESTI_CHECK(RTStrCacheRetain(psz) == 4);
|
---|
92 | RTTESTI_CHECK(RTStrCacheRetain(psz) == 5);
|
---|
93 | RTTESTI_CHECK(RTStrCacheRetain(psz) == 6);
|
---|
94 | RTTESTI_CHECK(RTStrCacheRelease(NIL_RTSTRCACHE, psz) == 5);
|
---|
95 | RTTESTI_CHECK(RTStrCacheRelease(NIL_RTSTRCACHE, psz) == 4);
|
---|
96 | RTTESTI_CHECK_MSG_RETV((pv2 = ASMMemIsAll8(psz, i, 'a')) == NULL && !psz[i], ("i=%#x psz=%p off=%#x\n", i, psz, (uintptr_t)pv2 - (uintptr_t)psz));
|
---|
97 |
|
---|
98 | for (uint32_t cRefs = 3;; cRefs--)
|
---|
99 | {
|
---|
100 | RTTESTI_CHECK(RTStrCacheRelease(hStrCache, psz) == cRefs);
|
---|
101 | if (cRefs == 0)
|
---|
102 | break;
|
---|
103 | RTTESTI_CHECK_MSG_RETV((pv2 = ASMMemIsAll8(psz, i, 'a')) == NULL && !psz[i], ("i=%#x psz=%p off=%#x cRefs=%d\n", i, psz, (uintptr_t)pv2 - (uintptr_t)psz, cRefs));
|
---|
104 | for (uint32_t j = 0; j < 42; j++)
|
---|
105 | {
|
---|
106 | const char *psz2;
|
---|
107 | RTTESTI_CHECK_RETV(psz2 = RTStrCacheEnterN(hStrCache, szTest2, i));
|
---|
108 | RTTESTI_CHECK_RETV(psz2 != psz);
|
---|
109 | RTTESTI_CHECK(RTStrCacheRelease(hStrCache, psz2) == 0);
|
---|
110 | RTTESTI_CHECK_MSG_RETV((pv2 = ASMMemIsAll8(psz, i, 'a')) == NULL && !psz[i], ("i=%#x psz=%p off=%#x cRefs=%d\n", i, psz, (uintptr_t)pv2 - (uintptr_t)psz, cRefs));
|
---|
111 | }
|
---|
112 | }
|
---|
113 | }
|
---|
114 | }
|
---|
115 |
|
---|
116 |
|
---|
117 | int main()
|
---|
118 | {
|
---|
119 | RTTEST hTest;
|
---|
120 | int rc = RTTestInitAndCreate("tstRTStrCache", &hTest);
|
---|
121 | if (rc)
|
---|
122 | return rc;
|
---|
123 | RTTestBanner(hTest);
|
---|
124 |
|
---|
125 | /*
|
---|
126 | * Smoke tests using first the default and then a custom pool.
|
---|
127 | */
|
---|
128 | RTTestSub(hTest, "Smoke test on default cache");
|
---|
129 | tst1(RTSTRCACHE_DEFAULT);
|
---|
130 |
|
---|
131 | RTTestSub(hTest, "Smoke test on custom cache");
|
---|
132 | RTSTRCACHE hStrCache;
|
---|
133 | RTTESTI_CHECK_RC(rc = RTStrCacheCreate(&hStrCache, "test 2a"), VINF_SUCCESS);
|
---|
134 | if (RT_SUCCESS(rc))
|
---|
135 | RTTESTI_CHECK_RC(rc = RTStrCacheDestroy(hStrCache), VINF_SUCCESS);
|
---|
136 | RTTESTI_CHECK_RC(rc = RTStrCacheDestroy(NIL_RTSTRCACHE), VINF_SUCCESS);
|
---|
137 | RTTESTI_CHECK_RC(rc = RTStrCacheDestroy(RTSTRCACHE_DEFAULT), VINF_SUCCESS);
|
---|
138 | RTTESTI_CHECK_RC(rc = RTStrCacheDestroy(RTSTRCACHE_DEFAULT), VINF_SUCCESS);
|
---|
139 |
|
---|
140 | RTTESTI_CHECK_RC(rc = RTStrCacheCreate(&hStrCache, "test 2b"), VINF_SUCCESS);
|
---|
141 | if (RT_SUCCESS(rc))
|
---|
142 | {
|
---|
143 | tst1(hStrCache);
|
---|
144 | RTTESTI_CHECK_RC(rc = RTStrCacheDestroy(hStrCache), VINF_SUCCESS);
|
---|
145 | }
|
---|
146 |
|
---|
147 | /*
|
---|
148 | * Summary.
|
---|
149 | */
|
---|
150 | return RTTestSummaryAndDestroy(hTest);
|
---|
151 | }
|
---|
152 |
|
---|