summaryrefslogtreecommitdiff
path: root/implementation/protocol/src/assign_client_ack_command.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/protocol/src/assign_client_ack_command.cpp')
-rw-r--r--implementation/protocol/src/assign_client_ack_command.cpp79
1 files changed, 79 insertions, 0 deletions
diff --git a/implementation/protocol/src/assign_client_ack_command.cpp b/implementation/protocol/src/assign_client_ack_command.cpp
new file mode 100644
index 0000000..b5d19ea
--- /dev/null
+++ b/implementation/protocol/src/assign_client_ack_command.cpp
@@ -0,0 +1,79 @@
+// Copyright (C) 2021 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+#include <limits>
+
+#include "../include/assign_client_ack_command.hpp"
+
+namespace vsomeip_v3 {
+namespace protocol {
+
+assign_client_ack_command::assign_client_ack_command()
+ : command(id_e::ASSIGN_CLIENT_ACK_ID) {
+
+}
+
+void
+assign_client_ack_command::serialize(std::vector<byte_t> &_buffer,
+ error_e &_error) const {
+
+ size_t its_size(COMMAND_HEADER_SIZE + sizeof(assigned_));
+
+ if (its_size > std::numeric_limits<command_size_t>::max()) {
+
+ _error = error_e::ERROR_MAX_COMMAND_SIZE_EXCEEDED;
+ return;
+ }
+
+ // resize buffer
+ _buffer.resize(its_size);
+
+ // set size
+ size_ = static_cast<command_size_t>(sizeof(assigned_));
+
+ // serialize header
+ command::serialize(_buffer, _error);
+ if (_error != error_e::ERROR_OK)
+ return;
+
+ // serialize payload
+ std::memcpy(&_buffer[COMMAND_POSITION_PAYLOAD], &assigned_,
+ sizeof(assigned_));
+}
+
+void
+assign_client_ack_command::deserialize(const std::vector<byte_t> &_buffer,
+ error_e &_error) {
+
+ if (COMMAND_HEADER_SIZE + sizeof(assigned_) > _buffer.size()) {
+
+ _error = error_e::ERROR_NOT_ENOUGH_BYTES;
+ return;
+ }
+
+ // deserialize header
+ command::deserialize(_buffer, _error);
+ if (_error != error_e::ERROR_OK)
+ return;
+
+ // deserialize payload
+ std::memcpy(&assigned_, &_buffer[COMMAND_POSITION_PAYLOAD],
+ sizeof(assigned_));
+}
+
+client_t
+assign_client_ack_command::get_assigned() const {
+
+ return (assigned_);
+}
+
+void
+assign_client_ack_command::set_assigned(client_t _assigned) {
+
+ assigned_ = _assigned;
+}
+
+} // namespace protocol
+} // namespace vsomeip