⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xltenc.h

📁 SyncML ToolKits,学习syncml的参考工具包.非常好用.
💻 H
字号:
/*************************************************************************//* module:          Encoder header file                                  *//* file:            xltenc.h                                             *//* target system:   All                                                  *//* target OS:       All                                                  */   /*************************************************************************//* * Copyright Notice * Copyright (c) Ericsson, IBM, Lotus, Matsushita Communication  * Industrial Co., Ltd., Motorola, Nokia, Openwave Systems, Inc.,  * Palm, Inc., Psion, Starfish Software, Symbian, Ltd. (2001). * All Rights Reserved. * Implementation of all or part of any Specification may require  * licenses under third party intellectual property rights,  * including without limitation, patent rights (such a third party  * may or may not be a Supporter). The Sponsors of the Specification  * are not responsible and shall not be held responsible in any  * manner for identifying or failing to identify any or all such  * third party intellectual property rights. *  * THIS DOCUMENT AND THE INFORMATION CONTAINED HEREIN ARE PROVIDED  * ON AN "AS IS" BASIS WITHOUT WARRANTY OF ANY KIND AND ERICSSON, IBM,  * LOTUS, MATSUSHITA COMMUNICATION INDUSTRIAL CO. LTD, MOTOROLA,  * NOKIA, PALM INC., PSION, STARFISH SOFTWARE AND ALL OTHER SYNCML  * SPONSORS DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING  * BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION  * HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT  * SHALL ERICSSON, IBM, LOTUS, MATSUSHITA COMMUNICATION INDUSTRIAL CO.,  * LTD, MOTOROLA, NOKIA, PALM INC., PSION, STARFISH SOFTWARE OR ANY  * OTHER SYNCML SPONSOR BE LIABLE TO ANY PARTY FOR ANY LOSS OF  * PROFITS, LOSS OF BUSINESS, LOSS OF USE OF DATA, INTERRUPTION OF  * BUSINESS, OR FOR DIRECT, INDIRECT, SPECIAL OR EXEMPLARY, INCIDENTAL,  * PUNITIVE OR CONSEQUENTIAL DAMAGES OF ANY KIND IN CONNECTION WITH  * THIS DOCUMENT OR THE INFORMATION CONTAINED HEREIN, EVEN IF ADVISED  * OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. *  * The above notice and this paragraph must be included on all copies  * of this document that are made. *  *//*************************************************************************//*  Definitions                                                          *//*************************************************************************/#ifndef _XLT_ENC_H#define _XLT_ENC_H#include <smlerr.h>#include <xltenccom.h>#include <smldef.h>#include <smldtd.h>#include <xlttags.h>#ifdef _cplusplusextern "C" {#endif//Type for storing encoder informationtypedef struct XltEncoder_s{  SmlEncoding_t enc;  SmlVersion_t vers; // %%% luz 2003-07-31: added SyncML version here  SmlPcdataExtension_t cur_ext;  SmlPcdataExtension_t last_ext;  Boolean_t final;  XltSpaceEvaluationPtr_t space_evaluation;  MemSize_t end_tag_size;} XltEncoder_t, *XltEncoderPtr_t;/** * FUNCTION: smlXltEncInit * * Initializes an XML buffer; Creates XML code for the SyncHdr * and appends it to the buffer. * Returns 0 if operation was successful. * * PRE-Condition:   no memory should be allocated for ppEncoder (should be NULL) *                  pHeader has to contain a valid SyncHdr structure *                  pBufEnd must point to the end of the (WB)XML buffer *                  ppBufPos has to be initialized to the start point of the *                  (WB)XML buffer. *                   * * POST-Condition:  After the function call ppBufPos points to the *                  first free byte in the buffer behind the (WB)XML document * * IN:              enc, the encoding constant (SML_WBXML or SML_XML) *                  pHeader, the SyncML header structure *                  pBufEnd, pointer to the end of the buffer to write on *                  %%% luz:2003-07-31: vers must be the SyncML version (for namespaces and FPI's) *  * IN/OUT:          ppBufPos, current position of the bufferpointer *                  ppEncoder, the encoder object        * * RETURN:          shows error codes of function,  *                  0, if OK *                  Possible Error Codes: *                  SML_ERR_XLT_MISSING_CONT             *                  SML_ERR_XLT_BUF_ERR                  *                  SML_ERR_XLT_INVAL_ELEM_TYPE          *                  SML_ERR_XLT_INVAL_LIST_TYPE          *                  SML_ERR_XLT_INVAL_TAG_TYPE           *                  SML_ERR_XLT_CONTENT_SIZE_LENGTH      *                  SML_ERR_XLT_ENC_UNK	                *                  SML_ERR_XLT_INVAL_PROTO_ELEM */Ret_t xltEncInit(SmlEncoding_t enc, const SmlSyncHdrPtr_t pHeader, const MemPtr_t pBufEnd, MemPtr_t *ppBufPos, XltEncoderPtr_t *ppEncoder, SmlVersion_t vers);/** * FUNCTION: smlXltEncAppend * * Generates XML code and appends it to the XML buffer. * * PRE-Condition:   pEncoder holds the initialized encoder structure. *                  the initialization takes place in the xltEncAppend function *                  pContent has to contain a valid content structure structure *                  pBufEnd must point to the end of the (WB)XML buffer *                  ppBufPos has to be initialized to the start point of the *                  (WB)XML buffer. *                   * * POST-Condition:  After the function call ppBufPos points to the *                  first free byte in the buffer behind the (WB)XML document * * IN:              pEncoder, the encoder object *                  pe, the protocol element (PE_ADD, ...)     *                  pBufEnd, pointer to the end of the buffer to write on *                  pContent, the content to append to the SyncML document *  * IN/OUT:          ppBufPos, current position of the bufferpointer *  * RETURN:          shows error codes of function,  *                  0, if OK *                  Possible Error Codes: *                  SML_ERR_XLT_MISSING_CONT             *                  SML_ERR_XLT_BUF_ERR                  *                  SML_ERR_XLT_INVAL_ELEM_TYPE          *                  SML_ERR_XLT_INVAL_LIST_TYPE          *                  SML_ERR_XLT_INVAL_TAG_TYPE           *                  SML_ERR_XLT_CONTENT_SIZE_LENGTH      *                  SML_ERR_XLT_ENC_UNK	                *                  SML_ERR_XLT_INVAL_PROTO_ELEM */ Ret_t xltEncAppend(const XltEncoderPtr_t pEncoder,                    SmlProtoElement_t pe,                    const MemPtr_t pBufEnd,                   const VoidPtr_t pContent,                   MemPtr_t *ppBufPos);/** * FUNCTION: smlXltEncTerminate_t pBufEnd, const VoidPtr_t pContent, MemPtr_t *ppBufPos, * * Finalizes the (WB)XML document and returns the size of written bytes to  * the workspace module * * PRE-Condition:   pEncoder holds the initialized encoder structure. *                  the initialization takes place in the xltEncAppend function *                  pBufEnd must point to the end of the (WB)XML buffer *                  ppBufPos has to be initialized to the start point of the *                  (WB)XML buffer. *                   * POST-Condition:  After the function call ppBufPos points to the *                  first free byte in the buffer behind the (WB)XML document * * IN:              pEncoder, the encoder object *                  pBufEnd, pointer to the end of the buffer to write on *  * IN/OUT:          ppBufPos, current position of the bufferpointer *  * RETURN:          shows error codes of function,  *                  0, if OK *                  Possible Error Codes: *                  SML_ERR_XLT_MISSING_CONT             *                  SML_ERR_XLT_BUF_ERR                  *                  SML_ERR_XLT_INVAL_ELEM_TYPE          *                  SML_ERR_XLT_INVAL_LIST_TYPE          *                  SML_ERR_XLT_INVAL_TAG_TYPE           *                  SML_ERR_XLT_CONTENT_SIZE_LENGTH      *                  SML_ERR_XLT_ENC_UNK	                *                  SML_ERR_XLT_INVAL_PROTO_ELEM */Ret_t xltEncTerminate(const XltEncoderPtr_t pEncoder, const MemPtr_t pBufEnd, MemPtr_t *ppBufPos);Ret_t xltEncReset(XltEncoderPtr_t pEncoder);Ret_t xltGenerateTag(XltTagID_t, XltTagType_t, SmlEncoding_t, BufferMgmtPtr_t, SmlPcdataExtension_t);Ret_t xltStartEvaluation(XltEncoderPtr_t pEncoder);Ret_t xltEndEvaluation(InstanceID_t id, XltEncoderPtr_t pEncoder, MemSize_t *freemem);Ret_t xltEncBlock(XltTagID_t tagId, XltRO_t reqOptFlag, const VoidPtr_t pContent, SmlEncoding_t enc, BufferMgmtPtr_t pBufMgr, SmlPcdataExtension_t attFlag);Ret_t xltBuildExtention(SmlPcdataExtension_t extId, XltRO_t reqOptFlag, VoidPtr_t pContent, SmlEncoding_t enc, BufferMgmtPtr_t pBufMgr);Ret_t xltEncPcdata(XltTagID_t tagId, XltRO_t reqOptFlag, const VoidPtr_t pContent, SmlEncoding_t enc, BufferMgmtPtr_t pBufMgr, SmlPcdataExtension_t attFlag);Ret_t subdtdEncWBXML(XltTagID_t tagId, XltRO_t reqOptFlag, const VoidPtr_t pContent, SmlEncoding_t enc, BufferMgmtPtr_t pBufMgr, SmlPcdataExtension_t attFlag);#ifdef _cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -