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