2010-07-23 16:39:34 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-07-30 12:02:36 +08:00
|
|
|
#include <string>
|
|
|
|
#include <stack>
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
#include <libxml/xmlmemory.h>
|
2010-07-30 18:17:13 +08:00
|
|
|
#include <tg3.h>
|
2010-08-25 17:21:38 +08:00
|
|
|
|
|
|
|
#include "CCXFileUtils_uphone.h"
|
2010-07-30 12:02:36 +08:00
|
|
|
#include "Cocos2dDefine.h"
|
2010-08-25 17:21:38 +08:00
|
|
|
|
2010-08-04 15:46:12 +08:00
|
|
|
namespace cocos2d {
|
2010-07-23 16:39:34 +08:00
|
|
|
|
2010-08-27 18:14:17 +08:00
|
|
|
void plist_startElement(void *ctx, const xmlChar *name, const xmlChar **atts);
|
|
|
|
void plist_endElement(void *ctx, const xmlChar *name);
|
|
|
|
void plist_characters(void *ctx, const xmlChar *ch, int len);
|
2010-08-25 16:50:31 +08:00
|
|
|
|
2010-07-30 12:02:36 +08:00
|
|
|
typedef std::pair<std::string, void*> Pair;
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SAX_NONE = 0,
|
|
|
|
SAX_KEY,
|
|
|
|
SAX_DICT,
|
|
|
|
SAX_INT,
|
2010-08-25 16:50:31 +08:00
|
|
|
SAX_REAL,
|
|
|
|
SAX_STRING
|
2010-07-30 12:02:36 +08:00
|
|
|
}CCSAXState;
|
|
|
|
|
|
|
|
class CCDictMaker
|
|
|
|
{
|
|
|
|
public:
|
2010-08-25 11:36:57 +08:00
|
|
|
std::map<std::string, void*> *m_pRootDict;
|
|
|
|
std::map<std::string, void*> *m_pCurDict;
|
|
|
|
std::stack<std::map<std::string, void*>*> m_tDictStack;
|
2010-07-30 12:02:36 +08:00
|
|
|
std::string m_sCurKey;///< parsed key
|
|
|
|
CCSAXState m_tState;
|
|
|
|
public:
|
|
|
|
CCDictMaker()
|
|
|
|
{
|
|
|
|
m_pRootDict = NULL;
|
|
|
|
m_pCurDict = NULL;
|
|
|
|
m_tState = SAX_NONE;
|
|
|
|
}
|
|
|
|
~CCDictMaker()
|
|
|
|
{
|
|
|
|
}
|
2010-08-25 11:36:57 +08:00
|
|
|
std::map<std::string, void*> *dictionaryWithContentsOfFile(const char *pFileName)
|
2010-07-30 12:02:36 +08:00
|
|
|
{
|
2010-08-25 16:50:31 +08:00
|
|
|
FILE *fp = NULL;
|
2010-07-30 12:02:36 +08:00
|
|
|
if( !(fp = fopen(pFileName, "r")) )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
fseek(fp,0,SEEK_END);
|
|
|
|
int size = ftell(fp);
|
|
|
|
fseek(fp,0,SEEK_SET);
|
2010-08-25 16:50:31 +08:00
|
|
|
char *buffer = new char[size+1];
|
2010-07-30 12:02:36 +08:00
|
|
|
fread(buffer,sizeof(char),size,fp);
|
2010-08-12 17:39:25 +08:00
|
|
|
fclose(fp);
|
2010-07-30 12:02:36 +08:00
|
|
|
/*
|
|
|
|
* this initialize the library and check potential ABI mismatches
|
|
|
|
* between the version it was compiled for and the actual shared
|
|
|
|
* library used.
|
|
|
|
*/
|
|
|
|
LIBXML_TEST_VERSION
|
|
|
|
xmlSAXHandler saxHandler;
|
|
|
|
memset( &saxHandler, 0, sizeof(saxHandler) );
|
|
|
|
// Using xmlSAXVersion( &saxHandler, 2 ) generate crash as it sets plenty of other pointers...
|
|
|
|
saxHandler.initialized = XML_SAX2_MAGIC; // so we do this to force parsing as SAX2.
|
2010-08-27 18:14:17 +08:00
|
|
|
saxHandler.startElement = &plist_startElement;
|
|
|
|
saxHandler.endElement = &plist_endElement;
|
|
|
|
saxHandler.characters = &plist_characters;
|
2010-07-30 12:02:36 +08:00
|
|
|
|
|
|
|
int result = xmlSAXUserParseMemory( &saxHandler, this, buffer, size );
|
|
|
|
if ( result != 0 )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Cleanup function for the XML library.
|
|
|
|
*/
|
|
|
|
xmlCleanupParser();
|
|
|
|
/*
|
|
|
|
* this is to debug memory for regression tests
|
|
|
|
*/
|
|
|
|
xmlMemoryDump();
|
|
|
|
delete []buffer;
|
|
|
|
return m_pRootDict;
|
|
|
|
}
|
|
|
|
};
|
2010-08-27 18:14:17 +08:00
|
|
|
void plist_startElement(void *ctx, const xmlChar *name, const xmlChar **atts)
|
2010-07-30 12:02:36 +08:00
|
|
|
{
|
2010-08-31 11:20:37 +08:00
|
|
|
CCDictMaker *pMaker = (CCDictMaker*)(ctx);
|
2010-07-30 12:02:36 +08:00
|
|
|
std::string sName((char*)name);
|
|
|
|
if( sName == "dict" )
|
|
|
|
{
|
2010-08-25 11:36:57 +08:00
|
|
|
std::map<std::string, void*> *pNewDict = new std::map<std::string, void*>();
|
2010-07-30 12:02:36 +08:00
|
|
|
if(! pMaker->m_pRootDict)
|
|
|
|
{
|
|
|
|
pMaker->m_pRootDict = pNewDict;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
NSAssert(pMaker->m_pCurDict && !pMaker->m_sCurKey.empty(), "");
|
|
|
|
pMaker->m_pCurDict->insert( Pair(pMaker->m_sCurKey, pNewDict) );
|
|
|
|
pMaker->m_sCurKey.clear();
|
|
|
|
}
|
|
|
|
pMaker->m_pCurDict = pNewDict;
|
|
|
|
pMaker->m_tDictStack.push(pMaker->m_pCurDict);
|
|
|
|
pMaker->m_tState = SAX_DICT;
|
|
|
|
}
|
|
|
|
else if(sName == "key")
|
|
|
|
{
|
|
|
|
pMaker->m_tState = SAX_KEY;
|
|
|
|
}
|
|
|
|
else if(sName == "integer")
|
|
|
|
{
|
|
|
|
pMaker->m_tState = SAX_INT;
|
|
|
|
}
|
|
|
|
else if(sName == "real")
|
|
|
|
{
|
|
|
|
pMaker->m_tState = SAX_REAL;
|
|
|
|
}
|
2010-08-25 16:50:31 +08:00
|
|
|
else if(sName == "string")
|
|
|
|
{
|
|
|
|
pMaker->m_tState = SAX_STRING;
|
|
|
|
}
|
2010-07-30 12:02:36 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
pMaker->m_tState = SAX_NONE;
|
|
|
|
}
|
|
|
|
}
|
2010-08-27 18:14:17 +08:00
|
|
|
void plist_endElement(void *ctx, const xmlChar *name)
|
2010-07-30 12:02:36 +08:00
|
|
|
{
|
2010-08-31 11:20:37 +08:00
|
|
|
CCDictMaker * pMaker = (CCDictMaker*)(ctx);
|
2010-07-30 12:02:36 +08:00
|
|
|
std::string sName((char*)name);
|
|
|
|
if( sName == "dict" )
|
|
|
|
{
|
|
|
|
pMaker->m_tDictStack.pop();
|
|
|
|
if ( !pMaker->m_tDictStack.empty() )
|
|
|
|
{
|
2010-08-31 11:20:37 +08:00
|
|
|
pMaker->m_pCurDict = (std::map<std::string, void*>*)(pMaker->m_tDictStack.top());
|
2010-07-30 12:02:36 +08:00
|
|
|
}
|
|
|
|
}
|
2010-08-25 16:50:31 +08:00
|
|
|
pMaker->m_tState = SAX_NONE;
|
2010-07-30 12:02:36 +08:00
|
|
|
}
|
2010-08-27 18:14:17 +08:00
|
|
|
void plist_characters(void *ctx, const xmlChar *ch, int len)
|
2010-07-30 12:02:36 +08:00
|
|
|
{
|
2010-08-31 11:20:37 +08:00
|
|
|
CCDictMaker * pMaker = (CCDictMaker*)(ctx);
|
2010-08-25 16:50:31 +08:00
|
|
|
if (pMaker->m_tState == SAX_NONE)
|
2010-07-30 12:02:36 +08:00
|
|
|
{
|
2010-08-25 16:50:31 +08:00
|
|
|
return;
|
2010-07-30 12:02:36 +08:00
|
|
|
}
|
2010-08-25 16:50:31 +08:00
|
|
|
std::string *pText = new std::string((char*)ch,0,len);
|
|
|
|
switch(pMaker->m_tState)
|
|
|
|
{
|
|
|
|
case SAX_KEY:
|
|
|
|
pMaker->m_sCurKey = *pText;
|
|
|
|
break;
|
|
|
|
case SAX_INT:
|
|
|
|
case SAX_REAL:
|
|
|
|
case SAX_STRING:
|
|
|
|
{
|
|
|
|
NSAssert(!pMaker->m_sCurKey.empty(), "not found key : <integet/real>");
|
|
|
|
pMaker->m_pCurDict->insert( Pair(pMaker->m_sCurKey, pText) );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-07-30 12:02:36 +08:00
|
|
|
}
|
2010-09-07 16:05:18 +08:00
|
|
|
|
|
|
|
// record the resource path
|
|
|
|
static char s_pszResourcePath[MAX_PATH] = {0};
|
|
|
|
|
|
|
|
void CCFileUtils::setResourcePath(const char *pszResourcePath)
|
|
|
|
{
|
|
|
|
NSAssert(pszResourcePath != NULL, "[FileUtils setResourcePath] -- wrong resource path");
|
|
|
|
NSAssert(strlen(pszResourcePath) <= MAX_PATH, "[FileUtils setResourcePath] -- resource path too long");
|
|
|
|
|
|
|
|
strcpy(s_pszResourcePath, pszResourcePath);
|
|
|
|
}
|
|
|
|
|
2010-07-23 16:39:34 +08:00
|
|
|
char* CCFileUtils::fullPathFromRelativePath(const char *pszRelativePath)
|
|
|
|
{
|
2010-08-12 14:46:58 +08:00
|
|
|
// get the user data path and append relativepath to it
|
2010-09-07 16:05:18 +08:00
|
|
|
if (strlen(s_pszResourcePath) == 0)
|
|
|
|
{
|
|
|
|
const TUChar *pszTmp = EOS_GetSpecialPath(EOS_FILE_SPECIAL_PATH_USER_DATA);
|
|
|
|
TUString::StrUnicodeToStrUtf8((Char*) s_pszResourcePath, pszTmp);
|
|
|
|
}
|
|
|
|
// const TUChar *pszTmp = EOS_GetSpecialPath(EOS_FILE_SPECIAL_PATH_USER_DATA);
|
|
|
|
// char *pszUserPath = new char[TUString::StrLen(pszTmp) + 1];
|
|
|
|
// TUString::StrUnicodeToStrUtf8((Char*)pszUserPath, pszTmp);
|
2010-08-12 14:46:58 +08:00
|
|
|
char *pszRet;
|
2010-07-23 16:39:34 +08:00
|
|
|
|
2010-08-12 14:46:58 +08:00
|
|
|
#ifndef _TRANZDA_VM_
|
|
|
|
char *pszDriver = "";
|
|
|
|
#else
|
|
|
|
char *pszDriver = "D:/Work7";
|
|
|
|
#endif
|
2010-07-23 16:39:34 +08:00
|
|
|
|
2010-08-12 14:46:58 +08:00
|
|
|
int nLen = 0;
|
2010-08-13 17:21:33 +08:00
|
|
|
if ((strlen(pszRelativePath) > 1 && pszRelativePath[1] == ':'))
|
|
|
|
{
|
|
|
|
nLen = strlen(pszRelativePath) + 1;
|
|
|
|
pszRet = new char[nLen];
|
|
|
|
memset(pszRet, 0, nLen);
|
|
|
|
strncat(pszRet, pszRelativePath, strlen(pszRelativePath));
|
|
|
|
}
|
|
|
|
else if (strlen(pszRelativePath) > 0 && pszRelativePath[0] == '/')
|
2010-08-12 14:46:58 +08:00
|
|
|
{
|
|
|
|
nLen = strlen(pszRelativePath) + strlen(pszDriver) + 1;
|
|
|
|
pszRet = new char[nLen];
|
|
|
|
memset(pszRet, 0, nLen);
|
|
|
|
strncat(pszRet, pszDriver, strlen(pszDriver));
|
|
|
|
strncat(pszRet, pszRelativePath, strlen(pszRelativePath));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-07 16:05:18 +08:00
|
|
|
nLen = strlen(pszRelativePath) + strlen(pszDriver) + strlen(s_pszResourcePath) + 1;
|
2010-08-12 14:46:58 +08:00
|
|
|
pszRet = new char[nLen];
|
|
|
|
memset(pszRet, 0, nLen);
|
|
|
|
strncat(pszRet, pszDriver, strlen(pszDriver));
|
2010-09-07 16:05:18 +08:00
|
|
|
strncat(pszRet, s_pszResourcePath, strlen(s_pszResourcePath));
|
2010-08-12 14:46:58 +08:00
|
|
|
strncat(pszRet, pszRelativePath, strlen(pszRelativePath));
|
|
|
|
}
|
2010-07-23 16:39:34 +08:00
|
|
|
|
|
|
|
return pszRet;
|
|
|
|
}
|
2010-07-30 12:02:36 +08:00
|
|
|
|
2010-08-25 11:36:57 +08:00
|
|
|
std::map<std::string, void*> *CCFileUtils::dictionaryWithContentsOfFile(const char *pFileName)
|
2010-07-30 12:02:36 +08:00
|
|
|
{
|
|
|
|
CCDictMaker tMaker;
|
|
|
|
return tMaker.dictionaryWithContentsOfFile(pFileName);
|
|
|
|
}
|
2010-08-04 15:46:12 +08:00
|
|
|
}//namespace cocos2d
|