/usr/include/wbxml_encoder.h is in libwbxml2-dev 0.10.7-1+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | /*
* libwbxml, the WBXML Library.
* Copyright (C) 2002-2008 Aymerick Jehanne <aymerick@jehanne.org>
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* LGPL v2.1: http://www.gnu.org/copyleft/lesser.txt
*
* Contact: aymerick@jehanne.org
* Home: http://libwbxml.aymerick.com
*/
/**
* @file wbxml_encoder.h
* @ingroup wbxml_encoder
*
* @author Aymerick Jehanne <aymerick@jehanne.org>
* @date 11/11/02
*
* @brief WBXML Encoder - Encodes a WBXML Tree to WBXML or to XML
*/
#ifndef WBXML_ENCODER_H
#define WBXML_ENCODER_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/** @addtogroup wbxml_encoder
* @{
*/
/**
* @brief WBXML Encoder
*/
typedef struct WBXMLEncoder_s WBXMLEncoder;
/**
* @brief WBXML Encoder Output Type
*/
typedef enum WBXMLEncoderOutputType_e {
WBXML_ENCODER_OUTPUT_WBXML = 0,
WBXML_ENCODER_OUTPUT_XML
} WBXMLEncoderOutputType;
/**
* @brief Create a WBXML Encoder
* @result Return the newly created WBXMLEncoder, or NULL if not enough memory
* @warning Do NOT use this function directly, use wbxml_encoder_create() macro instead
*/
WBXML_DECLARE(WBXMLEncoder *) wbxml_encoder_create_real(void);
#define wbxml_encoder_create() wbxml_mem_cleam(wbxml_encoder_create_real())
/**
* @brief Destroy a WBXML Encoder
* @param encoder The WBXMLEncoder to free
*/
WBXML_DECLARE(void) wbxml_encoder_destroy(WBXMLEncoder *encoder);
/**
* @brief Reset a WBXML Encoder
* @param encoder The WBXMLEncoder to reset
*/
WBXML_DECLARE(void) wbxml_encoder_reset(WBXMLEncoder *encoder);
/**
* @brief Set the WBXML Encoder to ignore empty texts (ie: ignorable Whitespaces) [Default: FALSE]
* @param encoder [in] The WBXML Encoder
* @param set_ignore [in] TRUE if ignore, FALSE otherwise
* @warning This behaviour can me overriden by the WBXML_GEN_XML_CANONICAL mode (set by wbxml_encoder_set_xml_gen_type())
*/
WBXML_DECLARE(void) wbxml_encoder_set_ignore_empty_text(WBXMLEncoder *encoder, WB_BOOL set_ignore);
/**
* @brief Set the WBXML Encoder to remove leading and trailing blanks in texts [Default: FALSE]
* @param encoder [in] The WBXML Encoder
* @param set_remove [in] TRUE if remove, FALSE otherwise
* @warning This behaviour can me overriden by the WBXML_GEN_XML_CANONICAL mode (set by wbxml_encoder_set_xml_gen_type())
*/
WBXML_DECLARE(void) wbxml_encoder_set_remove_text_blanks(WBXMLEncoder *encoder, WB_BOOL set_remove);
/**
* @brief Set output document Charset Encoding
* @param encoder [in] The WBXML Encoder
* @param charset [in] The Charset to set
* @note - This overrides the Charset Encoding found in WBXML Tree.
* - If not set with this function, the 'orig_charset' field of the WBXML Tree is used
* (ie the Charset Encoding of the original document).
* - If no 'orig_charset' is set in WBXML Tree, the default charset is used :
* - 'WBXML_ENCODER_WBXML_DEFAULT_CHARSET' when encoding to XML
* - 'WBXML_ENCODER_XML_DEFAULT_CHARSET' when encoding to WBXML
*/
WBXML_DECLARE(void) wbxml_encoder_set_output_charset(WBXMLEncoder *encoder, WBXMLCharsetMIBEnum charset);
/**
* @brief Set if we use String Table when Encoding into WBXML [Default: TRUE]
* @param encoder [in] The WBXML Encoder
* @param use_strtbl [in] TRUE if we use String Table, FALSE otherwise
* @note This function has no effect if WBXML_ENCODER_USE_STRTBL compilation flag is not set
*/
WBXML_DECLARE(void) wbxml_encoder_set_use_strtbl(WBXMLEncoder *encoder, WB_BOOL use_strtbl);
/**
* @brief Set if we want to produce anonymous WBXML documents [Default: FALSE]
* @param encoder [in] The WBXML encoder
* @param set_anonymous [in] TRUE to produce anonymous documents, FALSE otherwise
*/
WBXML_DECLARE(void) wbxml_encoder_set_produce_anonymous(WBXMLEncoder *encoder, WB_BOOL set_anonymous);
/**
* @brief Set the WBXML Version of the output document, when generating WBXML [Default: 'WBXML_VERSION_TOKEN_13' (1.3)]
* @param encoder [in] The WBXML Encoder
* @param version [in] The WBXML Version
*/
WBXML_DECLARE(void) wbxml_encoder_set_wbxml_version(WBXMLEncoder *encoder, WBXMLVersion version);
/**
* @brief Set the WBXML Encoder XML Generation Type, when generating XML [Default: WBXML_GEN_XML_COMPACT]
* @param encoder [in] The WBXML Encoder
* @param gen_type [in] Generation Type (cf. WBXMLEncoderXMLGen enum)
*/
WBXML_DECLARE(void) wbxml_encoder_set_xml_gen_type(WBXMLEncoder *encoder, WBXMLGenXMLType gen_type);
/**
* @brief Set the WBXML Encoder indent, when generating XML in WBXML_GEN_XML_INDENT mode [Default: 0]
* @param encoder [in] The WBXML Encoder
* @param indent [in] If 'WBXML_GEN_XML_INDENT' type is used, this is the number of spaces for indent
*/
WBXML_DECLARE(void) wbxml_encoder_set_indent(WBXMLEncoder *encoder, WB_UTINY indent);
/**
* @brief Set the WBXML Tree to encode
*
* Use this method before calling wbxml_encoder_encode_tree_to_wbxml() or wbxml_encoder_encode_tree_to_xml().
*
* @param encoder [in] The WBXML Encoder to use
* @param tree [in] The WBXML Tree to encode
*/
WBXML_DECLARE(void) wbxml_encoder_set_tree(WBXMLEncoder *encoder, WBXMLTree *tree);
/**
* @brief Encode the WBXML Tree attached to this encoder into WBXML
*
* Call wbxml_encoder_set_tree() before using this method.
*
* @param encoder [in] The WBXML Encoder to use
* @param wbxml [out] Resulting WBXML document
* @param wbxml_len [out] The resulting WBXML document length
* @return Return WBXML_OK if no error, an error code otherwise
* @warning The 'encoder->tree' WBXMLLib Tree MUST be already set with a call to wbxml_encoder_set_tree() function
*/
WBXML_DECLARE(WBXMLError) wbxml_encoder_encode_tree_to_wbxml(WBXMLEncoder *encoder, WB_UTINY **wbxml, WB_ULONG *wbxml_len);
/* BC */
#define wbxml_encoder_encode_to_wbxml(a,b,c) wbxml_encoder_encode_tree_to_wbxml(a,b,c)
/**
* @brief Encode the WBXML Tree attached to this encoder into XML
*
* Call wbxml_encoder_set_tree() before using this method.
*
* @param encoder [in] The WBXML Encoder to use
* @param xml [out] Resulting XML document
* @param xml_len [out] XML document length
* @return Return WBXML_OK if no error, an error code otherwise
* @warning The 'encoder->tree' WBXMLLib Tree MUST be already set with a call to wbxml_encoder_set_tree() function
*/
WBXML_DECLARE(WBXMLError) wbxml_encoder_encode_tree_to_xml(WBXMLEncoder *encoder, WB_UTINY **xml, WB_ULONG *xml_len);
/* BC */
#define wbxml_encoder_encode_to_xml(a,b,c) wbxml_encoder_encode_tree_to_xml(a,b,c)
/**
* @brief Set the encoder into 'Flow Mode' (to encode nodes directly)
*
* Use this method to the set the encoder in 'Flow Mode'. This permits to encode WBXML Nodes 'on the fly', without
* having to encode a whole WBXML Tree.
*
* You should use this function (with TRUE parameter) before calling wbxml_encoder_encode_node().
*
* @param encoder [in] The WBXML Encoder to use
* @param flow_mode [in] Set Flow Mode ?
* @return Return WBXML_OK if no error, an error code otherwise
*/
WBXML_DECLARE(WBXMLError) wbxml_encoder_set_flow_mode(WBXMLEncoder *encoder, WB_BOOL flow_mode);
/**
* @brief Set the output type (WBXML_ENCODER_OUTPUT_XML | WBXML_ENCODER_OUTPUT_WBXML)
* @param encoder [in] The WBXML Encoder
* @param output_type [in] The output type
*/
WBXML_DECLARE(void) wbxml_encoder_set_output_type(WBXMLEncoder *encoder, WBXMLEncoderOutputType output_type);
/**
* @brief Set the language to use
* @param encoder [in] The WBXML Encoder
* @param lang [in] The language to use
*/
WBXML_DECLARE(void) wbxml_encoder_set_lang(WBXMLEncoder *encoder, WBXMLLanguage lang);
/**
* @brief Generate textual Public ID instead of token
* @param encoder [in] The WBXML Encoder
* @param gen_text [in] Set or unset
*/
WBXML_DECLARE(void) wbxml_encoder_set_text_public_id(WBXMLEncoder *encoder, WB_BOOL gen_text);
/**
* @brief Encode a WBXML Tree Node
*
* This function directly encode a WBXMLTreeNode. So you can use if you don't want to encode a whole WBXML Tree.
*
* You should call wbxml_encoder_set_flow_mode(TRUE), wbxml_encoder_set_output_type() before using this function.
* You must call wbxml_encoder_set_lang() before using this function.
*
* @param encoder [in] The WBXML Encoder to use
* @param node [in] The WBXML Tree Node to encode
* @return Return WBXML_OK if no error, an error code otherwise
*/
WBXML_DECLARE(WBXMLError) wbxml_encoder_encode_node(WBXMLEncoder *encoder, WBXMLTreeNode *node);
/**
* @brief Encode node, but if node is an Element, choose the encode 'end' tag or not
*
* @param encoder [in] The WBXML Encoder to use
* @param node [in] The WBXML Tree Node to encode
* @param enc_end [in] Encoded element 'end' ?
* @return Return WBXML_OK if no error, an error code otherwise
*/
WBXML_DECLARE(WBXMLError) wbxml_encoder_encode_node_with_elt_end(WBXMLEncoder *encoder, WBXMLTreeNode *node, WB_BOOL enc_end);
/**
* @brief Encode a WBXML Tree
*
* You should call wbxml_encoder_set_flow_mode(TRUE), wbxml_encoder_set_output_type() before using this function.
*
* @param encoder [in] The WBXML Encoder to use
* @param tree [in] The WBXML Tree to encode
* @return Return WBXML_OK if no error, an error code otherwise
*/
WBXML_DECLARE(WBXMLError) wbxml_encoder_encode_tree(WBXMLEncoder *encoder, WBXMLTree *tree);
/**
* @brief Encode a raw element start
* @param encoder [in] The WBXML Encoder to use
* @param node [in] The WBXML Tree Node representing the element start to encode
* @param has_content [in] Does the element has content ?
* @return Return WBXML_OK if no error, an error code otherwise
*/
WBXML_DECLARE(WBXMLError) wbxml_encoder_encode_raw_elt_start(WBXMLEncoder *encoder, WBXMLTreeNode *node, WB_BOOL has_content);
/**
* @brief Encode a raw element end
* @param encoder [in] The WBXML Encoder to use
* @param node [in] The WBXML Tree Node representing the element end to encode
* @param has_content [in] Does the element has content ?
* @return Return WBXML_OK if no error, an error code otherwise
*/
WBXML_DECLARE(WBXMLError) wbxml_encoder_encode_raw_elt_end(WBXMLEncoder *encoder, WBXMLTreeNode *node, WB_BOOL has_content);
/**
* @brief Get currently encoded buffer
* @param encoder [in] The WBXML Encoder to use
* @param result [out] Resulting buffer
* @param result_len [out] Resulting buffer length
* @return Return WBXML_OK if no error, an error code otherwise
*/
WBXML_DECLARE(WBXMLError) wbxml_encoder_get_output(WBXMLEncoder *encoder, WB_UTINY **result, WB_ULONG *result_len);
/**
* @brief Get currently encoded buffer length
* @param encoder [in] The WBXML Encoder to use
* @return Return WBXML_OK if no error, an error code otherwise
*/
WBXML_DECLARE(WB_ULONG) wbxml_encoder_get_output_len(WBXMLEncoder *encoder);
/**
* @brief Delete bytes from output buffer (from end of buffer)
* @param encoder [in] The WBXML Encoder to use
* @param nb [in] Number of bytes to delete
*/
WBXML_DECLARE(void) wbxml_encoder_delete_output_bytes(WBXMLEncoder *encoder, WB_ULONG nb);
/**
* @brief Delete last encoded node
* @param encoder [in] The WBXML Encoder to use
*/
WBXML_DECLARE(void) wbxml_encoder_delete_last_node(WBXMLEncoder *encoder);
/** @} */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* WBXML_ENCODER_H */
|