async_mqtt 5.0.0
Loading...
Searching...
No Matches
v3_1_1_pubrel.hpp
1// Copyright Takatoshi Kondo 2022
2//
3// Distributed under the Boost Software License, Version 1.0.
4// (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt)
6
7#if !defined(ASYNC_MQTT_PACKET_V3_1_1_PUBREL_HPP)
8#define ASYNC_MQTT_PACKET_V3_1_1_PUBREL_HPP
9
10#include <utility>
11#include <numeric>
12
13#include <boost/numeric/conversion/cast.hpp>
14
15#include <async_mqtt/exception.hpp>
16#include <async_mqtt/buffer.hpp>
17
18#include <async_mqtt/util/move.hpp>
19#include <async_mqtt/util/static_vector.hpp>
20#include <async_mqtt/util/endian_convert.hpp>
21
22#include <async_mqtt/packet/packet_id_type.hpp>
23#include <async_mqtt/packet/fixed_header.hpp>
24
25namespace async_mqtt::v3_1_1 {
26
27namespace as = boost::asio;
28
40template <std::size_t PacketIdBytes>
42public:
43 using packet_id_t = typename packet_id_type<PacketIdBytes>::type;
44
50 packet_id_t packet_id
51 )
52 : all_(all_.capacity())
53 {
54 all_[0] = static_cast<char>(make_fixed_header(control_packet_type::pubrel, 0b0010));
55 all_[1] = boost::numeric_cast<char>(PacketIdBytes);
56 endian_store(packet_id, &all_[2]);
57 }
58
60 // fixed_header
61 if (buf.empty()) {
62 throw make_error(
63 errc::bad_message,
64 "v3_1_1::pubrel_packet fixed_header doesn't exist"
65 );
66 }
67 all_.push_back(buf.front());
68 buf.remove_prefix(1);
69 auto cpt_opt = get_control_packet_type_with_check(static_cast<std::uint8_t>(all_.back()));
70 if (!cpt_opt || *cpt_opt != control_packet_type::pubrel) {
71 throw make_error(
72 errc::bad_message,
73 "v3_1_1::pubrel_packet fixed_header is invalid"
74 );
75 }
76
77 // remaining_length
78 if (buf.empty()) {
79 throw make_error(
80 errc::bad_message,
81 "v3_1_1::pubrel_packet remaining_length doesn't exist"
82 );
83 }
84 all_.push_back(buf.front());
85 buf.remove_prefix(1);
86 if (static_cast<std::uint8_t>(all_.back()) != PacketIdBytes) {
87 throw make_error(
88 errc::bad_message,
89 "v3_1_1::pubrel_packet remaining_length is invalid"
90 );
91 }
92
93 // variable header
94 if (buf.size() != PacketIdBytes) {
95 throw make_error(
96 errc::bad_message,
97 "v3_1_1::pubrel_packet variable header doesn't match its length"
98 );
99 }
100 std::copy(buf.begin(), buf.end(), std::back_inserter(all_));
101 }
102
103 constexpr control_packet_type type() const {
104 return control_packet_type::pubrel;
105 }
106
112 std::vector<as::const_buffer> const_buffer_sequence() const {
113 std::vector<as::const_buffer> ret;
114
115 ret.emplace_back(as::buffer(all_.data(), all_.size()));
116 return ret;
117 }
118
123 std::size_t size() const {
124 return all_.size();
125 }
126
131 static constexpr std::size_t num_of_const_buffer_sequence() {
132 return 1; // all
133 }
134
139 packet_id_t packet_id() const {
140 return endian_load<packet_id_t>(&all_[2]);
141 }
142
143private:
145};
146
147template <std::size_t PacketIdBytes>
148inline std::ostream& operator<<(std::ostream& o, basic_pubrel_packet<PacketIdBytes> const& v) {
149 o <<
150 "v3_1_1::pubrel{" <<
151 "pid:" << v.packet_id() <<
152 "}";
153 return o;
154}
155
161
162} // namespace async_mqtt::v3_1_1
163
164#endif // ASYNC_MQTT_PACKET_V3_1_1_PUBREL_HPP
Definition packet_variant.hpp:49
buffer that has string_view interface This class provides string_view interface. This class hold stri...
Definition buffer.hpp:30
MQTT PUBREL packet (v3.1.1)
Definition v3_1_1_pubrel.hpp:41
std::vector< as::const_buffer > const_buffer_sequence() const
Create const buffer sequence it is for boost asio APIs.
Definition v3_1_1_pubrel.hpp:112
static constexpr std::size_t num_of_const_buffer_sequence()
Get number of element of const_buffer_sequence.
Definition v3_1_1_pubrel.hpp:131
std::size_t size() const
Get packet size.
Definition v3_1_1_pubrel.hpp:123
packet_id_t packet_id() const
Get packet_id.
Definition v3_1_1_pubrel.hpp:139
basic_pubrel_packet(packet_id_t packet_id)
constructor
Definition v3_1_1_pubrel.hpp:49