os/ossrv/glib/tests/refcount/properties.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
sl@0
     3
*/
sl@0
     4
#include <unistd.h>
sl@0
     5
#include <glib.h>
sl@0
     6
#include <glib-object.h>
sl@0
     7
sl@0
     8
#ifdef __SYMBIAN32__
sl@0
     9
#include <glib_global.h>
sl@0
    10
#include "mrt2_glib2_test.h"
sl@0
    11
#endif /*__SYMBIAN32__*/
sl@0
    12
#define G_TYPE_TEST               (my_test_get_type ())
sl@0
    13
#define MY_TEST(test)              (G_TYPE_CHECK_INSTANCE_CAST ((test), G_TYPE_TEST, GTest))
sl@0
    14
#define MY_IS_TEST(test)           (G_TYPE_CHECK_INSTANCE_TYPE ((test), G_TYPE_TEST))
sl@0
    15
#define MY_TEST_CLASS(tclass)      (G_TYPE_CHECK_CLASS_CAST ((tclass), G_TYPE_TEST, GTestClass))
sl@0
    16
#define MY_IS_TEST_CLASS(tclass)   (G_TYPE_CHECK_CLASS_TYPE ((tclass), G_TYPE_TEST))
sl@0
    17
#define MY_TEST_GET_CLASS(test)    (G_TYPE_INSTANCE_GET_CLASS ((test), G_TYPE_TEST, GTestClass))
sl@0
    18
sl@0
    19
enum {
sl@0
    20
  PROP_0,
sl@0
    21
  PROP_DUMMY
sl@0
    22
};
sl@0
    23
sl@0
    24
typedef struct _GTest GTest;
sl@0
    25
typedef struct _GTestClass GTestClass;
sl@0
    26
sl@0
    27
struct _GTest
sl@0
    28
{
sl@0
    29
  GObject object;
sl@0
    30
  gint id;
sl@0
    31
  gint dummy;
sl@0
    32
sl@0
    33
  gint count;
sl@0
    34
};
sl@0
    35
sl@0
    36
struct _GTestClass
sl@0
    37
{
sl@0
    38
  GObjectClass parent_class;
sl@0
    39
};
sl@0
    40
sl@0
    41
static GType my_test_get_type (void);
sl@0
    42
static volatile gboolean stopping;
sl@0
    43
sl@0
    44
static void my_test_class_init (GTestClass * klass);
sl@0
    45
static void my_test_init (GTest * test);
sl@0
    46
static void my_test_dispose (GObject * object);
sl@0
    47
static void my_test_get_property (GObject    *object,
sl@0
    48
                                  guint       prop_id,
sl@0
    49
                                  GValue     *value,
sl@0
    50
                                  GParamSpec *pspec);
sl@0
    51
static void my_test_set_property (GObject      *object,
sl@0
    52
                                  guint         prop_id,
sl@0
    53
                                  const GValue *value,
sl@0
    54
                                  GParamSpec   *pspec);
sl@0
    55
sl@0
    56
static GObjectClass *parent_class = NULL;
sl@0
    57
sl@0
    58
static GType
sl@0
    59
my_test_get_type (void)
sl@0
    60
{
sl@0
    61
  static GType test_type = 0;
sl@0
    62
sl@0
    63
  if (!test_type) {
sl@0
    64
    static const GTypeInfo test_info = {
sl@0
    65
      sizeof (GTestClass),
sl@0
    66
      NULL,
sl@0
    67
      NULL,
sl@0
    68
      (GClassInitFunc) my_test_class_init,
sl@0
    69
      NULL,
sl@0
    70
      NULL,
sl@0
    71
      sizeof (GTest),
sl@0
    72
      0,
sl@0
    73
      (GInstanceInitFunc) my_test_init,
sl@0
    74
      NULL
sl@0
    75
    };
sl@0
    76
sl@0
    77
    test_type = g_type_register_static (G_TYPE_OBJECT, "GTest", &test_info, 0);
sl@0
    78
  }
sl@0
    79
  return test_type;
sl@0
    80
}
sl@0
    81
sl@0
    82
static void
sl@0
    83
my_test_class_init (GTestClass * klass)
sl@0
    84
{
sl@0
    85
  GObjectClass *gobject_class;
sl@0
    86
sl@0
    87
  gobject_class = (GObjectClass *) klass;
sl@0
    88
sl@0
    89
  parent_class = g_type_class_ref (G_TYPE_OBJECT);
sl@0
    90
sl@0
    91
  gobject_class->dispose = my_test_dispose;
sl@0
    92
  gobject_class->get_property = my_test_get_property;
sl@0
    93
  gobject_class->set_property = my_test_set_property;
sl@0
    94
sl@0
    95
  g_object_class_install_property (gobject_class,
sl@0
    96
				   PROP_DUMMY,
sl@0
    97
				   g_param_spec_int ("dummy",
sl@0
    98
						     NULL, 
sl@0
    99
						     NULL,
sl@0
   100
						     0, G_MAXINT, 0,
sl@0
   101
						     G_PARAM_READWRITE));
sl@0
   102
}
sl@0
   103
sl@0
   104
static void
sl@0
   105
my_test_init (GTest * test)
sl@0
   106
{
sl@0
   107
  static guint static_id = 1;
sl@0
   108
  test->id = static_id++;
sl@0
   109
}
sl@0
   110
sl@0
   111
static void
sl@0
   112
my_test_dispose (GObject * object)
sl@0
   113
{
sl@0
   114
  GTest *test;
sl@0
   115
sl@0
   116
  test = MY_TEST (object);
sl@0
   117
sl@0
   118
  G_OBJECT_CLASS (parent_class)->dispose (object);
sl@0
   119
}
sl@0
   120
sl@0
   121
static void 
sl@0
   122
my_test_get_property (GObject    *object,
sl@0
   123
                      guint       prop_id,
sl@0
   124
                      GValue     *value,
sl@0
   125
                      GParamSpec *pspec)
sl@0
   126
{
sl@0
   127
  GTest *test;
sl@0
   128
sl@0
   129
  test = MY_TEST (object);
sl@0
   130
sl@0
   131
  switch (prop_id)
sl@0
   132
    {
sl@0
   133
    case PROP_DUMMY:
sl@0
   134
      g_value_set_int (value, test->dummy);
sl@0
   135
      break;
sl@0
   136
    default:
sl@0
   137
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
sl@0
   138
      break;
sl@0
   139
    }
sl@0
   140
}
sl@0
   141
sl@0
   142
static void 
sl@0
   143
my_test_set_property (GObject      *object,
sl@0
   144
                      guint         prop_id,
sl@0
   145
                      const GValue *value,
sl@0
   146
                      GParamSpec   *pspec)
sl@0
   147
{
sl@0
   148
  GTest *test;
sl@0
   149
sl@0
   150
  test = MY_TEST (object);
sl@0
   151
sl@0
   152
  switch (prop_id)
sl@0
   153
    {
sl@0
   154
    case PROP_DUMMY:
sl@0
   155
      test->dummy = g_value_get_int (value);
sl@0
   156
      break;
sl@0
   157
    default:
sl@0
   158
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
sl@0
   159
      break;
sl@0
   160
    }
sl@0
   161
}
sl@0
   162
sl@0
   163
static void
sl@0
   164
dummy_notify (GObject    *object,
sl@0
   165
              GParamSpec *pspec)
sl@0
   166
{
sl@0
   167
  GTest *test;
sl@0
   168
sl@0
   169
  test = MY_TEST (object);
sl@0
   170
sl@0
   171
  test->count++;  
sl@0
   172
}
sl@0
   173
sl@0
   174
static void
sl@0
   175
my_test_do_property (GTest * test)
sl@0
   176
{
sl@0
   177
  gint dummy;
sl@0
   178
sl@0
   179
  g_object_get (test, "dummy", &dummy, NULL);
sl@0
   180
  g_object_set (test, "dummy", dummy + 1, NULL);
sl@0
   181
}
sl@0
   182
sl@0
   183
static gpointer
sl@0
   184
run_thread (GTest * test)
sl@0
   185
{
sl@0
   186
  gint i = 1;
sl@0
   187
  
sl@0
   188
  while (!stopping) {
sl@0
   189
    my_test_do_property (test);
sl@0
   190
    if ((i++ % 10000) == 0)
sl@0
   191
      {
sl@0
   192
        g_print (".%c", 'a' + test->id);
sl@0
   193
        g_thread_yield(); /* force context switch */
sl@0
   194
      }
sl@0
   195
  }
sl@0
   196
sl@0
   197
  return NULL;
sl@0
   198
}
sl@0
   199
sl@0
   200
int
sl@0
   201
main (int argc, char **argv)
sl@0
   202
{
sl@0
   203
  gint i;
sl@0
   204
  GArray *test_objects;
sl@0
   205
  GArray *test_threads;
sl@0
   206
  const gint n_threads = 5;
sl@0
   207
sl@0
   208
  #ifdef __SYMBIAN32__
sl@0
   209
  
sl@0
   210
  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
   211
  g_set_print_handler(mrtPrintHandler);
sl@0
   212
  #endif /*__SYMBIAN32__*/
sl@0
   213
  g_thread_init (NULL);
sl@0
   214
  g_print ("START: %s\n", argv[0]);
sl@0
   215
  g_log_set_always_fatal (G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | g_log_set_always_fatal (G_LOG_FATAL_MASK));
sl@0
   216
  g_type_init ();
sl@0
   217
sl@0
   218
  test_objects = g_array_new (FALSE, FALSE, sizeof (GTest *));
sl@0
   219
sl@0
   220
  for (i = 0; i < n_threads; i++) {
sl@0
   221
    GTest *test;
sl@0
   222
    
sl@0
   223
    test = g_object_new (G_TYPE_TEST, NULL);
sl@0
   224
    g_array_append_val (test_objects, test);
sl@0
   225
sl@0
   226
    g_assert (test->count == test->dummy);
sl@0
   227
    g_signal_connect (test, "notify::dummy", G_CALLBACK (dummy_notify), NULL);
sl@0
   228
  }
sl@0
   229
    
sl@0
   230
  test_threads = g_array_new (FALSE, FALSE, sizeof (GThread *));
sl@0
   231
sl@0
   232
  stopping = FALSE;
sl@0
   233
sl@0
   234
  for (i = 0; i < n_threads; i++) {
sl@0
   235
    GThread *thread;
sl@0
   236
    GTest *test;
sl@0
   237
sl@0
   238
    test = g_array_index (test_objects, GTest *, i);
sl@0
   239
sl@0
   240
    thread = g_thread_create ((GThreadFunc) run_thread, test, TRUE, NULL);
sl@0
   241
    g_array_append_val (test_threads, thread);
sl@0
   242
  }
sl@0
   243
  g_usleep (3000000);
sl@0
   244
sl@0
   245
  stopping = TRUE;
sl@0
   246
  g_print ("\nstopping\n");
sl@0
   247
sl@0
   248
  /* join all threads */
sl@0
   249
  for (i = 0; i < n_threads; i++) {
sl@0
   250
    GThread *thread;
sl@0
   251
sl@0
   252
    thread = g_array_index (test_threads, GThread *, i);
sl@0
   253
    g_thread_join (thread);
sl@0
   254
  }
sl@0
   255
sl@0
   256
  g_print ("stopped\n");
sl@0
   257
sl@0
   258
  for (i = 0; i < n_threads; i++) {
sl@0
   259
    GTest *test;
sl@0
   260
sl@0
   261
    test = g_array_index (test_objects, GTest *, i);
sl@0
   262
sl@0
   263
    g_assert (test->count == test->dummy);
sl@0
   264
  }
sl@0
   265
#ifdef __SYMBIAN32__
sl@0
   266
  testResultXml("properties");
sl@0
   267
#endif /* EMULATOR */
sl@0
   268
  return 0;
sl@0
   269
}