3d88b1797a
PiperOrigin-RevId: 483438131
102 lines
3.4 KiB
C++
102 lines
3.4 KiB
C++
// Copyright 2019 The MediaPipe Authors.
|
|
//
|
|
// 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.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include <fstream>
|
|
#include <sstream>
|
|
|
|
#include "absl/strings/match.h"
|
|
#include "mediapipe/framework/port/file_helpers.h"
|
|
#include "mediapipe/framework/port/ret_check.h"
|
|
#include "mediapipe/framework/port/statusor.h"
|
|
#include "mediapipe/util/resource_util.h"
|
|
|
|
namespace mediapipe {
|
|
|
|
namespace {
|
|
absl::StatusOr<std::string> PathToResourceAsFileInternal(
|
|
const std::string& path) {
|
|
NSString* ns_path = [NSString stringWithUTF8String:path.c_str()];
|
|
Class mediapipeGraphClass = NSClassFromString(@"MPPGraph");
|
|
NSString* resource_dir =
|
|
[[NSBundle bundleForClass:mediapipeGraphClass] resourcePath];
|
|
NSString* resolved_ns_path =
|
|
[resource_dir stringByAppendingPathComponent:ns_path];
|
|
std::string resolved_path = [resolved_ns_path UTF8String];
|
|
RET_CHECK([[NSFileManager defaultManager] fileExistsAtPath:resolved_ns_path])
|
|
<< "cannot find file: " << resolved_path;
|
|
return resolved_path;
|
|
}
|
|
} // namespace
|
|
|
|
namespace internal {
|
|
absl::Status DefaultGetResourceContents(const std::string& path,
|
|
std::string* output,
|
|
bool read_as_binary) {
|
|
if (!read_as_binary) {
|
|
LOG(WARNING) << "Setting \"read_as_binary\" to false is a no-op on ios.";
|
|
}
|
|
ASSIGN_OR_RETURN(std::string full_path, PathToResourceAsFile(path));
|
|
return file::GetContents(full_path, output, read_as_binary);
|
|
}
|
|
} // namespace internal
|
|
|
|
absl::StatusOr<std::string> PathToResourceAsFile(const std::string& path) {
|
|
// Return full path.
|
|
if (absl::StartsWith(path, "/")) {
|
|
return path;
|
|
}
|
|
|
|
// Try to load a relative path or a base filename as is.
|
|
{
|
|
auto status_or_path = PathToResourceAsFileInternal(path);
|
|
if (status_or_path.ok()) {
|
|
LOG(INFO) << "Successfully loaded: " << path;
|
|
return status_or_path;
|
|
}
|
|
}
|
|
|
|
// If that fails, assume it was a relative path, and try just the base name.
|
|
{
|
|
const size_t last_slash_idx = path.find_last_of("\\/");
|
|
RET_CHECK(last_slash_idx != std::string::npos)
|
|
<< path << " doesn't have a slash in it"; // Make sure it's a path.
|
|
auto base_name = path.substr(last_slash_idx + 1);
|
|
auto status_or_path = PathToResourceAsFileInternal(base_name);
|
|
if (status_or_path.ok()) {
|
|
LOG(INFO) << "Successfully loaded: " << base_name;
|
|
return status_or_path;
|
|
}
|
|
}
|
|
|
|
// Try the test environment.
|
|
{
|
|
absl::string_view workspace = "mediapipe";
|
|
const char* test_srcdir = std::getenv("TEST_SRCDIR");
|
|
auto test_path =
|
|
file::JoinPath(test_srcdir ? test_srcdir : "", workspace, path);
|
|
if ([[NSFileManager defaultManager]
|
|
fileExistsAtPath:[NSString
|
|
stringWithUTF8String:test_path.c_str()]]) {
|
|
LOG(INFO) << "Successfully loaded: " << test_path;
|
|
return test_path;
|
|
}
|
|
}
|
|
|
|
return path;
|
|
}
|
|
|
|
} // namespace mediapipe
|