04e2fe20ab49b0672f6dbf130415f7a9e5b8411d
[platform/upstream/connectedhomeip.git] / examples / chip-tool / commands / echo / EchoCommand.cpp
1 /*
2  *   Copyright (c) 2020 Project CHIP Authors
3  *   All rights reserved.
4  *
5  *   Licensed under the Apache License, Version 2.0 (the "License");
6  *   you may not use this file except in compliance with the License.
7  *   You may obtain a copy of the License at
8  *
9  *       http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *   Unless required by applicable law or agreed to in writing, software
12  *   distributed under the License is distributed on an "AS IS" BASIS,
13  *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *   See the License for the specific language governing permissions and
15  *   limitations under the License.
16  *
17  */
18
19 #include "EchoCommand.h"
20
21 using namespace ::chip;
22
23 namespace {
24 static const char PAYLOAD[] = "Message from Standalone CHIP echo client!";
25
26 bool IsIdenticalMessage(System::PacketBufferHandle & buffer)
27 {
28     size_t dataLen = buffer->DataLength();
29     return (dataLen + 1 == sizeof PAYLOAD) && (memcmp(buffer->Start(), PAYLOAD, dataLen) == 0);
30 }
31 } // namespace
32
33 uint16_t EchoCommand::Encode(PacketBufferHandle & buffer, uint16_t bufferSize)
34 {
35     uint16_t payloadLen = 0;
36
37     if (strlen(PAYLOAD) > bufferSize)
38     {
39         ChipLogError(chipTool, "PAYLOAD length too big for PacketBuffer (> bufferSize)");
40     }
41     else
42     {
43         payloadLen = static_cast<uint16_t>(strlen(PAYLOAD));
44         memcpy(buffer->Start(), PAYLOAD, payloadLen);
45     }
46
47     return payloadLen;
48 }
49
50 bool EchoCommand::Decode(PacketBufferHandle & buffer) const
51 {
52     bool success = IsIdenticalMessage(buffer);
53
54     if (!success)
55     {
56         ChipLogError(chipTool, "Echo: Error \nSend: %s \nRecv: %.*s", PAYLOAD, buffer->DataLength(), buffer->Start());
57     }
58
59     return success;
60 }