• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 /*
3  * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "form_msg_event_connection.h"
18 
19 #include <cinttypes>
20 
21 #include "appexecfwk_errors.h"
22 #include "form_constants.h"
23 #include "form_supply_callback.h"
24 #include "form_task_mgr.h"
25 #include "hilog_wrapper.h"
26 #include "ipc_types.h"
27 #include "message_parcel.h"
28 #include "want.h"
29 
30 namespace OHOS {
31 namespace AppExecFwk {
FormMsgEventConnection(const int64_t formId,const Want & want,const std::string & bundleName,const std::string & abilityName)32 FormMsgEventConnection::FormMsgEventConnection(const int64_t formId, const Want& want,
33     const std::string &bundleName, const std::string &abilityName)
34     :formId_(formId),
35     want_(want)
36 {
37     SetProviderKey(bundleName, abilityName);
38 }
39 /**
40  * @brief OnAbilityConnectDone, AbilityMs notify caller ability the result of connect.
41  *
42  * @param element Service ability's ElementName.
43  * @param remoteObject The session proxy of service ability.
44  * @param resultCode ERR_OK on success, others on failure.
45  * @return none.
46  */
OnAbilityConnectDone(const AppExecFwk::ElementName & element,const sptr<IRemoteObject> & remoteObject,int resultCode)47 void FormMsgEventConnection::OnAbilityConnectDone(
48     const AppExecFwk::ElementName &element, const sptr<IRemoteObject> &remoteObject, int resultCode)
49 {
50     HILOG_INFO("%{public}s called.", __func__);
51     if (resultCode != ERR_OK) {
52         HILOG_ERROR("%{public}s, abilityName:%{public}s, formId:%{public}" PRId64 ", resultCode:%{public}d",
53             __func__, element.GetAbilityName().c_str(), formId_, resultCode);
54         return;
55     }
56     FormSupplyCallback::GetInstance()->AddConnection(this);
57 
58     if (want_.HasParameter(Constants::PARAM_MESSAGE_KEY)) {
59         std::string message = want_.GetStringParam(Constants::PARAM_MESSAGE_KEY);
60         Want eventWant = Want(want_);
61         eventWant.SetParam(Constants::FORM_CONNECT_ID, this->GetConnectId());
62         FormTaskMgr::GetInstance().PostFormEventTask(formId_, message, eventWant, remoteObject);
63     } else {
64         HILOG_ERROR("%{public}s error, message info is not exist", __func__);
65     }
66 }
67 }  // namespace AppExecFwk
68 }  // namespace OHOS