1eace7efcSopenharmony_ci/*
2eace7efcSopenharmony_ci * Copyright (c) 2024 Huawei Device Co., Ltd.
3eace7efcSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
4eace7efcSopenharmony_ci * you may not use this file except in compliance with the License.
5eace7efcSopenharmony_ci * You may obtain a copy of the License at
6eace7efcSopenharmony_ci *
7eace7efcSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
8eace7efcSopenharmony_ci *
9eace7efcSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
10eace7efcSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
11eace7efcSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12eace7efcSopenharmony_ci * See the License for the specific language governing permissions and
13eace7efcSopenharmony_ci * limitations under the License.
14eace7efcSopenharmony_ci */
15eace7efcSopenharmony_ci
16eace7efcSopenharmony_ci#include "exit_reason.h"
17eace7efcSopenharmony_ci
18eace7efcSopenharmony_ci#include "hilog_tag_wrapper.h"
19eace7efcSopenharmony_ci#include "parcel_macro_base.h"
20eace7efcSopenharmony_ci#include "string_ex.h"
21eace7efcSopenharmony_ci
22eace7efcSopenharmony_cinamespace OHOS {
23eace7efcSopenharmony_cinamespace AAFwk {
24eace7efcSopenharmony_ciExitReason::ExitReason(const Reason reason, const std::string &exitMsg)
25eace7efcSopenharmony_ci{
26eace7efcSopenharmony_ci    this->reason = reason;
27eace7efcSopenharmony_ci    this->exitMsg = exitMsg;
28eace7efcSopenharmony_ci}
29eace7efcSopenharmony_ci
30eace7efcSopenharmony_cibool ExitReason::ReadFromParcel(Parcel &parcel)
31eace7efcSopenharmony_ci{
32eace7efcSopenharmony_ci    int32_t reasonData;
33eace7efcSopenharmony_ci    READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, reasonData);
34eace7efcSopenharmony_ci    reason = static_cast<Reason>(reasonData);
35eace7efcSopenharmony_ci
36eace7efcSopenharmony_ci    exitMsg = Str16ToStr8(parcel.ReadString16());
37eace7efcSopenharmony_ci    return true;
38eace7efcSopenharmony_ci}
39eace7efcSopenharmony_ci
40eace7efcSopenharmony_ciExitReason *ExitReason::Unmarshalling(Parcel &parcel)
41eace7efcSopenharmony_ci{
42eace7efcSopenharmony_ci    ExitReason *data = new (std::nothrow) ExitReason();
43eace7efcSopenharmony_ci    if (!data) {
44eace7efcSopenharmony_ci        TAG_LOGE(AAFwkTag::ABILITYMGR, "null data");
45eace7efcSopenharmony_ci        return nullptr;
46eace7efcSopenharmony_ci    }
47eace7efcSopenharmony_ci    if (!data->ReadFromParcel(parcel)) {
48eace7efcSopenharmony_ci        TAG_LOGE(AAFwkTag::ABILITYMGR, "read failed");
49eace7efcSopenharmony_ci        delete data;
50eace7efcSopenharmony_ci        data = nullptr;
51eace7efcSopenharmony_ci    }
52eace7efcSopenharmony_ci    return data;
53eace7efcSopenharmony_ci}
54eace7efcSopenharmony_ci
55eace7efcSopenharmony_cibool ExitReason::Marshalling(Parcel &parcel) const
56eace7efcSopenharmony_ci{
57eace7efcSopenharmony_ci    WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, static_cast<int32_t>(reason));
58eace7efcSopenharmony_ci    WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(exitMsg));
59eace7efcSopenharmony_ci    return true;
60eace7efcSopenharmony_ci}
61eace7efcSopenharmony_ci}  // namespace AppExecFwk
62eace7efcSopenharmony_ci}  // namespace OHOS
63