1 /*
2 * Copyright (C) 2021 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #define LOG_TAG "AGnssAidl"
18
19 #include "AGnss.h"
20 #include <inttypes.h>
21 #include <log/log.h>
22
23 namespace aidl::android::hardware::gnss {
24
25 std::shared_ptr<IAGnssCallback> AGnss::sCallback = nullptr;
26
setCallback(const std::shared_ptr<IAGnssCallback> & callback)27 ndk::ScopedAStatus AGnss::setCallback(const std::shared_ptr<IAGnssCallback>& callback) {
28 ALOGD("AGnss::setCallback");
29 std::unique_lock<std::mutex> lock(mMutex);
30 sCallback = callback;
31 return ndk::ScopedAStatus::ok();
32 }
33
setServer(AGnssType type,const std::string & hostname,int port)34 ndk::ScopedAStatus AGnss::setServer(AGnssType type, const std::string& hostname, int port) {
35 ALOGD("AGnss::setServer: type: %s, hostname: %s, port: %d", toString(type).c_str(),
36 hostname.c_str(), port);
37 return ndk::ScopedAStatus::ok();
38 }
39
dataConnOpen(int64_t networkHandle,const std::string & apn,ApnIpType apnIpType)40 ndk::ScopedAStatus AGnss::dataConnOpen(int64_t networkHandle, const std::string& apn,
41 ApnIpType apnIpType) {
42 ALOGD("AGnss::dataConnOpen: networkHandle:%" PRId64 ", apn: %s, apnIpType %s", networkHandle,
43 apn.c_str(), toString(apnIpType).c_str());
44 return ndk::ScopedAStatus::ok();
45 }
46
47 } // namespace aidl::android::hardware::gnss
48