2022-12-27 09:32:52 +05:30
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (c) 2020-2022 Project CHIP Authors
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2023-01-03 15:25:44 +05:30
|
|
|
use super::core::IMStatusCode;
|
2022-12-27 09:32:52 +05:30
|
|
|
use super::core::OpCode;
|
|
|
|
use super::messages::ib;
|
|
|
|
use super::messages::msg;
|
|
|
|
use super::messages::msg::InvReq;
|
|
|
|
use super::InteractionModel;
|
|
|
|
use super::Transaction;
|
|
|
|
use crate::{
|
|
|
|
error::*,
|
|
|
|
tlv::{get_root_node_struct, print_tlv_list, FromTLV, TLVElement, TLVWriter, TagType},
|
|
|
|
transport::{packet::Packet, proto_demux::ResponseRequired},
|
|
|
|
};
|
|
|
|
use log::error;
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! cmd_enter {
|
|
|
|
($e:expr) => {{
|
|
|
|
use colored::Colorize;
|
|
|
|
info! {"{} {}", "Handling Command".cyan(), $e.cyan()}
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CommandReq<'a, 'b, 'c, 'd> {
|
|
|
|
pub cmd: ib::CmdPath,
|
|
|
|
pub data: TLVElement<'a>,
|
|
|
|
pub resp: &'a mut TLVWriter<'b, 'c>,
|
|
|
|
pub trans: &'a mut Transaction<'d>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl InteractionModel {
|
|
|
|
pub fn handle_invoke_req(
|
|
|
|
&mut self,
|
|
|
|
trans: &mut Transaction,
|
|
|
|
rx_buf: &[u8],
|
|
|
|
proto_tx: &mut Packet,
|
|
|
|
) -> Result<ResponseRequired, Error> {
|
2023-01-10 08:53:04 +01:00
|
|
|
if InteractionModel::req_timeout_handled(trans, proto_tx)? {
|
2023-01-03 15:25:44 +05:30
|
|
|
return Ok(ResponseRequired::Yes);
|
|
|
|
}
|
2022-12-27 09:32:52 +05:30
|
|
|
|
2023-01-03 15:25:44 +05:30
|
|
|
proto_tx.set_proto_opcode(OpCode::InvokeResponse as u8);
|
2022-12-27 09:32:52 +05:30
|
|
|
let mut tw = TLVWriter::new(proto_tx.get_writebuf()?);
|
|
|
|
let root = get_root_node_struct(rx_buf)?;
|
|
|
|
let inv_req = InvReq::from_tlv(&root)?;
|
|
|
|
|
2023-01-04 08:38:18 +05:30
|
|
|
let timed_tx = trans.get_timeout().map(|_| true);
|
2023-01-10 08:53:04 +01:00
|
|
|
let timed_request = inv_req.timed_request.filter(|a| *a);
|
2023-01-03 15:25:44 +05:30
|
|
|
// Either both should be None, or both should be Some(true)
|
|
|
|
if timed_tx != timed_request {
|
|
|
|
InteractionModel::create_status_response(proto_tx, IMStatusCode::TimedRequestMisMatch)?;
|
|
|
|
return Ok(ResponseRequired::Yes);
|
|
|
|
}
|
|
|
|
|
2022-12-27 09:32:52 +05:30
|
|
|
tw.start_struct(TagType::Anonymous)?;
|
|
|
|
// Suppress Response -> TODO: Need to revisit this for cases where we send a command back
|
|
|
|
tw.bool(
|
|
|
|
TagType::Context(msg::InvRespTag::SupressResponse as u8),
|
|
|
|
false,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
self.consumer
|
|
|
|
.consume_invoke_cmd(&inv_req, trans, &mut tw)
|
|
|
|
.map_err(|e| {
|
|
|
|
error!("Error in handling command: {:?}", e);
|
|
|
|
print_tlv_list(rx_buf);
|
|
|
|
e
|
|
|
|
})?;
|
|
|
|
tw.end_container()?;
|
|
|
|
Ok(ResponseRequired::Yes)
|
|
|
|
}
|
|
|
|
}
|