2020-09-10 02:25:02 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define LOG_TAG "GnssAidl"
|
|
|
|
|
|
|
|
#include "Gnss.h"
|
2021-11-25 01:39:13 +01:00
|
|
|
#include <inttypes.h>
|
2020-09-10 02:25:02 +02:00
|
|
|
#include <log/log.h>
|
2021-11-05 04:56:40 +01:00
|
|
|
#include "AGnss.h"
|
2021-12-14 05:06:02 +01:00
|
|
|
#include "AGnssRil.h"
|
2021-09-27 10:01:06 +02:00
|
|
|
#include "GnssBatching.h"
|
2020-10-01 02:01:53 +02:00
|
|
|
#include "GnssConfiguration.h"
|
2021-11-16 16:09:11 +01:00
|
|
|
#include "GnssDebug.h"
|
2021-09-30 06:31:23 +02:00
|
|
|
#include "GnssGeofence.h"
|
2020-11-20 18:51:18 +01:00
|
|
|
#include "GnssMeasurementInterface.h"
|
2021-10-04 07:32:04 +02:00
|
|
|
#include "GnssNavigationMessageInterface.h"
|
2020-09-10 02:25:02 +02:00
|
|
|
#include "GnssPsds.h"
|
2021-12-08 06:27:51 +01:00
|
|
|
#include "GnssVisibilityControl.h"
|
2021-11-25 01:39:13 +01:00
|
|
|
#include "Utils.h"
|
2020-09-10 02:25:02 +02:00
|
|
|
|
|
|
|
namespace aidl::android::hardware::gnss {
|
2021-11-25 01:39:13 +01:00
|
|
|
using ::android::hardware::gnss::common::Utils;
|
|
|
|
using ndk::ScopedAStatus;
|
|
|
|
using GnssSvInfo = IGnssCallback::GnssSvInfo;
|
|
|
|
|
|
|
|
constexpr int TTFF_MILLIS = 2200;
|
2020-09-10 02:25:02 +02:00
|
|
|
|
2020-10-01 02:01:53 +02:00
|
|
|
std::shared_ptr<IGnssCallback> Gnss::sGnssCallback = nullptr;
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
Gnss::Gnss() : mMinIntervalMs(1000), mFirstFixReceived(false) {}
|
|
|
|
|
|
|
|
ScopedAStatus Gnss::setCallback(const std::shared_ptr<IGnssCallback>& callback) {
|
|
|
|
ALOGD("setCallback");
|
2020-10-01 02:01:53 +02:00
|
|
|
if (callback == nullptr) {
|
|
|
|
ALOGE("%s: Null callback ignored", __func__);
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::fromExceptionCode(STATUS_INVALID_OPERATION);
|
2020-10-01 02:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sGnssCallback = callback;
|
|
|
|
|
2020-12-07 16:57:48 +01:00
|
|
|
int capabilities = (int)(IGnssCallback::CAPABILITY_SATELLITE_BLOCKLIST |
|
2020-12-09 08:07:18 +01:00
|
|
|
IGnssCallback::CAPABILITY_SATELLITE_PVT |
|
|
|
|
IGnssCallback::CAPABILITY_CORRELATION_VECTOR);
|
|
|
|
|
2020-10-01 02:01:53 +02:00
|
|
|
auto status = sGnssCallback->gnssSetCapabilitiesCb(capabilities);
|
|
|
|
if (!status.isOk()) {
|
|
|
|
ALOGE("%s: Unable to invoke callback.gnssSetCapabilities", __func__);
|
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedAStatus Gnss::start() {
|
|
|
|
ALOGD("start()");
|
|
|
|
if (mIsActive) {
|
|
|
|
ALOGW("Gnss has started. Restarting...");
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
mIsActive = true;
|
|
|
|
this->reportGnssStatusValue(IGnssCallback::GnssStatusValue::SESSION_BEGIN);
|
|
|
|
mThread = std::thread([this]() {
|
|
|
|
auto svStatus = filterBlocklistedSatellites(Utils::getMockSvInfoList());
|
|
|
|
this->reportSvStatus(svStatus);
|
|
|
|
if (!mFirstFixReceived) {
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(TTFF_MILLIS));
|
|
|
|
mFirstFixReceived = true;
|
|
|
|
}
|
|
|
|
while (mIsActive == true) {
|
|
|
|
auto svStatus = filterBlocklistedSatellites(Utils::getMockSvInfoList());
|
|
|
|
this->reportSvStatus(svStatus);
|
|
|
|
|
|
|
|
mGnssPowerIndication->notePowerConsumption();
|
|
|
|
const auto location = Utils::getMockLocation();
|
|
|
|
this->reportLocation(location);
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(mMinIntervalMs));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Gnss::reportLocation(const GnssLocation& location) const {
|
|
|
|
std::unique_lock<std::mutex> lock(mMutex);
|
|
|
|
if (sGnssCallback == nullptr) {
|
|
|
|
ALOGE("%s: GnssCallback is null.", __func__);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto status = sGnssCallback->gnssLocationCb(location);
|
|
|
|
if (!status.isOk()) {
|
|
|
|
ALOGE("%s: Unable to invoke gnssLocationCb", __func__);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Gnss::reportSvStatus(const std::vector<GnssSvInfo>& svInfoList) const {
|
|
|
|
std::unique_lock<std::mutex> lock(mMutex);
|
|
|
|
if (sGnssCallback == nullptr) {
|
|
|
|
ALOGE("%s: sGnssCallback is null.", __func__);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto status = sGnssCallback->gnssSvStatusCb(svInfoList);
|
|
|
|
if (!status.isOk()) {
|
|
|
|
ALOGE("%s: Unable to invoke callback", __func__);
|
|
|
|
}
|
2020-10-01 02:01:53 +02:00
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
std::vector<GnssSvInfo> Gnss::filterBlocklistedSatellites(std::vector<GnssSvInfo> gnssSvInfoList) {
|
|
|
|
ALOGD("filterBlocklistedSatellites");
|
|
|
|
for (uint32_t i = 0; i < gnssSvInfoList.size(); i++) {
|
|
|
|
if (mGnssConfiguration->isBlocklisted(gnssSvInfoList[i])) {
|
|
|
|
gnssSvInfoList[i].svFlag &= ~(uint32_t)IGnssCallback::GnssSvFlags::USED_IN_FIX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return gnssSvInfoList;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Gnss::reportGnssStatusValue(const IGnssCallback::GnssStatusValue gnssStatusValue) const {
|
|
|
|
std::unique_lock<std::mutex> lock(mMutex);
|
|
|
|
if (sGnssCallback == nullptr) {
|
|
|
|
ALOGE("%s: sGnssCallback is null.", __func__);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto status = sGnssCallback->gnssStatusCb(gnssStatusValue);
|
|
|
|
if (!status.isOk()) {
|
|
|
|
ALOGE("%s: Unable to invoke gnssStatusCb", __func__);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedAStatus Gnss::stop() {
|
|
|
|
ALOGD("stop");
|
|
|
|
mIsActive = false;
|
|
|
|
this->reportGnssStatusValue(IGnssCallback::GnssStatusValue::SESSION_END);
|
|
|
|
if (mThread.joinable()) {
|
|
|
|
mThread.join();
|
|
|
|
}
|
|
|
|
return ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedAStatus Gnss::close() {
|
|
|
|
ALOGD("close");
|
2020-10-01 02:01:53 +02:00
|
|
|
sGnssCallback = nullptr;
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::ok();
|
2020-10-01 02:01:53 +02:00
|
|
|
}
|
|
|
|
|
2021-12-14 05:06:02 +01:00
|
|
|
ScopedAStatus Gnss::getExtensionAGnss(std::shared_ptr<IAGnss>* iAGnss) {
|
2021-11-05 04:56:40 +01:00
|
|
|
ALOGD("Gnss::getExtensionAGnss");
|
|
|
|
*iAGnss = SharedRefBase::make<AGnss>();
|
|
|
|
return ndk::ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
ScopedAStatus Gnss::injectTime(int64_t timeMs, int64_t timeReferenceMs, int uncertaintyMs) {
|
|
|
|
ALOGD("injectTime. timeMs:%" PRId64 ", timeReferenceMs:%" PRId64 ", uncertaintyMs:%d", timeMs,
|
|
|
|
timeReferenceMs, uncertaintyMs);
|
|
|
|
return ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
2021-12-14 05:06:02 +01:00
|
|
|
ScopedAStatus Gnss::getExtensionAGnssRil(std::shared_ptr<IAGnssRil>* iAGnssRil) {
|
|
|
|
ALOGD("Gnss::getExtensionAGnssRil");
|
|
|
|
*iAGnssRil = SharedRefBase::make<AGnssRil>();
|
|
|
|
return ndk::ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
ScopedAStatus Gnss::injectLocation(const GnssLocation& location) {
|
|
|
|
ALOGD("injectLocation. lat:%lf, lng:%lf, acc:%f", location.latitudeDegrees,
|
|
|
|
location.longitudeDegrees, location.horizontalAccuracyMeters);
|
|
|
|
return ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedAStatus Gnss::injectBestLocation(const GnssLocation& location) {
|
|
|
|
ALOGD("injectBestLocation. lat:%lf, lng:%lf, acc:%f", location.latitudeDegrees,
|
|
|
|
location.longitudeDegrees, location.horizontalAccuracyMeters);
|
|
|
|
return ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedAStatus Gnss::deleteAidingData(GnssAidingData aidingDataFlags) {
|
|
|
|
ALOGD("deleteAidingData. flags:%d", (int)aidingDataFlags);
|
|
|
|
mFirstFixReceived = false;
|
|
|
|
return ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedAStatus Gnss::setPositionMode(GnssPositionMode, GnssPositionRecurrence, int minIntervalMs,
|
|
|
|
int /* preferredAccuracyMeters */, int /* preferredTimeMs */,
|
|
|
|
bool lowPowerMode) {
|
|
|
|
ALOGD("setPositionMode. minIntervalMs:%d, lowPowerMode:%d", minIntervalMs, (int)lowPowerMode);
|
|
|
|
mMinIntervalMs = minIntervalMs;
|
|
|
|
return ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedAStatus Gnss::getExtensionPsds(std::shared_ptr<IGnssPsds>* iGnssPsds) {
|
|
|
|
ALOGD("getExtensionPsds");
|
2020-09-10 02:25:02 +02:00
|
|
|
*iGnssPsds = SharedRefBase::make<GnssPsds>();
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::ok();
|
2020-09-10 02:25:02 +02:00
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
ScopedAStatus Gnss::getExtensionGnssConfiguration(
|
2020-10-01 02:01:53 +02:00
|
|
|
std::shared_ptr<IGnssConfiguration>* iGnssConfiguration) {
|
2021-11-25 01:39:13 +01:00
|
|
|
ALOGD("getExtensionGnssConfiguration");
|
2020-10-01 02:01:53 +02:00
|
|
|
if (mGnssConfiguration == nullptr) {
|
|
|
|
mGnssConfiguration = SharedRefBase::make<GnssConfiguration>();
|
|
|
|
}
|
|
|
|
*iGnssConfiguration = mGnssConfiguration;
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::ok();
|
2020-10-01 02:01:53 +02:00
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
ScopedAStatus Gnss::getExtensionGnssPowerIndication(
|
2020-10-27 22:42:14 +01:00
|
|
|
std::shared_ptr<IGnssPowerIndication>* iGnssPowerIndication) {
|
2021-11-25 01:39:13 +01:00
|
|
|
ALOGD("getExtensionGnssPowerIndication");
|
2021-04-27 05:17:53 +02:00
|
|
|
if (mGnssPowerIndication == nullptr) {
|
|
|
|
mGnssPowerIndication = SharedRefBase::make<GnssPowerIndication>();
|
|
|
|
}
|
2020-10-27 22:42:14 +01:00
|
|
|
|
2021-04-27 05:17:53 +02:00
|
|
|
*iGnssPowerIndication = mGnssPowerIndication;
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::ok();
|
2020-10-27 22:42:14 +01:00
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
ScopedAStatus Gnss::getExtensionGnssMeasurement(
|
2020-11-20 18:51:18 +01:00
|
|
|
std::shared_ptr<IGnssMeasurementInterface>* iGnssMeasurement) {
|
2021-11-25 01:39:13 +01:00
|
|
|
ALOGD("getExtensionGnssMeasurement");
|
2020-11-20 18:51:18 +01:00
|
|
|
|
|
|
|
*iGnssMeasurement = SharedRefBase::make<GnssMeasurementInterface>();
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::ok();
|
2020-11-20 18:51:18 +01:00
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
ScopedAStatus Gnss::getExtensionGnssBatching(std::shared_ptr<IGnssBatching>* iGnssBatching) {
|
|
|
|
ALOGD("getExtensionGnssBatching");
|
2021-09-27 10:01:06 +02:00
|
|
|
|
|
|
|
*iGnssBatching = SharedRefBase::make<GnssBatching>();
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::ok();
|
2021-09-27 10:01:06 +02:00
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
ScopedAStatus Gnss::getExtensionGnssGeofence(std::shared_ptr<IGnssGeofence>* iGnssGeofence) {
|
|
|
|
ALOGD("getExtensionGnssGeofence");
|
2021-09-30 06:31:23 +02:00
|
|
|
|
|
|
|
*iGnssGeofence = SharedRefBase::make<GnssGeofence>();
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::ok();
|
2021-09-30 06:31:23 +02:00
|
|
|
}
|
|
|
|
|
2021-11-25 01:39:13 +01:00
|
|
|
ScopedAStatus Gnss::getExtensionGnssNavigationMessage(
|
2021-10-04 07:32:04 +02:00
|
|
|
std::shared_ptr<IGnssNavigationMessageInterface>* iGnssNavigationMessage) {
|
2021-11-25 01:39:13 +01:00
|
|
|
ALOGD("getExtensionGnssNavigationMessage");
|
2021-10-04 07:32:04 +02:00
|
|
|
|
|
|
|
*iGnssNavigationMessage = SharedRefBase::make<GnssNavigationMessageInterface>();
|
2021-11-25 01:39:13 +01:00
|
|
|
return ScopedAStatus::ok();
|
2021-10-04 07:32:04 +02:00
|
|
|
}
|
|
|
|
|
2021-11-16 16:09:11 +01:00
|
|
|
ndk::ScopedAStatus Gnss::getExtensionGnssDebug(std::shared_ptr<IGnssDebug>* iGnssDebug) {
|
|
|
|
ALOGD("Gnss::getExtensionGnssDebug");
|
|
|
|
|
|
|
|
*iGnssDebug = SharedRefBase::make<GnssDebug>();
|
|
|
|
return ndk::ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
2021-12-08 06:27:51 +01:00
|
|
|
ndk::ScopedAStatus Gnss::getExtensionGnssVisibilityControl(
|
|
|
|
std::shared_ptr<visibility_control::IGnssVisibilityControl>* iGnssVisibilityControl) {
|
|
|
|
ALOGD("Gnss::getExtensionGnssVisibilityControl");
|
|
|
|
|
|
|
|
*iGnssVisibilityControl = SharedRefBase::make<visibility_control::GnssVisibilityControl>();
|
|
|
|
return ndk::ScopedAStatus::ok();
|
|
|
|
}
|
|
|
|
|
2020-09-10 02:25:02 +02:00
|
|
|
} // namespace aidl::android::hardware::gnss
|