• 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 #include <string>
21 
22 #include "errors.h"
23 #include "time_hilog.h"
24 
25 namespace OHOS {
26 namespace MiscServices {
27 #define TIME_SERVICE_NAME "TimeService"
28 
29 struct TimerPara {
30     std::string name;
31     int timerType;
32     int64_t windowLength;
33     uint64_t interval;
34     bool disposable;
35     bool autoRestore;
36     int flag;
37 };
38 
39 enum TimeModule {
40     TIME_MODULE_SERVICE_ID = 0x04,
41 };
42 // time error offset, used only in this file.
43 constexpr ErrCode TIME_ERR_OFFSET = ErrCodeOffset(SUBSYS_SMALLSERVICES, TIME_MODULE_SERVICE_ID);
44 
45 enum TimeError {
46     E_TIME_OK = 0,
47     // 77856768
48     E_TIME_SA_DIED = TIME_ERR_OFFSET,
49     E_TIME_READ_PARCEL_ERROR,
50     E_TIME_WRITE_PARCEL_ERROR,
51     E_TIME_PUBLISH_FAIL,
52     E_TIME_TRANSACT_ERROR,
53     E_TIME_DEAL_FAILED,
54     E_TIME_PARAMETERS_INVALID,
55     E_TIME_SET_RTC_FAILED,
56     E_TIME_NOT_FOUND,
57     E_TIME_NULLPTR,
58     E_TIME_NO_PERMISSION,
59     E_TIME_NOT_SYSTEM_APP,
60     E_TIME_NO_TIMER_ADJUST,
61     E_TIME_NTP_UPDATE_FAILED,
62     E_TIME_ACCOUNT_NOT_MATCH,
63     E_TIME_ACCOUNT_ERROR,
64     E_TIME_NTP_NOT_UPDATE,
65     E_TIME_AUTO_RESTORE_ERROR,
66 };
67 
68 enum DatabaseType {
69     NOT_STORE = 0,
70     STORE,
71 };
72 
73 class TimeUtils {
74 public:
75     static int32_t GetWallTimeMs(int64_t &time);
76     static int32_t GetBootTimeMs(int64_t &time);
77     static int32_t GetBootTimeNs(int64_t &time);
78     static bool GetTimeByClockId(clockid_t clockId, struct timespec &tv);
79 };
80 } // namespace MiscServices
81 } // namespace OHOS
82 #endif // SERVICES_INCLUDE_TIME_COMMON_H