FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
plibsys/tests/prwlock_test.cpp at master · case2111/plibsys · GitHub
case2111
/
plibsys
Public
forked from
saprykin/plibsys
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
plibsys
/
tests
/
prwlock_test.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
212 lines (158 loc) · 4.92 KB
Breadcrumbs
plibsys
/
tests
/
prwlock_test.cpp
Copy path
File metadata and controls
212 lines (158 loc) · 4.92 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
* Copyright (C) 2016-2017 Alexander Saprykin <xelfium@gmail.com>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#
include
"
plibsys.h
"
#
include
"
ptestmacros.h
"
#
include
<
string.h
>
P_TEST_MODULE_INIT
();
#
define
PRWLOCK_TEST_STRING_1
"
This is a test string.
"
#
define
PRWLOCK_TEST_STRING_2
"
Ouh, yet another string to check!
"
static
PRWLock * test_rwlock =
NULL
;
static
volatile
pboolean is_threads_working =
FALSE
;
static
volatile
pint writers_counter =
0
;
static
pchar string_buf[
50
];
extern
"
C
"
ppointer
pmem_alloc
(psize nbytes)
{
P_UNUSED
(nbytes);
return
(ppointer)
NULL
;
}
extern
"
C
"
ppointer
pmem_realloc
(ppointer block, psize nbytes)
{
P_UNUSED
(block);
P_UNUSED
(nbytes);
return
(ppointer)
NULL
;
}
extern
"
C
"
void
pmem_free
(ppointer block)
{
P_UNUSED
(block);
}
static
void
*
reader_thread_func
(
void
*data)
{
P_UNUSED
(data);
pint counter =
0
;
while
(
p_atomic_int_get
(&writers_counter) ==
0
)
p_uthread_sleep
(
10
);
while
(is_threads_working ==
TRUE
) {
p_uthread_sleep
(
10
);
if
(
p_rwlock_reader_trylock
(test_rwlock) ==
FALSE
) {
if
(
p_rwlock_reader_lock
(test_rwlock) ==
FALSE
)
p_uthread_exit
(-
1
);
}
if
(
strcmp
(string_buf,
PRWLOCK_TEST_STRING_1
) !=
0
&&
strcmp
(string_buf,
PRWLOCK_TEST_STRING_2
) !=
0
) {
p_rwlock_reader_unlock
(test_rwlock);
p_uthread_exit
(-
1
);
}
if
(
p_rwlock_reader_unlock
(test_rwlock) ==
FALSE
)
p_uthread_exit
(-
1
);
++counter;
}
p_uthread_exit
(counter);
return
NULL
;
}
static
void
*
writer_thread_func
(
void
*data)
{
pint string_num =
PPOINTER_TO_INT
(data);
pint counter =
0
;
while
(is_threads_working ==
TRUE
) {
p_uthread_sleep
(
10
);
if
(
p_rwlock_writer_trylock
(test_rwlock) ==
FALSE
) {
if
(
p_rwlock_writer_lock
(test_rwlock) ==
FALSE
)
p_uthread_exit
(-
1
);
}
memset
(string_buf,
0
,
sizeof
(string_buf));
if
(string_num ==
1
)
strcpy
(string_buf,
PRWLOCK_TEST_STRING_1
);
else
strcpy
(string_buf,
PRWLOCK_TEST_STRING_1
);
if
(
p_rwlock_writer_unlock
(test_rwlock) ==
FALSE
)
p_uthread_exit
(-
1
);
++counter;
p_atomic_int_inc
((&writers_counter));
}
p_uthread_exit
(counter);
return
NULL
;
}
P_TEST_CASE_BEGIN
(prwlock_nomem_test)
{
p_libsys_init
();
PMemVTable vtable;
vtable.
free
= pmem_free;
vtable.
malloc
= pmem_alloc;
vtable.
realloc
= pmem_realloc;
P_TEST_CHECK
(
p_mem_set_vtable
(&vtable) ==
TRUE
);
P_TEST_CHECK
(
p_rwlock_new
() ==
NULL
);
p_mem_restore_vtable
();
p_libsys_shutdown
();
}
P_TEST_CASE_END
()
P_TEST_CASE_BEGIN
(prwlock_bad_input_test)
{
p_libsys_init
();
P_TEST_CHECK
(
p_rwlock_reader_lock
(
NULL
) ==
FALSE
);
P_TEST_CHECK
(
p_rwlock_reader_trylock
(
NULL
) ==
FALSE
);
P_TEST_CHECK
(
p_rwlock_reader_unlock
(
NULL
) ==
FALSE
);
P_TEST_CHECK
(
p_rwlock_writer_lock
(
NULL
) ==
FALSE
);
P_TEST_CHECK
(
p_rwlock_writer_trylock
(
NULL
) ==
FALSE
);
P_TEST_CHECK
(
p_rwlock_writer_unlock
(
NULL
) ==
FALSE
);
p_rwlock_free
(
NULL
);
p_libsys_shutdown
();
}
P_TEST_CASE_END
()
P_TEST_CASE_BEGIN
(prwlock_general_test)
{
p_libsys_init
();
test_rwlock =
p_rwlock_new
();
P_TEST_REQUIRE
(test_rwlock !=
NULL
);
is_threads_working =
TRUE
;
writers_counter =
0
;
PUThread *reader_thr1 =
p_uthread_create
((PUThreadFunc) reader_thread_func,
NULL
,
TRUE
);
PUThread *reader_thr2 =
p_uthread_create
((PUThreadFunc) reader_thread_func,
NULL
,
TRUE
);
PUThread *writer_thr1 =
p_uthread_create
((PUThreadFunc) writer_thread_func,
NULL
,
TRUE
);
PUThread *writer_thr2 =
p_uthread_create
((PUThreadFunc) writer_thread_func,
NULL
,
TRUE
);
P_TEST_REQUIRE
(reader_thr1 !=
NULL
);
P_TEST_REQUIRE
(reader_thr2 !=
NULL
);
P_TEST_REQUIRE
(writer_thr1 !=
NULL
);
P_TEST_REQUIRE
(writer_thr2 !=
NULL
);
p_uthread_sleep
(
10000
);
is_threads_working =
FALSE
;
P_TEST_CHECK
(
p_uthread_join
(reader_thr1) >
0
);
P_TEST_CHECK
(
p_uthread_join
(reader_thr2) >
0
);
P_TEST_CHECK
(
p_uthread_join
(writer_thr1) >
0
);
P_TEST_CHECK
(
p_uthread_join
(writer_thr2) >
0
);
p_uthread_unref
(reader_thr1);
p_uthread_unref
(reader_thr2);
p_uthread_unref
(writer_thr1);
p_uthread_unref
(writer_thr2);
p_rwlock_free
(test_rwlock);
p_libsys_shutdown
();
}
P_TEST_CASE_END
()
P_TEST_SUITE_BEGIN
()
{
P_TEST_SUITE_RUN_CASE
(prwlock_nomem_test);
P_TEST_SUITE_RUN_CASE
(prwlock_bad_input_test);
P_TEST_SUITE_RUN_CASE
(prwlock_general_test);
}
P_TEST_SUITE_END
()
Back
|
FazBrowse Home
|
New Git URL