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 24 namespace OHOS { 25 namespace MiscServices { 26 #define TIME_SERVICE_NAME "TimeService" 27 #define TIME_API __attribute__((visibility("default"))) 28 29 struct TimerPara { 30 int timerType; 31 int64_t windowLength; 32 uint64_t interval; 33 int flag; 34 }; 35 36 enum TimeModule { 37 TIME_MODULE_SERVICE_ID = 0x04, 38 }; 39 // time error offset, used only in this file. 40 constexpr ErrCode TIME_ERR_OFFSET = ErrCodeOffset(SUBSYS_SMALLSERVICES, TIME_MODULE_SERVICE_ID); 41 42 enum 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 }; 57 } // namespace MiscServices 58 } // namespace OHOS 59 #endif // SERVICES_INCLUDE_TIME_COMMON_H