blob: 5fec4fc2be699097f996abeb487053073c77498f [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventod90338d2021-01-07 17:50:05 -05002/*
3 * Copyright (c) 2014-2021, The University of Memphis,
Nick Gordonf8b5bcd2016-08-11 15:06:50 -05004 * Regents of the University of California
akmhoque3d06e792014-05-27 16:23:20 -05005 *
6 * This file is part of NLSR (Named-data Link State Routing).
7 * See AUTHORS.md for complete list of NLSR authors and contributors.
8 *
9 * NLSR is free software: you can redistribute it and/or modify it under the terms
10 * of the GNU General Public License as published by the Free Software Foundation,
11 * either version 3 of the License, or (at your option) any later version.
12 *
13 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
19 *
20 * \author A K M Mahmudul Hoque <ahoque1@memphis.edu>
Davide Pesaventod90338d2021-01-07 17:50:05 -050021 */
22
akmhoque31d1d4b2014-05-05 22:08:14 -050023#ifndef NLSR_NAME_HELPER_HPP
24#define NLSR_NAME_HELPER_HPP
25
Davide Pesaventod90338d2021-01-07 17:50:05 -050026#include "common.hpp"
akmhoque31d1d4b2014-05-05 22:08:14 -050027
28namespace nlsr {
29namespace util {
Alexander Afanasyev7decbbf2014-08-24 21:29:01 -070030
Nick G97e34942016-07-11 14:46:27 -050031/*!
32 \brief search a name component in ndn::Name and return the position of the component
33 \param name where to search the searchString
34 \param searchString the string to search in name
35 \return -1 if searchString not found else return the position
36 starting from 0
akmhoque31d1d4b2014-05-05 22:08:14 -050037 */
Davide Pesaventod90338d2021-01-07 17:50:05 -050038inline int32_t
akmhoque31d1d4b2014-05-05 22:08:14 -050039getNameComponentPosition(const ndn::Name& name, const std::string& searchString)
40{
41 ndn::name::Component component(searchString);
42 size_t nameSize = name.size();
akmhoque157b0a42014-05-13 00:26:37 -050043 for (uint32_t i = 0; i < nameSize; i++) {
44 if (component == name[i]) {
akmhoque31d1d4b2014-05-05 22:08:14 -050045 return (int32_t)i;
46 }
47 }
48 return -1;
49}
50
Nick Gordonfad8e252016-08-11 14:21:38 -050051} // namespace util
akmhoque31d1d4b2014-05-05 22:08:14 -050052} // namespace nlsr
53
Davide Pesaventod90338d2021-01-07 17:50:05 -050054#endif // NLSR_NAME_HELPER_HPP