os/ossrv/glib/tests/gobject/defaultiface.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* GObject - GLib Type, Object, Parameter and Signal Library
sl@0
     2
 * Copyright (C) 2001, 2003 Red Hat, Inc.
sl@0
     3
 * Portions copyright (c) 2006-2009 Nokia Corporation.  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
sl@0
    15
 * Public 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
#undef	G_LOG_DOMAIN
sl@0
    21
#define	G_LOG_DOMAIN "TestDefaultIface"
sl@0
    22
sl@0
    23
#undef G_DISABLE_ASSERT
sl@0
    24
#undef G_DISABLE_CHECKS
sl@0
    25
#undef G_DISABLE_CAST_CHECKS
sl@0
    26
sl@0
    27
#include <glib-object.h>
sl@0
    28
sl@0
    29
#include "testcommon.h"
sl@0
    30
#include "testmodule.h"
sl@0
    31
#ifdef __SYMBIAN32__
sl@0
    32
#include "mrt2_glib2_test.h"
sl@0
    33
#endif //__SYMBIAN32__
sl@0
    34
sl@0
    35
/* This test tests getting the default vtable for an interface
sl@0
    36
 * and the initialization and finalization of such default
sl@0
    37
 * interfaces.
sl@0
    38
 *
sl@0
    39
 * We test this both for static and for dynamic interfaces.
sl@0
    40
 */
sl@0
    41
sl@0
    42
/**********************************************************************
sl@0
    43
 * Static interface tests
sl@0
    44
 **********************************************************************/
sl@0
    45
sl@0
    46
typedef struct _TestStaticIfaceClass TestStaticIfaceClass;
sl@0
    47
sl@0
    48
struct _TestStaticIfaceClass
sl@0
    49
{
sl@0
    50
  GTypeInterface base_iface;
sl@0
    51
  guint val;
sl@0
    52
};
sl@0
    53
sl@0
    54
#define TEST_TYPE_STATIC_IFACE (test_static_iface_get_type ())
sl@0
    55
sl@0
    56
static void
sl@0
    57
test_static_iface_default_init (TestStaticIfaceClass *iface)
sl@0
    58
{
sl@0
    59
  iface->val = 42;
sl@0
    60
}
sl@0
    61
sl@0
    62
DEFINE_IFACE (TestStaticIface, test_static_iface,
sl@0
    63
	      NULL, test_static_iface_default_init)
sl@0
    64
sl@0
    65
static void
sl@0
    66
test_static_iface (void)
sl@0
    67
{
sl@0
    68
  TestStaticIfaceClass *static_iface;
sl@0
    69
sl@0
    70
  /* Not loaded until we call ref for the first time */
sl@0
    71
  static_iface = g_type_default_interface_peek (TEST_TYPE_STATIC_IFACE);
sl@0
    72
  g_assert (static_iface == NULL);
sl@0
    73
sl@0
    74
  /* Ref loads */
sl@0
    75
  static_iface = g_type_default_interface_ref (TEST_TYPE_STATIC_IFACE);
sl@0
    76
  g_assert (static_iface && static_iface->val == 42);
sl@0
    77
sl@0
    78
  /* Peek then works */
sl@0
    79
  static_iface = g_type_default_interface_peek (TEST_TYPE_STATIC_IFACE);
sl@0
    80
  g_assert (static_iface && static_iface->val == 42);
sl@0
    81
  
sl@0
    82
  /* Unref does nothing */
sl@0
    83
  g_type_default_interface_unref (static_iface);
sl@0
    84
  
sl@0
    85
  /* And peek still works */
sl@0
    86
  static_iface = g_type_default_interface_peek (TEST_TYPE_STATIC_IFACE);
sl@0
    87
  g_assert (static_iface && static_iface->val == 42);
sl@0
    88
}
sl@0
    89
sl@0
    90
/**********************************************************************
sl@0
    91
 * Dynamic interface tests
sl@0
    92
 **********************************************************************/
sl@0
    93
sl@0
    94
typedef struct _TestDynamicIfaceClass TestDynamicIfaceClass;
sl@0
    95
sl@0
    96
struct _TestDynamicIfaceClass
sl@0
    97
{
sl@0
    98
  GTypeInterface base_iface;
sl@0
    99
  guint val;
sl@0
   100
};
sl@0
   101
sl@0
   102
static GType test_dynamic_iface_type;
sl@0
   103
static gboolean dynamic_iface_init = FALSE;
sl@0
   104
sl@0
   105
#define TEST_TYPE_DYNAMIC_IFACE (test_dynamic_iface_type)
sl@0
   106
sl@0
   107
static void
sl@0
   108
test_dynamic_iface_default_init (TestStaticIfaceClass *iface)
sl@0
   109
{
sl@0
   110
  dynamic_iface_init = TRUE;
sl@0
   111
  iface->val = 42;
sl@0
   112
}
sl@0
   113
sl@0
   114
static void
sl@0
   115
test_dynamic_iface_default_finalize (TestStaticIfaceClass *iface)
sl@0
   116
{
sl@0
   117
  dynamic_iface_init = FALSE;
sl@0
   118
}
sl@0
   119
sl@0
   120
static void
sl@0
   121
test_dynamic_iface_register (GTypeModule *module)
sl@0
   122
{
sl@0
   123
  static const GTypeInfo iface_info =			
sl@0
   124
    {								
sl@0
   125
      sizeof (TestDynamicIfaceClass),
sl@0
   126
      (GBaseInitFunc)	   NULL,
sl@0
   127
      (GBaseFinalizeFunc)  NULL,				
sl@0
   128
      (GClassInitFunc)     test_dynamic_iface_default_init,
sl@0
   129
      (GClassFinalizeFunc) test_dynamic_iface_default_finalize
sl@0
   130
    };							
sl@0
   131
sl@0
   132
  test_dynamic_iface_type = g_type_module_register_type (module, G_TYPE_INTERFACE,
sl@0
   133
							 "TestDynamicIface", &iface_info, 0);
sl@0
   134
}
sl@0
   135
sl@0
   136
static void
sl@0
   137
module_register (GTypeModule *module)
sl@0
   138
{
sl@0
   139
  test_dynamic_iface_register (module);
sl@0
   140
}
sl@0
   141
sl@0
   142
static void
sl@0
   143
test_dynamic_iface (void)
sl@0
   144
{
sl@0
   145
  GTypeModule *module;
sl@0
   146
  TestDynamicIfaceClass *dynamic_iface;
sl@0
   147
sl@0
   148
  module = test_module_new (module_register);
sl@0
   149
sl@0
   150
  /* Not loaded until we call ref for the first time */
sl@0
   151
  dynamic_iface = g_type_default_interface_peek (TEST_TYPE_DYNAMIC_IFACE);
sl@0
   152
  g_assert (dynamic_iface == NULL);
sl@0
   153
sl@0
   154
  /* Ref loads */
sl@0
   155
  dynamic_iface = g_type_default_interface_ref (TEST_TYPE_DYNAMIC_IFACE);
sl@0
   156
  g_assert (dynamic_iface_init);
sl@0
   157
  g_assert (dynamic_iface && dynamic_iface->val == 42);
sl@0
   158
sl@0
   159
  /* Peek then works */
sl@0
   160
  dynamic_iface = g_type_default_interface_peek (TEST_TYPE_DYNAMIC_IFACE);
sl@0
   161
  g_assert (dynamic_iface && dynamic_iface->val == 42);
sl@0
   162
  
sl@0
   163
  /* Unref causes finalize */
sl@0
   164
  g_type_default_interface_unref (dynamic_iface);
sl@0
   165
  g_assert (!dynamic_iface_init);
sl@0
   166
sl@0
   167
  /* Peek returns NULL */
sl@0
   168
  dynamic_iface = g_type_default_interface_peek (TEST_TYPE_DYNAMIC_IFACE);
sl@0
   169
  g_assert (dynamic_iface == NULL);
sl@0
   170
  
sl@0
   171
  /* Ref reloads */
sl@0
   172
  dynamic_iface = g_type_default_interface_ref (TEST_TYPE_DYNAMIC_IFACE);
sl@0
   173
  g_assert (dynamic_iface_init);
sl@0
   174
  g_assert (dynamic_iface && dynamic_iface->val == 42);
sl@0
   175
sl@0
   176
  /* And Unref causes finalize once more*/
sl@0
   177
  g_type_default_interface_unref (dynamic_iface);
sl@0
   178
  g_assert (!dynamic_iface_init);
sl@0
   179
}
sl@0
   180
sl@0
   181
int
sl@0
   182
main (int   argc,
sl@0
   183
      char *argv[])
sl@0
   184
{
sl@0
   185
  #ifdef __SYMBIAN32__
sl@0
   186
  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
   187
  g_set_print_handler(mrtPrintHandler);
sl@0
   188
  #endif /*__SYMBIAN32__*/
sl@0
   189
  g_log_set_always_fatal (g_log_set_always_fatal (G_LOG_FATAL_MASK) |
sl@0
   190
			  G_LOG_LEVEL_WARNING |
sl@0
   191
			  G_LOG_LEVEL_CRITICAL);
sl@0
   192
  g_type_init ();
sl@0
   193
sl@0
   194
  test_static_iface ();
sl@0
   195
  test_dynamic_iface ();
sl@0
   196
  #ifdef __SYMBIAN32__
sl@0
   197
  testResultXml("defaultiface");
sl@0
   198
  #endif //__SYMBIAN32__
sl@0
   199
  
sl@0
   200
  return 0;
sl@0
   201
}