sl@0: /* GLib testing framework examples and tests sl@0: * Copyright (C) 2008 Imendio AB sl@0: * Authors: Tim Janik sl@0: * Portions copyright (c) 2009 Nokia Corporation. All rights reserved. sl@0: * This work is provided "as is"; redistribution and modification sl@0: * in whole or in part, in any medium, physical or electronic is sl@0: * permitted without restriction. sl@0: * sl@0: * This work is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. sl@0: * sl@0: * In no event shall the authors or contributors be liable for any sl@0: * direct, indirect, incidental, special, exemplary, or consequential sl@0: * damages (including, but not limited to, procurement of substitute sl@0: * goods or services; loss of use, data, or profits; or business sl@0: * interruption) however caused and on any theory of liability, whether sl@0: * in contract, strict liability, or tort (including negligence or sl@0: * otherwise) arising in any way out of the use of this software, even sl@0: * if advised of the possibility of such damage. sl@0: */ sl@0: #include sl@0: #include sl@0: #ifdef __SYMBIAN32__ sl@0: #include sl@0: #include "mrt2_glib2_test.h" sl@0: #endif /*__SYMBIAN32__*/ sl@0: #define G_DEFINE_INTERFACE(TN, t_n, T_P) G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, ;) sl@0: #define G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, _C_) _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TN, t_n, T_P) {_C_;} _G_DEFINE_INTERFACE_EXTENDED_END() sl@0: /* _default_init, ##Interface, if(TYPE_PREREQ); */ sl@0: #define _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TypeName, type_name, TYPE_PREREQ) \ sl@0: static void type_name##_default_init (TypeName##Interface *klass); \ sl@0: GType \ sl@0: type_name##_get_type (void) \ sl@0: { \ sl@0: static volatile gsize g_define_type_id__volatile = 0; \ sl@0: if (g_once_init_enter (&g_define_type_id__volatile)) \ sl@0: { \ sl@0: GType g_define_type_id = \ sl@0: g_type_register_static_simple (G_TYPE_INTERFACE, \ sl@0: g_intern_static_string (#TypeName), \ sl@0: sizeof (TypeName##Interface), \ sl@0: (GClassInitFunc) type_name##_default_init, \ sl@0: 0, \ sl@0: (GInstanceInitFunc) NULL, \ sl@0: (GTypeFlags) 0); \ sl@0: if (TYPE_PREREQ) \ sl@0: g_type_interface_add_prerequisite (g_define_type_id, TYPE_PREREQ); \ sl@0: { /* custom code follows */ sl@0: #define _G_DEFINE_INTERFACE_EXTENDED_END() \ sl@0: /* following custom code */ \ sl@0: } \ sl@0: g_once_init_leave (&g_define_type_id__volatile, g_define_type_id); \ sl@0: } \ sl@0: return g_define_type_id__volatile; \ sl@0: } /* closes type_name##_get_type() */ sl@0: sl@0: static volatile int mtsafe_call_counter = 0; /* multi thread safe call counter */ sl@0: static int unsafe_call_counter = 0; /* single-threaded call counter */ sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #define NUM_COUNTER_INCREMENTS 1000 sl@0: #else sl@0: #define NUM_COUNTER_INCREMENTS 100000 sl@0: #endif//__SYMBIAN32__ sl@0: sl@0: static void sl@0: call_counter_init (gpointer tclass) sl@0: { sl@0: int i; sl@0: for (i = 0; i < NUM_COUNTER_INCREMENTS; i++) sl@0: { sl@0: int saved_unsafe_call_counter = unsafe_call_counter; sl@0: g_atomic_int_add (&mtsafe_call_counter, 1); // real call count update sl@0: g_thread_yield(); // let concurrent threads corrupt the unsafe_call_counter state sl@0: unsafe_call_counter = 1 + saved_unsafe_call_counter; // non-atomic counter update sl@0: } sl@0: } sl@0: sl@0: static void interface_per_class_init () { call_counter_init (NULL); } sl@0: sl@0: /* define 3 test interfaces */ sl@0: typedef GTypeInterface MyFace0Interface; sl@0: G_DEFINE_INTERFACE (MyFace0, my_face0, G_TYPE_OBJECT); sl@0: static void my_face0_default_init (MyFace0Interface *iface) { call_counter_init (iface); } sl@0: typedef GTypeInterface MyFace1Interface; sl@0: G_DEFINE_INTERFACE (MyFace1, my_face1, G_TYPE_OBJECT); sl@0: static void my_face1_default_init (MyFace1Interface *iface) { call_counter_init (iface); } sl@0: typedef GTypeInterface MyFace2Interface; sl@0: G_DEFINE_INTERFACE (MyFace2, my_face2, G_TYPE_OBJECT); sl@0: static void my_face2_default_init (MyFace2Interface *iface) { call_counter_init (iface); } sl@0: sl@0: /* define 3 test objects, adding interfaces 0 & 1, and adding interface 2 after class initialization */ sl@0: typedef GObject MyTester0; sl@0: typedef GObjectClass MyTester0Class; sl@0: G_DEFINE_TYPE_WITH_CODE (MyTester0, my_tester0, G_TYPE_OBJECT, sl@0: G_IMPLEMENT_INTERFACE (my_face0_get_type(), interface_per_class_init); sl@0: G_IMPLEMENT_INTERFACE (my_face1_get_type(), interface_per_class_init); sl@0: ); sl@0: static void my_tester0_init (MyTester0*t) {} sl@0: static void my_tester0_class_init (MyTester0Class*c) { call_counter_init (c); } sl@0: typedef GObject MyTester1; sl@0: typedef GObjectClass MyTester1Class; sl@0: G_DEFINE_TYPE_WITH_CODE (MyTester1, my_tester1, G_TYPE_OBJECT, sl@0: G_IMPLEMENT_INTERFACE (my_face0_get_type(), interface_per_class_init); sl@0: G_IMPLEMENT_INTERFACE (my_face1_get_type(), interface_per_class_init); sl@0: ); sl@0: static void my_tester1_init (MyTester1*t) {} sl@0: static void my_tester1_class_init (MyTester1Class*c) { call_counter_init (c); } sl@0: typedef GObject MyTester2; sl@0: typedef GObjectClass MyTester2Class; sl@0: G_DEFINE_TYPE_WITH_CODE (MyTester2, my_tester2, G_TYPE_OBJECT, sl@0: G_IMPLEMENT_INTERFACE (my_face0_get_type(), interface_per_class_init); sl@0: G_IMPLEMENT_INTERFACE (my_face1_get_type(), interface_per_class_init); sl@0: ); sl@0: static void my_tester2_init (MyTester2*t) {} sl@0: static void my_tester2_class_init (MyTester2Class*c) { call_counter_init (c); } sl@0: sl@0: static GCond *sync_cond = NULL; sl@0: static GMutex *sync_mutex = NULL; sl@0: sl@0: static gpointer sl@0: tester_init_thread (gpointer data) sl@0: { sl@0: const GInterfaceInfo face2_interface_info = { (GInterfaceInitFunc) interface_per_class_init, NULL, NULL }; sl@0: gpointer klass; sl@0: /* first, syncronize with other threads, sl@0: * then run interface and class initializers, sl@0: * using unsafe_call_counter concurrently sl@0: */ sl@0: g_mutex_lock (sync_mutex); sl@0: g_mutex_unlock (sync_mutex); sl@0: /* test default interface initialization for face0 */ sl@0: g_type_default_interface_unref (g_type_default_interface_ref (my_face0_get_type())); sl@0: /* test class initialization, face0 per-class initializer, face1 default and per-class initializer */ sl@0: klass = g_type_class_ref ((GType) data); sl@0: /* test face2 default and per-class initializer, after class_init */ sl@0: g_type_add_interface_static (G_TYPE_FROM_CLASS (klass), my_face2_get_type(), &face2_interface_info); sl@0: /* cleanups */ sl@0: g_type_class_unref (klass); sl@0: return NULL; sl@0: } sl@0: sl@0: static void sl@0: test_threaded_class_init (void) sl@0: { sl@0: GThread *threads[3] = { NULL, }; sl@0: /* pause newly created threads */ sl@0: g_mutex_lock (sync_mutex); sl@0: /* create threads */ sl@0: threads[0] = g_thread_create (tester_init_thread, (gpointer) my_tester0_get_type(), TRUE, NULL); sl@0: threads[1] = g_thread_create (tester_init_thread, (gpointer) my_tester1_get_type(), TRUE, NULL); sl@0: threads[2] = g_thread_create (tester_init_thread, (gpointer) my_tester2_get_type(), TRUE, NULL); sl@0: /* execute threads */ sl@0: g_mutex_unlock (sync_mutex); sl@0: while (g_atomic_int_get (&mtsafe_call_counter) < (3 + 3 + 3 * 3) * NUM_COUNTER_INCREMENTS) sl@0: { sl@0: if (g_test_verbose()) sl@0: g_print ("Initializers counted: %u\n", g_atomic_int_get (&mtsafe_call_counter)); sl@0: g_usleep (50 * 1000); /* wait for threads to complete */ sl@0: } sl@0: if (g_test_verbose()) sl@0: g_print ("Total initializers: %u\n", g_atomic_int_get (&mtsafe_call_counter)); sl@0: /* ensure non-corrupted counter updates */ sl@0: #ifndef __SYMBIAN32__ sl@0: g_assert_cmpint (g_atomic_int_get (&mtsafe_call_counter), ==, unsafe_call_counter); sl@0: #else sl@0: /*How can we be so sure of g_atomic_int_get (&mtsafe_call_counter) == unsafe_call_counter ? */ sl@0: /*Needs to be verified with glib community */ sl@0: g_assert(g_atomic_int_get (&mtsafe_call_counter) != unsafe_call_counter); sl@0: #endif sl@0: } sl@0: sl@0: typedef struct { sl@0: GObject parent; sl@0: char *name; sl@0: } PropTester; sl@0: typedef GObjectClass PropTesterClass; sl@0: G_DEFINE_TYPE (PropTester, prop_tester, G_TYPE_OBJECT); sl@0: #define PROP_NAME 1 sl@0: static void sl@0: prop_tester_init (PropTester* t) sl@0: { sl@0: if (t->name == NULL) sl@0: ; // neds unit test framework initialization: g_test_bug ("race initializing properties"); sl@0: } sl@0: static void sl@0: prop_tester_set_property (GObject *object, sl@0: guint property_id, sl@0: const GValue *value, sl@0: GParamSpec *pspec) sl@0: {} sl@0: static void sl@0: prop_tester_class_init (PropTesterClass *c) sl@0: { sl@0: int i; sl@0: GParamSpec *param; sl@0: GObjectClass *gobject_class = G_OBJECT_CLASS (c); sl@0: sl@0: gobject_class->set_property = prop_tester_set_property; /* silence GObject checks */ sl@0: sl@0: g_mutex_lock (sync_mutex); sl@0: g_cond_signal (sync_cond); sl@0: g_mutex_unlock (sync_mutex); sl@0: sl@0: for (i = 0; i < 100; i++) /* wait a bit. */ sl@0: g_thread_yield(); sl@0: sl@0: call_counter_init (c); sl@0: param = g_param_spec_string ("name", "name_i18n", sl@0: "yet-more-wasteful-i18n", sl@0: NULL, sl@0: G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | sl@0: G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | sl@0: G_PARAM_STATIC_NICK); sl@0: g_object_class_install_property (gobject_class, PROP_NAME, param); sl@0: } sl@0: sl@0: static gpointer sl@0: object_create (gpointer data) sl@0: { sl@0: GObject *obj = g_object_new (prop_tester_get_type(), "name", "fish", NULL); sl@0: g_object_unref (obj); sl@0: return NULL; sl@0: } sl@0: sl@0: static void sl@0: test_threaded_object_init (void) sl@0: { sl@0: GThread *creator; sl@0: g_mutex_lock (sync_mutex); sl@0: sl@0: creator = g_thread_create (object_create, NULL, TRUE, NULL); sl@0: /* really provoke the race */ sl@0: g_cond_wait (sync_cond, sync_mutex); sl@0: sl@0: object_create (NULL); sl@0: g_mutex_unlock (sync_mutex); sl@0: sl@0: g_thread_join (creator); sl@0: } sl@0: sl@0: int sl@0: main (int argc, sl@0: char *argv[]) sl@0: { sl@0: #ifdef __SYMBIAN32__ sl@0: g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL); sl@0: g_set_print_handler(mrtPrintHandler); sl@0: #endif /*__SYMBIAN32__*/ sl@0: g_thread_init (NULL); sl@0: g_test_init (&argc, &argv, NULL); sl@0: g_type_init (); sl@0: sl@0: sync_cond = g_cond_new(); sl@0: sync_mutex = g_mutex_new(); sl@0: sl@0: g_test_add_func ("/GObject/threaded-class-init", test_threaded_class_init); sl@0: g_test_add_func ("/GObject/threaded-object-init", test_threaded_object_init); sl@0: sl@0: /*return*/ g_test_run(); sl@0: #ifdef __SYMBIAN32__ sl@0: testResultXml("threadtests"); sl@0: #endif /* EMULATOR */ sl@0: return 0; sl@0: }