1c5e268c6Sopenharmony_ci/*
2c5e268c6Sopenharmony_ci * Copyright (c) 2023 Huawei Device Co., Ltd.
3c5e268c6Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
4c5e268c6Sopenharmony_ci * you may not use this file except in compliance with the License.
5c5e268c6Sopenharmony_ci * You may obtain a copy of the License at
6c5e268c6Sopenharmony_ci *
7c5e268c6Sopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
8c5e268c6Sopenharmony_ci *
9c5e268c6Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software
10c5e268c6Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
11c5e268c6Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12c5e268c6Sopenharmony_ci * See the License for the specific language governing permissions and
13c5e268c6Sopenharmony_ci * limitations under the License.
14c5e268c6Sopenharmony_ci */
15c5e268c6Sopenharmony_ci
16c5e268c6Sopenharmony_ci /**
17c5e268c6Sopenharmony_ci * @addtogroup HdiLpfenceGeofence
18c5e268c6Sopenharmony_ci * @{
19c5e268c6Sopenharmony_ci *
20c5e268c6Sopenharmony_ci * @brief Provides geofence APIs for the low-power fence service.
21c5e268c6Sopenharmony_ci *
22c5e268c6Sopenharmony_ci * You can use the APIs to add circle or polygon geofences, remove geofences, obtain relationship between a device and a geofence, and obtain the geographical location of a device. The geofence module can work continuously even when the AP is in sleep mode.
23c5e268c6Sopenharmony_ci * The geofencing feature is used to determine whether a device reaches a specific geographical location, so that subsequent services, such as switching to the appropriate access card and pushing customized messages, can be implemented.
24c5e268c6Sopenharmony_ci *
25c5e268c6Sopenharmony_ci * @since 4.0
26c5e268c6Sopenharmony_ci * @version 1.0
27c5e268c6Sopenharmony_ci */
28c5e268c6Sopenharmony_ci
29c5e268c6Sopenharmony_ci/**
30c5e268c6Sopenharmony_ci * @file IGeofenceIntf.idl
31c5e268c6Sopenharmony_ci *
32c5e268c6Sopenharmony_ci * @brief Declares the APIs provided by the geofence module. These APIs can be used to add multiple types of geofences, remove geofences, obtain the relationship between a geofence and a device, obtain device geographical location, and send base station offline database data.
33c5e268c6Sopenharmony_ci *
34c5e268c6Sopenharmony_ci * @since 4.0
35c5e268c6Sopenharmony_ci * @version 1.0
36c5e268c6Sopenharmony_ci */
37c5e268c6Sopenharmony_ci
38c5e268c6Sopenharmony_ci/**
39c5e268c6Sopenharmony_ci * @brief Declares the path of the geofence module interface package.
40c5e268c6Sopenharmony_ci *
41c5e268c6Sopenharmony_ci * @since 4.0
42c5e268c6Sopenharmony_ci */
43c5e268c6Sopenharmony_cipackage ohos.hdi.location.lpfence.geofence.v1_0;
44c5e268c6Sopenharmony_ci
45c5e268c6Sopenharmony_ci/**
46c5e268c6Sopenharmony_ci * @brief Imports data types of the geofence module.
47c5e268c6Sopenharmony_ci *
48c5e268c6Sopenharmony_ci * @since 4.0
49c5e268c6Sopenharmony_ci */
50c5e268c6Sopenharmony_ciimport ohos.hdi.location.lpfence.geofence.v1_0.GeofenceTypes;
51c5e268c6Sopenharmony_ci
52c5e268c6Sopenharmony_ci/**
53c5e268c6Sopenharmony_ci * @brief Imports callback definitions of the geofence module.
54c5e268c6Sopenharmony_ci *
55c5e268c6Sopenharmony_ci * @since 4.0
56c5e268c6Sopenharmony_ci */
57c5e268c6Sopenharmony_ciimport ohos.hdi.location.lpfence.geofence.v1_0.IGeofenceCallback;
58c5e268c6Sopenharmony_ci
59c5e268c6Sopenharmony_ci/**
60c5e268c6Sopenharmony_ci * @brief Provides APIs for basic geofence operations.
61c5e268c6Sopenharmony_ci *
62c5e268c6Sopenharmony_ci * You can use the APIs to register or unregister a callback, add circle or polygon geofences, remove geofences, obtain the relationship between a geofence and a device, obtain device geographical location, and send offline database data of base stations.
63c5e268c6Sopenharmony_ci */
64c5e268c6Sopenharmony_ciinterface IGeofenceIntf {
65c5e268c6Sopenharmony_ci    /**
66c5e268c6Sopenharmony_ci     * @brief Registers a callback.
67c5e268c6Sopenharmony_ci     *
68c5e268c6Sopenharmony_ci     * Before enabling the geofencing feature, you need to register the callback to report the geofence status when the relationship between a geofence and a device changes.
69c5e268c6Sopenharmony_ci     *
70c5e268c6Sopenharmony_ci     * @param callbackObj Indicates the callback to register, which needs to be registered only once. For details, see {@link IGeofenceCallback}.
71c5e268c6Sopenharmony_ci     *
72c5e268c6Sopenharmony_ci     * @return Returns <b>0</b> if the operation is successful.
73c5e268c6Sopenharmony_ci     * @return Returns a negative value if the operation fails.
74c5e268c6Sopenharmony_ci     *
75c5e268c6Sopenharmony_ci     * @since 4.0
76c5e268c6Sopenharmony_ci     * @version 1.0
77c5e268c6Sopenharmony_ci     */
78c5e268c6Sopenharmony_ci    RegisterGeofenceCallback([in] IGeofenceCallback callbackObj);
79c5e268c6Sopenharmony_ci
80c5e268c6Sopenharmony_ci    /**
81c5e268c6Sopenharmony_ci     * @brief Unregisters a callback.
82c5e268c6Sopenharmony_ci     *
83c5e268c6Sopenharmony_ci     * When the geofencing feature is no longer required or the registered callback needs to be changed, you need to unregister the callback.
84c5e268c6Sopenharmony_ci     *
85c5e268c6Sopenharmony_ci     * @param callbackObj Indicates the callback to unregister, which needs to be unregistered only once. For details, see {@link IGeofenceCallback}.
86c5e268c6Sopenharmony_ci     *
87c5e268c6Sopenharmony_ci     * @return Returns <b>0</b> if the operation is successful.
88c5e268c6Sopenharmony_ci     * @return Returns a negative value if the operation fails.
89c5e268c6Sopenharmony_ci     *
90c5e268c6Sopenharmony_ci     * @since 4.0
91c5e268c6Sopenharmony_ci     * @version 1.0
92c5e268c6Sopenharmony_ci     */
93c5e268c6Sopenharmony_ci    UnregisterGeofenceCallback([in] IGeofenceCallback callbackObj);
94c5e268c6Sopenharmony_ci
95c5e268c6Sopenharmony_ci    /**
96c5e268c6Sopenharmony_ci     * @brief Adds circle geofences.
97c5e268c6Sopenharmony_ci     *
98c5e268c6Sopenharmony_ci     * Multiple circle geofences can be added at a time.
99c5e268c6Sopenharmony_ci     *
100c5e268c6Sopenharmony_ci     * @param circleGeofences Indicates the circle geofences to add. For details, see {@link GeofenceCircleRequest}.
101c5e268c6Sopenharmony_ci     *
102c5e268c6Sopenharmony_ci     * @return Returns <b>0</b> if the operation is successful.
103c5e268c6Sopenharmony_ci     * @return Returns a negative value if the operation fails.
104c5e268c6Sopenharmony_ci     *
105c5e268c6Sopenharmony_ci     * @since 4.0
106c5e268c6Sopenharmony_ci     * @version 1.0
107c5e268c6Sopenharmony_ci     */
108c5e268c6Sopenharmony_ci    AddCircleGeofences([in] struct GeofenceCircleRequest[] circleGeofences);
109c5e268c6Sopenharmony_ci
110c5e268c6Sopenharmony_ci    /**
111c5e268c6Sopenharmony_ci     * @brief Adds polygon geofences.
112c5e268c6Sopenharmony_ci     *
113c5e268c6Sopenharmony_ci     * Multiple polygon geofences can be added at a time.
114c5e268c6Sopenharmony_ci     *
115c5e268c6Sopenharmony_ci     * @param polygonGeofences Indicates the polygon geofences to add. For details, see {@link GeofencePolygonRequest}.
116c5e268c6Sopenharmony_ci     *
117c5e268c6Sopenharmony_ci     * @return Returns <b>0</b> if the operation is successful.
118c5e268c6Sopenharmony_ci     * @return Returns a negative value if the operation fails.
119c5e268c6Sopenharmony_ci     *
120c5e268c6Sopenharmony_ci     * @since 4.0
121c5e268c6Sopenharmony_ci     * @version 1.0
122c5e268c6Sopenharmony_ci     */
123c5e268c6Sopenharmony_ci    AddPolygonGeofences([in] struct GeofencePolygonRequest[] polygonGeofences);
124c5e268c6Sopenharmony_ci
125c5e268c6Sopenharmony_ci    /**
126c5e268c6Sopenharmony_ci     * @brief Removes geofences.
127c5e268c6Sopenharmony_ci     *
128c5e268c6Sopenharmony_ci     * Multiple geofences can be removed at a time.
129c5e268c6Sopenharmony_ci     *
130c5e268c6Sopenharmony_ci     * @param geofenceId Indicates the IDs of the geofences to remove. For details, see {@link GeofenceCircleRequest} and {@link GeofencePolygonRequest}.
131c5e268c6Sopenharmony_ci     *
132c5e268c6Sopenharmony_ci     * @return Returns <b>0</b> if the operation is successful.
133c5e268c6Sopenharmony_ci     * @return Returns a negative value if the operation fails.
134c5e268c6Sopenharmony_ci     *
135c5e268c6Sopenharmony_ci     * @since 4.0
136c5e268c6Sopenharmony_ci     * @version 1.0
137c5e268c6Sopenharmony_ci     */
138c5e268c6Sopenharmony_ci    RemoveGeofences([in] int[] geofenceId);
139c5e268c6Sopenharmony_ci
140c5e268c6Sopenharmony_ci    /**
141c5e268c6Sopenharmony_ci     * @brief Obtains the relationship between a geofence and this device.
142c5e268c6Sopenharmony_ci     *
143c5e268c6Sopenharmony_ci     * For details about the relationships between a device and a geofence, see {@link GeofenceTransition}.
144c5e268c6Sopenharmony_ci     *
145c5e268c6Sopenharmony_ci     * @param geofenceId Indicates the ID of the geofence.
146c5e268c6Sopenharmony_ci     *
147c5e268c6Sopenharmony_ci     * @return Returns the relationship information obtained if the operation is successful. For details, see {@link GeofenceTransition}.
148c5e268c6Sopenharmony_ci     * @return Returns a negative value if the operation fails.
149c5e268c6Sopenharmony_ci     *
150c5e268c6Sopenharmony_ci     * @since 4.0
151c5e268c6Sopenharmony_ci     * @version 1.0
152c5e268c6Sopenharmony_ci     */
153c5e268c6Sopenharmony_ci    GetGeofenceStatus([in] int geofenceId);
154c5e268c6Sopenharmony_ci
155c5e268c6Sopenharmony_ci    /**
156c5e268c6Sopenharmony_ci     * @brief Obtains the latest location information.
157c5e268c6Sopenharmony_ci     *
158c5e268c6Sopenharmony_ci     * The location information is reported by the {@link OnGetCurrentLocationCb} callback.
159c5e268c6Sopenharmony_ci     *
160c5e268c6Sopenharmony_ci     * @return Returns <b>0</b> if the operation is successful.
161c5e268c6Sopenharmony_ci     * @return Returns a negative value if the operation fails.
162c5e268c6Sopenharmony_ci     *
163c5e268c6Sopenharmony_ci     * @since 4.0
164c5e268c6Sopenharmony_ci     * @version 1.0
165c5e268c6Sopenharmony_ci     */
166c5e268c6Sopenharmony_ci    GetGeofenceLocation();
167c5e268c6Sopenharmony_ci
168c5e268c6Sopenharmony_ci    /**
169c5e268c6Sopenharmony_ci     * @brief Obtains geofence information, including the number of geofences supported by and added for this device.
170c5e268c6Sopenharmony_ci     *
171c5e268c6Sopenharmony_ci     * The geofence information is returned by the {@link OnGetWifenceSizeCb} callback.
172c5e268c6Sopenharmony_ci     *
173c5e268c6Sopenharmony_ci     * @return Returns <b>0</b> if the operation is successful.
174c5e268c6Sopenharmony_ci     * @return Returns a negative value if the operation fails.
175c5e268c6Sopenharmony_ci     *
176c5e268c6Sopenharmony_ci     * @since 4.0
177c5e268c6Sopenharmony_ci     * @version 1.0
178c5e268c6Sopenharmony_ci     */
179c5e268c6Sopenharmony_ci    GetGeofenceSize();
180c5e268c6Sopenharmony_ci
181c5e268c6Sopenharmony_ci    /**
182c5e268c6Sopenharmony_ci     * @brief Sends the base station offline database data.
183c5e268c6Sopenharmony_ci     *
184c5e268c6Sopenharmony_ci     * If the offline database data is successfully requested, the upper-layer service delivers the data through this API.
185c5e268c6Sopenharmony_ci     *
186c5e268c6Sopenharmony_ci     * @param dbData Indicates the offline database data to send. For details, see {@link OfflineDb}.
187c5e268c6Sopenharmony_ci     * @param cellType Indicates the generation of the mobile communication technologies used by the cell where the device resides. For details, see {@link GeofenceCellType}.
188c5e268c6Sopenharmony_ci     *
189c5e268c6Sopenharmony_ci     * @return Returns <b>0</b> if the operation is successful.
190c5e268c6Sopenharmony_ci     * @return Returns a negative value if the operation fails.
191c5e268c6Sopenharmony_ci     *
192c5e268c6Sopenharmony_ci     * @since 4.0
193c5e268c6Sopenharmony_ci     * @version 1.0
194c5e268c6Sopenharmony_ci     */
195c5e268c6Sopenharmony_ci    SendCellOfflineDb([in] struct OfflineDb dbData,
196c5e268c6Sopenharmony_ci                      [in] int cellType);
197c5e268c6Sopenharmony_ci}
198c5e268c6Sopenharmony_ci/** @} */
199