axmol/core/network/CCDownloader.cpp

182 lines
5.6 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2015-2016 cocos2d-x.org
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-07-06 21:15:02 +08:00
Copyright (c) 2021 Bytedance Inc.
2019-11-23 20:27:39 +08:00
2022-01-04 12:36:20 +08:00
https://adxeproject.github.io/
2019-11-23 20:27:39 +08:00
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 "network/CCDownloader.h"
#include "network/CCDownloader-curl.h"
#define DownloaderImpl DownloaderCURL
2021-12-25 10:04:45 +08:00
namespace cocos2d
{
namespace network
{
2021-12-25 10:04:45 +08:00
DownloadTask::DownloadTask()
{
DLLOG("Construct DownloadTask %p", this);
}
DownloadTask::DownloadTask(std::string_view srcUrl, std::string_view identifier)
2021-12-25 10:04:45 +08:00
{
this->requestURL = srcUrl;
this->identifier = identifier;
2021-07-04 16:40:34 +08:00
this->background = false;
}
DownloadTask::DownloadTask(std::string_view srcUrl,
std::string_view storagePath,
std::string_view checksum,
std::string_view identifier,
2021-12-25 10:04:45 +08:00
bool background)
{
this->requestURL = srcUrl;
this->storagePath = storagePath;
this->checksum = checksum;
this->identifier = identifier;
2021-07-04 16:40:34 +08:00
this->background = background;
}
2021-12-25 10:04:45 +08:00
DownloadTask::~DownloadTask()
{
DLLOG("Destruct DownloadTask %p", this);
}
2021-12-25 10:04:45 +08:00
void DownloadTask::cancel()
{
if (_coTask)
_coTask->cancel();
}
2019-11-23 20:27:39 +08:00
////////////////////////////////////////////////////////////////////////////////
// Implement Downloader
Downloader::Downloader() : Downloader(DownloaderHints{6, 45, ".tmp"}) {}
2021-12-25 10:04:45 +08:00
Downloader::Downloader(const DownloaderHints& hints)
{
DLLOG("Construct Downloader %p", this);
_impl.reset(new DownloaderImpl(hints));
_impl->onTaskProgress = [this](const DownloadTask& task,
2021-12-25 10:04:45 +08:00
std::function<int64_t(void* buffer, int64_t len)>& /*transferDataToBuffer*/) {
if (onTaskProgress)
{
onTaskProgress(task);
}
};
_impl->onTaskFinish = [this](const DownloadTask& task, int errorCode, int errorCodeInternal,
std::string_view errorStr, std::vector<unsigned char>& data) {
2021-12-25 10:04:45 +08:00
if (DownloadTask::ERROR_NO_ERROR != errorCode)
{
if (onTaskError)
{
onTaskError(task, errorCode, errorCodeInternal, errorStr);
2019-11-23 20:27:39 +08:00
}
return;
}
2019-11-23 20:27:39 +08:00
// success callback
2021-12-25 10:04:45 +08:00
if (task.storagePath.length())
{
if (onFileTaskSuccess)
{
onFileTaskSuccess(task);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
}
else
{
// data task
2021-12-25 10:04:45 +08:00
if (onDataTaskSuccess)
{
onDataTaskSuccess(task, data);
2019-11-23 20:27:39 +08:00
}
}
};
}
2021-12-25 10:04:45 +08:00
Downloader::~Downloader()
{
DLLOG("Destruct Downloader %p", this);
}
std::shared_ptr<DownloadTask> Downloader::createDownloadDataTask(std::string_view srcUrl,
std::string_view identifier /* = ""*/)
2021-12-25 10:04:45 +08:00
{
auto task = std::make_shared<DownloadTask>(srcUrl, identifier);
2021-12-25 10:04:45 +08:00
do
{
if (srcUrl.empty())
{
if (onTaskError)
{
onTaskError(*task, DownloadTask::ERROR_INVALID_PARAMS, 0, "URL or is empty.");
2019-11-23 20:27:39 +08:00
}
task.reset();
break;
}
2021-07-06 21:15:02 +08:00
_impl->startTask(task);
} while (0);
return task;
}
std::shared_ptr<DownloadTask> Downloader::createDownloadFileTask(std::string_view srcUrl,
std::string_view storagePath,
std::string_view identifier,
std::string_view md5checksum,
2021-12-25 10:04:45 +08:00
bool background)
{
2021-07-04 16:40:34 +08:00
auto task = std::make_shared<DownloadTask>(srcUrl, storagePath, md5checksum, identifier, background);
2021-12-25 10:04:45 +08:00
do
{
if (srcUrl.empty() || storagePath.empty())
{
if (onTaskError)
{
onTaskError(*task, DownloadTask::ERROR_INVALID_PARAMS, 0, "URL or storage path is empty.");
2019-11-23 20:27:39 +08:00
}
task.reset();
break;
}
2021-07-06 21:15:02 +08:00
_impl->startTask(task);
} while (0);
2019-11-23 20:27:39 +08:00
return task;
}
2019-11-23 20:27:39 +08:00
// std::string Downloader::getFileNameFromUrl(std::string_view srcUrl)
2019-11-23 20:27:39 +08:00
//{
// // Find file name and file extension
// std::string filename;
// unsigned int32_t found = srcUrl.find_last_of("/\\");
2019-11-23 20:27:39 +08:00
// if (found != std::string::npos)
// filename = srcUrl.substr(found+1);
// return filename;
//}
2021-12-25 10:04:45 +08:00
} // namespace network
} // namespace cocos2d