123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /* json-reader.h - JSON cursor parser
- *
- * This file is part of JSON-GLib
- * Copyright (C) 2010 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_READER_H__
- #define __JSON_READER_H__
- #if !defined(__JSON_GLIB_INSIDE__) && !defined(JSON_COMPILATION)
- #error "Only <json-glib/json-glib.h> can be included directly."
- #endif
- #include <json-glib/json-types.h>
- G_BEGIN_DECLS
- #define JSON_TYPE_READER (json_reader_get_type ())
- #define JSON_READER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), JSON_TYPE_READER, JsonReader))
- #define JSON_IS_READER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), JSON_TYPE_READER))
- #define JSON_READER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), JSON_TYPE_READER, JsonReaderClass))
- #define JSON_IS_READER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), JSON_TYPE_READER))
- #define JSON_READER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), JSON_TYPE_READER, JsonReaderClass))
- /**
- * JSON_READER_ERROR:
- *
- * Error domain for #JsonReader errors
- *
- * Since: 0.12
- */
- #define JSON_READER_ERROR (json_reader_error_quark ())
- typedef struct _JsonReader JsonReader;
- typedef struct _JsonReaderPrivate JsonReaderPrivate;
- typedef struct _JsonReaderClass JsonReaderClass;
- /**
- * JsonReaderError:
- * @JSON_READER_ERROR_NO_ARRAY: No array found at the current position
- * @JSON_READER_ERROR_INVALID_INDEX: Index out of bounds
- * @JSON_READER_ERROR_NO_OBJECT: No object found at the current position
- * @JSON_READER_ERROR_INVALID_MEMBER: Member not found
- * @JSON_READER_ERROR_INVALID_NODE: No valid node found at the current position
- * @JSON_READER_ERROR_NO_VALUE: The node at the current position does not
- * hold a value
- * @JSON_READER_ERROR_INVALID_TYPE: The node at the current position does not
- * hold a value of the desired type
- *
- * Error codes enumeration for #JsonReader errors
- *
- * Since: 0.12
- */
- typedef enum {
- JSON_READER_ERROR_NO_ARRAY,
- JSON_READER_ERROR_INVALID_INDEX,
- JSON_READER_ERROR_NO_OBJECT,
- JSON_READER_ERROR_INVALID_MEMBER,
- JSON_READER_ERROR_INVALID_NODE,
- JSON_READER_ERROR_NO_VALUE,
- JSON_READER_ERROR_INVALID_TYPE
- } JsonReaderError;
- /**
- * JsonReader:
- *
- * The `JsonReader` structure contains only private data and should
- * be accessed using the provided API
- *
- * Since: 0.12
- */
- struct _JsonReader
- {
- /*< private >*/
- GObject parent_instance;
- JsonReaderPrivate *priv;
- };
- /**
- * JsonReaderClass:
- *
- * The `JsonReaderClass` structure contains only private data
- *
- * Since: 0.12
- */
- struct _JsonReaderClass
- {
- /*< private >*/
- GObjectClass parent_class;
- void (*_json_padding0) (void);
- void (*_json_padding1) (void);
- void (*_json_padding2) (void);
- void (*_json_padding3) (void);
- void (*_json_padding4) (void);
- };
- JSON_AVAILABLE_IN_1_0
- GQuark json_reader_error_quark (void);
- JSON_AVAILABLE_IN_1_0
- GType json_reader_get_type (void) G_GNUC_CONST;
- JSON_AVAILABLE_IN_1_0
- JsonReader * json_reader_new (JsonNode *node);
- JSON_AVAILABLE_IN_1_0
- void json_reader_set_root (JsonReader *reader,
- JsonNode *root);
- JSON_AVAILABLE_IN_1_0
- const GError * json_reader_get_error (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gboolean json_reader_is_array (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gboolean json_reader_read_element (JsonReader *reader,
- guint index_);
- JSON_AVAILABLE_IN_1_0
- void json_reader_end_element (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gint json_reader_count_elements (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gboolean json_reader_is_object (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gboolean json_reader_read_member (JsonReader *reader,
- const gchar *member_name);
- JSON_AVAILABLE_IN_1_0
- void json_reader_end_member (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gint json_reader_count_members (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gchar ** json_reader_list_members (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- const gchar * json_reader_get_member_name (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gboolean json_reader_is_value (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- JsonNode * json_reader_get_value (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gint64 json_reader_get_int_value (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gdouble json_reader_get_double_value (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- const gchar * json_reader_get_string_value (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gboolean json_reader_get_boolean_value (JsonReader *reader);
- JSON_AVAILABLE_IN_1_0
- gboolean json_reader_get_null_value (JsonReader *reader);
- #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
- G_DEFINE_AUTOPTR_CLEANUP_FUNC (JsonReader, g_object_unref)
- #endif
- G_END_DECLS
- #endif /* __JSON_READER_H__ */
|