* Copyright (c) 2025 Huawei Device Co., Ltd.
* 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.
*/
#ifndef FOUNDATION_ABILITY_RUNTIME_SIMULATOR_COMMON_CONTEXT_H
#define FOUNDATION_ABILITY_RUNTIME_SIMULATOR_COMMON_CONTEXT_H
#include <memory>
#include <mutex>
#include "application_info.h"
#include "bindable.h"
#include "configuration.h"
#include "hap_module_info.h"
#include "options.h"
namespace OHOS {
namespace Global {
namespace Resource {
class ResourceManager;
enum DeviceType : int32_t;
}
}
namespace AbilityRuntime {
class Context : public Bindable, public std::enable_shared_from_this<Context> {
public:
Context() = default;
~Context() = default;
virtual std::string GetBundleName() const = 0;
virtual std::string GetBundleCodePath() = 0;
virtual std::string GetBundleCodeDir() = 0;
virtual std::string GetCacheDir() = 0;
virtual std::string GetTempDir() = 0;
virtual std::string GetResourceDir() = 0;
virtual std::string GetFilesDir() = 0;
virtual std::string GetDatabaseDir() = 0;
virtual std::string GetPreferencesDir() = 0;
virtual std::string GetDistributedFilesDir() = 0;
virtual std::string GetCloudFileDir() = 0;
virtual std::string GetLogFileDir() = 0;
virtual void SwitchArea(int mode) = 0;
virtual int GetArea() = 0;
virtual std::string GetBaseDir() = 0;
virtual std::shared_ptr<AppExecFwk::Configuration> GetConfiguration() = 0;
virtual Options GetOptions() = 0;
virtual void SetOptions(const Options &options) = 0;
virtual std::shared_ptr<AppExecFwk::ApplicationInfo> GetApplicationInfo() const = 0;
virtual std::shared_ptr<AppExecFwk::HapModuleInfo> GetHapModuleInfo() const = 0;
virtual std::shared_ptr<Global::Resource::ResourceManager> GetResourceManager() const = 0;
virtual std::shared_ptr<Context> CreateModuleContext(const std::string &moduleName) = 0;
virtual std::shared_ptr<Context> CreateModuleContext(
const std::string &bundleName, const std::string &moduleName) = 0;
* @brief Getting derived class
*
* @tparam T template
* @param context the context object
* @return std::shared_ptr<T> derived class
*/
template<class T>
static std::shared_ptr<T> ConvertTo(const std::shared_ptr<Context> &context)
{
if constexpr (!std::is_same_v<T, typename T::SelfType>) {
return nullptr;
}
if (context && context->IsContext(T::CONTEXT_TYPE_ID)) {
return std::static_pointer_cast<T>(context);
}
return nullptr;
}
using SelfType = Context;
static const size_t CONTEXT_TYPE_ID;
protected:
virtual bool IsContext(size_t contextTypeId)
{
return contextTypeId == CONTEXT_TYPE_ID;
}
};
}
}
#endif