mirror of
https://github.com/openharmony/ace_ace_engine.git
synced 2026-07-01 21:14:03 -04:00
103 lines
3.4 KiB
C++
103 lines
3.4 KiB
C++
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef FOUNDATION_ACE_FRAMEWORKS_BASE_JSON_JSON_UTIL_H
|
|
#define FOUNDATION_ACE_FRAMEWORKS_BASE_JSON_JSON_UTIL_H
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "base/utils/macros.h"
|
|
|
|
struct cJSON;
|
|
|
|
namespace OHOS::Ace {
|
|
|
|
using JsonObject = cJSON;
|
|
|
|
class ACE_EXPORT JsonValue final {
|
|
public:
|
|
JsonValue() = default;
|
|
explicit JsonValue(JsonObject* object);
|
|
JsonValue(JsonObject* object, bool isRoot);
|
|
~JsonValue();
|
|
|
|
// check functions
|
|
bool IsBool() const;
|
|
bool IsNumber() const;
|
|
bool IsString() const;
|
|
bool IsArray() const;
|
|
bool IsObject() const;
|
|
bool IsValid() const;
|
|
bool IsNull() const;
|
|
bool Contains(const std::string& key) const;
|
|
|
|
// get functions
|
|
bool GetBool() const;
|
|
bool GetBool(const std::string& key, bool defaultValue) const;
|
|
int32_t GetInt() const;
|
|
int32_t GetInt(const std::string& key, int32_t defaultVal = 0) const;
|
|
uint32_t GetUInt() const;
|
|
uint32_t GetUInt(const std::string& key, uint32_t defaultVal = 0) const;
|
|
double GetDouble() const;
|
|
double GetDouble(const std::string& key, double defaultVal = 0.0) const;
|
|
std::string GetString() const;
|
|
std::string GetString(const std::string& key, const std::string& defaultVal = "") const;
|
|
|
|
std::unique_ptr<JsonValue> GetNext() const;
|
|
std::unique_ptr<JsonValue> GetChild() const;
|
|
std::string GetKey() const;
|
|
std::unique_ptr<JsonValue> GetValue(const std::string& key) const;
|
|
std::unique_ptr<JsonValue> GetObject(const std::string& key) const;
|
|
int32_t GetArraySize() const;
|
|
std::unique_ptr<JsonValue> GetArrayItem(int32_t index) const;
|
|
const JsonObject* GetJsonObject() const;
|
|
|
|
// put functions
|
|
bool Put(const char* key, const char* value);
|
|
bool Put(const char* key, size_t value);
|
|
bool Put(const char* key, int32_t value);
|
|
bool Put(const char* key, double value);
|
|
bool Put(const char* key, bool value);
|
|
bool Put(const char* key, const std::unique_ptr<JsonValue>& value);
|
|
bool Put(const std::unique_ptr<JsonValue>& value);
|
|
|
|
// replace functions
|
|
bool Replace(const char* key, const char* value);
|
|
bool Replace(const char* key, int32_t value);
|
|
bool Replace(const char* key, const std::unique_ptr<JsonValue>& value);
|
|
|
|
// serialize
|
|
std::string ToString();
|
|
|
|
private:
|
|
JsonObject* object_ = nullptr;
|
|
bool isRoot_ = false;
|
|
};
|
|
|
|
class ACE_EXPORT JsonUtil final {
|
|
public:
|
|
JsonUtil() = delete;
|
|
~JsonUtil() = delete;
|
|
static std::unique_ptr<JsonValue> ParseJsonData(const char* data, const char** parseEnd = nullptr);
|
|
static std::unique_ptr<JsonValue> ParseJsonString(const std::string& content, const char** parseEnd = nullptr);
|
|
static std::unique_ptr<JsonValue> Create(bool isRoot);
|
|
static std::unique_ptr<JsonValue> CreateArray(bool isRoot);
|
|
};
|
|
|
|
} // namespace OHOS::Ace
|
|
|
|
#endif // FOUNDATION_ACE_FRAMEWORKS_BASE_JSON_JSON_UTIL_H
|