Update contrib.
1 /* module-test.c - test program for GMODULE
2 * Copyright (C) 1998 Tim Janik
3 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #undef G_DISABLE_ASSERT
33 #include "mrt2_glib2_test.h"
34 #endif /*__SYMBIAN32__*/
41 global_state = "global clash";
44 typedef void (*SimpleFunc) (void);
45 typedef void (*GModuleFunc) (GModule *);
47 static gchar **gplugin_a_state;
48 static gchar **gplugin_b_state;
51 compare (const gchar *desc, const gchar *expected, const gchar *found)
53 if (!expected && !found)
56 if (expected && found && strcmp (expected, found) == 0)
59 g_error ("error: %s state should have been \"%s\", but is \"%s\"",
60 desc, expected ? expected : "NULL", found ? found : "NULL");
64 test_states (const gchar *global, const gchar *gplugin_a,
65 const gchar *gplugin_b)
67 compare ("global", global, global_state);
68 compare ("Plugin A", gplugin_a, *gplugin_a_state);
69 compare ("Plugin B", gplugin_b, *gplugin_b_state);
71 global_state = *gplugin_a_state = *gplugin_b_state = NULL;
74 static SimpleFunc plugin_clash_func = NULL;
80 GModule *module_self, *module_a, *module_b;
82 gchar *plugin_a, *plugin_b;
83 SimpleFunc f_a, f_b, f_self;
87 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);
88 g_set_print_handler(mrtPrintHandler);
89 #endif /*__SYMBIAN32__*/
92 if (!g_module_supported ())
93 g_error ("dynamic modules not supported");
96 dir = g_get_current_dir ()
99 plugin_a = "libmoduletestplugin_a.dll";
100 plugin_b = "libmoduletestplugin_b.dll";
102 #ifndef __SYMBIAN32__
107 #ifndef __SYMBIAN32__
108 module_self = g_module_open (NULL, G_MODULE_BIND_LAZY);
110 g_error ("error: %s", g_module_error ());
112 if (!g_module_symbol (module_self, "g_module_close", (gpointer *) &f_self))
113 g_error ("error: %s", g_module_error ());
115 module_a = g_module_open (plugin_a, G_MODULE_BIND_LAZY);
117 g_error ("error: %s", g_module_error ());
119 module_b = g_module_open (plugin_b, G_MODULE_BIND_LAZY);
121 g_error ("error: %s", g_module_error ());
123 /* get plugin state vars */
125 if (!g_module_symbol (module_a, "gplugin_a_state",
126 (gpointer *) &gplugin_a_state))
127 g_error ("error: %s", g_module_error ());
129 if (!g_module_symbol (module_b, "gplugin_b_state",
130 (gpointer *) &gplugin_b_state))
131 g_error ("error: %s", g_module_error ());
132 test_states (NULL, NULL, "check-init");
134 /* get plugin specific symbols and call them
136 if (!g_module_symbol (module_a, "gplugin_a_func", (gpointer *) &f_a))
137 g_error ("error: %s", g_module_error ());
138 test_states (NULL, NULL, NULL);
140 if (!g_module_symbol (module_b, "gplugin_b_func", (gpointer *) &f_b))
141 g_error ("error: %s", g_module_error ());
142 test_states (NULL, NULL, NULL);
145 test_states (NULL, "Hello world", NULL);
148 test_states (NULL, NULL, "Hello world");
150 /* get and call globally clashing functions
152 #ifndef __SYMBIAN32__
153 if (!g_module_symbol (module_self, "g_clash_func", (gpointer *) &f_self))
154 g_error ("error: %s", g_module_error ());
155 test_states (NULL, NULL, NULL);
157 if (!g_module_symbol (module_a, "g_clash_func", (gpointer *) &f_a))
158 g_error ("error: %s", g_module_error ());
159 test_states (NULL, NULL, NULL);
161 if (!g_module_symbol (module_b, "g_clash_func", (gpointer *) &f_b))
162 g_error ("error: %s", g_module_error ());
163 test_states (NULL, NULL, NULL);
164 #ifndef __SYMBIAN32__
166 test_states ("global clash", NULL, NULL);
169 test_states (NULL, "global clash", NULL);
172 test_states (NULL, NULL, "global clash");
174 /* get and call clashing plugin functions */
176 if (!g_module_symbol (module_a, "gplugin_clash_func", (gpointer *) &f_a))
177 g_error ("error: %s", g_module_error ());
178 test_states (NULL, NULL, NULL);
180 if (!g_module_symbol (module_b, "gplugin_clash_func", (gpointer *) &f_b))
181 g_error ("error: %s", g_module_error ());
182 test_states (NULL, NULL, NULL);
184 plugin_clash_func = f_a;
185 plugin_clash_func ();
186 test_states (NULL, "plugin clash", NULL);
188 plugin_clash_func = f_b;
189 plugin_clash_func ();
190 test_states (NULL, NULL, "plugin clash");
192 /* call gmodule function from A */
194 if (!g_module_symbol (module_a, "gplugin_a_module_func", (gpointer *) &gmod_f))
195 g_error ("error: %s", g_module_error ());
196 test_states (NULL, NULL, NULL);
199 test_states (NULL, NULL, "BOOH");
202 test_states (NULL, "BOOH", NULL);
206 if (!g_module_close (module_a))
207 g_error ("error: %s", g_module_error ());
209 if (!g_module_close (module_b))
210 g_error ("error: %s", g_module_error ());
212 testResultXml("module-test");
213 #endif /* EMULATOR */