| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (c) 2014-2017, Regents of the University of California. |
| * |
| * This file is part of NDNS (Named Data Networking Domain Name Service). |
| * See AUTHORS.md for complete list of NDNS authors and contributors. |
| * |
| * NDNS is free software: you can redistribute it and/or modify it under the terms |
| * of the GNU General Public License as published by the Free Software Foundation, |
| * either version 3 of the License, or (at your option) any later version. |
| * |
| * NDNS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| * PURPOSE. See the GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License along with |
| * NDNS, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| #include "ndns-label.hpp" |
| |
| #include <ndn-cxx/data.hpp> |
| #include <ndn-cxx/interest.hpp> |
| |
| namespace ndn { |
| namespace ndns { |
| namespace label { |
| |
| inline size_t |
| calculateSkip(const Name& name, |
| const Name& zone) |
| { |
| size_t skip = 0; |
| |
| skip = zone.size(); |
| BOOST_ASSERT(name.size() > skip); |
| BOOST_ASSERT(name.getPrefix(zone.size()) == zone); |
| |
| BOOST_ASSERT(name.get(skip) == NDNS_ITERATIVE_QUERY); |
| |
| ++skip; |
| return skip; |
| } |
| |
| bool |
| matchName(const Interest& interest, |
| const Name& zone, |
| MatchResult& result) |
| { |
| // zoneName / <Update>|rrLabel / UPDATE|rrType / [VERSION] |
| |
| const Name& name = interest.getName(); |
| size_t skip = calculateSkip(name, zone); |
| |
| if (name.size() - skip < 1) |
| return false; |
| |
| size_t offset = 1; |
| if (name.get(-offset).isVersion()) { |
| result.version = name.get(-offset); |
| ++offset; |
| } |
| else { |
| result.version = name::Component(); |
| } |
| |
| result.rrType = name.get(-offset); |
| result.rrLabel = name.getSubName(skip, std::max<size_t>(0, name.size() - skip - offset)); |
| |
| return true; |
| } |
| |
| bool |
| matchName(const Data& data, |
| const Name& zone, |
| MatchResult& result) |
| { |
| // zoneName / <Update>|rrLabel / UPDATE|rrType |
| |
| const Name& name = data.getName(); |
| size_t skip = calculateSkip(name, zone); |
| |
| if (name.size() - skip < 2) |
| return false; |
| |
| result.version = name.get(-1); |
| result.rrType = name.get(-2); |
| result.rrLabel = name.getSubName(skip, std::max<size_t>(0, name.size() - skip - 2)); |
| |
| return true; |
| } |
| |
| } // namespace label |
| } // namespace ndns |
| } // namespace ndn |