2015-01-19 19:22:28 -05:00
|
|
|
/* Copyright (c) 2011-2015, The Linux Foundation. All rights reserved.
|
2013-08-07 21:40:27 -04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the following
|
|
|
|
* disclaimer in the documentation and/or other materials provided
|
|
|
|
* with the distribution.
|
|
|
|
* * Neither the name of The Linux Foundation, nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
|
|
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
|
|
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
|
|
|
|
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef LOC_API_ENG_ADAPTER_H
|
|
|
|
#define LOC_API_ENG_ADAPTER_H
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <hardware/gps.h>
|
|
|
|
#include <loc.h>
|
|
|
|
#include <loc_eng_log.h>
|
|
|
|
#include <log_util.h>
|
|
|
|
#include <LocAdapterBase.h>
|
|
|
|
#include <LocDualContext.h>
|
2013-07-24 16:15:12 -04:00
|
|
|
#include <UlpProxyBase.h>
|
2013-08-07 21:40:27 -04:00
|
|
|
#include <platform_lib_includes.h>
|
|
|
|
|
|
|
|
#define MAX_URL_LEN 256
|
|
|
|
|
|
|
|
using namespace loc_core;
|
|
|
|
|
2013-07-24 16:15:12 -04:00
|
|
|
class LocEngAdapter;
|
|
|
|
|
|
|
|
class LocInternalAdapter : public LocAdapterBase {
|
|
|
|
LocEngAdapter* mLocEngAdapter;
|
|
|
|
public:
|
|
|
|
LocInternalAdapter(LocEngAdapter* adapter);
|
|
|
|
|
|
|
|
virtual void reportPosition(UlpLocation &location,
|
|
|
|
GpsLocationExtended &locationExtended,
|
|
|
|
void* locationExt,
|
|
|
|
enum loc_sess_status status,
|
|
|
|
LocPosTechMask loc_technology_mask);
|
2015-06-17 17:27:50 -04:00
|
|
|
virtual void reportSv(GnssSvStatus &svStatus,
|
2013-07-24 16:15:12 -04:00
|
|
|
GpsLocationExtended &locationExtended,
|
|
|
|
void* svExt);
|
2013-09-25 14:01:43 -04:00
|
|
|
virtual void reportStatus(GpsStatusValue status);
|
2013-07-24 16:15:12 -04:00
|
|
|
virtual void setPositionModeInt(LocPosMode& posMode);
|
|
|
|
virtual void startFixInt();
|
|
|
|
virtual void stopFixInt();
|
2013-10-02 19:30:13 -04:00
|
|
|
virtual void getZppInt();
|
2013-07-24 16:15:12 -04:00
|
|
|
virtual void setUlpProxy(UlpProxyBase* ulp);
|
|
|
|
};
|
|
|
|
|
2013-08-07 21:40:27 -04:00
|
|
|
typedef void (*loc_msg_sender)(void* loc_eng_data_p, void* msgp);
|
|
|
|
|
|
|
|
class LocEngAdapter : public LocAdapterBase {
|
|
|
|
void* mOwner;
|
2013-07-24 16:15:12 -04:00
|
|
|
LocInternalAdapter* mInternalAdapter;
|
|
|
|
UlpProxyBase* mUlp;
|
2013-08-07 21:40:27 -04:00
|
|
|
LocPosMode mFixCriteria;
|
|
|
|
bool mNavigating;
|
2014-03-17 02:57:05 -04:00
|
|
|
// mPowerVote is encoded as
|
|
|
|
// mPowerVote & 0x20 -- powerVoteRight
|
|
|
|
// mPowerVote & 0x10 -- power On / Off
|
|
|
|
unsigned int mPowerVote;
|
|
|
|
static const unsigned int POWER_VOTE_RIGHT = 0x20;
|
|
|
|
static const unsigned int POWER_VOTE_VALUE = 0x10;
|
2013-08-07 21:40:27 -04:00
|
|
|
|
|
|
|
public:
|
2014-04-02 17:23:39 -04:00
|
|
|
bool mSupportsAgpsRequests;
|
|
|
|
bool mSupportsPositionInjection;
|
2014-09-11 20:06:23 -04:00
|
|
|
bool mSupportsTimeInjection;
|
2013-08-07 21:40:27 -04:00
|
|
|
|
|
|
|
LocEngAdapter(LOC_API_ADAPTER_EVENT_MASK_T mask,
|
2014-03-17 02:57:05 -04:00
|
|
|
void* owner, ContextBase* context,
|
2015-09-11 22:40:25 -04:00
|
|
|
LocThread::tCreate tCreator);
|
2013-08-07 21:40:27 -04:00
|
|
|
virtual ~LocEngAdapter();
|
|
|
|
|
2013-07-24 16:15:12 -04:00
|
|
|
virtual void setUlpProxy(UlpProxyBase* ulp);
|
2015-01-19 19:22:28 -05:00
|
|
|
void setXtraUserAgent();
|
2013-07-24 16:15:12 -04:00
|
|
|
inline void requestUlp(unsigned long capabilities) {
|
|
|
|
mContext->requestUlp(mInternalAdapter, capabilities);
|
|
|
|
}
|
|
|
|
inline LocInternalAdapter* getInternalAdapter() { return mInternalAdapter; }
|
|
|
|
inline UlpProxyBase* getUlpProxy() { return mUlp; }
|
|
|
|
inline void* getOwner() { return mOwner; }
|
2014-01-31 15:08:32 -05:00
|
|
|
inline bool hasAgpsExtendedCapabilities() {
|
|
|
|
return mContext->hasAgpsExtendedCapabilities();
|
|
|
|
}
|
|
|
|
inline bool hasCPIExtendedCapabilities() {
|
|
|
|
return mContext->hasCPIExtendedCapabilities();
|
|
|
|
}
|
2013-07-24 16:15:12 -04:00
|
|
|
inline const MsgTask* getMsgTask() { return mMsgTask; }
|
|
|
|
|
2013-08-07 21:40:27 -04:00
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
startFix()
|
|
|
|
{
|
|
|
|
return mLocApi->startFix(mFixCriteria);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
stopFix()
|
|
|
|
{
|
|
|
|
return mLocApi->stopFix();
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
deleteAidingData(GpsAidingData f)
|
|
|
|
{
|
|
|
|
return mLocApi->deleteAidingData(f);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
enableData(int enable)
|
|
|
|
{
|
|
|
|
return mLocApi->enableData(enable);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
setAPN(char* apn, int len)
|
|
|
|
{
|
|
|
|
return mLocApi->setAPN(apn, len);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
injectPosition(double latitude, double longitude, float accuracy)
|
|
|
|
{
|
|
|
|
return mLocApi->injectPosition(latitude, longitude, accuracy);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
setXtraData(char* data, int length)
|
|
|
|
{
|
|
|
|
return mLocApi->setXtraData(data, length);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
requestXtraServer()
|
|
|
|
{
|
|
|
|
return mLocApi->requestXtraServer();
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
atlOpenStatus(int handle, int is_succ, char* apn, AGpsBearerType bearer, AGpsType agpsType)
|
|
|
|
{
|
|
|
|
return mLocApi->atlOpenStatus(handle, is_succ, apn, bearer, agpsType);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
atlCloseStatus(int handle, int is_succ)
|
|
|
|
{
|
|
|
|
return mLocApi->atlCloseStatus(handle, is_succ);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
setPositionMode(const LocPosMode *posMode)
|
|
|
|
{
|
|
|
|
if (NULL != posMode) {
|
|
|
|
mFixCriteria = *posMode;
|
|
|
|
}
|
|
|
|
return mLocApi->setPositionMode(mFixCriteria);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
setServer(const char* url, int len)
|
|
|
|
{
|
|
|
|
return mLocApi->setServer(url, len);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
setServer(unsigned int ip, int port,
|
|
|
|
LocServerType type)
|
|
|
|
{
|
|
|
|
return mLocApi->setServer(ip, port, type);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
informNiResponse(GpsUserResponseType userResponse, const void* passThroughData)
|
|
|
|
{
|
|
|
|
return mLocApi->informNiResponse(userResponse, passThroughData);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
setSUPLVersion(uint32_t version)
|
|
|
|
{
|
|
|
|
return mLocApi->setSUPLVersion(version);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
setLPPConfig(uint32_t profile)
|
|
|
|
{
|
|
|
|
return mLocApi->setLPPConfig(profile);
|
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
2014-02-13 14:10:26 -05:00
|
|
|
setSensorControlConfig(int sensorUsage, int sensorProvider)
|
2013-08-07 21:40:27 -04:00
|
|
|
{
|
2014-02-13 14:10:26 -05:00
|
|
|
return mLocApi->setSensorControlConfig(sensorUsage, sensorProvider);
|
2013-08-07 21:40:27 -04:00
|
|
|
}
|
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
setSensorProperties(bool gyroBiasVarianceRandomWalk_valid, float gyroBiasVarianceRandomWalk,
|
|
|
|
bool accelBiasVarianceRandomWalk_valid, float accelBiasVarianceRandomWalk,
|
|
|
|
bool angleBiasVarianceRandomWalk_valid, float angleBiasVarianceRandomWalk,
|
|
|
|
bool rateBiasVarianceRandomWalk_valid, float rateBiasVarianceRandomWalk,
|
|
|
|
bool velocityBiasVarianceRandomWalk_valid, float velocityBiasVarianceRandomWalk)
|
|
|
|
{
|
|
|
|
return mLocApi->setSensorProperties(gyroBiasVarianceRandomWalk_valid, gyroBiasVarianceRandomWalk,
|
|
|
|
accelBiasVarianceRandomWalk_valid, accelBiasVarianceRandomWalk,
|
|
|
|
angleBiasVarianceRandomWalk_valid, angleBiasVarianceRandomWalk,
|
|
|
|
rateBiasVarianceRandomWalk_valid, rateBiasVarianceRandomWalk,
|
|
|
|
velocityBiasVarianceRandomWalk_valid, velocityBiasVarianceRandomWalk);
|
|
|
|
}
|
|
|
|
inline virtual enum loc_api_adapter_err
|
|
|
|
setSensorPerfControlConfig(int controlMode, int accelSamplesPerBatch, int accelBatchesPerSec,
|
|
|
|
int gyroSamplesPerBatch, int gyroBatchesPerSec,
|
|
|
|
int accelSamplesPerBatchHigh, int accelBatchesPerSecHigh,
|
|
|
|
int gyroSamplesPerBatchHigh, int gyroBatchesPerSecHigh, int algorithmConfig)
|
|
|
|
{
|
|
|
|
return mLocApi->setSensorPerfControlConfig(controlMode, accelSamplesPerBatch, accelBatchesPerSec,
|
|
|
|
gyroSamplesPerBatch, gyroBatchesPerSec,
|
|
|
|
accelSamplesPerBatchHigh, accelBatchesPerSecHigh,
|
|
|
|
gyroSamplesPerBatchHigh, gyroBatchesPerSecHigh,
|
|
|
|
algorithmConfig);
|
|
|
|
}
|
|
|
|
inline virtual enum loc_api_adapter_err
|
|
|
|
setExtPowerConfig(int isBatteryCharging)
|
|
|
|
{
|
|
|
|
return mLocApi->setExtPowerConfig(isBatteryCharging);
|
|
|
|
}
|
|
|
|
inline virtual enum loc_api_adapter_err
|
|
|
|
setAGLONASSProtocol(unsigned long aGlonassProtocol)
|
|
|
|
{
|
|
|
|
return mLocApi->setAGLONASSProtocol(aGlonassProtocol);
|
|
|
|
}
|
|
|
|
inline virtual int initDataServiceClient()
|
|
|
|
{
|
|
|
|
return mLocApi->initDataServiceClient();
|
|
|
|
}
|
|
|
|
inline virtual int openAndStartDataCall()
|
|
|
|
{
|
|
|
|
return mLocApi->openAndStartDataCall();
|
|
|
|
}
|
|
|
|
inline virtual void stopDataCall()
|
|
|
|
{
|
|
|
|
mLocApi->stopDataCall();
|
|
|
|
}
|
|
|
|
inline virtual void closeDataCall()
|
|
|
|
{
|
|
|
|
mLocApi->closeDataCall();
|
|
|
|
}
|
2013-10-02 19:30:13 -04:00
|
|
|
inline enum loc_api_adapter_err
|
|
|
|
getZpp(GpsLocation &zppLoc, LocPosTechMask &tech_mask)
|
|
|
|
{
|
2014-02-24 14:13:57 -05:00
|
|
|
return mLocApi->getBestAvailableZppFix(zppLoc, tech_mask);
|
2013-10-02 19:30:13 -04:00
|
|
|
}
|
2014-09-11 20:06:23 -04:00
|
|
|
enum loc_api_adapter_err setTime(GpsUtcTime time,
|
|
|
|
int64_t timeReference,
|
|
|
|
int uncertainty);
|
2014-06-26 14:08:12 -04:00
|
|
|
enum loc_api_adapter_err setXtraVersionCheck(int check);
|
2013-11-01 18:58:07 -04:00
|
|
|
inline virtual void installAGpsCert(const DerEncodedCertificate* pData,
|
|
|
|
size_t length,
|
|
|
|
uint32_t slotBitMask)
|
|
|
|
{
|
|
|
|
mLocApi->installAGpsCert(pData, length, slotBitMask);
|
|
|
|
}
|
2013-08-07 21:40:27 -04:00
|
|
|
virtual void handleEngineDownEvent();
|
|
|
|
virtual void handleEngineUpEvent();
|
|
|
|
virtual void reportPosition(UlpLocation &location,
|
|
|
|
GpsLocationExtended &locationExtended,
|
|
|
|
void* locationExt,
|
|
|
|
enum loc_sess_status status,
|
|
|
|
LocPosTechMask loc_technology_mask);
|
2015-06-17 17:27:50 -04:00
|
|
|
virtual void reportSv(GnssSvStatus &svStatus,
|
2013-08-07 21:40:27 -04:00
|
|
|
GpsLocationExtended &locationExtended,
|
|
|
|
void* svExt);
|
|
|
|
virtual void reportStatus(GpsStatusValue status);
|
|
|
|
virtual void reportNmea(const char* nmea, int length);
|
|
|
|
virtual bool reportXtraServer(const char* url1, const char* url2,
|
|
|
|
const char* url3, const int maxlength);
|
|
|
|
virtual bool requestXtraData();
|
|
|
|
virtual bool requestTime();
|
|
|
|
virtual bool requestATL(int connHandle, AGpsType agps_type);
|
|
|
|
virtual bool releaseATL(int connHandle);
|
|
|
|
virtual bool requestNiNotify(GpsNiNotification ¬ify, const void* data);
|
|
|
|
virtual bool requestSuplES(int connHandle);
|
|
|
|
virtual bool reportDataCallOpened();
|
|
|
|
virtual bool reportDataCallClosed();
|
2014-12-15 20:47:50 -05:00
|
|
|
virtual void reportGpsMeasurementData(GpsData &gpsMeasurementData);
|
2013-08-07 21:40:27 -04:00
|
|
|
|
|
|
|
inline const LocPosMode& getPositionMode() const
|
|
|
|
{return mFixCriteria;}
|
|
|
|
inline virtual bool isInSession()
|
|
|
|
{ return mNavigating; }
|
2013-10-09 21:35:04 -04:00
|
|
|
void setInSession(bool inSession);
|
2013-08-21 20:57:17 -04:00
|
|
|
|
2014-03-17 02:57:05 -04:00
|
|
|
// Permit/prohibit power voting
|
|
|
|
inline void setPowerVoteRight(bool powerVoteRight) {
|
|
|
|
mPowerVote = powerVoteRight ? (mPowerVote | POWER_VOTE_RIGHT) :
|
|
|
|
(mPowerVote & ~POWER_VOTE_RIGHT);
|
|
|
|
}
|
|
|
|
inline bool getPowerVoteRight() const {
|
|
|
|
return (mPowerVote & POWER_VOTE_RIGHT) != 0 ;
|
|
|
|
}
|
|
|
|
// Set the power voting up/down and do actual operation if permitted
|
|
|
|
inline void setPowerVote(bool powerOn) {
|
|
|
|
mPowerVote = powerOn ? (mPowerVote | POWER_VOTE_VALUE) :
|
|
|
|
(mPowerVote & ~POWER_VOTE_VALUE);
|
|
|
|
requestPowerVote();
|
2015-07-02 20:30:09 -04:00
|
|
|
mContext->modemPowerVote(powerOn);
|
2014-03-17 02:57:05 -04:00
|
|
|
}
|
|
|
|
inline bool getPowerVote() const {
|
|
|
|
return (mPowerVote & POWER_VOTE_VALUE) != 0 ;
|
|
|
|
}
|
|
|
|
// Do power voting according to last settings if permitted
|
|
|
|
void requestPowerVote();
|
|
|
|
|
2013-08-21 20:57:17 -04:00
|
|
|
/*Values for lock
|
|
|
|
1 = Do not lock any position sessions
|
|
|
|
2 = Lock MI position sessions
|
|
|
|
3 = Lock MT position sessions
|
|
|
|
4 = Lock all position sessions
|
|
|
|
*/
|
2014-09-11 15:19:14 -04:00
|
|
|
inline int setGpsLock(LOC_GPS_LOCK_MASK lock)
|
2013-08-21 20:57:17 -04:00
|
|
|
{
|
|
|
|
return mLocApi->setGpsLock(lock);
|
|
|
|
}
|
2014-09-11 15:19:14 -04:00
|
|
|
|
|
|
|
int setGpsLockMsg(LOC_GPS_LOCK_MASK lock);
|
|
|
|
|
2013-08-21 20:57:17 -04:00
|
|
|
/*
|
|
|
|
Returns
|
|
|
|
Current value of GPS lock on success
|
|
|
|
-1 on failure
|
|
|
|
*/
|
|
|
|
inline int getGpsLock()
|
|
|
|
{
|
|
|
|
return mLocApi->getGpsLock();
|
|
|
|
}
|
2014-06-26 14:08:12 -04:00
|
|
|
|
2014-12-15 20:47:50 -05:00
|
|
|
/*
|
|
|
|
Update Registration Mask
|
|
|
|
*/
|
|
|
|
void updateRegistrationMask(LOC_API_ADAPTER_EVENT_MASK_T event,
|
|
|
|
loc_registration_mask_status isEnabled);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Set Gnss Constellation Config
|
|
|
|
*/
|
|
|
|
bool gnssConstellationConfig();
|
2013-08-07 21:40:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //LOC_API_ENG_ADAPTER_H
|