summaryrefslogtreecommitdiff
path: root/implementation/message/src/payload_impl.cpp
blob: 7617cdc1afc279f0975d09b0585afce3c91b692d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Copyright (C) 2014-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 "../include/deserializer.hpp"
#include "../include/payload_impl.hpp"
#include "../include/serializer.hpp"

namespace vsomeip_v3 {

payload_impl::payload_impl()
    : data_() {
}

payload_impl::payload_impl(const byte_t *_data, uint32_t _size) {
    data_.assign(_data, _data + _size);
}

payload_impl::payload_impl(const std::vector<byte_t> &_data)
    : data_(_data) {
}

payload_impl::payload_impl(const payload_impl& _payload)
    : data_(_payload.data_) {
}

payload_impl::~payload_impl() {
}

bool payload_impl::operator==(const payload &_other) {
    bool is_equal(true);
    try {
        const payload_impl &other = dynamic_cast< const payload_impl & >(_other);
        is_equal = (data_ == other.data_);
    }
    catch (...) {
        is_equal = false;
    }
    return is_equal;
}

byte_t * payload_impl::get_data() {
    return data_.data();
}

const byte_t * payload_impl::get_data() const {
    return data_.data();
}

length_t payload_impl::get_length() const {
    return length_t(data_.size());
}

void payload_impl::set_capacity(length_t _capacity) {
    data_.reserve(_capacity);
}

void payload_impl::set_data(const byte_t *_data, const length_t _length) {
    data_.assign(_data, _data + _length);
}

void payload_impl::set_data(const std::vector< byte_t > &_data) {
    data_ = _data;
}

void payload_impl::set_data(std::vector< byte_t > &&_data) {
    data_ = std::move(_data);
}

bool payload_impl::serialize(serializer *_to) const {
    return (0 != _to && _to->serialize(data_));
}

bool payload_impl::deserialize(deserializer *_from) {
    return (0 != _from && _from->deserialize(data_));
}

} // namespace vsomeip_v3