blob: 67957af4b0648f2e7562b039f8b4bd537ca639c2 [file] [log] [blame]
Eric Newberry261dbc22015-07-22 23:18:18 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2015 Regents of the University of California.
4 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
22#include "packet.hpp"
23#include "detail/field-info.hpp"
24
25#include <boost/range/adaptor/reversed.hpp>
26
27namespace ndn {
28namespace lp {
29
30Packet::Packet()
31 : m_wire(Block(tlv::LpPacket))
32{
33}
34
35Packet::Packet(const Block& wire)
36{
37 wireDecode(wire);
38}
39
40template<encoding::Tag TAG>
41size_t
42Packet::wireEncode(EncodingImpl<TAG>& encoder) const
43{
44 if (m_wire.hasWire()) {
45 return m_wire.size();
46 }
47
48 size_t length = 0;
49
50 for (const Block& element : boost::adaptors::reverse(m_wire.elements())) {
51 length += encoder.prependBlock(element);
52 }
53
54 length += encoder.prependVarNumber(length);
55 length += encoder.prependVarNumber(tlv::LpPacket);
56
57 return length;
58}
59
60template size_t
61Packet::wireEncode<encoding::EncoderTag>(EncodingImpl<encoding::EncoderTag>& encoder) const;
62
63template size_t
64Packet::wireEncode<encoding::EstimatorTag>(EncodingImpl<encoding::EstimatorTag>& encoder) const;
65
66const Block&
67Packet::wireEncode() const
68{
69 if (m_wire.hasWire()) {
70 return m_wire;
71 }
72
73 EncodingEstimator estimator;
74 size_t estimatedSize = wireEncode(estimator);
75
76 EncodingBuffer buffer(estimatedSize, 0);
77 wireEncode(buffer);
78
79 m_wire = buffer.block();
80 return m_wire;
81}
82
83void
84Packet::wireDecode(const Block& wire)
85{
86 if (wire.type() == ndn::tlv::Interest || wire.type() == ndn::tlv::Data) {
87 m_wire = Block(tlv::LpPacket);
88 add<FragmentField>(make_pair(wire.begin(), wire.end()));
89 return;
90 }
91
92 wire.parse();
93
94 bool isFirst = true;
95 detail::FieldInfo prev;
96 for (const Block& element : wire.elements()) {
97 detail::FieldInfo info(element.type());
98
99 if (!info.isRecognized && !info.canIgnore) {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700100 BOOST_THROW_EXCEPTION(Error("unknown field cannot be ignored"));
Eric Newberry261dbc22015-07-22 23:18:18 -0700101 }
102
103 if (!isFirst) {
104 if (info.tlvType == prev.tlvType && !info.isRepeatable) {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700105 BOOST_THROW_EXCEPTION(Error("non-repeatable field cannot be repeated"));
Eric Newberry261dbc22015-07-22 23:18:18 -0700106 }
107
108 else if (info.tlvType != prev.tlvType && !detail::compareFieldSortOrder(prev, info)) {
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700109 BOOST_THROW_EXCEPTION(Error("fields are not in correct sort order"));
Eric Newberry261dbc22015-07-22 23:18:18 -0700110 }
111 }
112
113 isFirst = false;
114 prev = info;
115 }
116
117 m_wire = wire;
118}
119
120bool
121Packet::comparePos(const Block& first, const uint64_t second)
122{
123 detail::FieldInfo firstInfo(first.type());
124 detail::FieldInfo secondInfo(second);
125 return detail::compareFieldSortOrder(firstInfo, secondInfo);
126}
127
128} // namespace lp
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -0700129} // namespace ndn