1/* 2 * Copyright (C) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16#ifndef SERVICES_INCLUDE_TIME_COMMON_H 17#define SERVICES_INCLUDE_TIME_COMMON_H 18 19#include <stdint.h> 20 21#include "errors.h" 22#include "time_hilog.h" 23 24namespace OHOS { 25namespace MiscServices { 26#define TIME_SERVICE_NAME "TimeService" 27 28struct TimerPara { 29 int timerType; 30 int64_t windowLength; 31 uint64_t interval; 32 bool disposable; 33 int flag; 34}; 35 36enum TimeModule { 37 TIME_MODULE_SERVICE_ID = 0x04, 38}; 39// time error offset, used only in this file. 40constexpr ErrCode TIME_ERR_OFFSET = ErrCodeOffset(SUBSYS_SMALLSERVICES, TIME_MODULE_SERVICE_ID); 41 42enum TimeError { 43 E_TIME_OK = 0, 44 E_TIME_SA_DIED = TIME_ERR_OFFSET, 45 E_TIME_READ_PARCEL_ERROR, 46 E_TIME_WRITE_PARCEL_ERROR, 47 E_TIME_PUBLISH_FAIL, 48 E_TIME_TRANSACT_ERROR, 49 E_TIME_DEAL_FAILED, 50 E_TIME_PARAMETERS_INVALID, 51 E_TIME_SET_RTC_FAILED, 52 E_TIME_NOT_FOUND, 53 E_TIME_NULLPTR, 54 E_TIME_NO_PERMISSION, 55 E_TIME_NOT_SYSTEM_APP, 56 E_TIME_NO_TIMER_ADJUST, 57 E_TIME_NTP_UPDATE_FAILED, 58 E_TIME_NTP_NOT_UPDATE, 59 E_TIME_ACCOUNT_NOT_MATCH, 60 E_TIME_ACCOUNT_ERROR, 61}; 62 63enum DatabaseType { 64 NOT_STORE = 0, 65 STORE, 66}; 67} // namespace MiscServices 68} // namespace OHOS 69#endif // SERVICES_INCLUDE_TIME_COMMON_H