blob: b0823e53ceb2aaccb161dda9679907c75afa2ae0 [file] [log] [blame]
// Copyright 2020 The Cobalt Authors. All Rights Reserved.
//
// 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.
#include "starboard/elf_loader/evergreen_config.h"
#include "starboard/common/log.h"
#include "starboard/common/mutex.h"
#include "starboard/common/scoped_ptr.h"
#include "starboard/memory.h"
#include "starboard/string.h"
namespace starboard {
namespace elf_loader {
static starboard::Mutex g_evergreen_config_mutex;
static scoped_ptr<EvergreenConfig> g_evergreen_config;
void EvergreenConfig::Create(
const char* library_path,
const char* content_path,
const void* (*custom_get_extension)(const char* name)) {
starboard::ScopedLock lock(g_evergreen_config_mutex);
g_evergreen_config.reset(
new EvergreenConfig(library_path, content_path, custom_get_extension));
}
const EvergreenConfig* EvergreenConfig::GetInstance() {
starboard::ScopedLock lock(g_evergreen_config_mutex);
return g_evergreen_config.get();
}
EvergreenConfig::EvergreenConfig(
const char* library_path,
const char* content_path,
const void* (*custom_get_extension)(const char* name))
: library_path_(library_path),
content_path_(content_path),
custom_get_extension_(custom_get_extension) {}
} // namespace elf_loader
} // namespace starboard