123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- /* json-gobject.h - JSON GObject integration
- *
- * This file is part of JSON-GLib
- * Copyright (C) 2007 OpenedHand Ltd.
- * Copyright (C) 2009 Intel Corp.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library. If not, see <http://www.gnu.org/licenses/>.
- *
- * Author:
- * Emmanuele Bassi <ebassi@linux.intel.com>
- */
- #ifndef __JSON_GOBJECT_H__
- #define __JSON_GOBJECT_H__
- #include <json-glib/json-types.h>
- G_BEGIN_DECLS
- #define JSON_TYPE_SERIALIZABLE (json_serializable_get_type ())
- #define JSON_SERIALIZABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), JSON_TYPE_SERIALIZABLE, JsonSerializable))
- #define JSON_IS_SERIALIZABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), JSON_TYPE_SERIALIZABLE))
- #define JSON_SERIALIZABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), JSON_TYPE_SERIALIZABLE, JsonSerializableIface))
- typedef struct _JsonSerializable JsonSerializable; /* dummy */
- typedef struct _JsonSerializableIface JsonSerializableIface;
- /**
- * JsonSerializableIface:
- * @serialize_property: virtual function for serializing a #GObject property
- * into a #JsonNode
- * @deserialize_property: virtual function for deserializing a #JsonNode
- * into a #GObject property
- * @find_property: virtual function for finding a property definition using
- * its name
- * @list_properties: virtual function for listing the installed property
- * definitions
- * @set_property: virtual function for setting a property
- * @get_property: virtual function for getting a property
- *
- * Interface that allows serializing and deserializing #GObject instances
- * with properties storing complex data types. The json_serialize_gobject()
- * function will check if the passed #GObject implements this interface,
- * so it can also be used to override the default property serialization
- * sequence.
- */
- struct _JsonSerializableIface
- {
- /*< private >*/
- GTypeInterface g_iface;
- /*< public >*/
- JsonNode *(* serialize_property) (JsonSerializable *serializable,
- const gchar *property_name,
- const GValue *value,
- GParamSpec *pspec);
- gboolean (* deserialize_property) (JsonSerializable *serializable,
- const gchar *property_name,
- GValue *value,
- GParamSpec *pspec,
- JsonNode *property_node);
- GParamSpec * (* find_property) (JsonSerializable *serializable,
- const char *name);
- GParamSpec **(* list_properties) (JsonSerializable *serializable,
- guint *n_pspecs);
- void (* set_property) (JsonSerializable *serializable,
- GParamSpec *pspec,
- const GValue *value);
- void (* get_property) (JsonSerializable *serializable,
- GParamSpec *pspec,
- GValue *value);
- };
- JSON_AVAILABLE_IN_1_0
- GType json_serializable_get_type (void) G_GNUC_CONST;
- JSON_AVAILABLE_IN_1_0
- JsonNode *json_serializable_serialize_property (JsonSerializable *serializable,
- const gchar *property_name,
- const GValue *value,
- GParamSpec *pspec);
- JSON_AVAILABLE_IN_1_0
- gboolean json_serializable_deserialize_property (JsonSerializable *serializable,
- const gchar *property_name,
- GValue *value,
- GParamSpec *pspec,
- JsonNode *property_node);
- JSON_AVAILABLE_IN_1_0
- GParamSpec * json_serializable_find_property (JsonSerializable *serializable,
- const char *name);
- JSON_AVAILABLE_IN_1_0
- GParamSpec ** json_serializable_list_properties (JsonSerializable *serializable,
- guint *n_pspecs);
- JSON_AVAILABLE_IN_1_0
- void json_serializable_set_property (JsonSerializable *serializable,
- GParamSpec *pspec,
- const GValue *value);
- JSON_AVAILABLE_IN_1_0
- void json_serializable_get_property (JsonSerializable *serializable,
- GParamSpec *pspec,
- GValue *value);
- JSON_AVAILABLE_IN_1_0
- JsonNode *json_serializable_default_serialize_property (JsonSerializable *serializable,
- const gchar *property_name,
- const GValue *value,
- GParamSpec *pspec);
- JSON_AVAILABLE_IN_1_0
- gboolean json_serializable_default_deserialize_property (JsonSerializable *serializable,
- const gchar *property_name,
- GValue *value,
- GParamSpec *pspec,
- JsonNode *property_node);
- /**
- * JsonBoxedSerializeFunc:
- * @boxed: a #GBoxed
- *
- * Serializes the passed #GBoxed and stores it inside a #JsonNode
- *
- * Return value: the newly created #JsonNode
- *
- * Since: 0.10
- */
- typedef JsonNode *(* JsonBoxedSerializeFunc) (gconstpointer boxed);
- /**
- * JsonBoxedDeserializeFunc:
- * @node: a #JsonNode
- *
- * Deserializes the contents of the passed #JsonNode into a #GBoxed
- *
- * Return value: the newly created boxed type
- *
- * Since: 0.10
- */
- typedef gpointer (* JsonBoxedDeserializeFunc) (JsonNode *node);
- JSON_AVAILABLE_IN_1_0
- void json_boxed_register_serialize_func (GType gboxed_type,
- JsonNodeType node_type,
- JsonBoxedSerializeFunc serialize_func);
- JSON_AVAILABLE_IN_1_0
- void json_boxed_register_deserialize_func (GType gboxed_type,
- JsonNodeType node_type,
- JsonBoxedDeserializeFunc deserialize_func);
- JSON_AVAILABLE_IN_1_0
- gboolean json_boxed_can_serialize (GType gboxed_type,
- JsonNodeType *node_type);
- JSON_AVAILABLE_IN_1_0
- gboolean json_boxed_can_deserialize (GType gboxed_type,
- JsonNodeType node_type);
- JSON_AVAILABLE_IN_1_0
- JsonNode *json_boxed_serialize (GType gboxed_type,
- gconstpointer boxed);
- JSON_AVAILABLE_IN_1_0
- gpointer json_boxed_deserialize (GType gboxed_type,
- JsonNode *node);
- JSON_AVAILABLE_IN_1_0
- JsonNode *json_gobject_serialize (GObject *gobject);
- JSON_AVAILABLE_IN_1_0
- GObject * json_gobject_deserialize (GType gtype,
- JsonNode *node);
- JSON_AVAILABLE_IN_1_0
- GObject * json_gobject_from_data (GType gtype,
- const gchar *data,
- gssize length,
- GError **error);
- JSON_AVAILABLE_IN_1_0
- gchar * json_gobject_to_data (GObject *gobject,
- gsize *length);
- JSON_DEPRECATED_IN_1_0_FOR(json_gobject_from_data)
- GObject * json_construct_gobject (GType gtype,
- const gchar *data,
- gsize length,
- GError **error);
- JSON_DEPRECATED_IN_1_0_FOR(json_gobject_to_data)
- gchar * json_serialize_gobject (GObject *gobject,
- gsize *length) G_GNUC_MALLOC;
- #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
- G_DEFINE_AUTOPTR_CLEANUP_FUNC (JsonSerializable, g_object_unref)
- #endif
- G_END_DECLS
- #endif /* __JSON_GOBJECT_H__ */
|