1 /* Copyright (c) 2017 The Linux Foundation. All rights reserved.
2  *
3  * Redistribution and use in source and binary forms, with or without
4  * modification, are permitted provided that the following conditions are
5  * met:
6  *     * Redistributions of source code must retain the above copyright
7  *       notice, this list of conditions and the following disclaimer.
8  *     * Redistributions in binary form must reproduce the above
9  *       copyright notice, this list of conditions and the following
10  *       disclaimer in the documentation and/or other materials provided
11  *       with the distribution.
12  *     * Neither the name of The Linux Foundation nor the names of its
13  *       contributors may be used to endorse or promote products derived
14  *       from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef LOCATION_INTERFACE_H
30 #define LOCATION_INTERFACE_H
31 
32 #include <LocationAPI.h>
33 
34 struct GnssInterface {
35     size_t size;
36     void (*initialize)(void);
37     void (*deinitialize)(void);
38     void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks);
39     void (*removeClient)(LocationAPI* client);
40     void (*requestCapabilities)(LocationAPI* client);
41     uint32_t (*startTracking)(LocationAPI* client, LocationOptions& options);
42     void (*updateTrackingOptions)(LocationAPI* client, uint32_t id, LocationOptions& options);
43     void (*stopTracking)(LocationAPI* client, uint32_t id);
44     void (*gnssNiResponse)(LocationAPI* client, uint32_t id, GnssNiResponse response);
45     void (*setControlCallbacks)(LocationControlCallbacks& controlCallbacks);
46     uint32_t (*enable)(LocationTechnologyType techType);
47     void (*disable)(uint32_t id);
48     uint32_t* (*gnssUpdateConfig)(GnssConfig config);
49     uint32_t (*gnssDeleteAidingData)(GnssAidingData& data);
50     void (*injectLocation)(double latitude, double longitude, float accuracy);
51     void (*injectTime)(int64_t time, int64_t timeReference, int32_t uncertainty);
52     void (*agpsInit)(void* statusV4Cb);
53     void (*agpsDataConnOpen)(short agpsType, const char* apnName, int apnLen, int ipType);
54     void (*agpsDataConnClosed)(short agpsType);
55     void (*agpsDataConnFailed)(short agpsType);
56 };
57 
58 struct FlpInterface {
59     size_t size;
60     void (*initialize)(void);
61     void (*deinitialize)(void);
62     void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks);
63     void (*removeClient)(LocationAPI* client);
64     void (*requestCapabilities)(LocationAPI* client);
65     uint32_t (*startTracking)(LocationAPI* client, LocationOptions& options);
66     void (*updateTrackingOptions)(LocationAPI* client, uint32_t id, LocationOptions& options);
67     void (*stopTracking)(LocationAPI* client, uint32_t id);
68     uint32_t (*startBatching)(LocationAPI* client, LocationOptions&);
69     void (*stopBatching)(LocationAPI* client, uint32_t id);
70     void (*updateBatchingOptions)(LocationAPI* client, uint32_t id, LocationOptions&);
71     void (*getBatchedLocations)(LocationAPI* client, uint32_t id, size_t count);
72     void (*getPowerStateChanges)(void* powerStateCb);
73 };
74 
75 struct GeofenceInterface {
76     size_t size;
77     void (*initialize)(void);
78     void (*deinitialize)(void);
79     void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks);
80     void (*removeClient)(LocationAPI* client);
81     void (*requestCapabilities)(LocationAPI* client);
82     uint32_t* (*addGeofences)(LocationAPI* client, size_t count, GeofenceOption*, GeofenceInfo*);
83     void (*removeGeofences)(LocationAPI* client, size_t count, uint32_t* ids);
84     void (*modifyGeofences)(LocationAPI* client, size_t count, uint32_t* ids,
85                             GeofenceOption* options);
86     void (*pauseGeofences)(LocationAPI* client, size_t count, uint32_t* ids);
87     void (*resumeGeofences)(LocationAPI* client, size_t count, uint32_t* ids);
88 };
89 
90 #endif /* LOCATION_INTERFACE_H */
91