blob: 35300fa799325d32726a5baf77596c910f8199a8 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Muktadir R Chowdhury800833b2016-07-29 13:43:59 -05003 * Copyright (c) 2014-2016, The University of Memphis,
alvy297f4162015-03-03 17:15:33 -06004 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
alvy297f4162015-03-03 17:15:33 -060021
akmhoquefdbddb12014-05-02 18:35:19 -050022#ifndef NLSR_NAME_PREFIX_LIST_HPP
23#define NLSR_NAME_PREFIX_LIST_HPP
akmhoque53353462014-04-22 08:43:45 -050024
25#include <list>
26#include <string>
akmhoquefdbddb12014-05-02 18:35:19 -050027#include <boost/cstdint.hpp>
akmhoque31d1d4b2014-05-05 22:08:14 -050028#include <ndn-cxx/name.hpp>
akmhoquec8a10f72014-04-25 18:42:55 -050029
akmhoque53353462014-04-22 08:43:45 -050030
31namespace nlsr {
akmhoquec8a10f72014-04-25 18:42:55 -050032class NamePrefixList
akmhoque53353462014-04-22 08:43:45 -050033{
34
35public:
akmhoquec8a10f72014-04-25 18:42:55 -050036 NamePrefixList();
akmhoque53353462014-04-22 08:43:45 -050037
akmhoquec8a10f72014-04-25 18:42:55 -050038 ~NamePrefixList();
akmhoque53353462014-04-22 08:43:45 -050039
alvy297f4162015-03-03 17:15:33 -060040 /** \brief inserts name into NamePrefixList
41 * \return true if the name is inserted, otherwise false
42 */
43 bool
akmhoque31d1d4b2014-05-05 22:08:14 -050044 insert(const ndn::Name& name);
akmhoque53353462014-04-22 08:43:45 -050045
alvy297f4162015-03-03 17:15:33 -060046 /** \brief removes name from NamePrefixList
47 * \return true if the name is removed, otherwise false
48 */
49 bool
akmhoque31d1d4b2014-05-05 22:08:14 -050050 remove(const ndn::Name& name);
akmhoque53353462014-04-22 08:43:45 -050051
52 void
53 sort();
54
akmhoque31d1d4b2014-05-05 22:08:14 -050055 size_t
akmhoque53353462014-04-22 08:43:45 -050056 getSize()
57 {
58 return m_nameList.size();
59 }
60
akmhoque31d1d4b2014-05-05 22:08:14 -050061 std::list<ndn::Name>&
akmhoque53353462014-04-22 08:43:45 -050062 getNameList()
63 {
64 return m_nameList;
65 }
66
67 void
akmhoque674b0b12014-05-20 14:33:28 -050068 writeLog();
69
akmhoque53353462014-04-22 08:43:45 -050070private:
akmhoque31d1d4b2014-05-05 22:08:14 -050071 std::list<ndn::Name> m_nameList;
akmhoque53353462014-04-22 08:43:45 -050072
73};
74
75}//namespace nlsr
76
akmhoquefdbddb12014-05-02 18:35:19 -050077#endif //NLSR_NAME_PREFIX_LIST_HPP