<libroxml  version="3.0.2" />
contact: tristan.lelong@libroxml.net
Functions
roxml_buff.h File Reference

buffer XML document backend More...

Go to the source code of this file.

Functions

ROXML_INT int roxml_read_buff (int pos, int size, char *buffer, node_t *node)
 read xml doc function More...
 
ROXML_INT void roxml_close_buff (node_t *n)
 unload function More...
 
ROXML_INT int roxml_parse_buff (roxml_load_ctx_t *context, roxml_parser_item_t *parser, char *buffer)
 generic load function More...
 

Detailed Description

buffer XML document backend

(C) Copyright 2014 Tristan Lelong trist.nosp@m.an.l.nosp@m.elong.nosp@m.@lib.nosp@m.roxml.nosp@m..net

SPDX-Licence-Identifier: LGPL-2.1+ The author added a static linking exception, see License.txt.

Definition in file roxml_buff.h.

Function Documentation

◆ roxml_close_buff()

ROXML_INT void roxml_close_buff ( node_t n)

unload function

This function clear a document that was opened as part of a buffer

Parameters
nis any node of the tree to be cleaned
Returns
void

Definition at line 29 of file roxml_buff.c.

◆ roxml_parse_buff()

ROXML_INT int roxml_parse_buff ( roxml_load_ctx_t context,
roxml_parser_item_t parser,
char *  buffer 
)

generic load function

This function parse a buffer document and all the corresponding nodes

Parameters
contextinternal data used for parsing
parserthe parser object to run
bufferaddress of buffer that contains xml
Returns
an error code and filled context see roxml_close_buff

Definition at line 34 of file roxml_buff.c.

◆ roxml_read_buff()

ROXML_INT int roxml_read_buff ( int  pos,
int  size,
char *  buffer,
node_t node 
)

read xml doc function

this function read inside a xml buffer and fill the given buffer

Parameters
posthe pos in the xml document
sizethe size of the data to read
bufferthe destination buffer
nodethe node that belong to the tree we want to read to
Returns
the number of bytes read

Definition at line 16 of file roxml_buff.c.