Ruby
2.4.2p198(2017-09-14revision59899)
|
Data Structures | |
struct | yaml_node_pair_s |
An element of a mapping node. More... | |
struct | yaml_node_s |
The node structure. More... | |
struct | yaml_document_s |
The document structure. More... | |
Macros | |
#define | YAML_NULL_TAG "tag:yaml.org,2002:null" |
The tag !!null with the only possible value: null . More... | |
#define | YAML_BOOL_TAG "tag:yaml.org,2002:bool" |
The tag !!bool with the values: true and falce . More... | |
#define | YAML_STR_TAG "tag:yaml.org,2002:str" |
The tag !!str for string values. More... | |
#define | YAML_INT_TAG "tag:yaml.org,2002:int" |
The tag !!int for integer values. More... | |
#define | YAML_FLOAT_TAG "tag:yaml.org,2002:float" |
The tag !!float for float values. More... | |
#define | YAML_TIMESTAMP_TAG "tag:yaml.org,2002:timestamp" |
The tag !!timestamp for date and time values. More... | |
#define | YAML_SEQ_TAG "tag:yaml.org,2002:seq" |
The tag !!seq is used to denote sequences. More... | |
#define | YAML_MAP_TAG "tag:yaml.org,2002:map" |
The tag !!map is used to denote mapping. More... | |
#define | YAML_DEFAULT_SCALAR_TAG YAML_STR_TAG |
The default scalar tag is !!str . More... | |
#define | YAML_DEFAULT_SEQUENCE_TAG YAML_SEQ_TAG |
The default sequence tag is !!seq . More... | |
#define | YAML_DEFAULT_MAPPING_TAG YAML_MAP_TAG |
The default mapping tag is !!map . More... | |
Typedefs | |
typedef enum yaml_node_type_e | yaml_node_type_t |
Node types. More... | |
typedef struct yaml_node_s | yaml_node_t |
The forward definition of a document node structure. More... | |
typedef int | yaml_node_item_t |
An element of a sequence node. More... | |
typedef struct yaml_node_pair_s | yaml_node_pair_t |
An element of a mapping node. More... | |
typedef struct yaml_document_s | yaml_document_t |
The document structure. More... | |
Enumerations | |
enum | yaml_node_type_e { YAML_NO_NODE, YAML_SCALAR_NODE, YAML_SEQUENCE_NODE, YAML_MAPPING_NODE } |
Node types. More... | |
Functions | |
yaml_document_initialize (yaml_document_t *document, yaml_version_directive_t *version_directive, yaml_tag_directive_t *tag_directives_start, yaml_tag_directive_t *tag_directives_end, int start_implicit, int end_implicit) | |
Create a YAML document. More... | |
yaml_document_delete (yaml_document_t *document) | |
Delete a YAML document and all its nodes. More... | |
yaml_document_get_node (yaml_document_t *document, int index) | |
Get a node of a YAML document. More... | |
yaml_document_get_root_node (yaml_document_t *document) | |
Get the root of a YAML document node. More... | |
yaml_document_add_scalar (yaml_document_t *document, yaml_char_t *tag, yaml_char_t *value, int length, yaml_scalar_style_t style) | |
Create a SCALAR node and attach it to the document. More... | |
yaml_document_add_sequence (yaml_document_t *document, yaml_char_t *tag, yaml_sequence_style_t style) | |
Create a SEQUENCE node and attach it to the document. More... | |
yaml_document_add_mapping (yaml_document_t *document, yaml_char_t *tag, yaml_mapping_style_t style) | |
Create a MAPPING node and attach it to the document. More... | |
yaml_document_append_sequence_item (yaml_document_t *document, int sequence, int item) | |
Add an item to a SEQUENCE node. More... | |
yaml_document_append_mapping_pair (yaml_document_t *document, int mapping, int key, int value) | |
Add a pair of a key and a value to a MAPPING node. More... | |
#define YAML_BOOL_TAG "tag:yaml.org,2002:bool" |
#define YAML_DEFAULT_MAPPING_TAG YAML_MAP_TAG |
The default mapping tag is !!map
.
Definition at line 687 of file yaml.h.
Referenced by yaml_document_add_mapping(), yaml_emitter_dump_mapping(), and yaml_parser_load_mapping().
#define YAML_DEFAULT_SCALAR_TAG YAML_STR_TAG |
The default scalar tag is !!str
.
Definition at line 683 of file yaml.h.
Referenced by yaml_document_add_scalar(), yaml_emitter_dump_scalar(), and yaml_parser_load_scalar().
#define YAML_DEFAULT_SEQUENCE_TAG YAML_SEQ_TAG |
The default sequence tag is !!seq
.
Definition at line 685 of file yaml.h.
Referenced by yaml_document_add_sequence(), yaml_emitter_dump_sequence(), and yaml_parser_load_sequence().
#define YAML_FLOAT_TAG "tag:yaml.org,2002:float" |
#define YAML_INT_TAG "tag:yaml.org,2002:int" |
#define YAML_MAP_TAG "tag:yaml.org,2002:map" |
#define YAML_NULL_TAG "tag:yaml.org,2002:null" |
#define YAML_SEQ_TAG "tag:yaml.org,2002:seq" |
#define YAML_STR_TAG "tag:yaml.org,2002:str" |
#define YAML_TIMESTAMP_TAG "tag:yaml.org,2002:timestamp" |
typedef struct yaml_document_s yaml_document_t |
The document structure.
typedef int yaml_node_item_t |
typedef struct yaml_node_pair_s yaml_node_pair_t |
An element of a mapping node.
typedef struct yaml_node_s yaml_node_t |
typedef enum yaml_node_type_e yaml_node_type_t |
Node types.
enum yaml_node_type_e |
yaml_document_add_mapping | ( | yaml_document_t * | document, |
yaml_char_t * | tag, | ||
yaml_mapping_style_t | style | ||
) |
Create a MAPPING node and attach it to the document.
The style argument may be ignored by the emitter.
[in,out] | document | A document object. |
[in] | tag | The sequence tag. |
[in] | style | The sequence style. |
0
on error. Definition at line 1289 of file api.c.
References assert, INITIAL_STACK_SIZE, MAPPING_NODE_INIT, NULL, PUSH, STACK_DEL, STACK_INIT, yaml_node_s::start, strlen(), top, yaml_check_utf8(), YAML_DECLARE, YAML_DEFAULT_MAPPING_TAG, yaml_free(), and yaml_strdup().
yaml_document_add_scalar | ( | yaml_document_t * | document, |
yaml_char_t * | tag, | ||
yaml_char_t * | value, | ||
int | length, | ||
yaml_scalar_style_t | style | ||
) |
Create a SCALAR node and attach it to the document.
The style argument may be ignored by the emitter.
[in,out] | document | A document object. |
[in] | tag | The scalar tag. |
[in] | value | The scalar value. |
[in] | length | The length of the scalar value. |
[in] | style | The scalar style. |
0
on error. Definition at line 1194 of file api.c.
References assert, memcpy, NULL, PUSH, SCALAR_NODE_INIT, strlen(), yaml_check_utf8(), YAML_DECLARE, YAML_DEFAULT_SCALAR_TAG, yaml_free(), yaml_malloc(), and yaml_strdup().
yaml_document_add_sequence | ( | yaml_document_t * | document, |
yaml_char_t * | tag, | ||
yaml_sequence_style_t | style | ||
) |
Create a SEQUENCE node and attach it to the document.
The style argument may be ignored by the emitter.
[in,out] | document | A document object. |
[in] | tag | The sequence tag. |
[in] | style | The sequence style. |
0
on error. Definition at line 1244 of file api.c.
References assert, INITIAL_STACK_SIZE, NULL, PUSH, SEQUENCE_NODE_INIT, STACK_DEL, STACK_INIT, yaml_node_s::start, strlen(), top, yaml_check_utf8(), YAML_DECLARE, YAML_DEFAULT_SEQUENCE_TAG, yaml_free(), and yaml_strdup().
yaml_document_append_mapping_pair | ( | yaml_document_t * | document, |
int | mapping, | ||
int | key, | ||
int | value | ||
) |
Add a pair of a key and a value to a MAPPING node.
[in,out] | document | A document object. |
[in] | mapping | The mapping node id. |
[in] | key | The key node id. |
[in] | value | The value node id. |
1
if the function succeeded, 0
on error. Definition at line 1362 of file api.c.
References assert, key, yaml_node_pair_s::key, PUSH, yaml_node_pair_s::value, and YAML_MAPPING_NODE.
yaml_document_append_sequence_item | ( | yaml_document_t * | document, |
int | sequence, | ||
int | item | ||
) |
Add an item to a SEQUENCE node.
[in,out] | document | A document object. |
[in] | sequence | The sequence node id. |
[in] | item | The item node id. |
1
if the function succeeded, 0
on error. Definition at line 1334 of file api.c.
References assert, PUSH, YAML_DECLARE, and YAML_SEQUENCE_NODE.
yaml_document_delete | ( | yaml_document_t * | document | ) |
Delete a YAML document and all its nodes.
[in,out] | document | A document object. |
Definition at line 1117 of file api.c.
References assert, yaml_node_s::data, yaml_tag_directive_s::handle, yaml_node_s::mapping, POP, yaml_tag_directive_s::prefix, yaml_node_s::scalar, yaml_node_s::sequence, STACK_DEL, STACK_EMPTY, yaml_node_s::tag, yaml_node_s::type, YAML_DECLARE, yaml_free(), YAML_MAPPING_NODE, YAML_NO_ERROR, YAML_SCALAR_NODE, and YAML_SEQUENCE_NODE.
Referenced by yaml_emitter_delete_document_and_anchors(), and yaml_parser_load().
yaml_document_get_node | ( | yaml_document_t * | document, |
int | index | ||
) |
Get a node of a YAML document.
The pointer returned by this function is valid until any of the functions modifying the documents are called.
[in] | document | A document object. |
[in] | index | The node id. |
NULL
if node_id
is out of range.Get a node of a YAML document.
Definition at line 1164 of file api.c.
References assert, NULL, and YAML_DECLARE.
yaml_document_get_root_node | ( | yaml_document_t * | document | ) |
Get the root of a YAML document node.
The root object is the first object added to the document.
The pointer returned by this function is valid until any of the functions modifying the documents are called.
An empty document produced by the parser signifies the end of a YAML stream.
[in] | document | A document object. |
NULL
if the document is empty.Get the root of a YAML document node.
Definition at line 1179 of file api.c.
References assert, NULL, and YAML_DECLARE.
yaml_document_initialize | ( | yaml_document_t * | document, |
yaml_version_directive_t * | version_directive, | ||
yaml_tag_directive_t * | tag_directives_start, | ||
yaml_tag_directive_t * | tag_directives_end, | ||
int | start_implicit, | ||
int | end_implicit | ||
) |
Create a YAML document.
[out] | document | An empty document object. |
[in] | version_directive | The YAML directive value or NULL . |
[in] | tag_directives_start | The beginning of the TAG directives list. |
[in] | tag_directives_end | The end of the TAG directives list. |
[in] | start_implicit | If the document start indicator is implicit. |
[in] | end_implicit | If the document end indicator is implicit. |
1
if the function succeeded, 0
on error. Definition at line 1030 of file api.c.
References assert, DOCUMENT_INIT, yaml_tag_directive_s::handle, INITIAL_STACK_SIZE, yaml_version_directive_s::major, yaml_version_directive_s::minor, NULL, POP, yaml_tag_directive_s::prefix, PUSH, STACK_DEL, STACK_EMPTY, STACK_INIT, strlen(), top, yaml_check_utf8(), YAML_DECLARE, yaml_free(), yaml_malloc(), and yaml_strdup().