Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
mtb-example-btsdk-rfcomm-pbap-client/xml_vlist_api.h
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
167 lines (143 sloc)
7.51 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2016-2023, Cypress Semiconductor Corporation (an Infineon company) or | |
* an affiliate of Cypress Semiconductor Corporation. All rights reserved. | |
* | |
* This software, including source code, documentation and related | |
* materials ("Software") is owned by Cypress Semiconductor Corporation | |
* or one of its affiliates ("Cypress") and is protected by and subject to | |
* worldwide patent protection (United States and foreign), | |
* United States copyright laws and international treaty provisions. | |
* Therefore, you may use this Software only as provided in the license | |
* agreement accompanying the software package from which you | |
* obtained this Software ("EULA"). | |
* If no EULA applies, Cypress hereby grants you a personal, non-exclusive, | |
* non-transferable license to copy, modify, and compile the Software | |
* source code solely for use in connection with Cypress's | |
* integrated circuit products. Any reproduction, modification, translation, | |
* compilation, or representation of this Software except as specified | |
* above is prohibited without the express written permission of Cypress. | |
* | |
* Disclaimer: THIS SOFTWARE IS PROVIDED AS-IS, WITH NO WARRANTY OF ANY KIND, | |
* EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, NONINFRINGEMENT, IMPLIED | |
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Cypress | |
* reserves the right to make changes to the Software without notice. Cypress | |
* does not assume any liability arising out of the application or use of the | |
* Software or any product or circuit described in the Software. Cypress does | |
* not authorize its products for use in any products where a malfunction or | |
* failure of the Cypress product may reasonably be expected to result in | |
* significant property damage, injury or death ("High Risk Product"). By | |
* including Cypress's product in a High Risk Product, the manufacturer | |
* of such system or application assumes all risk of such use and in doing | |
* so agrees to indemnify Cypress against all liability. | |
*/ | |
/****************************************************************************** | |
** | |
** Name: xml_vlist_api.h | |
** | |
** Description: This module contains xml parser of obex vcard listing | |
** | |
******************************************************************************/ | |
#ifndef XML_VLIST_API_H | |
#define XML_VLIST_API_H | |
#include "xml_pars_api.h" | |
#include "data_types.h" | |
#include "wiced_bt_types.h" | |
/**********************************************************************************/ | |
#ifndef XML_VLIST_CARRY_OVER_LEN | |
#define XML_VLIST_CARRY_OVER_LEN 512 /* number of bytes we can store in case we did not yet find the > */ | |
#endif | |
typedef struct | |
{ | |
UINT16 handle_len; | |
UINT8 *handle; | |
UINT16 name_len; | |
UINT8 *name; | |
} tXML_VLIST_ENTRY; | |
/**********************************************************************************/ | |
typedef enum | |
{ | |
XML_VLIST_OK, /* parsing is ok, operation is ok */ | |
XML_VLIST_PENDING, /* parsing is ok but not enough data */ | |
XML_VLIST_END_LIST, /* found </vCard-listing> */ | |
XML_VLIST_OUT_FULL, /* output buffer full /vCard-listing not reached! data is dumped */ | |
XML_VLIST_ERROR, /* some parsing error occured */ | |
XML_VLIST_NO_RES, /* ran out of resources (memory) */ | |
XML_VLIST_DST_NO_RES /* ran out of destination data buffer */ | |
} txml_vlist_res; | |
typedef UINT8 tXML_VLIST_RES; | |
typedef struct | |
{ | |
tXML_VLIST_ENTRY *p_entry; | |
tXML_PROP *p_prop; | |
tXML_PROP *offset_prop; /* current filling property */ | |
UINT16 prop_num; /* number of properties left to be filled in */ | |
INT16 current_entry; | |
INT16 max_name_len; /* maximum length of name length of entry | |
XML parser limits to 64 bytes i think. */ | |
UINT16 max_entry; | |
BOOLEAN ended; | |
UINT16 prop_index; | |
UINT16 max_num_prop; | |
UINT8 obj; /* the XML object */ | |
} tXML_VLIST_STATE; | |
typedef struct | |
{ | |
tXML_MUL_STATE xml; | |
tXML_VLIST_STATE xml_user_data; | |
} tXML_VLIST_PARSER; | |
/* only this value is of significance, if not ok frame is dropped by parser */ | |
#define XML_VLIST_ENTRY_OK 0 | |
typedef UINT8 tXML_VLIST_STATUS; | |
typedef struct | |
{ | |
UINT8 *data; | |
UINT16 len; | |
BOOLEAN final; /* If TRUE, entry is last of the series */ | |
tXML_VLIST_STATUS status; /* Fields are valid when status is BTA_FTC_OK */ | |
} tXML_VLIST_LIST; /* clone of tBTA_FTC_LIST */ | |
/************************************************************************************** | |
** Function XML_VlistInit | |
** | |
** Description Initialize xml parser state machine. | |
** | |
** Parameters p_xml_state: address of parser structure, allocate an additional space | |
** of size XML_VLIST_CARRY_OVER_LEN right after p_xml_state | |
** to hold carry over data. | |
** p_entry : points start of output vlist entry. caller needs do free this memory | |
** max_entry : max is 16 bit integer value which is the maximum number of vlist entries. | |
** | |
** Returns void | |
**************************************************************************************/ | |
void XML_VlistInit(tXML_VLIST_PARSER *p_xml_state, | |
tXML_VLIST_ENTRY *p_entry, | |
const UINT16 max_entry ); | |
/************************************************************************************** | |
** Function XML_VlistParse | |
** | |
** Description This function is called to parse the xml data received from OBEX | |
** into vlist entries associated with properties value. It can also be | |
** used as clean up function to delete left over data from previous parse. | |
** This clean up function is typically used when application runs out of | |
** resource and decides to discard extra xml data received. | |
** | |
** Parameters p_xml_state: pointer to a xml parser initialized by XML_VlistInit(). | |
** xml_data: valid pointer to OBEX list data in xml format. | |
** xml_len: length of the package, must be non-zero value. | |
** dst_data: valid pointer to the buffer for holding converted vlist entry name and handle. | |
** When dst_data is NULL, clean up all remaining data in the parser. | |
** dst_len: length of the dst_data buffer, its carry out value is the number | |
** of bytes of available buffer remains. | |
** num_entries: current number of entries, in the end it is the total number of entries | |
** | |
** Returns tXML_VLIST_RES (see xml_vlist_api.h) | |
** XML_PENDING: parsing not completed | |
** XML_END_LIST: found /vCard-listing but no final flag detected | |
** XML_VLIST_OUT_FULL: reached max_entry -> do not call parser anymore!!! dump data | |
** XML_VLIST_DST_NO_RES : run out of dst buffer resource while | |
** some xml data still remains. | |
**************************************************************************************/ | |
extern tXML_VLIST_RES XML_VlistParse( tXML_VLIST_PARSER *p_xml_state, | |
UINT8 *xml_data, UINT16 xml_len, | |
UINT8 *dst_data, UINT16 *dst_len, | |
UINT16 *num_entries ); | |
#endif |