• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_wreapper.h"
23 
24 namespace OHOS {
25 namespace MiscServices {
26 #define TIME_SERVICE_NAME "TimeService"
27 
28 struct TimerPara {
29     int timerType;
30     int64_t windowLength;
31     uint64_t interval;
32     int flag;
33 };
34 
35 enum TimeModule {
36     TIME_MODULE_SERVICE_ID = 0x04,
37 };
38 // time error offset, used only in this file.
39 constexpr ErrCode TIME_ERR_OFFSET = ErrCodeOffset(SUBSYS_SMALLSERVICES, TIME_MODULE_SERVICE_ID);
40 
41 enum TimeError {
42     E_TIME_OK = 0,
43     E_TIME_SA_DIED = TIME_ERR_OFFSET,
44     E_TIME_READ_PARCEL_ERROR,
45     E_TIME_WRITE_PARCEL_ERROR,
46     E_TIME_PUBLISH_FAIL,
47     E_TIME_TRANSACT_ERROR,
48     E_TIME_DEAL_FAILED,
49     E_TIME_PARAMETERS_INVALID,
50     E_TIME_SET_RTC_FAILED,
51     E_TIME_NOT_FOUND,
52     E_TIME_NULLPTR,
53     E_TIME_NO_PERMISSION,
54     E_TIME_NOT_SYSTEM_APP,
55 };
56 } // namespace MiscServices
57 } // namespace OHOS
58 #endif // SERVICES_INCLUDE_TIME_COMMON_H