mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
Signed-off-by: Alexey Polyudov <apolyudov@google.com> Change-Id: Ic2bdb234e89f3c5860d1b483dd4bce689f13d057
174 lines
5.7 KiB
C++
174 lines
5.7 KiB
C++
// Copyright 2020 Google LLC
|
|
//
|
|
// 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
|
|
//
|
|
// https://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.
|
|
|
|
#include "platform/api/platform.h"
|
|
|
|
#include <atomic>
|
|
#include <memory>
|
|
|
|
#include "platform/api/atomic_boolean.h"
|
|
#include "platform/api/atomic_reference.h"
|
|
#include "platform/api/ble_v2.h"
|
|
#include "platform/api/bluetooth_adapter.h"
|
|
#include "platform/api/bluetooth_classic.h"
|
|
#include "platform/api/condition_variable.h"
|
|
#include "platform/api/count_down_latch.h"
|
|
#include "platform/api/log_message.h"
|
|
#include "platform/api/mutex.h"
|
|
#include "platform/api/scheduled_executor.h"
|
|
#include "platform/api/server_sync.h"
|
|
#include "platform/api/submittable_executor.h"
|
|
#include "platform/api/webrtc.h"
|
|
#include "platform/api/wifi.h"
|
|
#include "platform/base/medium_environment.h"
|
|
#include "platform/impl/g3/atomic_boolean.h"
|
|
#include "platform/impl/g3/atomic_reference.h"
|
|
#include "platform/impl/g3/ble.h"
|
|
#include "platform/impl/g3/bluetooth_adapter.h"
|
|
#include "platform/impl/g3/bluetooth_classic.h"
|
|
#include "platform/impl/g3/condition_variable.h"
|
|
#include "platform/impl/g3/count_down_latch.h"
|
|
#include "platform/impl/g3/log_message.h"
|
|
#include "platform/impl/g3/multi_thread_executor.h"
|
|
#include "platform/impl/g3/mutex.h"
|
|
#include "platform/impl/g3/scheduled_executor.h"
|
|
#include "platform/impl/g3/single_thread_executor.h"
|
|
#include "platform/impl/g3/webrtc.h"
|
|
#include "platform/impl/g3/wifi_lan.h"
|
|
#include "platform/impl/shared/file.h"
|
|
#include "absl/base/integral_types.h"
|
|
#include "absl/memory/memory.h"
|
|
#include "absl/strings/str_cat.h"
|
|
#include "absl/time/time.h"
|
|
|
|
namespace location {
|
|
namespace nearby {
|
|
namespace api {
|
|
|
|
namespace {
|
|
std::string GetPayloadPath(PayloadId payload_id) {
|
|
return absl::StrCat("/tmp/", payload_id);
|
|
}
|
|
} // namespace
|
|
|
|
int GetCurrentTid() {
|
|
const LiveThread* my = Thread_GetMyLiveThread();
|
|
return LiveThread_Pthread_TID(my);
|
|
}
|
|
|
|
std::unique_ptr<SubmittableExecutor>
|
|
ImplementationPlatform::CreateSingleThreadExecutor() {
|
|
return absl::make_unique<g3::SingleThreadExecutor>();
|
|
}
|
|
|
|
std::unique_ptr<SubmittableExecutor>
|
|
ImplementationPlatform::CreateMultiThreadExecutor(int max_concurrency) {
|
|
return absl::make_unique<g3::MultiThreadExecutor>(max_concurrency);
|
|
}
|
|
|
|
std::unique_ptr<ScheduledExecutor>
|
|
ImplementationPlatform::CreateScheduledExecutor() {
|
|
return absl::make_unique<g3::ScheduledExecutor>();
|
|
}
|
|
|
|
std::unique_ptr<AtomicUint32>
|
|
ImplementationPlatform::CreateAtomicUint32(std::uint32_t value) {
|
|
return absl::make_unique<g3::AtomicUint32>(value);
|
|
}
|
|
|
|
std::unique_ptr<BluetoothAdapter>
|
|
ImplementationPlatform::CreateBluetoothAdapter() {
|
|
return absl::make_unique<g3::BluetoothAdapter>();
|
|
}
|
|
|
|
std::unique_ptr<CountDownLatch> ImplementationPlatform::CreateCountDownLatch(
|
|
std::int32_t count) {
|
|
return absl::make_unique<g3::CountDownLatch>(count);
|
|
}
|
|
|
|
std::unique_ptr<AtomicBoolean> ImplementationPlatform::CreateAtomicBoolean(
|
|
bool initial_value) {
|
|
return absl::make_unique<g3::AtomicBoolean>(initial_value);
|
|
}
|
|
|
|
std::unique_ptr<InputFile> ImplementationPlatform::CreateInputFile(
|
|
PayloadId payload_id, std::int64_t total_size) {
|
|
return absl::make_unique<shared::InputFile>(GetPayloadPath(payload_id),
|
|
total_size);
|
|
}
|
|
|
|
std::unique_ptr<OutputFile> ImplementationPlatform::CreateOutputFile(
|
|
PayloadId payload_id) {
|
|
return absl::make_unique<shared::OutputFile>(GetPayloadPath(payload_id));
|
|
}
|
|
|
|
std::unique_ptr<LogMessage> ImplementationPlatform::CreateLogMessage(
|
|
const char* file, int line, LogMessage::Severity severity) {
|
|
return absl::make_unique<g3::LogMessage>(file, line, severity);
|
|
}
|
|
|
|
std::unique_ptr<BluetoothClassicMedium>
|
|
ImplementationPlatform::CreateBluetoothClassicMedium(
|
|
api::BluetoothAdapter& adapter) {
|
|
return absl::make_unique<g3::BluetoothClassicMedium>(adapter);
|
|
}
|
|
|
|
std::unique_ptr<BleMedium> ImplementationPlatform::CreateBleMedium(
|
|
api::BluetoothAdapter& adapter) {
|
|
return absl::make_unique<g3::BleMedium>(adapter);
|
|
}
|
|
|
|
std::unique_ptr<ble_v2::BleMedium> ImplementationPlatform::CreateBleV2Medium(
|
|
api::BluetoothAdapter& adapter) {
|
|
return std::unique_ptr<ble_v2::BleMedium>();
|
|
}
|
|
|
|
std::unique_ptr<ServerSyncMedium>
|
|
ImplementationPlatform::CreateServerSyncMedium() {
|
|
return std::unique_ptr<ServerSyncMedium>(/*new ServerSyncMediumImpl()*/);
|
|
}
|
|
|
|
std::unique_ptr<WifiMedium> ImplementationPlatform::CreateWifiMedium() {
|
|
return std::unique_ptr<WifiMedium>();
|
|
}
|
|
|
|
std::unique_ptr<WifiLanMedium> ImplementationPlatform::CreateWifiLanMedium() {
|
|
return absl::make_unique<g3::WifiLanMedium>();
|
|
}
|
|
|
|
std::unique_ptr<WebRtcMedium> ImplementationPlatform::CreateWebRtcMedium() {
|
|
if (MediumEnvironment::Instance().GetEnvironmentConfig().webrtc_enabled) {
|
|
return absl::make_unique<g3::WebRtcMedium>();
|
|
} else {
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
std::unique_ptr<Mutex> ImplementationPlatform::CreateMutex(Mutex::Mode mode) {
|
|
if (mode == Mutex::Mode::kRecursive)
|
|
return absl::make_unique<g3::RecursiveMutex>();
|
|
else
|
|
return absl::make_unique<g3::Mutex>(mode == Mutex::Mode::kRegular);
|
|
}
|
|
|
|
std::unique_ptr<ConditionVariable>
|
|
ImplementationPlatform::CreateConditionVariable(Mutex* mutex) {
|
|
return std::unique_ptr<ConditionVariable>(
|
|
new g3::ConditionVariable(static_cast<g3::Mutex*>(mutex)));
|
|
}
|
|
|
|
} // namespace api
|
|
} // namespace nearby
|
|
} // namespace location
|