mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 07:36:10 -04:00
173 lines
7.3 KiB
Plaintext
173 lines
7.3 KiB
Plaintext
// 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 "internal/platform/implementation/platform.h"
|
|
|
|
#include <string>
|
|
|
|
#import "internal/platform/implementation/ios/Source/Internal/GNCCore.h"
|
|
#include "internal/platform/implementation/ios/Source/Platform/atomic_boolean.h"
|
|
#include "internal/platform/implementation/ios/Source/Platform/atomic_uint32.h"
|
|
#include "internal/platform/implementation/ios/Source/Platform/condition_variable.h"
|
|
#include "internal/platform/implementation/ios/Source/Platform/count_down_latch.h"
|
|
#include "internal/platform/implementation/ios/Source/Platform/input_file.h"
|
|
#import "internal/platform/implementation/ios/Source/Platform/log_message.h"
|
|
#import "internal/platform/implementation/ios/Source/Platform/multi_thread_executor.h"
|
|
#include "internal/platform/implementation/ios/Source/Platform/mutex.h"
|
|
#import "internal/platform/implementation/ios/Source/Platform/scheduled_executor.h"
|
|
#import "internal/platform/implementation/ios/Source/Platform/single_thread_executor.h"
|
|
#import "internal/platform/implementation/ios/Source/Platform/utils.h"
|
|
#include "internal/platform/implementation/ios/Source/Platform/wifi_lan.h"
|
|
#include "internal/platform/implementation/mutex.h"
|
|
#include "internal/platform/implementation/shared/file.h"
|
|
#include "internal/platform/payload_id.h"
|
|
|
|
namespace location {
|
|
namespace nearby {
|
|
namespace api {
|
|
|
|
std::string ImplementationPlatform::GetDownloadPath(std::string& parent_folder,
|
|
std::string& file_name) {
|
|
// TODO(jfcarroll): This needs to be done correctly, we now have a file name and parent folder,
|
|
// they should be combined with the default download path
|
|
NSString* fileName = ObjCStringFromCppString(file_name);
|
|
NSURL* downloadsURL = [[NSFileManager defaultManager] URLForDirectory:NSDownloadsDirectory
|
|
inDomain:NSUserDomainMask
|
|
appropriateForURL:nil
|
|
create:YES
|
|
error:nil];
|
|
// TODO(b/227535777): If file name matches an existing file, it will be overwritten. Append a number until
|
|
// a unique file name is reached 'foobar (2).png'.
|
|
return CppStringFromObjCString([downloadsURL URLByAppendingPathComponent:fileName].path);
|
|
}
|
|
|
|
OSName ImplementationPlatform::GetCurrentOS() { return OSName::kiOS; }
|
|
|
|
// Atomics:
|
|
std::unique_ptr<AtomicBoolean> ImplementationPlatform::CreateAtomicBoolean(bool initial_value) {
|
|
return std::make_unique<ios::AtomicBoolean>(initial_value);
|
|
}
|
|
|
|
std::unique_ptr<AtomicUint32> ImplementationPlatform::CreateAtomicUint32(
|
|
std::uint32_t initial_value) {
|
|
return std::make_unique<ios::AtomicUint32>(initial_value);
|
|
}
|
|
|
|
std::unique_ptr<CountDownLatch> ImplementationPlatform::CreateCountDownLatch(std::int32_t count) {
|
|
return std::make_unique<ios::CountDownLatch>(count);
|
|
}
|
|
|
|
std::unique_ptr<Mutex> ImplementationPlatform::CreateMutex(Mutex::Mode mode) {
|
|
// iOS does not support unchecked Mutex in debug mode, therefore
|
|
// ios::Mutex is used for both kRegular and kRegularNoCheck.
|
|
if (mode == Mutex::Mode::kRecursive) {
|
|
return absl::make_unique<ios::RecursiveMutex>();
|
|
} else {
|
|
return absl::make_unique<ios::Mutex>();
|
|
}
|
|
}
|
|
|
|
std::unique_ptr<ConditionVariable> ImplementationPlatform::CreateConditionVariable(Mutex* mutex) {
|
|
return std::make_unique<ios::ConditionVariable>(static_cast<ios::Mutex*>(mutex));
|
|
}
|
|
|
|
ABSL_DEPRECATED("This interface will be deleted in the near future.")
|
|
std::unique_ptr<InputFile> ImplementationPlatform::CreateInputFile(PayloadId payload_id,
|
|
std::int64_t total_size) {
|
|
// Extract the NSURL object with payload_id from |GNCCore| which stores the maps. If the retrieved
|
|
// NSURL object is not nil, we create InputFile by ios::InputFile. The difference is
|
|
// that ios::InputFile implements to read bytes from local real file for sending.
|
|
GNCCore* core = GNCGetCore();
|
|
NSURL* url = [core extractURLWithPayloadID:payload_id];
|
|
if (url != nil) {
|
|
return std::make_unique<ios::InputFile>(url);
|
|
} else {
|
|
std::string parent_folder("");
|
|
std::string file_name(std::to_string(payload_id));
|
|
return shared::IOFile::CreateInputFile(GetDownloadPath(parent_folder, file_name), total_size);
|
|
}
|
|
}
|
|
|
|
std::unique_ptr<InputFile> ImplementationPlatform::CreateInputFile(absl::string_view file_path,
|
|
size_t size) {
|
|
return shared::IOFile::CreateInputFile(file_path, size);
|
|
}
|
|
|
|
ABSL_DEPRECATED("This interface will be deleted in the near future.")
|
|
std::unique_ptr<OutputFile> ImplementationPlatform::CreateOutputFile(PayloadId payload_id) {
|
|
std::string parent_folder("");
|
|
std::string file_name(std::to_string(payload_id));
|
|
return shared::IOFile::CreateOutputFile(GetDownloadPath(parent_folder, file_name));
|
|
}
|
|
|
|
std::unique_ptr<OutputFile> ImplementationPlatform::CreateOutputFile(absl::string_view file_path) {
|
|
return shared::IOFile::CreateOutputFile(file_path);
|
|
}
|
|
|
|
std::unique_ptr<LogMessage> ImplementationPlatform::CreateLogMessage(
|
|
const char* file, int line, LogMessage::Severity severity) {
|
|
return absl::make_unique<ios::LogMessage>(file, line, severity);
|
|
}
|
|
|
|
// Java-like Executors
|
|
std::unique_ptr<SubmittableExecutor> ImplementationPlatform::CreateSingleThreadExecutor() {
|
|
return std::make_unique<ios::SingleThreadExecutor>();
|
|
}
|
|
|
|
std::unique_ptr<SubmittableExecutor> ImplementationPlatform::CreateMultiThreadExecutor(
|
|
int max_concurrency) {
|
|
return std::make_unique<ios::MultiThreadExecutor>(max_concurrency);
|
|
}
|
|
|
|
std::unique_ptr<ScheduledExecutor> ImplementationPlatform::CreateScheduledExecutor() {
|
|
return std::make_unique<ios::ScheduledExecutor>();
|
|
}
|
|
|
|
// Mediums
|
|
std::unique_ptr<BluetoothAdapter> ImplementationPlatform::CreateBluetoothAdapter() {
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<BluetoothClassicMedium> ImplementationPlatform::CreateBluetoothClassicMedium(
|
|
api::BluetoothAdapter& adapter) {
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<BleMedium> ImplementationPlatform::CreateBleMedium(api::BluetoothAdapter& adapter) {
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<ble_v2::BleMedium>
|
|
ImplementationPlatform::CreateBleV2Medium(api::BluetoothAdapter& adapter) {
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<ServerSyncMedium> ImplementationPlatform::CreateServerSyncMedium() {
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<WifiMedium> ImplementationPlatform::CreateWifiMedium() { return nullptr; }
|
|
|
|
std::unique_ptr<WifiLanMedium> ImplementationPlatform::CreateWifiLanMedium() {
|
|
return std::make_unique<ios::WifiLanMedium>();
|
|
}
|
|
|
|
#ifndef NO_WEBRTC
|
|
std::unique_ptr<WebRtcMedium> ImplementationPlatform::CreateWebRtcMedium() { return nullptr; }
|
|
#endif
|
|
|
|
} // namespace api
|
|
} // namespace nearby
|
|
} // namespace location
|