blob: 99b0b0bdda96b445503d7147037fc77721615ff7 [file] [log] [blame]
Eric Newberry261dbc22015-07-22 23:18:18 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyeve3874232017-03-26 16:58:59 -05003 * Copyright (c) 2013-2017 Regents of the University of California.
Eric Newberry261dbc22015-07-22 23:18:18 -07004 *
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 "field-info.hpp"
23
24#include <boost/mpl/for_each.hpp>
25#include <boost/bind.hpp>
26
27namespace ndn {
28namespace lp {
Eric Newberry261dbc22015-07-22 23:18:18 -070029
30struct ExtractFieldInfo
31{
32 typedef void result_type;
33
34 template<typename T>
35 void
36 operator()(FieldInfo* info, T)
37 {
38 if (T::TlvType::value != info->tlvType) {
39 return;
40 }
41 info->isRecognized = true;
42 info->canIgnore = false;
43 info->isRepeatable = T::IsRepeatable::value;
44 info->locationSortOrder = getLocationSortOrder<typename T::FieldLocation>();
45 }
46};
47
48FieldInfo::FieldInfo()
49 : tlvType(0)
50 , isRecognized(false)
51 , canIgnore(false)
52 , isRepeatable(false)
53 , locationSortOrder(getLocationSortOrder<field_location_tags::Header>())
54{
55}
56
57FieldInfo::FieldInfo(uint64_t tlv)
58 : tlvType(tlv)
59 , isRecognized(false)
60 , canIgnore(false)
61 , isRepeatable(false)
62 , locationSortOrder(getLocationSortOrder<field_location_tags::Header>())
63{
64 boost::mpl::for_each<FieldSet>(boost::bind(ExtractFieldInfo(), this, _1));
65 if (!isRecognized) {
66 canIgnore = tlv::HEADER3_MIN <= tlvType && tlvType <= tlv::HEADER3_MAX &&
Eric Newberry3ed62472016-12-11 22:11:38 -070067 (tlvType & 0x03) == 0x00;
Eric Newberry261dbc22015-07-22 23:18:18 -070068 }
69}
70
Eric Newberry261dbc22015-07-22 23:18:18 -070071} // namespace lp
Eric Newberry3ed62472016-12-11 22:11:38 -070072} // namespace ndn