axmol/core/base/CCUserDefault.cpp

525 lines
13 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2022-04-25 19:15:46 +08:00
Copyright (c) 2017-2020 C4games Ltd.
Copyright (c) 2021-2022 Bytedance Inc.
2019-11-23 20:27:39 +08:00
https://axis-project.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.
****************************************************************************/
#if defined(_WIN32)
2021-12-25 10:04:45 +08:00
# include <io.h>
# include <direct.h>
#else
2021-12-25 10:04:45 +08:00
# include <unistd.h>
# include <errno.h>
#endif
#include <fcntl.h>
#include <sys/stat.h>
2020-10-02 19:52:32 +08:00
#include <inttypes.h>
#include <sstream>
2020-10-02 19:52:32 +08:00
#include "openssl/aes.h"
#include "openssl/modes.h"
#include "openssl/rc4.h"
#include "yasio/ibstream.hpp"
#include "yasio/obstream.hpp"
#include "yasio/detail/sz.hpp"
2019-11-23 20:27:39 +08:00
#include "base/CCUserDefault.h"
#include "platform/CCCommon.h"
#include "platform/CCFileUtils.h"
#include "pugixml/pugixml.hpp"
2019-11-23 20:27:39 +08:00
#include "base/base64.h"
#include "base/ccUtils.h"
#include "CCPosixFileStream.h"
#define USER_DEFAULT_PLAIN_MODE 0
#if !USER_DEFAULT_PLAIN_MODE
2021-12-25 10:04:45 +08:00
# define USER_DEFAULT_FILENAME "UserDefault.bin"
#else
2021-12-25 10:04:45 +08:00
# define USER_DEFAULT_FILENAME "UserDefault.xml"
#endif
typedef int32_t udflen_t;
2019-11-23 20:27:39 +08:00
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
/**
* implements of UserDefault
*/
UserDefault* UserDefault::_userDefault = nullptr;
2020-02-11 23:54:17 +08:00
2021-12-25 10:04:45 +08:00
static void ud_setkey(std::string& lhs, const cxx17::string_view& rhs)
{
static const size_t keyLen = 16;
2021-12-25 10:04:45 +08:00
if (!rhs.empty())
{
lhs.assign(rhs.data(), std::min(rhs.length(), keyLen));
if (lhs.size() < keyLen)
2021-12-25 10:04:45 +08:00
lhs.insert(lhs.end(), keyLen - lhs.size(), '\0'); // fill 0, if key insufficient
}
else
lhs.assign(keyLen, '\0');
}
2020-02-11 23:54:17 +08:00
2021-12-25 10:04:45 +08:00
static void ud_write_v_s(UserDefault* ud, yasio::obstream& obs, const cxx17::string_view value)
{
size_t value_offset = obs.length();
obs.write_v(value);
value_offset += (obs.length() - value_offset - value.length());
2021-12-25 10:04:45 +08:00
if (!value.empty())
ud->encrypt(obs.data() + value_offset, value.length(), AES_ENCRYPT);
}
void UserDefault::setEncryptEnabled(bool enabled, cxx17::string_view key, cxx17::string_view iv)
{
_encryptEnabled = enabled;
2021-12-25 10:04:45 +08:00
if (_encryptEnabled)
{
ud_setkey(_key, key);
ud_setkey(_iv, iv);
2020-02-11 23:54:17 +08:00
}
}
2020-11-15 13:11:53 +08:00
void UserDefault::encrypt(std::string& inout, int enc)
{
if (!inout.empty())
encrypt(&inout.front(), inout.size(), enc);
}
void UserDefault::encrypt(char* inout, size_t size, int enc)
{
2021-12-25 10:04:45 +08:00
if (size > 0)
{
AES_KEY aeskey;
AES_set_encrypt_key((const unsigned char*)_key.c_str(), 128, &aeskey);
2020-02-11 23:54:17 +08:00
2021-12-25 10:04:45 +08:00
unsigned char iv[16] = {0};
memcpy(iv, _iv.c_str(), std::min(sizeof(iv), _iv.size()));
int ignored_num = 0;
AES_cfb128_encrypt((unsigned char*)inout, (unsigned char*)inout, size, &aeskey, iv, &ignored_num, enc);
}
}
2020-02-11 23:54:17 +08:00
2019-11-23 20:27:39 +08:00
UserDefault::~UserDefault()
{
closeFileMapping();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
UserDefault::UserDefault() {}
2019-11-23 20:27:39 +08:00
void UserDefault::closeFileMapping()
{
_rwmmap.reset();
#if !USER_DEFAULT_PLAIN_MODE
2021-12-25 10:04:45 +08:00
if (_fd != -1)
{
posix_close(_fd);
_fd = -1;
}
#endif
}
2019-11-23 20:27:39 +08:00
bool UserDefault::getBoolForKey(const char* pKey)
{
2021-12-25 10:04:45 +08:00
return getBoolForKey(pKey, false);
2019-11-23 20:27:39 +08:00
}
bool UserDefault::getBoolForKey(const char* pKey, bool defaultValue)
{
auto pValue = getValueForKey(pKey);
if (pValue)
return *pValue == "true";
return defaultValue;
2019-11-23 20:27:39 +08:00
}
int UserDefault::getIntegerForKey(const char* pKey)
{
return getIntegerForKey(pKey, 0);
}
int UserDefault::getIntegerForKey(const char* pKey, int defaultValue)
{
auto pValue = getValueForKey(pKey);
if (pValue)
return atoi(pValue->c_str());
return defaultValue;
2019-11-23 20:27:39 +08:00
}
2020-10-02 19:52:32 +08:00
int64_t UserDefault::getLargeIntForKey(const char* key)
{
return getLargeIntForKey(key, 0);
}
int64_t UserDefault::getLargeIntForKey(const char* key, int64_t defaultValue)
{
auto pValue = getValueForKey(key);
if (pValue)
return std::stoll(pValue->c_str());
2020-10-02 19:52:32 +08:00
return defaultValue;
}
2019-11-23 20:27:39 +08:00
float UserDefault::getFloatForKey(const char* pKey)
{
return getFloatForKey(pKey, 0.0f);
}
float UserDefault::getFloatForKey(const char* pKey, float defaultValue)
{
return static_cast<float>(getDoubleForKey(pKey, defaultValue));
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
double UserDefault::getDoubleForKey(const char* pKey)
2019-11-23 20:27:39 +08:00
{
return getDoubleForKey(pKey, 0.0);
}
double UserDefault::getDoubleForKey(const char* pKey, double defaultValue)
{
auto pValue = getValueForKey(pKey);
if (pValue)
return utils::atof(pValue->c_str());
2019-11-23 20:27:39 +08:00
return defaultValue;
2019-11-23 20:27:39 +08:00
}
std::string_view UserDefault::getStringForKey(const char* pKey)
2019-11-23 20:27:39 +08:00
{
return getStringForKey(pKey, "");
}
std::string_view UserDefault::getStringForKey(const char* pKey, std::string_view defaultValue)
2019-11-23 20:27:39 +08:00
{
auto pValue = getValueForKey(pKey);
if (pValue)
return *pValue;
return defaultValue;
2019-11-23 20:27:39 +08:00
}
const std::string* UserDefault::getValueForKey(std::string_view key)
{
// do lazyInit at here to make sure _encryptEnabled works well,
lazyInit();
auto it = this->_values.find(key);
if (it != this->_values.end())
return &it->second;
return nullptr;
}
2019-11-23 20:27:39 +08:00
void UserDefault::setBoolForKey(const char* pKey, bool value)
{
// save bool value as string
setStringForKey(pKey, value ? "true" : "false");
2019-11-23 20:27:39 +08:00
}
void UserDefault::setIntegerForKey(const char* pKey, int value)
{
// check key
2021-12-25 10:04:45 +08:00
if (!pKey)
2019-11-23 20:27:39 +08:00
{
return;
}
// format the value
char tmp[50];
2020-10-02 19:52:32 +08:00
memset(tmp, 0, sizeof(tmp));
2019-11-23 20:27:39 +08:00
sprintf(tmp, "%d", value);
setStringForKey(pKey, tmp);
2019-11-23 20:27:39 +08:00
}
2020-10-02 19:52:32 +08:00
void UserDefault::setLargeIntForKey(const char* pKey, int64_t value)
2021-12-25 10:04:45 +08:00
{ // check key
2020-10-02 19:52:32 +08:00
if (!pKey)
{
return;
}
// format the value
char tmp[96];
memset(tmp, 0, sizeof(tmp));
sprintf(tmp, "%" PRId64, value);
setStringForKey(pKey, tmp);
}
2019-11-23 20:27:39 +08:00
void UserDefault::setFloatForKey(const char* pKey, float value)
{
setDoubleForKey(pKey, value);
}
void UserDefault::setDoubleForKey(const char* pKey, double value)
{
// check key
2021-12-25 10:04:45 +08:00
if (!pKey)
2019-11-23 20:27:39 +08:00
{
return;
}
// format the value
char tmp[50];
memset(tmp, 0, 50);
sprintf(tmp, "%f", value);
setStringForKey(pKey, tmp);
2019-11-23 20:27:39 +08:00
}
void UserDefault::setStringForKey(const char* pKey, std::string_view value)
2019-11-23 20:27:39 +08:00
{
// ignore empty key
2021-12-25 10:04:45 +08:00
if (!pKey || !*pKey)
2019-11-23 20:27:39 +08:00
{
return;
}
setValueForKey(pKey, value);
2020-02-06 21:54:45 +08:00
#if !USER_DEFAULT_PLAIN_MODE
2021-12-25 10:04:45 +08:00
if (_rwmmap)
{
yasio::obstream obs;
if (_encryptEnabled)
{
2020-11-15 13:08:21 +08:00
ud_write_v_s(this, obs, pKey);
ud_write_v_s(this, obs, value);
}
2021-12-25 10:04:45 +08:00
else
{
obs.write_v(pKey);
obs.write_v(value);
}
if ((_realSize + obs.length() + sizeof(udflen_t)) < _curMapSize)
2021-12-25 10:04:45 +08:00
{ // fast append entity without flush
// increase entities count
2020-11-25 19:05:31 +08:00
yasio::obstream::swrite(_rwmmap->data(), 1 + yasio::ibstream::sread<udflen_t>(_rwmmap->data()));
// append entity
::memcpy(_rwmmap->data() + sizeof(udflen_t) + _realSize, obs.data(), obs.length());
2021-10-09 13:48:56 +08:00
_realSize += static_cast<int>(obs.length());
}
2021-12-25 10:04:45 +08:00
else
{
flush();
}
}
#else
flush();
#endif
}
2019-11-23 20:27:39 +08:00
void UserDefault::setValueForKey(std::string_view key, std::string_view value)
{
// do lazyInit at here to make sure _encryptEnabled works well
lazyInit();
updateValueForKey(key, value);
}
void UserDefault::updateValueForKey(std::string_view key, std::string_view value)
{
auto it = _values.find(key);
if (it != _values.end())
it->second = value;
else
_values.emplace(key, value);
}
2019-11-23 20:27:39 +08:00
UserDefault* UserDefault::getInstance()
{
2021-12-25 10:04:45 +08:00
if (_userDefault)
return _userDefault;
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
return (_userDefault = new UserDefault());
2019-11-23 20:27:39 +08:00
}
void UserDefault::destroyInstance()
{
CC_SAFE_DELETE(_userDefault);
}
2021-12-25 10:04:45 +08:00
void UserDefault::setDelegate(UserDefault* delegate)
2019-11-23 20:27:39 +08:00
{
if (_userDefault)
delete _userDefault;
_userDefault = delegate;
}
void UserDefault::lazyInit()
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
if (_initialized)
return;
#if !USER_DEFAULT_PLAIN_MODE
_filePath = FileUtils::getInstance()->getNativeWritableAbsolutePath() + USER_DEFAULT_FILENAME;
// construct file mapping
_fd = posix_open(_filePath.c_str(), O_OVERLAP_FLAGS);
2021-12-25 10:04:45 +08:00
if (_fd == -1)
{
log("[Warnning] UserDefault::init open storage file '%s' failed!", _filePath.c_str());
return;
}
2019-11-23 20:27:39 +08:00
int filesize = static_cast<int>(posix_lseek64(_fd, 0, SEEK_END));
posix_lseek64(_fd, 0, SEEK_SET);
2020-02-11 23:54:17 +08:00
2021-12-25 10:04:45 +08:00
if (filesize < _curMapSize)
{ // construct a empty file mapping
posix_fsetsize(_fd, _curMapSize);
_rwmmap = std::make_shared<mio::mmap_sink>(posix_fd2fh(_fd), 0, _curMapSize);
}
2021-12-25 10:04:45 +08:00
else
{ /// load to memory _values
_rwmmap = std::make_shared<mio::mmap_sink>(posix_fd2fh(_fd), 0, mio::map_entire_file);
2021-12-25 10:04:45 +08:00
if (_rwmmap->is_mapped())
{ // no error
yasio::ibstream_view ibs(_rwmmap->data(), _rwmmap->length());
2021-12-25 10:04:45 +08:00
if (ibs.length() > 0)
{
// read count of keyvals.
2020-11-25 19:05:31 +08:00
int count = ibs.read<int>();
2021-12-25 10:04:45 +08:00
for (auto i = 0; i < count; ++i)
{
std::string key(ibs.read_v());
std::string value(ibs.read_v());
if (_encryptEnabled)
{
this->encrypt(key, AES_DECRYPT);
this->encrypt(value, AES_DECRYPT);
}
updateValueForKey(key, value);
}
2020-11-16 13:34:53 +08:00
_realSize = static_cast<int>(ibs.seek(0, SEEK_CUR) - sizeof(udflen_t));
}
}
2021-12-25 10:04:45 +08:00
else
{
closeFileMapping();
::remove(_filePath.c_str());
2021-12-25 10:04:45 +08:00
log("[Warnning] UserDefault::init map file '%s' failed, we can't save data persisit this time, next time "
"we will retry!",
_filePath.c_str());
}
}
#else
pugi::xml_document doc;
_filePath = FileUtils::getInstance()->getWritablePath() + USER_DEFAULT_FILENAME;
if (FileUtils::getInstance()->isFileExist(_filePath))
{
2021-12-25 10:04:45 +08:00
auto data = FileUtils::getInstance()->getDataFromFile(_filePath);
pugi::xml_parse_result ret = doc.load_buffer_inplace(data.getBytes(), data.getSize());
2021-12-25 10:04:45 +08:00
if (ret)
{
for (auto& elem : doc.document_element())
updateValueForKey(elem.name(), elem.text().as_string());
}
2021-12-25 10:04:45 +08:00
else
{
log("UserDefault::init load xml file: %s failed, %s", _filePath.c_str(), ret.description());
}
}
#endif
2019-11-23 20:27:39 +08:00
_initialized = true;
2020-02-11 23:54:17 +08:00
}
2020-02-06 21:54:45 +08:00
2020-02-11 23:54:17 +08:00
void UserDefault::flush()
{
#if !USER_DEFAULT_PLAIN_MODE
2021-12-25 10:04:45 +08:00
if (_rwmmap)
{
yasio::obstream obs;
2020-11-25 19:05:31 +08:00
obs.write<int>(static_cast<int>(this->_values.size()));
2021-12-25 10:04:45 +08:00
for (auto& item : this->_values)
{
if (_encryptEnabled)
{
2020-11-15 13:08:21 +08:00
ud_write_v_s(this, obs, item.first);
ud_write_v_s(this, obs, item.second);
}
2021-12-25 10:04:45 +08:00
else
{
obs.write_v(item.first);
obs.write_v(item.second);
}
}
2020-02-11 23:54:17 +08:00
std::error_code error;
2021-12-25 10:04:45 +08:00
if (obs.length() > _curMapSize)
{
_rwmmap->unmap();
2021-12-25 10:04:45 +08:00
_curMapSize <<= 1; // X2
posix_fsetsize(_fd, _curMapSize);
_rwmmap->map(posix_fd2fh(_fd), 0, _curMapSize, error);
}
2020-02-11 23:54:17 +08:00
if (!error && _rwmmap->is_mapped())
2021-12-25 10:04:45 +08:00
{ // mapping status is good
::memcpy(_rwmmap->data(), obs.data(), obs.length());
2020-11-16 13:34:53 +08:00
_realSize = static_cast<int>(obs.length() - sizeof(udflen_t));
}
2021-12-25 10:04:45 +08:00
else
{
// close file mapping and do a simple workaround fix to don't do persist later at this time
closeFileMapping();
::remove(_filePath.c_str());
}
2020-02-11 23:54:17 +08:00
}
#else
pugi::xml_document doc;
doc.load_string(R"(<?xml version="1.0" ?>
<r />)");
auto r = doc.document_element();
2021-12-25 10:04:45 +08:00
for (auto& kv : _values)
r.append_child(kv.first.c_str()).append_child(pugi::xml_node_type::node_pcdata).set_value(kv.second.c_str());
std::stringstream ss;
doc.save(ss, " ");
FileUtils::getInstance()->writeStringToFile(ss.str(), _filePath);
#endif
}
2020-02-11 23:54:17 +08:00
void UserDefault::deleteValueForKey(const char* key)
{
2021-12-25 10:04:45 +08:00
if (this->_values.erase(key) > 0)
flush();
2019-11-23 20:27:39 +08:00
}
NS_AX_END