Home | History | Annotate | Download | only in location
      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, LocationOptions& options);
     43     void (*updateTrackingOptions)(LocationAPI* client, uint32_t id, LocationOptions& options);
     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 (*gnssDeleteAidingData)(GnssAidingData& data);
     51     void (*injectLocation)(double latitude, double longitude, float accuracy);
     52     void (*injectTime)(int64_t time, int64_t timeReference, int32_t uncertainty);
     53     void (*agpsInit)(const AgpsCbInfo& cbInfo);
     54     void (*agpsDataConnOpen)(short agpsType, const char* apnName, int apnLen, int ipType);
     55     void (*agpsDataConnClosed)(short agpsType);
     56     void (*agpsDataConnFailed)(short agpsType);
     57     void (*getDebugReport)(GnssDebugReport& report);
     58     void (*updateConnectionStatus)(bool connected, uint8_t type);
     59 };
     60 
     61 struct FlpInterface {
     62     size_t size;
     63     void (*initialize)(void);
     64     void (*deinitialize)(void);
     65     void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks);
     66     void (*removeClient)(LocationAPI* client);
     67     void (*requestCapabilities)(LocationAPI* client);
     68     uint32_t (*startTracking)(LocationAPI* client, LocationOptions& options);
     69     void (*updateTrackingOptions)(LocationAPI* client, uint32_t id, LocationOptions& options);
     70     void (*stopTracking)(LocationAPI* client, uint32_t id);
     71     uint32_t (*startBatching)(LocationAPI* client, LocationOptions&, BatchingOptions&);
     72     void (*stopBatching)(LocationAPI* client, uint32_t id);
     73     void (*updateBatchingOptions)(LocationAPI* client, uint32_t id, LocationOptions&,
     74             BatchingOptions&);
     75     void (*getBatchedLocations)(LocationAPI* client, uint32_t id, size_t count);
     76     void (*getPowerStateChanges)(void* powerStateCb);
     77 };
     78 
     79 struct GeofenceInterface {
     80     size_t size;
     81     void (*initialize)(void);
     82     void (*deinitialize)(void);
     83     void (*addClient)(LocationAPI* client, const LocationCallbacks& callbacks);
     84     void (*removeClient)(LocationAPI* client);
     85     void (*requestCapabilities)(LocationAPI* client);
     86     uint32_t* (*addGeofences)(LocationAPI* client, size_t count, GeofenceOption*, GeofenceInfo*);
     87     void (*removeGeofences)(LocationAPI* client, size_t count, uint32_t* ids);
     88     void (*modifyGeofences)(LocationAPI* client, size_t count, uint32_t* ids,
     89                             GeofenceOption* options);
     90     void (*pauseGeofences)(LocationAPI* client, size_t count, uint32_t* ids);
     91     void (*resumeGeofences)(LocationAPI* client, size_t count, uint32_t* ids);
     92 };
     93 
     94 #endif /* LOCATION_INTERFACE_H */
     95