/* * Copyright (c) 2022 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 "hilog_wrapper.h" #include "wallpaper_manager.h" #include "wallpaper_service_cb_stub.h" namespace OHOS { namespace WallpaperMgrService { WallpaperServiceCbStub::WallpaperServiceCbStub() { } int32_t WallpaperServiceCbStub::OnRemoteRequest( uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) { HILOG_INFO("WallpaperServiceCbStub::OnRemoteRequest start##ret = %{public}u", code); std::u16string myDescriptor = WallpaperServiceCbStub::GetDescriptor(); std::u16string remoteDescriptor = data.ReadInterfaceToken(); if (myDescriptor != remoteDescriptor) { HILOG_ERROR("end##descriptor checked fail!"); return E_CHECK_DESCRIPTOR_ERROR; } switch (code) { case static_cast(ONCALL): return HandleOnCall(data, reply); default: HILOG_ERROR("remote request unhandled: %{public}d.", code); return IPCObjectStub::OnRemoteRequest(code, data, reply, option); } return E_OK; } int32_t WallpaperServiceCbStub::HandleOnCall(MessageParcel &data, MessageParcel &reply) { HILOG_INFO("WallpaperServiceCbStub::HandleOnCall."); int32_t wallpaperType = data.ReadInt32(); OnCall(wallpaperType); HILOG_INFO("wallpaperType = %{public}d", wallpaperType); return 0; } int32_t WallpaperServiceCbStub::OnCall(const int32_t num) { HILOG_INFO("WallpaperServiceCbStub::OnCall."); WallpaperMgrService::WallpaperManager::GetInstance().GetCallback()(num); return 0; } } // namespace WallpaperMgrService } // namespace OHOS