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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
|
/*
* Copyright 2020 Xavier Claessens
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*
* 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.1 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 <glib.h>
#if !defined (G_CXX_STD_VERSION) || !defined (G_CXX_STD_CHECK_VERSION)
#error G_CXX_STD_VERSION is not defined
#endif
#ifdef G_C_STD_VERSION
#error G_C_STD_VERSION should be undefined in C programs
#endif
G_STATIC_ASSERT (G_CXX_STD_VERSION);
G_STATIC_ASSERT (!G_C_STD_CHECK_VERSION (99));
#if G_CXX_STD_VERSION >= 199711L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (98));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (199711L));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (03));
#endif
#if G_CXX_STD_VERSION == 199711L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (11));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201103L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (14));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201402L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (17));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201703L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION >= 201103L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (98));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (199711L));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (03));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (11));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (201103L));
#endif
#if G_CXX_STD_VERSION == 201103L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (14));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201402L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (17));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201703L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION >= 201402L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (14));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (201402L));
#endif
#if G_CXX_STD_VERSION == 201402L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (17));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (201703L));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION >= 201703L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (17));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (201703L));
#endif
#if G_CXX_STD_VERSION == 201703L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION >= 202002L
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (20));
G_STATIC_ASSERT (G_CXX_STD_CHECK_VERSION (202002L));
#endif
#if G_CXX_STD_VERSION == 202002L
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (23));
G_STATIC_ASSERT (!G_CXX_STD_CHECK_VERSION (202300L));
#endif
#ifdef _G_EXPECTED_CXX_STANDARD
static void
test_cpp_standard (void)
{
guint64 std_version = 0;
if (!g_ascii_string_to_unsigned (_G_EXPECTED_CXX_STANDARD, 10, 0, G_MAXUINT64,
&std_version, NULL))
{
g_test_skip ("Expected standard value is non-numeric: "
_G_EXPECTED_CXX_STANDARD);
return;
}
#if !G_GNUC_CHECK_VERSION (11, 0)
if (std_version >= 20)
{
// See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93821
g_test_skip ("Expected standard version is not properly supported by compiler");
return;
}
#endif
g_test_message ("Checking if '" G_STRINGIFY (G_CXX_STD_VERSION) "' respects "
"the expected standard version '" _G_EXPECTED_CXX_STANDARD "'");
g_assert_true (G_CXX_STD_CHECK_VERSION (std_version));
if (std_version < 10 || std_version > 90)
std_version = 97;
if (std_version >= 90)
g_assert_cmpuint (G_CXX_STD_VERSION, >=, (std_version + 1900) * 100);
else
g_assert_cmpuint (G_CXX_STD_VERSION, >=, (std_version + 2000) * 100);
}
#endif
typedef struct
{
int dummy;
} MyObject;
static void
test_typeof (void)
{
MyObject *obj = g_rc_box_new0 (MyObject);
MyObject *obj2 = g_rc_box_acquire (obj);
g_assert_true (obj2 == obj);
G_STATIC_ASSERT (sizeof (glib_typeof (*obj)) == sizeof (glib_typeof (*obj2)));
MyObject *obj3 = g_atomic_pointer_get (&obj2);
g_assert_true (obj3 == obj);
MyObject *obj4 = NULL;
g_atomic_pointer_set (&obj4, obj3);
g_assert_true (obj4 == obj);
MyObject *obj5 = NULL;
g_atomic_pointer_compare_and_exchange (&obj5, NULL, obj4);
g_assert_true (obj5 == obj);
MyObject *obj6 = g_steal_pointer (&obj5);
g_assert_true (obj6 == obj);
g_clear_pointer (&obj6, g_rc_box_release);
g_rc_box_release (obj);
}
static void
test_atomic_pointer_compare_and_exchange (void)
{
const gchar *str1 = "str1";
const gchar *str2 = "str2";
const gchar *atomic_string = str1;
g_test_message ("Test that g_atomic_pointer_compare_and_exchange() with a "
"non-void* pointer doesn’t have any compiler warnings in C++ mode");
g_assert_true (g_atomic_pointer_compare_and_exchange (&atomic_string, str1, str2));
g_assert_true (atomic_string == str2);
}
static void
test_atomic_pointer_compare_and_exchange_full (void)
{
const gchar *str1 = "str1";
const gchar *str2 = "str2";
const gchar *atomic_string = str1;
const gchar *old;
g_test_message ("Test that g_atomic_pointer_compare_and_exchange_full() with a "
"non-void* pointer doesn’t have any compiler warnings in C++ mode");
g_assert_true (g_atomic_pointer_compare_and_exchange_full (&atomic_string, str1, str2, &old));
g_assert_true (atomic_string == str2);
g_assert_true (old == str1);
}
static void
test_atomic_int_compare_and_exchange (void)
{
gint atomic_int = 5;
g_test_message ("Test that g_atomic_int_compare_and_exchange() doesn’t have "
"any compiler warnings in C++ mode");
g_assert_true (g_atomic_int_compare_and_exchange (&atomic_int, 5, 50));
g_assert_cmpint (atomic_int, ==, 50);
}
static void
test_atomic_int_compare_and_exchange_full (void)
{
gint atomic_int = 5;
gint old_value;
g_test_message ("Test that g_atomic_int_compare_and_exchange_full() doesn’t have "
"any compiler warnings in C++ mode");
g_assert_true (g_atomic_int_compare_and_exchange_full (&atomic_int, 5, 50, &old_value));
g_assert_cmpint (atomic_int, ==, 50);
g_assert_cmpint (old_value, ==, 5);
}
static void
test_atomic_pointer_exchange (void)
{
const gchar *str1 = "str1";
const gchar *str2 = "str2";
const gchar *atomic_string = str1;
g_test_message ("Test that g_atomic_pointer_exchange() with a "
"non-void* pointer doesn’t have any compiler warnings in C++ mode");
g_assert_true (g_atomic_pointer_exchange (&atomic_string, str2) == str1);
g_assert_true (atomic_string == str2);
}
static void
test_atomic_int_exchange (void)
{
gint atomic_int = 5;
g_test_message ("Test that g_atomic_int_compare_and_exchange() doesn’t have "
"any compiler warnings in C++ mode");
g_assert_cmpint (g_atomic_int_exchange (&atomic_int, 50), ==, 5);
}
G_NO_INLINE
static gboolean
do_not_inline_this (void)
{
return FALSE;
}
G_ALWAYS_INLINE
static inline gboolean
do_inline_this (void)
{
return TRUE;
}
static void
test_inline_no_inline_macros (void)
{
g_test_message ("Test that G_NO_INLINE and G_ALWAYS_INLINE functions "
"can be compiled with C++ compiler");
g_assert_false (do_not_inline_this ());
g_assert_true (do_inline_this ());
}
static void
clear_boolean_ptr (gboolean *val)
{
*val = TRUE;
}
static void
test_clear_pointer (void)
{
gboolean value = FALSE;
gboolean *ptr = &value;
g_assert_true (ptr == &value);
g_assert_false (value);
g_clear_pointer (&ptr, clear_boolean_ptr);
g_assert_null (ptr);
g_assert_true (value);
}
static void
test_steal_pointer (void)
{
gpointer ptr = &ptr;
g_assert_true (ptr == &ptr);
g_assert_true (g_steal_pointer (&ptr) == &ptr);
g_assert_null (ptr);
}
static void
test_str_equal (void)
{
const char *str_a = "a";
char *str_b = g_strdup ("b");
gconstpointer str_a_ptr = str_a, str_b_ptr = str_b;
const unsigned char *str_c = (const unsigned char *) "c";
g_test_summary ("Test typechecking and casting of arguments to g_str_equal() macro in C++");
g_test_bug ("https://gitlab.gnome.org/GNOME/glib/-/issues/2820");
/* We don’t actually care what the comparisons do at runtime. What we’re
* checking here is that the types don’t emit warnings at compile time. */
g_assert_true (g_str_equal ("a", str_a));
g_assert_false (g_str_equal ("a", str_b));
g_assert_true (g_str_equal (str_a, str_a_ptr));
g_assert_false (g_str_equal (str_a_ptr, str_b_ptr));
g_assert_false (g_str_equal (str_c, str_b));
g_free (str_b);
}
int
main (int argc, char *argv[])
{
#if G_CXX_STD_CHECK_VERSION (11)
g_test_init (&argc, &argv, NULL);
#else
g_test_init (&argc, &argv, static_cast<void *>(NULL));
#endif
#ifdef _G_EXPECTED_CXX_STANDARD
g_test_add_func ("/C++/check-standard-" _G_EXPECTED_CXX_STANDARD, test_cpp_standard);
#endif
g_test_add_func ("/C++/typeof", test_typeof);
g_test_add_func ("/C++/atomic-pointer-compare-and-exchange", test_atomic_pointer_compare_and_exchange);
g_test_add_func ("/C++/atomic-pointer-compare-and-exchange-full", test_atomic_pointer_compare_and_exchange_full);
g_test_add_func ("/C++/atomic-int-compare-and-exchange", test_atomic_int_compare_and_exchange);
g_test_add_func ("/C++/atomic-int-compare-and-exchange-full", test_atomic_int_compare_and_exchange_full);
g_test_add_func ("/C++/atomic-pointer-exchange", test_atomic_pointer_exchange);
g_test_add_func ("/C++/atomic-int-exchange", test_atomic_int_exchange);
g_test_add_func ("/C++/inlined-not-inlined-functions", test_inline_no_inline_macros);
g_test_add_func ("/C++/clear-pointer", test_clear_pointer);
g_test_add_func ("/C++/steal-pointer", test_steal_pointer);
g_test_add_func ("/C++/str-equal", test_str_equal);
return g_test_run ();
}
|