/* * 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. */ #ifndef SERVICES_INCLUDE_INPUT_METHOD_SYSTEM_ABILITY_STUB_H #define SERVICES_INCLUDE_INPUT_METHOD_SYSTEM_ABILITY_STUB_H #include #include "global.h" #include "i_input_method_system_ability.h" #include "inputmethod_service_ipc_interface_code.h" #include "iremote_stub.h" #include "message_parcel.h" #include "refbase.h" namespace OHOS ::MiscServices { class InputMethodSystemAbilityStub : public IRemoteStub { public: int32_t OnRemoteRequest(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) override; private: int32_t InvalidRequest(MessageParcel &data, MessageParcel &reply) { return ERR_UNKNOWN_TRANSACTION; }; int32_t StartInputOnRemote(MessageParcel &data, MessageParcel &reply); int32_t ShowCurrentInputOnRemote(MessageParcel &data, MessageParcel &reply); int32_t HideCurrentInputOnRemote(MessageParcel &data, MessageParcel &reply); int32_t StopInputSessionOnRemote(MessageParcel &data, MessageParcel &reply); int32_t ShowInputOnRemote(MessageParcel &data, MessageParcel &reply); int32_t HideInputOnRemote(MessageParcel &data, MessageParcel &reply); int32_t ReleaseInputOnRemote(MessageParcel &data, MessageParcel &reply); int32_t RequestShowInputOnRemote(MessageParcel &data, MessageParcel &reply); int32_t RequestHideInputOnRemote(MessageParcel &data, MessageParcel &reply); int32_t GetCurrentInputMethodOnRemote(MessageParcel &data, MessageParcel &reply); int32_t GetCurrentInputMethodSubtypeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t ListInputMethodOnRemote(MessageParcel &data, MessageParcel &reply); int32_t SwitchInputMethodOnRemote(MessageParcel &data, MessageParcel &reply); int32_t DisplayOptionalInputMethodOnRemote(MessageParcel &data, MessageParcel &reply); int32_t SetCoreAndAgentOnRemote(MessageParcel &data, MessageParcel &reply); int32_t UnRegisteredProxyImeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t ListInputMethodSubtypeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t ListCurrentInputMethodSubtypeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t PanelStatusChangeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t UpdateListenEventFlagOnRemote(MessageParcel &data, MessageParcel &reply); int32_t IsCurrentImeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t IsInputTypeSupportedOnRemote(MessageParcel &data, MessageParcel &reply); int32_t StartInputTypeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t ExitCurrentInputTypeOnRemote(MessageParcel &data, MessageParcel &reply); // Deprecated because of no permission check, kept for compatibility int32_t HideCurrentInputOnRemoteDeprecated(MessageParcel &data, MessageParcel &reply); int32_t ShowCurrentInputOnRemoteDeprecated(MessageParcel &data, MessageParcel &reply); int32_t GetDefaultInputMethodOnRemote(MessageParcel &data, MessageParcel &reply); int32_t IsDefaultImeSetOnRemote(MessageParcel &data, MessageParcel &reply); int32_t EnableImeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t GetInputMethodConfigOnRemote(MessageParcel &data, MessageParcel &reply); int32_t IsPanelShownOnRemote(MessageParcel &data, MessageParcel &reply); int32_t GetSecurityModeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t IsDefaultImeOnRemote(MessageParcel &data, MessageParcel &reply); int32_t ConnectSystemCmdOnRemote(MessageParcel &data, MessageParcel &reply); int32_t IsCurrentImeByPidOnRemote(MessageParcel &data, MessageParcel &reply); int32_t InitConnectOnRemote(MessageParcel &data, MessageParcel &reply); using RequestHandler = int32_t (InputMethodSystemAbilityStub::*)(MessageParcel &, MessageParcel &); static inline constexpr RequestHandler HANDLERS[static_cast(InputMethodInterfaceCode::IMS_CMD_END)] = { &InputMethodSystemAbilityStub::InvalidRequest, [static_cast(InputMethodInterfaceCode::START_INPUT)] = &InputMethodSystemAbilityStub::StartInputOnRemote, [static_cast(InputMethodInterfaceCode::SHOW_CURRENT_INPUT)] = &InputMethodSystemAbilityStub::ShowCurrentInputOnRemote, [static_cast(InputMethodInterfaceCode::HIDE_CURRENT_INPUT)] = &InputMethodSystemAbilityStub::HideCurrentInputOnRemote, [static_cast(InputMethodInterfaceCode::SHOW_INPUT)] = &InputMethodSystemAbilityStub::ShowInputOnRemote, [static_cast(InputMethodInterfaceCode::HIDE_INPUT)] = &InputMethodSystemAbilityStub::HideInputOnRemote, [static_cast(InputMethodInterfaceCode::STOP_INPUT_SESSION)] = &InputMethodSystemAbilityStub::StopInputSessionOnRemote, [static_cast(InputMethodInterfaceCode::RELEASE_INPUT)] = &InputMethodSystemAbilityStub::ReleaseInputOnRemote, [static_cast(InputMethodInterfaceCode::REQUEST_SHOW_INPUT)] = &InputMethodSystemAbilityStub::RequestShowInputOnRemote, [static_cast(InputMethodInterfaceCode::REQUEST_HIDE_INPUT)] = &InputMethodSystemAbilityStub::RequestHideInputOnRemote, [static_cast(InputMethodInterfaceCode::GET_CURRENT_INPUT_METHOD)] = &InputMethodSystemAbilityStub::GetCurrentInputMethodOnRemote, [static_cast(InputMethodInterfaceCode::GET_CURRENT_INPUT_METHOD_SUBTYPE)] = &InputMethodSystemAbilityStub::GetCurrentInputMethodSubtypeOnRemote, [static_cast(InputMethodInterfaceCode::LIST_INPUT_METHOD)] = &InputMethodSystemAbilityStub::ListInputMethodOnRemote, [static_cast(InputMethodInterfaceCode::LIST_INPUT_METHOD_SUBTYPE)] = &InputMethodSystemAbilityStub::ListInputMethodSubtypeOnRemote, [static_cast(InputMethodInterfaceCode::LIST_CURRENT_INPUT_METHOD_SUBTYPE)] = &InputMethodSystemAbilityStub::ListCurrentInputMethodSubtypeOnRemote, [static_cast(InputMethodInterfaceCode::SWITCH_INPUT_METHOD)] = &InputMethodSystemAbilityStub::SwitchInputMethodOnRemote, [static_cast(InputMethodInterfaceCode::DISPLAY_OPTIONAL_INPUT_METHOD)] = &InputMethodSystemAbilityStub::DisplayOptionalInputMethodOnRemote, [static_cast(InputMethodInterfaceCode::SET_CORE_AND_AGENT)] = &InputMethodSystemAbilityStub::SetCoreAndAgentOnRemote, [static_cast(InputMethodInterfaceCode::SHOW_CURRENT_INPUT_DEPRECATED)] = &InputMethodSystemAbilityStub::ShowCurrentInputOnRemoteDeprecated, [static_cast(InputMethodInterfaceCode::HIDE_CURRENT_INPUT_DEPRECATED)] = &InputMethodSystemAbilityStub::HideCurrentInputOnRemoteDeprecated, [static_cast(InputMethodInterfaceCode::PANEL_STATUS_CHANGE)] = &InputMethodSystemAbilityStub::PanelStatusChangeOnRemote, [static_cast(InputMethodInterfaceCode::UPDATE_LISTEN_EVENT_FLAG)] = &InputMethodSystemAbilityStub::UpdateListenEventFlagOnRemote, [static_cast(InputMethodInterfaceCode::IS_CURRENT_IME)] = &InputMethodSystemAbilityStub::IsCurrentImeOnRemote, [static_cast(InputMethodInterfaceCode::UNREGISTERED_PROXY_IME)] = &InputMethodSystemAbilityStub::UnRegisteredProxyImeOnRemote, [static_cast(InputMethodInterfaceCode::IS_INPUT_TYPE_SUPPORTED)] = &InputMethodSystemAbilityStub::IsInputTypeSupportedOnRemote, [static_cast(InputMethodInterfaceCode::START_INPUT_TYPE)] = &InputMethodSystemAbilityStub::StartInputTypeOnRemote, [static_cast(InputMethodInterfaceCode::EXIT_CURRENT_INPUT_TYPE)] = &InputMethodSystemAbilityStub::ExitCurrentInputTypeOnRemote, [static_cast(InputMethodInterfaceCode::GET_DEFAULT_INPUT_METHOD)] = &InputMethodSystemAbilityStub::GetDefaultInputMethodOnRemote, [static_cast(InputMethodInterfaceCode::GET_INPUT_METHOD_SETTINGS)] = &InputMethodSystemAbilityStub::GetInputMethodConfigOnRemote, [static_cast(InputMethodInterfaceCode::IS_PANEL_SHOWN)] = &InputMethodSystemAbilityStub::IsPanelShownOnRemote, [static_cast(InputMethodInterfaceCode::GET_SECURITY_MODE)] = &InputMethodSystemAbilityStub::GetSecurityModeOnRemote, [static_cast(InputMethodInterfaceCode::IS_DEFAULT_IME)] = &InputMethodSystemAbilityStub::IsDefaultImeOnRemote, [static_cast(InputMethodInterfaceCode::CONNECT_SYSTEM_CMD)] = &InputMethodSystemAbilityStub::ConnectSystemCmdOnRemote, [static_cast(InputMethodInterfaceCode::IS_CURRENT_IME_BY_PID)] = &InputMethodSystemAbilityStub::IsCurrentImeByPidOnRemote, [static_cast(InputMethodInterfaceCode::INIT_CONNECT)] = &InputMethodSystemAbilityStub::InitConnectOnRemote, [static_cast(InputMethodInterfaceCode::IS_DEFAULT_IME_SET)] = &InputMethodSystemAbilityStub::IsDefaultImeSetOnRemote, [static_cast(InputMethodInterfaceCode::ENABLE_IME)] = &InputMethodSystemAbilityStub::EnableImeOnRemote, }; }; } // namespace OHOS::MiscServices #endif // SERVICES_INCLUDE_INPUT_METHOD_SYSTEM_ABILITY_STUB_H