/* * Copyright (c) 2021 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 "wallpaper_extension.h" #include "ability_loader.h" #include "connection_manager.h" #include "hilog_wrapper.h" #include "js_wallpaper_extension.h" #include "runtime.h" #include "wallpaper_extension_context.h" namespace OHOS { namespace AbilityRuntime { using namespace OHOS::AppExecFwk; WallpaperExtension* WallpaperExtension::Create(const std::unique_ptr& runtime) { HILOG_INFO("jws WallpaperExtension::Create runtime"); if (!runtime) { return new WallpaperExtension(); } HILOG_INFO("jws WallpaperExtension::Create runtime"); switch (runtime->GetLanguage()) { case Runtime::Language::JS: return JsWallpaperExtension::Create(runtime); default: return new WallpaperExtension(); } } void WallpaperExtension::Init(const std::shared_ptr &record, const std::shared_ptr &application, std::shared_ptr &handler, const sptr &token) { HILOG_INFO("jws WallpaperExtension begin init context"); ExtensionBase::Init(record, application, handler, token); HILOG_INFO("WallpaperExtension begin init context"); } std::shared_ptr WallpaperExtension::CreateAndInitContext( const std::shared_ptr &record, const std::shared_ptr &application, std::shared_ptr &handler, const sptr &token) { HILOG_INFO("jws WallpaperExtension begin init context"); std::shared_ptr context = ExtensionBase::CreateAndInitContext(record, application, handler, token); if (context == nullptr) { HILOG_ERROR("WallpaperExtension::CreateAndInitContext context is nullptr"); return context; } return context; } } }