* Copyright (C) 2024 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 TIMER_CJSON_HELPER_H
#define TIMER_CJSON_HELPER_H
#include <fstream>
#include <vector>
#include <string>
#include <map>
#include <cJSON.h>
#include "timer_manager_interface.h"
#include "timer_db_info.h"
namespace OHOS {
namespace MiscServices {
constexpr const char *HOLD_ON_REBOOT = "hold_on_reboot";
constexpr const char *DROP_ON_REBOOT = "drop_on_reboot";
class CjsonHelper {
public:
std::string QueryWant(std::string tableName, uint64_t timerId);
cJSON* QueryTable(std::string tableName, cJSON** db);
std::vector<std::tuple<std::string, std::string, int64_t>> QueryAutoReboot();
bool Insert(std::string tableName, std::shared_ptr<TimerEntry> timerInfo);
bool UpdateTrigger(std::string tableName, int64_t timerId, int64_t triggerTime);
bool UpdateTriggerGroup(std::string tableName, std::vector<std::pair<uint64_t, uint64_t>> timerVec);
bool UpdateState(std::string tableName, int64_t timerId);
bool Delete(std::string tableName, int64_t timerId);
bool ClearInvaildDataInHoldOnReboot();
void Clear(std::string tableName);
bool StrToI64(std::string str, int64_t& value);
bool IsNumber(cJSON* item);
bool IsString(cJSON* item);
static CjsonHelper &GetInstance();
bool LoadAndParseJsonFile(const std::string& tableName, cJSON* &db, cJSON* &table);
TimerDbSizeInfo GetDatabaseSizeDetail();
int32_t GetTotalRecordCount();
std::vector<TimerDbTopAppInfo> GetTopApps(int topN);
private:
CjsonHelper();
void SaveJson(cJSON* data);
void CountTimersFromTable(const std::string &tableName,
std::map<std::pair<std::string, std::string>, int32_t> &countMap);
static std::mutex mutex_;
};
}
}
#endif