2010-11-03 11:01:17 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <stack>
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
#include <libxml/xmlmemory.h>
|
|
|
|
#include "NSString.h"
|
|
|
|
#include "CCXFileUtils_android.h"
|
2010-11-13 17:01:35 +08:00
|
|
|
#include "CCXCocos2dDefine.h"
|
2010-12-06 09:51:21 +08:00
|
|
|
#include "support/file_support/FileData.h"
|
|
|
|
#include "support/zip_support/unzip.h"
|
2010-11-03 11:01:17 +08:00
|
|
|
|
|
|
|
namespace cocos2d {
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SAX_NONE = 0,
|
|
|
|
SAX_KEY,
|
|
|
|
SAX_DICT,
|
|
|
|
SAX_INT,
|
|
|
|
SAX_REAL,
|
|
|
|
SAX_STRING
|
|
|
|
}CCSAXState;
|
|
|
|
|
|
|
|
class CCDictMaker
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NSDictionary<std::string, NSObject*> *m_pRootDict;
|
|
|
|
NSDictionary<std::string, NSObject*> *m_pCurDict;
|
|
|
|
std::stack<NSDictionary<std::string, NSObject*>*> m_tDictStack;
|
|
|
|
std::string m_sCurKey;///< parsed key
|
|
|
|
CCSAXState m_tState;
|
|
|
|
public:
|
|
|
|
CCDictMaker()
|
|
|
|
{
|
|
|
|
m_pRootDict = NULL;
|
|
|
|
m_pCurDict = NULL;
|
|
|
|
m_tState = SAX_NONE;
|
|
|
|
}
|
|
|
|
~CCDictMaker()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
NSDictionary<std::string, NSObject*> *dictionaryWithContentsOfFile(const char *pFileName)
|
|
|
|
{
|
2010-12-06 09:51:21 +08:00
|
|
|
FileData data;
|
|
|
|
unsigned long size = 0;
|
|
|
|
char *pBuffer = (char *) data.getFileData(pFileName, "r", &size);
|
|
|
|
|
|
|
|
if (! pBuffer)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-11-03 11:01:17 +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.
|
|
|
|
saxHandler.startElement = &plist_startElement;
|
|
|
|
saxHandler.endElement = &plist_endElement;
|
|
|
|
saxHandler.characters = &plist_characters;
|
|
|
|
|
2010-12-06 09:51:21 +08:00
|
|
|
int result = xmlSAXUserParseMemory( &saxHandler, this, pBuffer, size );
|
2010-11-03 11:01:17 +08:00
|
|
|
if ( result != 0 )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Cleanup function for the XML library.
|
|
|
|
*/
|
|
|
|
xmlCleanupParser();
|
|
|
|
/*
|
|
|
|
* this is to debug memory for regression tests
|
|
|
|
*/
|
|
|
|
xmlMemoryDump();
|
|
|
|
return m_pRootDict;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
void plist_startElement(void *ctx, const xmlChar *name, const xmlChar **atts)
|
|
|
|
{
|
|
|
|
CCDictMaker *pMaker = (CCDictMaker*)(ctx);
|
|
|
|
std::string sName((char*)name);
|
|
|
|
if( sName == "dict" )
|
|
|
|
{
|
|
|
|
NSDictionary<std::string, NSObject*> *pNewDict = new NSDictionary<std::string, NSObject*>();
|
|
|
|
if(! pMaker->m_pRootDict)
|
|
|
|
{
|
|
|
|
pMaker->m_pRootDict = pNewDict;
|
|
|
|
pNewDict->autorelease();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
NSAssert(pMaker->m_pCurDict && !pMaker->m_sCurKey.empty(), "");
|
|
|
|
pMaker->m_pCurDict->setObject(pNewDict, pMaker->m_sCurKey);
|
|
|
|
pNewDict->release();
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
else if(sName == "string")
|
|
|
|
{
|
|
|
|
pMaker->m_tState = SAX_STRING;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pMaker->m_tState = SAX_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void plist_endElement(void *ctx, const xmlChar *name)
|
|
|
|
{
|
|
|
|
CCDictMaker * pMaker = (CCDictMaker*)(ctx);
|
|
|
|
std::string sName((char*)name);
|
|
|
|
if( sName == "dict" )
|
|
|
|
{
|
|
|
|
pMaker->m_tDictStack.pop();
|
|
|
|
if ( !pMaker->m_tDictStack.empty() )
|
|
|
|
{
|
|
|
|
pMaker->m_pCurDict = (NSDictionary<std::string, NSObject*>*)(pMaker->m_tDictStack.top());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pMaker->m_tState = SAX_NONE;
|
|
|
|
}
|
|
|
|
void plist_characters(void *ctx, const xmlChar *ch, int len)
|
|
|
|
{
|
|
|
|
CCDictMaker * pMaker = (CCDictMaker*)(ctx);
|
|
|
|
if (pMaker->m_tState == SAX_NONE)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
NSString *pText = new NSString();
|
|
|
|
pText->m_sString = std::string((char*)ch,0,len);
|
|
|
|
|
|
|
|
switch(pMaker->m_tState)
|
|
|
|
{
|
|
|
|
case SAX_KEY:
|
|
|
|
pMaker->m_sCurKey = pText->m_sString;
|
|
|
|
break;
|
|
|
|
case SAX_INT:
|
|
|
|
case SAX_REAL:
|
|
|
|
case SAX_STRING:
|
|
|
|
{
|
|
|
|
NSAssert(!pMaker->m_sCurKey.empty(), "not found key : <integet/real>");
|
|
|
|
pMaker->m_pCurDict->setObject(pText, pMaker->m_sCurKey);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pText->release();
|
|
|
|
}
|
|
|
|
|
|
|
|
// record the resource path
|
2010-12-06 09:51:21 +08:00
|
|
|
|
|
|
|
string CCFileUtils::m_sRelativePath = "";
|
|
|
|
string CCFileUtils::m_sResourcePath = "";
|
|
|
|
|
|
|
|
void CCFileUtils::setRelativePath(const char* pszRelativePath)
|
|
|
|
{
|
|
|
|
NSAssert(pszRelativePath != NULL, "[FileUtils setRelativePath] -- wrong relative path");
|
|
|
|
|
|
|
|
if (! pszRelativePath)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_sRelativePath = pszRelativePath;
|
|
|
|
|
|
|
|
// if the path is not ended with '/', append it
|
|
|
|
if (m_sRelativePath.find("/") != (strlen(m_sRelativePath.c_str()) - 1))
|
|
|
|
{
|
|
|
|
m_sRelativePath += "/";
|
|
|
|
}
|
|
|
|
}
|
2010-11-03 11:01:17 +08:00
|
|
|
|
|
|
|
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");
|
|
|
|
|
2010-12-06 09:51:21 +08:00
|
|
|
m_sResourcePath = pszResourcePath;
|
2010-11-03 11:01:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* CCFileUtils::getResourcePath()
|
|
|
|
{
|
2010-12-06 09:51:21 +08:00
|
|
|
return m_sResourcePath.c_str();
|
2010-11-03 11:01:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* CCFileUtils::fullPathFromRelativePath(const char *pszRelativePath)
|
|
|
|
{
|
2010-12-06 09:51:21 +08:00
|
|
|
return pszRelativePath;
|
2010-11-03 11:01:17 +08:00
|
|
|
}
|
2010-12-06 09:51:21 +08:00
|
|
|
|
2010-11-03 11:01:17 +08:00
|
|
|
const char *CCFileUtils::fullPathFromRelativeFile(const char *pszFilename, const char *pszRelativeFile)
|
|
|
|
{
|
2010-12-06 09:51:21 +08:00
|
|
|
//std::string relativeFile = fullPathFromRelativePath(pszRelativeFile);
|
|
|
|
std::string relativeFile = pszRelativeFile;
|
2010-11-03 11:01:17 +08:00
|
|
|
NSString *pRet = new NSString();
|
|
|
|
pRet->autorelease();
|
|
|
|
pRet->m_sString = relativeFile.substr(0, relativeFile.rfind('/')+1);
|
|
|
|
pRet->m_sString += pszFilename;
|
|
|
|
return pRet->m_sString.c_str();
|
|
|
|
}
|
2010-12-06 09:51:21 +08:00
|
|
|
|
2010-11-03 11:01:17 +08:00
|
|
|
NSDictionary<std::string, NSObject*> *CCFileUtils::dictionaryWithContentsOfFile(const char *pFileName)
|
|
|
|
{
|
|
|
|
CCDictMaker tMaker;
|
|
|
|
return tMaker.dictionaryWithContentsOfFile(pFileName);
|
|
|
|
}
|
2010-12-06 09:51:21 +08:00
|
|
|
|
|
|
|
unsigned char* CCFileUtils::getFileData(const char* pszFileName, const char* pszMode, unsigned long * pSize)
|
|
|
|
{
|
|
|
|
string fullPath = m_sRelativePath + pszFileName;
|
|
|
|
return FileUtils::getFileDataFromZip(m_sResourcePath.c_str(), fullPath.c_str(), pSize);
|
|
|
|
}
|
|
|
|
|
2010-11-03 11:01:17 +08:00
|
|
|
}//namespace cocos2d
|