/* * 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. */ #ifndef FOUNDATION_APPEXECFWK_SERVICES_APPMGR_INCLUDE_APP_SPAWN_MSG_WRAPPER_H #define FOUNDATION_APPEXECFWK_SERVICES_APPMGR_INCLUDE_APP_SPAWN_MSG_WRAPPER_H #include #include #include #include "nocopyable.h" #include "client_socket.h" namespace OHOS { namespace AppExecFwk { struct AppSpawnStartMsg { int32_t uid; int32_t gid; std::vector gids; std::string procName; std::string soPath; }; using AppSpawnMsg = AppSpawn::ClientSocket::AppProperty; constexpr auto LEN_PID = sizeof(pid_t); union AppSpawnPidMsg { pid_t pid = 0; char pidBuf[LEN_PID]; }; class AppSpawnMsgWrapper { public: /** * Constructor. */ AppSpawnMsgWrapper() = default; /** * Destructor */ ~AppSpawnMsgWrapper(); /** * Disable copy. */ DISALLOW_COPY_AND_MOVE(AppSpawnMsgWrapper); /** * Verify message and assign to member variable. * * @param startMsg, request message. */ bool AssembleMsg(const AppSpawnStartMsg &startMsg); /** * Get function, return isValid_. */ bool IsValid() const { return isValid_; } /** * Get function, return member variable message. */ const void *GetMsgBuf() const { return reinterpret_cast(msg_); } /** * Get function, return message length. */ int32_t GetMsgLength() const { return isValid_ ? sizeof(AppSpawnMsg) : 0; } private: /** * Verify message. * * @param startMsg, request message. */ bool VerifyMsg(const AppSpawnStartMsg &startMsg) const; /** * Print message. * * @param startMsg, request message. */ void DumpMsg() const; /** * Release message. */ void FreeMsg(); private: bool isValid_ = false; // because AppSpawnMsg's size is uncertain, so should use raw pointer. AppSpawnMsg *msg_ = nullptr; }; } // namespace AppExecFwk } // namespace OHOS #endif // FOUNDATION_APPEXECFWK_SERVICES_APPMGR_INCLUDE_APP_SPAWN_MSG_WRAPPER_H