/**************************************************************************** Copyright (c) 2013 cocos2d-x.org Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. 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 "AssetsManager.h" #include #include "base/CCDirector.h" #include "base/CCScheduler.h" #include "base/CCUserDefault.h" #include "network/CCDownloader.h" #include "platform/CCFileUtils.h" #ifdef MINIZIP_FROM_SYSTEM #include #else // from our embedded sources #include "unzip.h" #endif NS_CC_EXT_BEGIN using namespace std; using namespace cocos2d; using namespace cocos2d::network; #define KEY_OF_VERSION "current-version-code" #define KEY_OF_DOWNLOADED_VERSION "downloaded-version-code" #define TEMP_PACKAGE_FILE_NAME "cocos2dx-update-temp-package.zip" #define BUFFER_SIZE 8192 #define MAX_FILENAME 512 // Implementation of AssetsManager AssetsManager::AssetsManager(const char* packageUrl/* =nullptr */, const char* versionFileUrl/* =nullptr */, const char* storagePath/* =nullptr */) : _storagePath(storagePath ? storagePath : "") , _version("") , _packageUrl(packageUrl ? packageUrl : "") , _versionFileUrl(versionFileUrl ? versionFileUrl : "") , _downloadedVersion("") , _downloader(new Downloader()) , _connectionTimeout(0) , _delegate(nullptr) , _isDownloading(false) , _shouldDeleteDelegateWhenExit(false) { checkStoragePath(); // convert downloader error code to AssetsManager::ErrorCode _downloader->onTaskError = [this](const DownloadTask& /*task*/, int errorCode, int /*errorCodeInternal*/, const std::string& /*errorStr*/) { _isDownloading = false; if (nullptr == _delegate) { return; } auto err = (DownloadTask::ERROR_OPEN_FILE_FAILED == errorCode) ? ErrorCode::CREATE_FILE : ErrorCode::NETWORK; _delegate->onError(err); }; // progress callback _downloader->onTaskProgress = [this](const DownloadTask& task) { if(FileUtils::getInstance()->getFileExtension(task.requestURL) != ".zip") { // get version progress don't report return; } if (nullptr == _delegate) { return; } int percent = task.progressInfo.totalBytesExpected ? int(task.progressInfo.totalBytesReceived * 100 / task.progressInfo.totalBytesExpected) : 0; _delegate->onProgress(percent); CCLOG("downloading... %d%%", percent); }; // get version from version file when get data success _downloader->onDataTaskSuccess = [this](const DownloadTask& /*task*/, std::vector& data) { // store version info to member _version const char *p = (char *)data.data(); _version.insert(_version.end(), p, p + data.size()); if (getVersion() == _version) { if (_delegate) { _delegate->onError(ErrorCode::NO_NEW_VERSION); } CCLOG("there is not new version"); // Set resource search path. setSearchPath(); _isDownloading = false; return; } // start download new version assets // 1. Urls of package and version should be valid; // 2. Package should be a zip file. if (_versionFileUrl.empty() || _packageUrl.empty() || FileUtils::getInstance()->getFileExtension(_packageUrl) != ".zip" ) { CCLOG("no version file url, or no package url, or the package is not a zip file"); _isDownloading = false; return; } // Is package already downloaded? _downloadedVersion = UserDefault::getInstance()->getStringForKey(keyOfDownloadedVersion().c_str()); if (_downloadedVersion == _version) { downloadAndUncompress(); return; } // start download; const string outFileName = _storagePath + TEMP_PACKAGE_FILE_NAME; _downloader->createDownloadFileTask(_packageUrl, outFileName); }; // after download package, do uncompress operation _downloader->onFileTaskSuccess = [this](const DownloadTask& /*task*/) { downloadAndUncompress(); }; } AssetsManager::~AssetsManager() { if (_shouldDeleteDelegateWhenExit) { delete _delegate; } CC_SAFE_DELETE(_downloader); } void AssetsManager::checkStoragePath() { if (!_storagePath.empty() && _storagePath[_storagePath.size() - 1] != '/') { _storagePath.push_back('/'); } } // Multiple key names static std::string keyWithHash( const char* prefix, const std::string& url ) { char buf[256]; sprintf(buf,"%s%zd",prefix,std::hash()(url)); return buf; } // hashed version std::string AssetsManager::keyOfVersion() const { return keyWithHash(KEY_OF_VERSION,_packageUrl); } // hashed version std::string AssetsManager::keyOfDownloadedVersion() const { return keyWithHash(KEY_OF_DOWNLOADED_VERSION,_packageUrl); } bool AssetsManager::checkUpdate() { if (_versionFileUrl.empty() || _isDownloading) return false; // Clear _version before assign new value. _version.clear(); _isDownloading = true; _downloader->createDownloadDataTask(_versionFileUrl); return true; } void AssetsManager::downloadAndUncompress() { std::thread([this]() { do { // Uncompress zip file. if (! uncompress()) { Director::getInstance()->getScheduler()->performFunctionInCocosThread([&, this]{ UserDefault::getInstance()->setStringForKey(this->keyOfDownloadedVersion().c_str(),""); UserDefault::getInstance()->flush(); if (this->_delegate) this->_delegate->onError(ErrorCode::UNCOMPRESS); }); break; } Director::getInstance()->getScheduler()->performFunctionInCocosThread([&, this] { // Record new version code. UserDefault::getInstance()->setStringForKey(this->keyOfVersion().c_str(), this->_version); // Unrecord downloaded version code. UserDefault::getInstance()->setStringForKey(this->keyOfDownloadedVersion().c_str(), ""); UserDefault::getInstance()->flush(); // Set resource search path. this->setSearchPath(); // Delete unloaded zip file. string zipfileName = this->_storagePath + TEMP_PACKAGE_FILE_NAME; if (remove(zipfileName.c_str()) != 0) { CCLOG("can not remove downloaded zip file %s", zipfileName.c_str()); } if (this->_delegate) this->_delegate->onSuccess(); }); } while (0); _isDownloading = false; }).detach(); } void AssetsManager::update() { // all operation in checkUpdate, nothing need to do // keep this function for compatibility } bool AssetsManager::uncompress() { // Open the zip file string outFileName = _storagePath + TEMP_PACKAGE_FILE_NAME; unzFile zipfile = unzOpen(outFileName.c_str()); if (! zipfile) { CCLOG("can not open downloaded zip file %s", outFileName.c_str()); return false; } // Get info about the zip file unz_global_info global_info; if (unzGetGlobalInfo(zipfile, &global_info) != UNZ_OK) { CCLOG("can not read file global info of %s", outFileName.c_str()); unzClose(zipfile); return false; } // Buffer to hold data read from the zip file char readBuffer[BUFFER_SIZE]; CCLOG("start uncompressing"); // Loop to extract all files. uLong i; for (i = 0; i < global_info.number_entry; ++i) { // Get info about current file. unz_file_info fileInfo; char fileName[MAX_FILENAME]; if (unzGetCurrentFileInfo(zipfile, &fileInfo, fileName, MAX_FILENAME, nullptr, 0, nullptr, 0) != UNZ_OK) { CCLOG("can not read file info"); unzClose(zipfile); return false; } const string fullPath = _storagePath + fileName; // Check if this entry is a directory or a file. const size_t filenameLength = strlen(fileName); if (fileName[filenameLength-1] == '/') { // Entry is a directory, so create it. // If the directory exists, it will failed silently. if (!FileUtils::getInstance()->createDirectory(fullPath)) { CCLOG("can not create directory %s", fullPath.c_str()); unzClose(zipfile); return false; } } else { //There are not directory entry in some case. //So we need to test whether the file directory exists when uncompressing file entry //, if does not exist then create directory const string fileNameStr(fileName); size_t startIndex=0; size_t index=fileNameStr.find('/',startIndex); while(index != std::string::npos) { const string dir=_storagePath+fileNameStr.substr(0,index); FILE *out = fopen(dir.c_str(), "r"); if(!out) { if (!FileUtils::getInstance()->createDirectory(dir)) { CCLOG("can not create directory %s", dir.c_str()); unzClose(zipfile); return false; } else { CCLOG("create directory %s",dir.c_str()); } } else { fclose(out); } startIndex=index+1; index=fileNameStr.find('/',startIndex); } // Entry is a file, so extract it. // Open current file. if (unzOpenCurrentFile(zipfile) != UNZ_OK) { CCLOG("can not open file %s", fileName); unzClose(zipfile); return false; } // Create a file to store current file. FILE *out = fopen(fullPath.c_str(), "wb"); if (! out) { CCLOG("can not open destination file %s", fullPath.c_str()); unzCloseCurrentFile(zipfile); unzClose(zipfile); return false; } // Write current file content to destinate file. int error = UNZ_OK; do { error = unzReadCurrentFile(zipfile, readBuffer, BUFFER_SIZE); if (error < 0) { CCLOG("can not read zip file %s, error code is %d", fileName, error); unzCloseCurrentFile(zipfile); unzClose(zipfile); return false; } if (error > 0) { fwrite(readBuffer, error, 1, out); } } while(error > 0); fclose(out); } unzCloseCurrentFile(zipfile); // Goto next entry listed in the zip file. if ((i+1) < global_info.number_entry) { if (unzGoToNextFile(zipfile) != UNZ_OK) { CCLOG("can not read next file"); unzClose(zipfile); return false; } } } CCLOG("end uncompressing"); unzClose(zipfile); return true; } void AssetsManager::setSearchPath() { vector searchPaths = FileUtils::getInstance()->getSearchPaths(); vector::iterator iter = searchPaths.begin(); searchPaths.insert(iter, _storagePath); FileUtils::getInstance()->setSearchPaths(searchPaths); } const char* AssetsManager::getPackageUrl() const { return _packageUrl.c_str(); } void AssetsManager::setPackageUrl(const char *packageUrl) { _packageUrl = packageUrl; } const char* AssetsManager::getStoragePath() const { return _storagePath.c_str(); } void AssetsManager::setStoragePath(const char *storagePath) { _storagePath = storagePath; checkStoragePath(); } const char* AssetsManager::getVersionFileUrl() const { return _versionFileUrl.c_str(); } void AssetsManager::setVersionFileUrl(const char *versionFileUrl) { _versionFileUrl = versionFileUrl; } string AssetsManager::getVersion() { return UserDefault::getInstance()->getStringForKey(keyOfVersion().c_str()); } void AssetsManager::deleteVersion() { UserDefault::getInstance()->setStringForKey(keyOfVersion().c_str(), ""); } void AssetsManager::setDelegate(AssetsManagerDelegateProtocol *delegate) { _delegate = delegate; } void AssetsManager::setConnectionTimeout(unsigned int timeout) { _connectionTimeout = timeout; } unsigned int AssetsManager::getConnectionTimeout() { return _connectionTimeout; } AssetsManager* AssetsManager::create(const char* packageUrl, const char* versionFileUrl, const char* storagePath, ErrorCallback errorCallback, ProgressCallback progressCallback, SuccessCallback successCallback ) { class DelegateProtocolImpl : public AssetsManagerDelegateProtocol { public : DelegateProtocolImpl(ErrorCallback& aErrorCallback, ProgressCallback& aProgressCallback, SuccessCallback& aSuccessCallback) : errorCallback(aErrorCallback), progressCallback(aProgressCallback), successCallback(aSuccessCallback) {} virtual void onError(AssetsManager::ErrorCode errorCode) { errorCallback(int(errorCode)); } virtual void onProgress(int percent) { progressCallback(percent); } virtual void onSuccess() { successCallback(); } private : ErrorCallback errorCallback; ProgressCallback progressCallback; SuccessCallback successCallback; }; auto* manager = new (std::nothrow) AssetsManager(packageUrl,versionFileUrl,storagePath); auto* delegate = new (std::nothrow) DelegateProtocolImpl(errorCallback,progressCallback,successCallback); manager->setDelegate(delegate); manager->_shouldDeleteDelegateWhenExit = true; manager->autorelease(); return manager; } NS_CC_EXT_END