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
34struct 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    void (*getDebugReport)(GnssDebugReport& report);
57};
58
59struct FlpInterface {
60    size_t size;
61    void (*initialize)(void);
62    void (*deinitialize)(void);
63    void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks);
64    void (*removeClient)(LocationAPI* client);
65    void (*requestCapabilities)(LocationAPI* client);
66    uint32_t (*startTracking)(LocationAPI* client, LocationOptions& options);
67    void (*updateTrackingOptions)(LocationAPI* client, uint32_t id, LocationOptions& options);
68    void (*stopTracking)(LocationAPI* client, uint32_t id);
69    uint32_t (*startBatching)(LocationAPI* client, LocationOptions&);
70    void (*stopBatching)(LocationAPI* client, uint32_t id);
71    void (*updateBatchingOptions)(LocationAPI* client, uint32_t id, LocationOptions&);
72    void (*getBatchedLocations)(LocationAPI* client, uint32_t id, size_t count);
73    void (*getPowerStateChanges)(void* powerStateCb);
74};
75
76struct GeofenceInterface {
77    size_t size;
78    void (*initialize)(void);
79    void (*deinitialize)(void);
80    void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks);
81    void (*removeClient)(LocationAPI* client);
82    void (*requestCapabilities)(LocationAPI* client);
83    uint32_t* (*addGeofences)(LocationAPI* client, size_t count, GeofenceOption*, GeofenceInfo*);
84    void (*removeGeofences)(LocationAPI* client, size_t count, uint32_t* ids);
85    void (*modifyGeofences)(LocationAPI* client, size_t count, uint32_t* ids,
86                            GeofenceOption* options);
87    void (*pauseGeofences)(LocationAPI* client, size_t count, uint32_t* ids);
88    void (*resumeGeofences)(LocationAPI* client, size_t count, uint32_t* ids);
89};
90
91#endif /* LOCATION_INTERFACE_H */
92