mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-06-02 12:46:01 -06:00
114 lines
4.6 KiB
C
114 lines
4.6 KiB
C
/*
|
|
* Copyright 2007, Lloyd Hilaiel.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
*
|
|
* 3. Neither the name of Lloyd Hilaiel nor the names of its
|
|
* contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/**
|
|
* \file yajl_gen.h
|
|
* Interface to YAJL's JSON generation facilities.
|
|
*/
|
|
|
|
#include "yajl/api/yajl_common.h"
|
|
|
|
#ifndef __YAJL_GEN_H__
|
|
#define __YAJL_GEN_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
/** generator status codes */
|
|
typedef enum {
|
|
/** no error */
|
|
yajl_gen_status_ok = 0,
|
|
/** at a point where a map key is generated, a function other than
|
|
* yajl_gen_string was called */
|
|
yajl_gen_keys_must_be_strings,
|
|
/** YAJL's maximum generation depth was exceeded. see
|
|
* YAJL_MAX_DEPTH */
|
|
yajl_max_depth_exceeded,
|
|
/** A generator function (yajl_gen_XXX) was called while in an error
|
|
* state */
|
|
yajl_gen_in_error_state,
|
|
/** A complete JSON document has been generated */
|
|
yajl_gen_generation_complete
|
|
} yajl_gen_status;
|
|
|
|
/** an opaque handle to a generator */
|
|
typedef struct yajl_gen_t * yajl_gen;
|
|
|
|
/** configuration structure for the generator */
|
|
typedef struct {
|
|
/** generate indented (beautiful) output */
|
|
unsigned int beautify;
|
|
/** an opportunity to define an indent string. such as \\t or
|
|
* some number of spaces. default is four spaces ' '. This
|
|
* member is only relevant when beautify is true */
|
|
const char * indentString;
|
|
} yajl_gen_config;
|
|
|
|
/** allocate a generator handle */
|
|
yajl_gen YAJL_API yajl_gen_alloc(const yajl_gen_config * config);
|
|
|
|
/** free a generator handle */
|
|
void YAJL_API yajl_gen_free(yajl_gen handle);
|
|
|
|
yajl_gen_status YAJL_API yajl_gen_integer(yajl_gen hand, long int number);
|
|
yajl_gen_status YAJL_API yajl_gen_double(yajl_gen hand, double number);
|
|
yajl_gen_status YAJL_API yajl_gen_number(yajl_gen hand,
|
|
const char * num,
|
|
unsigned int len);
|
|
yajl_gen_status YAJL_API yajl_gen_string(yajl_gen hand,
|
|
const unsigned char * str,
|
|
unsigned int len);
|
|
yajl_gen_status YAJL_API yajl_gen_null(yajl_gen hand);
|
|
yajl_gen_status YAJL_API yajl_gen_bool(yajl_gen hand, int boolean);
|
|
yajl_gen_status YAJL_API yajl_gen_map_open(yajl_gen hand);
|
|
yajl_gen_status YAJL_API yajl_gen_map_close(yajl_gen hand);
|
|
yajl_gen_status YAJL_API yajl_gen_array_open(yajl_gen hand);
|
|
yajl_gen_status YAJL_API yajl_gen_array_close(yajl_gen hand);
|
|
|
|
/** access the null terminated generator buffer. If incrementally
|
|
* outputing JSON, one should call yajl_gen_clear to clear the
|
|
* buffer. This allows stream generation. */
|
|
yajl_gen_status YAJL_API yajl_gen_get_buf(yajl_gen hand,
|
|
const unsigned char ** buf,
|
|
unsigned int * len);
|
|
|
|
/** clear yajl's output buffer, but maintain all internal generation
|
|
* state. This function will not "reset" the generator state, and is
|
|
* intended to enable incremental JSON outputing. */
|
|
void YAJL_API yajl_gen_clear(yajl_gen hand);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif
|