os/ossrv/glib/gobject/gsourceclosure.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 Red Hat, Inc.
sl@0
     3
 * Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
sl@0
     4
 *
sl@0
     5
 * This library is free software; you can redistribute it and/or
sl@0
     6
 * modify it under the terms of the GNU Lesser General Public
sl@0
     7
 * License as published by the Free Software Foundation; either
sl@0
     8
 * version 2 of the License, or (at your option) any later version.
sl@0
     9
 *
sl@0
    10
 * This library is distributed in the hope that it will be useful,
sl@0
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    13
 * Lesser General Public License for more details.
sl@0
    14
 *
sl@0
    15
 * You should have received a copy of the GNU Lesser General
sl@0
    16
 * Public License along with this library; if not, write to the
sl@0
    17
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
sl@0
    18
 * Boston, MA 02111-1307, USA.
sl@0
    19
 */
sl@0
    20
sl@0
    21
#include "config.h"
sl@0
    22
sl@0
    23
#include "gsourceclosure.h"
sl@0
    24
#include "gboxed.h"
sl@0
    25
#include "genums.h"
sl@0
    26
#include "gmarshal.h"
sl@0
    27
#include "gvalue.h"
sl@0
    28
#include "gvaluetypes.h"
sl@0
    29
#include "gobjectalias.h"
sl@0
    30
sl@0
    31
#ifdef __SYMBIAN32__
sl@0
    32
#include <glib_global.h>
sl@0
    33
#include "gobject_wsd.h"
sl@0
    34
#endif /* __SYMBIAN32__ */
sl@0
    35
#if EMULATOR
sl@0
    36
sl@0
    37
PLS(our_type ,g_io_channel_get_type ,GType)
sl@0
    38
#define our_type  (*FUNCTION_NAME(our_type ,g_io_channel_get_type )())
sl@0
    39
sl@0
    40
#endif /* EMULATOR */
sl@0
    41
EXPORT_C GType
sl@0
    42
g_io_channel_get_type (void)
sl@0
    43
{
sl@0
    44
  #if !(EMULATOR)
sl@0
    45
  static GType our_type = 0;
sl@0
    46
  #endif /* EMULATOR */
sl@0
    47
  
sl@0
    48
  if (our_type == 0)
sl@0
    49
    our_type = g_boxed_type_register_static ("GIOChannel",
sl@0
    50
					     (GBoxedCopyFunc) g_io_channel_ref,
sl@0
    51
					     (GBoxedFreeFunc) g_io_channel_unref);
sl@0
    52
sl@0
    53
  return our_type;
sl@0
    54
}
sl@0
    55
sl@0
    56
#if EMULATOR
sl@0
    57
#undef our_type 
sl@0
    58
sl@0
    59
PLS(etype ,g_io_condition_get_type,GType)
sl@0
    60
#define etype (*FUNCTION_NAME(etype,g_io_condition_get_type)())
sl@0
    61
sl@0
    62
#endif /* EMULATOR */
sl@0
    63
sl@0
    64
EXPORT_C GType
sl@0
    65
g_io_condition_get_type (void)
sl@0
    66
{
sl@0
    67
  #if !(EMULATOR)
sl@0
    68
  static GType etype = 0;
sl@0
    69
  #endif /* EMULATOR */
sl@0
    70
  if (etype == 0)
sl@0
    71
    {
sl@0
    72
      static const GFlagsValue values[] = {
sl@0
    73
	{ G_IO_IN,   "G_IO_IN",   "in" },
sl@0
    74
	{ G_IO_OUT,  "G_IO_OUT",  "out" },
sl@0
    75
	{ G_IO_PRI,  "G_IO_PRI",  "pri" },
sl@0
    76
	{ G_IO_ERR,  "G_IO_ERR",  "err" },
sl@0
    77
	{ G_IO_HUP,  "G_IO_HUP",  "hup" },
sl@0
    78
	{ G_IO_NVAL, "G_IO_NVAL", "nval" },
sl@0
    79
	{ 0, NULL, NULL }
sl@0
    80
      };
sl@0
    81
      etype = g_flags_register_static ("GIOCondition", values);
sl@0
    82
    }
sl@0
    83
  return etype;
sl@0
    84
}
sl@0
    85
sl@0
    86
#if EMULATOR
sl@0
    87
#undef etype 
sl@0
    88
#endif /* EMULATOR */
sl@0
    89
sl@0
    90
/* We need to hand-write this marshaler, since it doesn't have an
sl@0
    91
 * instance object.
sl@0
    92
 */
sl@0
    93
static void
sl@0
    94
source_closure_marshal_BOOLEAN__VOID (GClosure     *closure,
sl@0
    95
				      GValue       *return_value,
sl@0
    96
				      guint         n_param_values,
sl@0
    97
				      const GValue *param_values,
sl@0
    98
				      gpointer      invocation_hint,
sl@0
    99
				      gpointer      marshal_data)
sl@0
   100
{
sl@0
   101
  GSourceFunc callback;
sl@0
   102
  GCClosure *cc = (GCClosure*) closure;
sl@0
   103
  gboolean v_return;
sl@0
   104
sl@0
   105
  g_return_if_fail (return_value != NULL);
sl@0
   106
  g_return_if_fail (n_param_values == 0);
sl@0
   107
sl@0
   108
  callback = (GSourceFunc) (marshal_data ? marshal_data : cc->callback);
sl@0
   109
sl@0
   110
  v_return = callback (closure->data);
sl@0
   111
sl@0
   112
  g_value_set_boolean (return_value, v_return);
sl@0
   113
}
sl@0
   114
sl@0
   115
static gboolean
sl@0
   116
io_watch_closure_callback (GIOChannel   *channel,
sl@0
   117
			   GIOCondition  condition,
sl@0
   118
			   gpointer      data)
sl@0
   119
{
sl@0
   120
  GClosure *closure = data;
sl@0
   121
sl@0
   122
  GValue params[2] = { { 0, }, { 0, } };
sl@0
   123
  GValue result_value = { 0, };
sl@0
   124
  gboolean result;
sl@0
   125
sl@0
   126
  g_value_init (&result_value, G_TYPE_BOOLEAN);
sl@0
   127
  g_value_init (&params[0], G_TYPE_IO_CHANNEL);
sl@0
   128
  g_value_set_boxed (&params[0], channel);
sl@0
   129
		     
sl@0
   130
  g_value_init (&params[1], G_TYPE_IO_CONDITION);
sl@0
   131
  g_value_set_flags (&params[1], condition);
sl@0
   132
sl@0
   133
  g_closure_invoke (closure, &result_value, 2, params, NULL);
sl@0
   134
sl@0
   135
  result = g_value_get_boolean (&result_value);
sl@0
   136
  g_value_unset (&result_value);
sl@0
   137
  g_value_unset (&params[0]);
sl@0
   138
  g_value_unset (&params[1]);
sl@0
   139
sl@0
   140
  return result;
sl@0
   141
}
sl@0
   142
sl@0
   143
static gboolean
sl@0
   144
source_closure_callback (gpointer data)
sl@0
   145
{
sl@0
   146
  GClosure *closure = data;
sl@0
   147
  GValue result_value = { 0, };
sl@0
   148
  gboolean result;
sl@0
   149
sl@0
   150
  g_value_init (&result_value, G_TYPE_BOOLEAN);
sl@0
   151
  
sl@0
   152
  g_closure_invoke (closure, &result_value, 0, NULL, NULL);
sl@0
   153
sl@0
   154
  result = g_value_get_boolean (&result_value);
sl@0
   155
  g_value_unset (&result_value);
sl@0
   156
sl@0
   157
  return result;
sl@0
   158
}
sl@0
   159
sl@0
   160
static void
sl@0
   161
closure_callback_get (gpointer     cb_data,
sl@0
   162
		      GSource     *source,
sl@0
   163
		      GSourceFunc *func,
sl@0
   164
		      gpointer    *data)
sl@0
   165
{
sl@0
   166
  GSourceFunc closure_callback = source->source_funcs->closure_callback;
sl@0
   167
sl@0
   168
  if (!closure_callback)
sl@0
   169
    {
sl@0
   170
      if (source->source_funcs == &g_io_watch_funcs)
sl@0
   171
	closure_callback = (GSourceFunc)io_watch_closure_callback;
sl@0
   172
      else if (source->source_funcs == &g_timeout_funcs ||
sl@0
   173
	       source->source_funcs == &g_idle_funcs)
sl@0
   174
	closure_callback = source_closure_callback;
sl@0
   175
    }
sl@0
   176
sl@0
   177
  *func = closure_callback;
sl@0
   178
  *data = cb_data;
sl@0
   179
}
sl@0
   180
sl@0
   181
#if EMULATOR
sl@0
   182
sl@0
   183
PLS(closure_callback_funcs,gsourceclosure,GSourceCallbackFuncs)
sl@0
   184
#define closure_callback_funcs (*FUNCTION_NAME(closure_callback_funcs,gsourceclosure)())
sl@0
   185
sl@0
   186
const GSourceCallbackFuncs temp_closure_callback_funcs = {
sl@0
   187
  (void (*) (gpointer)) g_closure_ref,
sl@0
   188
  (void (*) (gpointer)) g_closure_unref,
sl@0
   189
  closure_callback_get
sl@0
   190
};
sl@0
   191
sl@0
   192
sl@0
   193
#else
sl@0
   194
sl@0
   195
static GSourceCallbackFuncs closure_callback_funcs = {
sl@0
   196
  (void (*) (gpointer)) g_closure_ref,
sl@0
   197
  (void (*) (gpointer)) g_closure_unref,
sl@0
   198
  closure_callback_get
sl@0
   199
};
sl@0
   200
#endif /* EMULATOR */
sl@0
   201
sl@0
   202
/**
sl@0
   203
 * g_source_set_closure:
sl@0
   204
 * @source: the source
sl@0
   205
 * @closure: a #GClosure
sl@0
   206
 *
sl@0
   207
 * Set the callback for a source as a #GClosure.
sl@0
   208
 *
sl@0
   209
 * If the source is not one of the standard GLib types, the @closure_callback
sl@0
   210
 * and @closure_marshal fields of the #GSourceFuncs structure must have been
sl@0
   211
 * filled in with pointers to appropriate functions.
sl@0
   212
 */
sl@0
   213
EXPORT_C void
sl@0
   214
g_source_set_closure (GSource  *source,
sl@0
   215
		      GClosure *closure)
sl@0
   216
{
sl@0
   217
  g_return_if_fail (source != NULL);
sl@0
   218
  g_return_if_fail (closure != NULL);
sl@0
   219
sl@0
   220
  if (!source->source_funcs->closure_callback &&
sl@0
   221
      source->source_funcs != &g_io_watch_funcs &&
sl@0
   222
      source->source_funcs != &g_timeout_funcs &&
sl@0
   223
      source->source_funcs != &g_idle_funcs)
sl@0
   224
    {
sl@0
   225
      g_critical (G_STRLOC "closure can not be set on closure without GSourceFuncs::closure_callback\n");
sl@0
   226
      return;
sl@0
   227
    }
sl@0
   228
sl@0
   229
  g_closure_ref (closure);
sl@0
   230
  g_closure_sink (closure);
sl@0
   231
  g_source_set_callback_indirect (source, closure, &closure_callback_funcs);
sl@0
   232
sl@0
   233
  if (G_CLOSURE_NEEDS_MARSHAL (closure))
sl@0
   234
    {
sl@0
   235
      GClosureMarshal marshal = (GClosureMarshal)source->source_funcs->closure_marshal;
sl@0
   236
      if (!marshal)
sl@0
   237
	{
sl@0
   238
	  if (source->source_funcs == &g_idle_funcs ||
sl@0
   239
	      source->source_funcs == &g_timeout_funcs)
sl@0
   240
	    marshal = source_closure_marshal_BOOLEAN__VOID;
sl@0
   241
	  else if (source->source_funcs == &g_io_watch_funcs)
sl@0
   242
	    marshal = g_cclosure_marshal_BOOLEAN__FLAGS;
sl@0
   243
	}
sl@0
   244
      if (marshal)
sl@0
   245
	g_closure_set_marshal (closure, marshal);
sl@0
   246
    }
sl@0
   247
}
sl@0
   248
sl@0
   249
#define __G_SOURCECLOSURE_C__
sl@0
   250
#include "gobjectaliasdef.c"