/* * 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. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "GnssConfiguration.h" #include "GnssPowerIndication.h" namespace aidl::android::hardware::gnss { class Gnss : public BnGnss { public: Gnss(); ~Gnss() { stop(); }; ndk::ScopedAStatus setCallback(const std::shared_ptr& callback) override; ndk::ScopedAStatus start() override; ndk::ScopedAStatus stop() override; ndk::ScopedAStatus close() override; ndk::ScopedAStatus injectTime(int64_t timeMs, int64_t timeReferenceMs, int uncertaintyMs) override; ndk::ScopedAStatus injectLocation(const GnssLocation& location) override; ndk::ScopedAStatus injectBestLocation(const GnssLocation& location) override; ndk::ScopedAStatus deleteAidingData(GnssAidingData aidingDataFlags) override; ndk::ScopedAStatus setPositionMode(GnssPositionMode mode, GnssPositionRecurrence recurrence, int minIntervalMs, int preferredAccuracyMeters, int preferredTimeMs, bool lowPowerMode) override; ndk::ScopedAStatus getExtensionPsds(std::shared_ptr* iGnssPsds) override; ndk::ScopedAStatus getExtensionGnssConfiguration( std::shared_ptr* iGnssConfiguration) override; ndk::ScopedAStatus getExtensionGnssPowerIndication( std::shared_ptr* iGnssPowerIndication) override; ndk::ScopedAStatus getExtensionGnssMeasurement( std::shared_ptr* iGnssMeasurement) override; ndk::ScopedAStatus getExtensionGnssBatching( std::shared_ptr* iGnssBatching) override; ndk::ScopedAStatus getExtensionGnssGeofence( std::shared_ptr* iGnssGeofence) override; ndk::ScopedAStatus getExtensionGnssNavigationMessage( std::shared_ptr* iGnssNavigationMessage) override; ndk::ScopedAStatus getExtensionAGnss(std::shared_ptr* iAGnss) override; ndk::ScopedAStatus getExtensionGnssDebug(std::shared_ptr* iGnssDebug) override; ndk::ScopedAStatus getExtensionGnssVisibilityControl( std::shared_ptr* iGnssVisibilityControl) override; ndk::ScopedAStatus getExtensionGnssAntennaInfo( std::shared_ptr* iGnssAntennaInfo) override; ndk::ScopedAStatus getExtensionMeasurementCorrections( std::shared_ptr* iMeasurementCorrections) override; std::shared_ptr mGnssConfiguration; std::shared_ptr mGnssPowerIndication; private: void reportLocation(const GnssLocation&) const; void reportSvStatus(const std::vector& svInfoList) const; std::vector filterBlocklistedSatellites( std::vector gnssSvInfoList); void reportGnssStatusValue(const IGnssCallback::GnssStatusValue gnssStatusValue) const; std::unique_ptr getLocationFromHW(); static std::shared_ptr sGnssCallback; std::atomic mMinIntervalMs; std::atomic mIsActive; std::atomic mFirstFixReceived; std::thread mThread; mutable std::mutex mMutex; }; } // namespace aidl::android::hardware::gnss