mirror of
https://github.com/openharmony/ability_ability_runtime.git
synced 2026-08-25 12:23:20 -04:00
4a022a9368
Signed-off-by: xinking129 <xinxin13@huawei.com>
95 lines
3.0 KiB
C++
95 lines
3.0 KiB
C++
/*
|
|
* Copyright (c) 2021-2024 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.
|
|
*/
|
|
|
|
#include "service_extension.h"
|
|
|
|
#include "configuration_utils.h"
|
|
#include "connection_manager.h"
|
|
#include "hilog_tag_wrapper.h"
|
|
#include "hilog_wrapper.h"
|
|
#include "js_service_extension.h"
|
|
#include "runtime.h"
|
|
#include "service_extension_context.h"
|
|
|
|
namespace OHOS {
|
|
namespace AbilityRuntime {
|
|
using namespace OHOS::AppExecFwk;
|
|
|
|
CreatorFunc ServiceExtension::creator_ = nullptr;
|
|
void ServiceExtension::SetCreator(const CreatorFunc& creator)
|
|
{
|
|
creator_ = creator;
|
|
}
|
|
|
|
ServiceExtension* ServiceExtension::Create(const std::unique_ptr<Runtime>& runtime)
|
|
{
|
|
if (!runtime) {
|
|
return new ServiceExtension();
|
|
}
|
|
|
|
if (creator_) {
|
|
return creator_(runtime);
|
|
}
|
|
|
|
TAG_LOGD(AAFwkTag::SERVICE_EXT, "called");
|
|
switch (runtime->GetLanguage()) {
|
|
case Runtime::Language::JS:
|
|
return JsServiceExtension::Create(runtime);
|
|
|
|
default:
|
|
return new ServiceExtension();
|
|
}
|
|
}
|
|
|
|
void ServiceExtension::Init(const std::shared_ptr<AbilityLocalRecord> &record,
|
|
const std::shared_ptr<OHOSApplication> &application,
|
|
std::shared_ptr<AbilityHandler> &handler,
|
|
const sptr<IRemoteObject> &token)
|
|
{
|
|
ExtensionBase<ServiceExtensionContext>::Init(record, application, handler, token);
|
|
TAG_LOGD(AAFwkTag::SERVICE_EXT, "ServiceExtension begin init context");
|
|
}
|
|
|
|
std::shared_ptr<ServiceExtensionContext> ServiceExtension::CreateAndInitContext(
|
|
const std::shared_ptr<AbilityLocalRecord> &record,
|
|
const std::shared_ptr<OHOSApplication> &application,
|
|
std::shared_ptr<AbilityHandler> &handler,
|
|
const sptr<IRemoteObject> &token)
|
|
{
|
|
std::shared_ptr<ServiceExtensionContext> context =
|
|
ExtensionBase<ServiceExtensionContext>::CreateAndInitContext(record, application, handler, token);
|
|
if (context == nullptr) {
|
|
TAG_LOGE(AAFwkTag::SERVICE_EXT, "ServiceExtension::CreateAndInitContext context is nullptr");
|
|
return context;
|
|
}
|
|
return context;
|
|
}
|
|
|
|
void ServiceExtension::OnConfigurationUpdated(const AppExecFwk::Configuration &configuration)
|
|
{
|
|
Extension::OnConfigurationUpdated(configuration);
|
|
|
|
auto context = GetContext();
|
|
if (context == nullptr) {
|
|
TAG_LOGE(AAFwkTag::SERVICE_EXT, "Context is invalid.");
|
|
return;
|
|
}
|
|
|
|
auto configUtils = std::make_shared<ConfigurationUtils>();
|
|
configUtils->UpdateGlobalConfig(configuration, context->GetResourceManager());
|
|
}
|
|
} // namespace AbilityRuntime
|
|
} // namespace OHOS
|