Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Eric Newberry | 4d261b6 | 2016-11-10 13:40:09 -0700 | [diff] [blame^] | 3 | * Copyright (c) 2013-2016 Regents of the University of California. |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 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 | #ifndef NDN_CXX_LP_FIELDS_HPP |
| 23 | #define NDN_CXX_LP_FIELDS_HPP |
| 24 | |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 25 | #include "detail/field-decl.hpp" |
Junxiao Shi | 4b46998 | 2015-12-03 18:20:19 +0000 | [diff] [blame] | 26 | |
| 27 | #include "sequence.hpp" |
| 28 | #include "cache-policy.hpp" |
| 29 | #include "nack-header.hpp" |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 30 | |
| 31 | #include <boost/mpl/set.hpp> |
| 32 | |
| 33 | namespace ndn { |
| 34 | namespace lp { |
| 35 | |
| 36 | typedef detail::FieldDecl<field_location_tags::Header, |
| 37 | Sequence, |
| 38 | tlv::Sequence> SequenceField; |
| 39 | BOOST_CONCEPT_ASSERT((Field<SequenceField>)); |
| 40 | |
| 41 | typedef detail::FieldDecl<field_location_tags::Header, |
| 42 | uint64_t, |
| 43 | tlv::FragIndex> FragIndexField; |
| 44 | BOOST_CONCEPT_ASSERT((Field<FragIndexField>)); |
| 45 | |
| 46 | typedef detail::FieldDecl<field_location_tags::Header, |
| 47 | uint64_t, |
| 48 | tlv::FragCount> FragCountField; |
| 49 | BOOST_CONCEPT_ASSERT((Field<FragCountField>)); |
| 50 | |
| 51 | typedef detail::FieldDecl<field_location_tags::Header, |
| 52 | NackHeader, |
| 53 | tlv::Nack> NackField; |
| 54 | BOOST_CONCEPT_ASSERT((Field<NackField>)); |
| 55 | |
| 56 | typedef detail::FieldDecl<field_location_tags::Header, |
| 57 | uint64_t, |
| 58 | tlv::NextHopFaceId> NextHopFaceIdField; |
| 59 | BOOST_CONCEPT_ASSERT((Field<NextHopFaceIdField>)); |
| 60 | |
| 61 | typedef detail::FieldDecl<field_location_tags::Header, |
| 62 | CachePolicy, |
| 63 | tlv::CachePolicy> CachePolicyField; |
| 64 | BOOST_CONCEPT_ASSERT((Field<CachePolicyField>)); |
| 65 | |
| 66 | typedef detail::FieldDecl<field_location_tags::Header, |
| 67 | uint64_t, |
| 68 | tlv::IncomingFaceId> IncomingFaceIdField; |
| 69 | BOOST_CONCEPT_ASSERT((Field<IncomingFaceIdField>)); |
| 70 | |
Eric Newberry | 4d261b6 | 2016-11-10 13:40:09 -0700 | [diff] [blame^] | 71 | typedef detail::FieldDecl<field_location_tags::Header, |
| 72 | uint64_t, |
| 73 | tlv::CongestionMark> CongestionMarkField; |
| 74 | BOOST_CONCEPT_ASSERT((Field<CongestionMarkField>)); |
| 75 | |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 76 | /** |
| 77 | * The value of the wire encoded field is the data between the provided iterators. During |
| 78 | * encoding, the data is copied from the Buffer into the wire buffer. |
| 79 | */ |
| 80 | typedef detail::FieldDecl<field_location_tags::Fragment, |
| 81 | std::pair<Buffer::const_iterator, Buffer::const_iterator>, |
| 82 | tlv::Fragment> FragmentField; |
| 83 | BOOST_CONCEPT_ASSERT((Field<FragmentField>)); |
| 84 | |
| 85 | /** |
| 86 | * \brief set of all field declarations |
| 87 | */ |
| 88 | typedef boost::mpl::set< |
| 89 | FragmentField, |
| 90 | SequenceField, |
| 91 | FragIndexField, |
| 92 | FragCountField, |
| 93 | NackField, |
| 94 | NextHopFaceIdField, |
| 95 | CachePolicyField, |
Eric Newberry | 4d261b6 | 2016-11-10 13:40:09 -0700 | [diff] [blame^] | 96 | IncomingFaceIdField, |
| 97 | CongestionMarkField |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 98 | > FieldSet; |
| 99 | |
| 100 | } // namespace lp |
| 101 | } // namespace ndn |
| 102 | |
Junxiao Shi | 4b46998 | 2015-12-03 18:20:19 +0000 | [diff] [blame] | 103 | #endif // NDN_CXX_LP_FIELDS_HPP |