2012-04-19 14:35:52 +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.
|
|
|
|
****************************************************************************/
|
2012-04-25 16:18:04 +08:00
|
|
|
#ifndef __CC_PLATFORM_FILEUTILS_CPP__
|
|
|
|
#error "CCFileUtilsCommon_cpp.h can only be included for CCFileUtils.cpp in platform/win32(android,...)"
|
|
|
|
#endif /* __CC_PLATFORM_FILEUTILS_CPP__ */
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
#include "CCFileUtils.h"
|
|
|
|
#include "CCDirector.h"
|
|
|
|
#include "CCDictionary.h"
|
|
|
|
|
|
|
|
#if (CC_TARGET_PLATFORM != CC_PLATFORM_IOS)
|
|
|
|
|
|
|
|
#include <stack>
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
#include <libxml/xmlmemory.h>
|
|
|
|
#include "CCString.h"
|
|
|
|
#include "CCSAXParser.h"
|
|
|
|
#include "support/zip_support/unzip.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
static const char *__suffixiPhoneRetinaDisplay = "-hd";
|
|
|
|
static const char *__suffixiPad = "-ipad";
|
|
|
|
static const char *__suffixiPadRetinaDisplay = "-ipadhd";
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SAX_NONE = 0,
|
|
|
|
SAX_KEY,
|
|
|
|
SAX_DICT,
|
|
|
|
SAX_INT,
|
|
|
|
SAX_REAL,
|
|
|
|
SAX_STRING,
|
|
|
|
SAX_ARRAY
|
|
|
|
}CCSAXState;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SAX_RESULT_NONE = 0,
|
|
|
|
SAX_RESULT_DICT,
|
|
|
|
SAX_RESULT_ARRAY
|
|
|
|
}CCSAXResult;
|
|
|
|
|
|
|
|
class CCDictMaker : public CCSAXDelegator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CCSAXResult m_eResultType;
|
|
|
|
CCArray* m_pRootArray;
|
|
|
|
CCDictionary *m_pRootDict;
|
|
|
|
CCDictionary *m_pCurDict;
|
|
|
|
std::stack<CCDictionary*> m_tDictStack;
|
2012-04-25 10:55:59 +08:00
|
|
|
std::string m_sCurKey; ///< parsed key
|
|
|
|
std::string m_sCurValue; // parsed value
|
2012-04-19 14:35:52 +08:00
|
|
|
CCSAXState m_tState;
|
|
|
|
CCArray* m_pArray;
|
|
|
|
|
|
|
|
std::stack<CCArray*> m_tArrayStack;
|
|
|
|
std::stack<CCSAXState> m_tStateStack;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CCDictMaker()
|
|
|
|
: m_eResultType(SAX_RESULT_NONE),
|
|
|
|
m_pRootArray(NULL),
|
|
|
|
m_pRootDict(NULL),
|
|
|
|
m_pCurDict(NULL),
|
|
|
|
m_tState(SAX_NONE),
|
|
|
|
m_pArray(NULL)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~CCDictMaker()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CCDictionary* dictionaryWithContentsOfFile(const char *pFileName)
|
|
|
|
{
|
|
|
|
m_eResultType = SAX_RESULT_DICT;
|
|
|
|
CCSAXParser parser;
|
|
|
|
|
|
|
|
if (false == parser.init("UTF-8"))
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
parser.setDelegator(this);
|
|
|
|
|
|
|
|
parser.parse(pFileName);
|
|
|
|
return m_pRootDict;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCArray* arrayWithContentsOfFile(const char* pFileName)
|
|
|
|
{
|
|
|
|
m_eResultType = SAX_RESULT_ARRAY;
|
|
|
|
CCSAXParser parser;
|
|
|
|
|
|
|
|
if (false == parser.init("UTF-8"))
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
parser.setDelegator(this);
|
|
|
|
|
|
|
|
parser.parse(pFileName);
|
|
|
|
return m_pArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
void startElement(void *ctx, const char *name, const char **atts)
|
|
|
|
{
|
|
|
|
CC_UNUSED_PARAM(ctx);
|
|
|
|
CC_UNUSED_PARAM(atts);
|
|
|
|
std::string sName((char*)name);
|
|
|
|
if( sName == "dict" )
|
|
|
|
{
|
|
|
|
m_pCurDict = new CCDictionary();
|
2012-04-25 10:55:59 +08:00
|
|
|
if(m_eResultType == SAX_RESULT_DICT && m_pRootDict == NULL)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
// Because it will call m_pCurDict->release() later, so retain here.
|
|
|
|
m_pRootDict = m_pCurDict;
|
|
|
|
m_pRootDict->retain();
|
|
|
|
}
|
|
|
|
m_tState = SAX_DICT;
|
|
|
|
|
|
|
|
CCSAXState preState = SAX_NONE;
|
|
|
|
if (! m_tStateStack.empty())
|
|
|
|
{
|
|
|
|
preState = m_tStateStack.top();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SAX_ARRAY == preState)
|
|
|
|
{
|
|
|
|
// add the dictionary into the array
|
|
|
|
m_pArray->addObject(m_pCurDict);
|
|
|
|
}
|
|
|
|
else if (SAX_DICT == preState)
|
|
|
|
{
|
|
|
|
// add the dictionary into the pre dictionary
|
|
|
|
CCAssert(! m_tDictStack.empty(), "The state is wrong!");
|
|
|
|
CCDictionary* pPreDict = m_tDictStack.top();
|
|
|
|
pPreDict->setObject(m_pCurDict, m_sCurKey.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
m_pCurDict->release();
|
|
|
|
|
|
|
|
// record the dict state
|
|
|
|
m_tStateStack.push(m_tState);
|
|
|
|
m_tDictStack.push(m_pCurDict);
|
|
|
|
}
|
|
|
|
else if(sName == "key")
|
|
|
|
{
|
|
|
|
m_tState = SAX_KEY;
|
|
|
|
}
|
|
|
|
else if(sName == "integer")
|
|
|
|
{
|
|
|
|
m_tState = SAX_INT;
|
|
|
|
}
|
|
|
|
else if(sName == "real")
|
|
|
|
{
|
|
|
|
m_tState = SAX_REAL;
|
|
|
|
}
|
|
|
|
else if(sName == "string")
|
|
|
|
{
|
|
|
|
m_tState = SAX_STRING;
|
|
|
|
}
|
|
|
|
else if (sName == "array")
|
|
|
|
{
|
|
|
|
m_tState = SAX_ARRAY;
|
|
|
|
m_pArray = new CCArray();
|
|
|
|
if (m_eResultType == SAX_RESULT_ARRAY && m_pRootArray == NULL)
|
|
|
|
{
|
|
|
|
m_pRootArray = m_pArray;
|
|
|
|
m_pRootArray->retain();
|
|
|
|
}
|
|
|
|
CCSAXState preState = SAX_NONE;
|
|
|
|
if (! m_tStateStack.empty())
|
|
|
|
{
|
|
|
|
preState = m_tStateStack.top();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (preState == SAX_DICT)
|
|
|
|
{
|
|
|
|
m_pCurDict->setObject(m_pArray, m_sCurKey.c_str());
|
|
|
|
}
|
|
|
|
else if (preState == SAX_ARRAY)
|
|
|
|
{
|
|
|
|
CCAssert(! m_tArrayStack.empty(), "The state is worng!");
|
|
|
|
CCArray* pPreArray = m_tArrayStack.top();
|
|
|
|
pPreArray->addObject(m_pArray);
|
|
|
|
}
|
|
|
|
m_pArray->release();
|
|
|
|
// record the array state
|
|
|
|
m_tStateStack.push(m_tState);
|
|
|
|
m_tArrayStack.push(m_pArray);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_tState = SAX_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void endElement(void *ctx, const char *name)
|
|
|
|
{
|
|
|
|
CC_UNUSED_PARAM(ctx);
|
|
|
|
CCSAXState curState = m_tStateStack.empty() ? SAX_DICT : m_tStateStack.top();
|
|
|
|
std::string sName((char*)name);
|
|
|
|
if( sName == "dict" )
|
|
|
|
{
|
|
|
|
m_tStateStack.pop();
|
|
|
|
m_tDictStack.pop();
|
|
|
|
if ( !m_tDictStack.empty())
|
|
|
|
{
|
|
|
|
m_pCurDict = m_tDictStack.top();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (sName == "array")
|
|
|
|
{
|
|
|
|
m_tStateStack.pop();
|
|
|
|
m_tArrayStack.pop();
|
|
|
|
if (! m_tArrayStack.empty())
|
|
|
|
{
|
|
|
|
m_pArray = m_tArrayStack.top();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (sName == "true")
|
|
|
|
{
|
|
|
|
CCString *str = new CCString("1");
|
|
|
|
if (SAX_ARRAY == curState)
|
|
|
|
{
|
|
|
|
m_pArray->addObject(str);
|
|
|
|
}
|
|
|
|
else if (SAX_DICT == curState)
|
|
|
|
{
|
|
|
|
m_pCurDict->setObject(str, m_sCurKey.c_str());
|
|
|
|
}
|
|
|
|
str->release();
|
|
|
|
}
|
|
|
|
else if (sName == "false")
|
|
|
|
{
|
|
|
|
CCString *str = new CCString("0");
|
|
|
|
if (SAX_ARRAY == curState)
|
|
|
|
{
|
|
|
|
m_pArray->addObject(str);
|
|
|
|
}
|
|
|
|
else if (SAX_DICT == curState)
|
|
|
|
{
|
|
|
|
m_pCurDict->setObject(str, m_sCurKey.c_str());
|
|
|
|
}
|
|
|
|
str->release();
|
|
|
|
}
|
2012-04-25 10:55:59 +08:00
|
|
|
else if (sName == "string" || sName == "integer" || sName == "real")
|
|
|
|
{
|
|
|
|
CCString* pStrValue = new CCString(m_sCurValue);
|
|
|
|
|
|
|
|
if (SAX_ARRAY == curState)
|
|
|
|
{
|
|
|
|
m_pArray->addObject(pStrValue);
|
|
|
|
}
|
|
|
|
else if (SAX_DICT == curState)
|
|
|
|
{
|
|
|
|
m_pCurDict->setObject(pStrValue, m_sCurKey.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
pStrValue->release();
|
|
|
|
m_sCurValue.clear();
|
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
m_tState = SAX_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void textHandler(void *ctx, const char *ch, int len)
|
|
|
|
{
|
|
|
|
CC_UNUSED_PARAM(ctx);
|
|
|
|
if (m_tState == SAX_NONE)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCSAXState curState = m_tStateStack.empty() ? SAX_DICT : m_tStateStack.top();
|
|
|
|
CCString *pText = new CCString(std::string((char*)ch,0,len));
|
|
|
|
|
|
|
|
switch(m_tState)
|
|
|
|
{
|
|
|
|
case SAX_KEY:
|
|
|
|
m_sCurKey = pText->getCString();
|
|
|
|
break;
|
|
|
|
case SAX_INT:
|
|
|
|
case SAX_REAL:
|
|
|
|
case SAX_STRING:
|
|
|
|
{
|
2012-04-25 10:55:59 +08:00
|
|
|
if (curState == SAX_DICT)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-04-25 10:55:59 +08:00
|
|
|
CCAssert(!m_sCurKey.empty(), "not found key : <integet/real>");
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2012-04-25 10:55:59 +08:00
|
|
|
|
|
|
|
m_sCurValue.append(pText->getCString());
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2012-04-25 10:55:59 +08:00
|
|
|
break;
|
2012-04-19 14:35:52 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pText->release();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string& CCFileUtils::removeSuffixFromFile(std::string& path)
|
|
|
|
{
|
|
|
|
// XXX win32 now can only support iphone retina, because
|
|
|
|
// we don't know it is ipad retina or iphone retina.
|
|
|
|
// fixe me later
|
|
|
|
if( CC_CONTENT_SCALE_FACTOR() == 2 )
|
|
|
|
{
|
|
|
|
std::string::size_type pos = path.rfind("/") + 1; // the begin index of last part of path
|
|
|
|
|
|
|
|
std::string::size_type suffixPos = path.rfind(__suffixiPhoneRetinaDisplay);
|
|
|
|
if (std::string::npos != suffixPos && suffixPos > pos)
|
|
|
|
{
|
|
|
|
CCLog("cocos2d: FilePath(%s) contains suffix(%s), remove it.", path.c_str(),
|
|
|
|
__suffixiPhoneRetinaDisplay);
|
|
|
|
path.replace(suffixPos, strlen(__suffixiPhoneRetinaDisplay), "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCDictionary* ccFileUtils_dictionaryWithContentsOfFileThreadSafe(const char *pFileName)
|
|
|
|
{
|
|
|
|
CCDictMaker tMaker;
|
|
|
|
return tMaker.dictionaryWithContentsOfFile(pFileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCArray* ccFileUtils_arrayWithContentsOfFileThreadSafe(const char* pFileName)
|
|
|
|
{
|
|
|
|
CCDictMaker tMaker;
|
|
|
|
return tMaker.arrayWithContentsOfFile(pFileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* CCFileUtils::getFileDataFromZip(const char* pszZipFilePath, const char* pszFileName, unsigned long * pSize)
|
|
|
|
{
|
|
|
|
unsigned char * pBuffer = NULL;
|
|
|
|
unzFile pFile = NULL;
|
|
|
|
*pSize = 0;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
CC_BREAK_IF(!pszZipFilePath || !pszFileName);
|
|
|
|
CC_BREAK_IF(strlen(pszZipFilePath) == 0);
|
|
|
|
|
|
|
|
pFile = unzOpen(pszZipFilePath);
|
|
|
|
CC_BREAK_IF(!pFile);
|
|
|
|
|
|
|
|
int nRet = unzLocateFile(pFile, pszFileName, 1);
|
|
|
|
CC_BREAK_IF(UNZ_OK != nRet);
|
|
|
|
|
|
|
|
char szFilePathA[260];
|
|
|
|
unz_file_info FileInfo;
|
|
|
|
nRet = unzGetCurrentFileInfo(pFile, &FileInfo, szFilePathA, sizeof(szFilePathA), NULL, 0, NULL, 0);
|
|
|
|
CC_BREAK_IF(UNZ_OK != nRet);
|
|
|
|
|
|
|
|
nRet = unzOpenCurrentFile(pFile);
|
|
|
|
CC_BREAK_IF(UNZ_OK != nRet);
|
|
|
|
|
|
|
|
pBuffer = new unsigned char[FileInfo.uncompressed_size];
|
|
|
|
int nSize = 0;
|
|
|
|
nSize = unzReadCurrentFile(pFile, pBuffer, FileInfo.uncompressed_size);
|
|
|
|
CCAssert(nSize == 0 || nSize == (int)FileInfo.uncompressed_size, "the file size is wrong");
|
|
|
|
|
|
|
|
*pSize = FileInfo.uncompressed_size;
|
|
|
|
unzCloseCurrentFile(pFile);
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
if (pFile)
|
|
|
|
{
|
|
|
|
unzClose(pFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
return pBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char* CCFileUtils::fullPathFromRelativePath(const char *pszRelativePath)
|
|
|
|
{
|
|
|
|
ccResolutionType ignore;
|
|
|
|
return fullPathFromRelativePath(pszRelativePath, &ignore);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// functions iOS specific
|
|
|
|
void CCFileUtils::setiPhoneRetinaDisplaySuffix(const char *suffix)
|
|
|
|
{
|
2012-04-25 16:18:04 +08:00
|
|
|
CCAssert(0, "not implement");
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCFileUtils::setiPadSuffix(const char *suffix)
|
|
|
|
{
|
2012-04-25 16:18:04 +08:00
|
|
|
CCAssert(0, "not implement");
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCFileUtils::setiPadRetinaDisplaySuffix(const char *suffix)
|
|
|
|
{
|
2012-04-25 16:18:04 +08:00
|
|
|
CCAssert(0, "not implement");
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CCFileUtils::iPadFileExistsAtPath(const char *filename)
|
|
|
|
{
|
2012-04-25 16:18:04 +08:00
|
|
|
CCAssert(0, "not implement");
|
2012-04-19 14:35:52 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCFileUtils::iPadRetinaDisplayFileExistsAtPath(const char *filename)
|
|
|
|
{
|
2012-04-25 16:18:04 +08:00
|
|
|
CCAssert(0, "not implement");
|
2012-04-19 14:35:52 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCFileUtils::iPhoneRetinaDisplayFileExistsAtPath(const char *filename)
|
|
|
|
{
|
2012-04-25 16:18:04 +08:00
|
|
|
CCAssert(0, "not implement");
|
2012-04-19 14:35:52 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Notification support when getFileData from invalid file path.
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
static bool s_bPopupNotify = true;
|
|
|
|
|
2012-06-15 16:47:30 +08:00
|
|
|
void CCFileUtils::popupNotify(bool bNotify)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
s_bPopupNotify = bNotify;
|
|
|
|
}
|
|
|
|
|
2012-06-15 16:47:30 +08:00
|
|
|
bool CCFileUtils::isPopupNotify()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
return s_bPopupNotify;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // (CC_TARGET_PLATFORM != CC_PLATFORM_IOS)
|