1 /*
2  * Copyright (c) 2024 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "negotiate_command.h"
17 #include "conn_log.h"
18 #include "softbus_error_code.h"
19 #include "processor_selector_factory.h"
20 
21 namespace OHOS::SoftBus {
NegotiateCommand(const NegotiateMessage & msg,const std::shared_ptr<NegotiateChannel> & channel)22 NegotiateCommand::NegotiateCommand(const NegotiateMessage &msg, const std::shared_ptr<NegotiateChannel> &channel)
23     : msg_(msg), channel_(channel)
24 {
25 }
26 
GetRemoteDeviceId() const27 std::string NegotiateCommand::GetRemoteDeviceId() const
28 {
29     return channel_->GetRemoteDeviceId();
30 }
31 
GetProcessor()32 std::shared_ptr<WifiDirectProcessor> NegotiateCommand::GetProcessor()
33 {
34     auto selector = ProcessorSelectorFactory::GetInstance().NewSelector();
35     return (*selector)(msg_);
36 }
37 
GetNegotiateMessage()38 NegotiateMessage NegotiateCommand::GetNegotiateMessage()
39 {
40     return msg_;
41 }
42 
GetNegotiateChannel()43 std::shared_ptr<NegotiateChannel> NegotiateCommand::GetNegotiateChannel()
44 {
45     return channel_;
46 }
47 }
48 
49