2011-03-24 16:16:49 +08:00
|
|
|
#ifndef __CCSAXPARSER_H__
|
|
|
|
#define __CCSAXPARSER_H__
|
|
|
|
|
2011-03-24 17:51:29 +08:00
|
|
|
#include "CCPlatformConfig.h"
|
|
|
|
#include "CCCommon.h"
|
|
|
|
|
2011-03-24 16:16:49 +08:00
|
|
|
NS_CC_BEGIN;
|
|
|
|
|
2011-03-24 17:51:29 +08:00
|
|
|
// libxml2 on most platforms are using "unsigned char" as type of string, while on airplay sdk using "char"
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE) || \
|
|
|
|
(CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || \
|
|
|
|
(CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || \
|
|
|
|
(CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
|
|
|
typedef unsigned char CC_XML_CHAR;
|
|
|
|
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY)
|
|
|
|
typedef char CC_XML_CHAR
|
|
|
|
#else
|
|
|
|
#error
|
|
|
|
#endif
|
|
|
|
|
2011-03-24 16:16:49 +08:00
|
|
|
class CCSAXDelegator
|
|
|
|
{
|
|
|
|
public:
|
2011-03-24 17:51:29 +08:00
|
|
|
virtual void startElement(void *ctx, const char *name, const char **atts) = 0;
|
|
|
|
virtual void endElement(void *ctx, const char *name) = 0;
|
|
|
|
virtual void textHandler(void *ctx, const char *s, int len) = 0;
|
2011-03-24 16:16:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class CCSAXParser
|
|
|
|
{
|
|
|
|
CCSAXDelegator* m_pDelegator;
|
|
|
|
public:
|
|
|
|
|
|
|
|
CCSAXParser();
|
|
|
|
~CCSAXParser(void);
|
|
|
|
|
2011-03-24 17:51:29 +08:00
|
|
|
bool init(const char *pszEncoding);
|
|
|
|
bool parse(const char *pszFile);
|
2011-03-24 16:16:49 +08:00
|
|
|
void setDelegator(CCSAXDelegator* pDelegator);
|
|
|
|
|
2011-03-24 17:51:29 +08:00
|
|
|
static void startElement(void *ctx, const CC_XML_CHAR *name, const CC_XML_CHAR **atts);
|
|
|
|
static void endElement(void *ctx, const CC_XML_CHAR *name);
|
|
|
|
static void textHandler(void *ctx, const CC_XML_CHAR *name, int len);
|
2011-03-24 16:16:49 +08:00
|
|
|
};
|
|
|
|
NS_CC_END;
|
|
|
|
|
|
|
|
#endif //__CCSAXPARSER_H__
|