os/ossrv/glib/tests/module-test.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* module-test.c - test program for GMODULE
sl@0
     2
 * Copyright (C) 1998 Tim Janik
sl@0
     3
 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
sl@0
     4
 * This library is free software; you can redistribute it and/or
sl@0
     5
 * modify it under the terms of the GNU Lesser General Public
sl@0
     6
 * License as published by the Free Software Foundation; either
sl@0
     7
 * version 2 of the License, or (at your option) any later version.
sl@0
     8
 *
sl@0
     9
 * This library is distributed in the hope that it will be useful,
sl@0
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    12
 * Lesser General Public License for more details.
sl@0
    13
 *
sl@0
    14
 * You should have received a copy of the GNU Lesser General Public
sl@0
    15
 * License along with this library; if not, write to the
sl@0
    16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
sl@0
    17
 * Boston, MA 02111-1307, USA.
sl@0
    18
 */
sl@0
    19
sl@0
    20
/*
sl@0
    21
 * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
sl@0
    22
 * file for a list of people on the GLib Team.  See the ChangeLog
sl@0
    23
 * files for a list of changes.  These files are distributed with
sl@0
    24
 * GLib at ftp://ftp.gtk.org/pub/gtk/. 
sl@0
    25
 */
sl@0
    26
sl@0
    27
#undef G_DISABLE_ASSERT
sl@0
    28
#undef G_LOG_DOMAIN
sl@0
    29
sl@0
    30
#include <gmodule.h>
sl@0
    31
#include <string.h>
sl@0
    32
#ifdef __SYMBIAN32__
sl@0
    33
#include "mrt2_glib2_test.h"
sl@0
    34
#endif /*__SYMBIAN32__*/
sl@0
    35
sl@0
    36
gchar* global_state;
sl@0
    37
sl@0
    38
G_MODULE_EXPORT void
sl@0
    39
g_clash_func (void)
sl@0
    40
{
sl@0
    41
  global_state = "global clash";
sl@0
    42
}
sl@0
    43
sl@0
    44
typedef	void (*SimpleFunc) (void);
sl@0
    45
typedef	void (*GModuleFunc) (GModule *);
sl@0
    46
sl@0
    47
static gchar **gplugin_a_state;
sl@0
    48
static gchar **gplugin_b_state;
sl@0
    49
sl@0
    50
static void
sl@0
    51
compare (const gchar *desc, const gchar *expected, const gchar *found)
sl@0
    52
{
sl@0
    53
  if (!expected && !found)
sl@0
    54
    return;
sl@0
    55
  
sl@0
    56
  if (expected && found && strcmp (expected, found) == 0)
sl@0
    57
    return;
sl@0
    58
    
sl@0
    59
  g_error ("error: %s state should have been \"%s\", but is \"%s\"",
sl@0
    60
	   desc, expected ? expected : "NULL", found ? found : "NULL");
sl@0
    61
}
sl@0
    62
sl@0
    63
static void 
sl@0
    64
test_states (const gchar *global, const gchar *gplugin_a, 
sl@0
    65
	     const gchar *gplugin_b)
sl@0
    66
{	
sl@0
    67
  compare ("global", global, global_state);
sl@0
    68
  compare ("Plugin A", gplugin_a, *gplugin_a_state);
sl@0
    69
  compare ("Plugin B", gplugin_b, *gplugin_b_state);
sl@0
    70
  
sl@0
    71
  global_state = *gplugin_a_state = *gplugin_b_state = NULL;
sl@0
    72
}
sl@0
    73
 
sl@0
    74
static SimpleFunc plugin_clash_func = NULL;
sl@0
    75
sl@0
    76
int
sl@0
    77
main (int   arg,
sl@0
    78
      char *argv[])
sl@0
    79
{
sl@0
    80
  GModule *module_self, *module_a, *module_b;
sl@0
    81
  gchar *dir;
sl@0
    82
  gchar *plugin_a, *plugin_b;
sl@0
    83
  SimpleFunc f_a, f_b, f_self;
sl@0
    84
  GModuleFunc gmod_f;
sl@0
    85
sl@0
    86
  #ifdef __SYMBIAN32__
sl@0
    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);
sl@0
    88
  g_set_print_handler(mrtPrintHandler);
sl@0
    89
  #endif /*__SYMBIAN32__*/
sl@0
    90
	  
sl@0
    91
sl@0
    92
  if (!g_module_supported ())
sl@0
    93
    g_error ("dynamic modules not supported");
sl@0
    94
sl@0
    95
#ifndef __SYMBIAN32__
sl@0
    96
  dir = g_get_current_dir ()
sl@0
    97
#endif  
sl@0
    98
sl@0
    99
  plugin_a = "libmoduletestplugin_a.dll";
sl@0
   100
  plugin_b = "libmoduletestplugin_b.dll";
sl@0
   101
sl@0
   102
#ifndef __SYMBIAN32__
sl@0
   103
  g_free (dir);
sl@0
   104
#endif  
sl@0
   105
sl@0
   106
  /* module handles */
sl@0
   107
#ifndef __SYMBIAN32__ 
sl@0
   108
  module_self = g_module_open (NULL, G_MODULE_BIND_LAZY);
sl@0
   109
  if (!module_self)
sl@0
   110
    g_error ("error: %s", g_module_error ());
sl@0
   111
sl@0
   112
  if (!g_module_symbol (module_self, "g_module_close", (gpointer *) &f_self))
sl@0
   113
    g_error ("error: %s", g_module_error ());
sl@0
   114
#endif
sl@0
   115
  module_a = g_module_open (plugin_a, G_MODULE_BIND_LAZY);
sl@0
   116
  if (!module_a)
sl@0
   117
    g_error ("error: %s", g_module_error ());
sl@0
   118
sl@0
   119
  module_b = g_module_open (plugin_b, G_MODULE_BIND_LAZY);
sl@0
   120
  if (!module_b)
sl@0
   121
    g_error ("error: %s", g_module_error ());
sl@0
   122
sl@0
   123
  /* get plugin state vars */
sl@0
   124
sl@0
   125
  if (!g_module_symbol (module_a, "gplugin_a_state", 
sl@0
   126
			(gpointer *) &gplugin_a_state))
sl@0
   127
    g_error ("error: %s", g_module_error ());
sl@0
   128
  
sl@0
   129
  if (!g_module_symbol (module_b, "gplugin_b_state", 
sl@0
   130
			(gpointer *) &gplugin_b_state))
sl@0
   131
    g_error ("error: %s", g_module_error ());
sl@0
   132
  test_states (NULL, NULL, "check-init");
sl@0
   133
  
sl@0
   134
  /* get plugin specific symbols and call them
sl@0
   135
   */
sl@0
   136
  if (!g_module_symbol (module_a, "gplugin_a_func", (gpointer *) &f_a))
sl@0
   137
    g_error ("error: %s", g_module_error ());
sl@0
   138
  test_states (NULL, NULL, NULL);
sl@0
   139
 
sl@0
   140
  if (!g_module_symbol (module_b, "gplugin_b_func", (gpointer *) &f_b))
sl@0
   141
    g_error ("error: %s", g_module_error ());
sl@0
   142
  test_states (NULL, NULL, NULL);
sl@0
   143
 
sl@0
   144
  f_a ();
sl@0
   145
  test_states (NULL, "Hello world", NULL);
sl@0
   146
  
sl@0
   147
  f_b ();
sl@0
   148
  test_states (NULL, NULL, "Hello world");
sl@0
   149
  
sl@0
   150
  /* get and call globally clashing functions
sl@0
   151
   */
sl@0
   152
#ifndef __SYMBIAN32__
sl@0
   153
  if (!g_module_symbol (module_self, "g_clash_func", (gpointer *) &f_self))
sl@0
   154
    g_error ("error: %s", g_module_error ());
sl@0
   155
  test_states (NULL, NULL, NULL);
sl@0
   156
#endif
sl@0
   157
  if (!g_module_symbol (module_a, "g_clash_func", (gpointer *) &f_a))
sl@0
   158
    g_error ("error: %s", g_module_error ());
sl@0
   159
  test_states (NULL, NULL, NULL);
sl@0
   160
 
sl@0
   161
  if (!g_module_symbol (module_b, "g_clash_func", (gpointer *) &f_b))
sl@0
   162
    g_error ("error: %s", g_module_error ());
sl@0
   163
  test_states (NULL, NULL, NULL);
sl@0
   164
#ifndef __SYMBIAN32__ 
sl@0
   165
  f_self ();
sl@0
   166
  test_states ("global clash", NULL, NULL);
sl@0
   167
#endif  
sl@0
   168
  f_a ();
sl@0
   169
  test_states (NULL, "global clash", NULL);
sl@0
   170
sl@0
   171
  f_b ();
sl@0
   172
  test_states (NULL, NULL, "global clash");
sl@0
   173
sl@0
   174
  /* get and call clashing plugin functions  */
sl@0
   175
sl@0
   176
  if (!g_module_symbol (module_a, "gplugin_clash_func", (gpointer *) &f_a))
sl@0
   177
    g_error ("error: %s", g_module_error ());
sl@0
   178
  test_states (NULL, NULL, NULL);
sl@0
   179
sl@0
   180
  if (!g_module_symbol (module_b, "gplugin_clash_func", (gpointer *) &f_b))
sl@0
   181
    g_error ("error: %s", g_module_error ());
sl@0
   182
  test_states (NULL, NULL, NULL);
sl@0
   183
sl@0
   184
  plugin_clash_func = f_a;
sl@0
   185
  plugin_clash_func ();
sl@0
   186
  test_states (NULL, "plugin clash", NULL);
sl@0
   187
sl@0
   188
  plugin_clash_func = f_b;
sl@0
   189
  plugin_clash_func ();
sl@0
   190
  test_states (NULL, NULL, "plugin clash");
sl@0
   191
sl@0
   192
  /* call gmodule function from A  */
sl@0
   193
sl@0
   194
  if (!g_module_symbol (module_a, "gplugin_a_module_func", (gpointer *) &gmod_f))
sl@0
   195
    g_error ("error: %s", g_module_error ());
sl@0
   196
  test_states (NULL, NULL, NULL);
sl@0
   197
sl@0
   198
  gmod_f (module_b);
sl@0
   199
  test_states (NULL, NULL, "BOOH");
sl@0
   200
 
sl@0
   201
  gmod_f (module_a);
sl@0
   202
  test_states (NULL, "BOOH", NULL);
sl@0
   203
sl@0
   204
  /* unload plugins  */
sl@0
   205
sl@0
   206
  if (!g_module_close (module_a))
sl@0
   207
    g_error ("error: %s", g_module_error ());
sl@0
   208
sl@0
   209
  if (!g_module_close (module_b))
sl@0
   210
    g_error ("error: %s", g_module_error ());
sl@0
   211
  #ifdef __SYMBIAN32__
sl@0
   212
  testResultXml("module-test");
sl@0
   213
  #endif /* EMULATOR */
sl@0
   214
 
sl@0
   215
  return 0;
sl@0
   216
}