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 #include <gps_extended_c.h> 34 35 struct GnssInterface { 36 size_t size; 37 void (*initialize)(void); 38 void (*deinitialize)(void); 39 void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks); 40 void (*removeClient)(LocationAPI* client); 41 void (*requestCapabilities)(LocationAPI* client); 42 uint32_t (*startTracking)(LocationAPI* client, TrackingOptions&); 43 void (*updateTrackingOptions)(LocationAPI* client, uint32_t id, TrackingOptions&); 44 void (*stopTracking)(LocationAPI* client, uint32_t id); 45 void (*gnssNiResponse)(LocationAPI* client, uint32_t id, GnssNiResponse response); 46 void (*setControlCallbacks)(LocationControlCallbacks& controlCallbacks); 47 uint32_t (*enable)(LocationTechnologyType techType); 48 void (*disable)(uint32_t id); 49 uint32_t* (*gnssUpdateConfig)(GnssConfig config); 50 uint32_t* (*gnssGetConfig)(GnssConfigFlagsMask config); 51 void (*gnssUpdateSvTypeConfig)(GnssSvTypeConfig& config); 52 void (*gnssGetSvTypeConfig)(GnssSvTypeConfigCallback& callback); 53 void (*gnssResetSvTypeConfig)(); 54 uint32_t (*gnssDeleteAidingData)(GnssAidingData& data); 55 void (*gnssUpdateXtraThrottle)(const bool enabled); 56 void (*injectLocation)(double latitude, double longitude, float accuracy); 57 void (*injectTime)(int64_t time, int64_t timeReference, int32_t uncertainty); 58 void (*agpsInit)(const AgpsCbInfo& cbInfo); 59 void (*agpsDataConnOpen)(AGpsExtType agpsType, const char* apnName, int apnLen, int ipType); 60 void (*agpsDataConnClosed)(AGpsExtType agpsType); 61 void (*agpsDataConnFailed)(AGpsExtType agpsType); 62 void (*getDebugReport)(GnssDebugReport& report); 63 void (*updateConnectionStatus)(bool connected, int8_t type); 64 void (*odcpiInit)(const OdcpiRequestCallback& callback); 65 void (*odcpiInject)(const Location& location); 66 }; 67 68 struct FlpInterface { 69 size_t size; 70 void (*initialize)(void); 71 void (*deinitialize)(void); 72 void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks); 73 void (*removeClient)(LocationAPI* client); 74 void (*requestCapabilities)(LocationAPI* client); 75 uint32_t (*startTracking)(LocationAPI* client, TrackingOptions&); 76 void (*updateTrackingOptions)(LocationAPI* client, uint32_t id, TrackingOptions&); 77 void (*stopTracking)(LocationAPI* client, uint32_t id); 78 uint32_t (*startBatching)(LocationAPI* client, BatchingOptions&); 79 void (*stopBatching)(LocationAPI* client, uint32_t id); 80 void (*updateBatchingOptions)(LocationAPI* client, uint32_t id, BatchingOptions&); 81 void (*getBatchedLocations)(LocationAPI* client, uint32_t id, size_t count); 82 void (*getPowerStateChanges)(void* powerStateCb); 83 }; 84 85 struct GeofenceInterface { 86 size_t size; 87 void (*initialize)(void); 88 void (*deinitialize)(void); 89 void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks); 90 void (*removeClient)(LocationAPI* client); 91 void (*requestCapabilities)(LocationAPI* client); 92 uint32_t* (*addGeofences)(LocationAPI* client, size_t count, GeofenceOption*, GeofenceInfo*); 93 void (*removeGeofences)(LocationAPI* client, size_t count, uint32_t* ids); 94 void (*modifyGeofences)(LocationAPI* client, size_t count, uint32_t* ids, 95 GeofenceOption* options); 96 void (*pauseGeofences)(LocationAPI* client, size_t count, uint32_t* ids); 97 void (*resumeGeofences)(LocationAPI* client, size_t count, uint32_t* ids); 98 }; 99 100 #endif /* LOCATION_INTERFACE_H */ 101