Merge remote branch 'gvdb/master'
[platform/upstream/glib.git] / gobject / gvalue.c
index c3a413c..7be9f71 100644 (file)
  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  * Boston, MA 02111-1307, USA.
  */
+
+/*
+ * FIXME: MT-safety
+ */
+
+#include "config.h"
+
+#include <string.h>
+
+#include "gvalue.h"
+#include "gvaluecollector.h"
+#include "gbsearcharray.h"
+#include "gobjectalias.h"
+
+
 /**
- * SECTION:Generic Values
- * @Short_description: A polymorphic type that can hold values of any other type
- * @See_also: The fundamental types which all support #GValue operations and
- * thus can be used as a type initializer for g_value_init() are defined by
- * a separate interface.  See the <link 
- * linkend="gobject-Standard-Parameter-and-Value-Types">Standard Values 
- * API</link> for details.
- * 
+ * SECTION:generic_values
+ * @short_description: A polymorphic type that can hold values of any
+ *     other type
+ * @see_also: The fundamental types which all support #GValue
+ *     operations and thus can be used as a type initializer for
+ *     g_value_init() are defined by a separate interface.  See the <link
+ *     linkend="gobject-Standard-Parameter-and-Value-Types">Standard
+ *     Values API</link> for details.
+ * @title: Generic values
+ *
  * The #GValue structure is basically a variable container that consists
  * of a type identifier and a specific value of that type.
  * The type identifier within a #GValue structure always determines the
  * by the #GTypeValueTable associated with the type ID stored in the #GValue.
  * Other #GValue operations (such as converting values between types) are
  * provided by this interface.
+ *
+ * The code in the example program below demonstrates #GValue's
+ * features.
+ *
+ * |[
+ * #include &lt;glib-object.h&gt;
+ *
+ * static void
+ * int2string (const GValue *src_value,
+ *             GValue       *dest_value)
+ * {
+ *   if (g_value_get_int (src_value) == 42)
+ *     g_value_set_static_string (dest_value, "An important number");
+ *   else
+ *     g_value_set_static_string (dest_value, "What's that?");
+ * }
+ *
+ * int
+ * main (int   argc,
+ *       char *argv[])
+ * {
+ *   /&ast; GValues must start zero-filled &ast;/
+ *   GValue a = {0};
+ *   GValue b = {0};
+ *   const gchar *message;
+ *
+ *   g_type_init ();
+ *
+ *   /&ast; The GValue starts empty &ast;/
+ *   g_assert (!G_VALUE_HOLDS_STRING (&amp;a));
+ *
+ *   /&ast; Put a string in it &ast;/
+ *   g_value_init (&amp;a, G_TYPE_STRING);
+ *   g_assert (G_VALUE_HOLDS_STRING (&amp;a));
+ *   g_value_set_static_string (&amp;a, "Hello, world!");
+ *   g_printf ("%s\n", g_value_get_string (&amp;a));
+ *
+ *   /&ast; Reset it to its pristine state &ast;/
+ *   g_value_unset (&amp;a);
+ *
+ *   /&ast; It can then be reused for another type &ast;/
+ *   g_value_init (&amp;a, G_TYPE_INT);
+ *   g_value_set_int (&amp;a, 42);
+ *
+ *   /&ast; Attempt to transform it into a GValue of type STRING &ast;/
+ *   g_value_init (&amp;b, G_TYPE_STRING);
+ *
+ *   /&ast; An INT is transformable to a STRING &ast;/
+ *   g_assert (g_value_type_transformable (G_TYPE_INT, G_TYPE_STRING));
+ *
+ *   g_value_transform (&amp;a, &amp;b);
+ *   g_printf ("%s\n", g_value_get_string (&amp;b));
+ *
+ *   /&ast; Attempt to transform it again using a custom transform function &ast;/
+ *   g_value_register_transform_func (G_TYPE_INT, G_TYPE_STRING, int2string);
+ *   g_value_transform (&amp;a, &amp;b);
+ *   g_printf ("%s\n", g_value_get_string (&amp;b));
+ *   return 0;
+ * }
+ * ]|
  */
 
-/*
- * FIXME: MT-safety
- */
-
-#include <string.h>
-
-#include "gvalue.h"
-#include "gvaluecollector.h"
-#include "gbsearcharray.h"
-#include "gobjectalias.h"
-
 
 /* --- typedefs & structures --- */
 typedef struct {
@@ -68,7 +134,7 @@ static GBSearchArray *transform_array = NULL;
 static GBSearchConfig transform_bconfig = {
   sizeof (TransformEntry),
   transform_entries_cmp,
-  0,
+  G_BSEARCH_ARRAY_ALIGN_POWER2,
 };
 
 
@@ -91,9 +157,9 @@ value_meminit (GValue *value,
  * g_value_init:
  * @value: A zero-filled (uninitialized) #GValue structure.
  * @g_type: Type the #GValue should hold values of.
- * 
+ *
  * Initializes @value with the default value of @type.
- * 
+ *
  * Returns: the #GValue structure that has been passed in
  */
 GValue*
@@ -131,7 +197,7 @@ g_value_init (GValue *value,
  * g_value_copy:
  * @src_value: An initialized #GValue structure.
  * @dest_value: An initialized #GValue structure of the same type as @src_value.
- * 
+ *
  * Copies the value of @src_value into @dest_value.
  */
 void
@@ -160,10 +226,10 @@ g_value_copy (const GValue *src_value,
 /**
  * g_value_reset:
  * @value: An initialized #GValue structure.
- * 
+ *
  * Clears the current value in @value and resets it to the default value
  * (as if the value had just been initialized).
- * 
+ *
  * Returns: the #GValue structure that has been passed in
  */
 GValue*
@@ -191,7 +257,7 @@ g_value_reset (GValue *value)
 /**
  * g_value_unset:
  * @value: An initialized #GValue structure.
- * 
+ *
  * Clears the current value in @value and "unsets" the type,
  * this releases all resources associated with this GValue.
  * An unset value is the same as an uninitialized (zero-filled)
@@ -214,10 +280,10 @@ g_value_unset (GValue *value)
 /**
  * g_value_fits_pointer:
  * @value: An initialized #GValue structure.
- * 
+ *
  * Determines if @value will fit inside the size of a pointer value.
  * This is an internal function introduced mainly for C marshallers.
- * 
+ *
  * Returns: %TRUE if @value will fit inside a pointer value.
  */
 gboolean
@@ -235,11 +301,11 @@ g_value_fits_pointer (const GValue *value)
 /**
  * g_value_peek_pointer:
  * @value: An initialized #GValue structure.
- * 
+ *
  * Return the value contents as pointer. This function asserts that
  * g_value_fits_pointer() returned %TRUE for the passed in value.
  * This is an internal function introduced mainly for C marshallers.
- * 
+ *
  * Returns: %TRUE if @value will fit inside a pointer value.
  */
 gpointer
@@ -263,8 +329,8 @@ g_value_peek_pointer (const GValue *value)
  * g_value_set_instance:
  * @value: An initialized #GValue structure.
  * @instance: the instance
- * 
- * Sets @value from an instantiatable type via the 
+ *
+ * Sets @value from an instantiatable type via the
  * value_table's collect_value() function.
  */
 void
@@ -364,7 +430,7 @@ transform_entries_cmp (gconstpointer bsearch_node1,
  * @dest_type: Target type.
  * @transform_func: a function which transforms values of type @src_type
  *  into value of type @dest_type
- * 
+ *
  * Registers a value transformation function for use in g_value_transform().
  * A previously registered transformation function for @src_type and @dest_type
  * will be replaced.
@@ -401,10 +467,10 @@ g_value_register_transform_func (GType           src_type,
  * g_value_type_transformable:
  * @src_type: Source type.
  * @dest_type: Target type.
- * 
+ *
  * Check whether g_value_transform() is able to transform values
  * of type @src_type into values of type @dest_type.
- * 
+ *
  * Returns: %TRUE if the transformation is possible, %FALSE otherwise.
  */
 gboolean
@@ -422,10 +488,10 @@ g_value_type_transformable (GType src_type,
  * g_value_type_compatible:
  * @src_type: source type to be copied.
  * @dest_type: destination type for copying.
- * 
+ *
  * Returns whether a #GValue of type @src_type can be copied into
  * a #GValue of type @dest_type.
- * 
+ *
  * Returns: %TRUE if g_value_copy() is possible with @src_type and @dest_type.
  */
 gboolean
@@ -443,7 +509,7 @@ g_value_type_compatible (GType src_type,
  * g_value_transform:
  * @src_value: Source value.
  * @dest_value: Target value.
- * 
+ *
  * Tries to cast the contents of @src_value into a type appropriate
  * to store in @dest_value, e.g. to transform a %G_TYPE_INT value
  * into a %G_TYPE_FLOAT value. Performing transformations between
@@ -451,7 +517,7 @@ g_value_type_compatible (GType src_type,
  * transformations into strings might reveal seemingly arbitrary
  * results and shouldn't be relied upon for production code (such
  * as rcfile value or object property serialization).
- * 
+ *
  * Returns: Whether a transformation rule was found and could be applied.
  *  Upon failing transformations, @dest_value is left untouched.
  */