blob: 957829fbde22267c6b9a06b336ae5a5e227bdbc6 [file] [log] [blame]
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
Alexander Afanasyev8722d872014-07-02 13:00:29 -07003 * Copyright (c) 2012-2014 University of California, Los Angeles
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -08004 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -07005 * This file is part of ChronoSync, synchronization library for distributed realtime
6 * applications for NDN.
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -08007 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -07008 * ChronoSync is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation, either
10 * version 3 of the License, or (at your option) any later version.
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080011 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -070012 * ChronoSync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080015 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -070016 * You should have received a copy of the GNU General Public License along with
17 * ChronoSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * @author Zhenkai Zhu <http://irl.cs.ucla.edu/~zhenkai/>
20 * @author Chaoyi Bian <bcy@pku.edu.cn>
21 * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080022 */
23
24#ifndef SYNC_STD_NAME_INFO_H
25#define SYNC_STD_NAME_INFO_H
26
27#include "sync-name-info.h"
28#include <string>
29
30namespace Sync {
31
32class StdNameInfo : public NameInfo
33{
34public:
35 /**
36 * @brief Lookup existing or create new NameInfo object
37 * @param name routable prefix
38 */
39 static NameInfoConstPtr
40 FindOrCreate (const std::string &name);
41
Alexander Afanasyeva4ce9cf2012-03-06 14:29:58 -080042 /**
43 * @brief Destructor which will clean up m_names structure
44 */
45 virtual ~StdNameInfo ();
Yingdi Yu7c64e5c2014-04-30 14:06:37 -070046
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080047 // from NameInfo
48 virtual bool
49 operator == (const NameInfo &info) const;
50
Alexander Afanasyeva5625322012-03-06 00:03:41 -080051 virtual bool
52 operator < (const NameInfo &info) const;
53
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080054 virtual std::string
55 toString () const;
56
57private:
Yingdi Yu7c64e5c2014-04-30 14:06:37 -070058 // implementing a singleton pattern.
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080059 /**
60 * @brief Disabled default constructor. NameInfo object should be created through FindOrCreate static call.
61 */
62
63 /**
64 * @brief Disabled default
65 */
66 StdNameInfo () {}
Chaoyi Bianb1190282012-06-13 17:15:07 -070067 StdNameInfo& operator = (const StdNameInfo &info) { (void)info; return *this; }
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080068 StdNameInfo (const std::string &name);
Yingdi Yu7c64e5c2014-04-30 14:06:37 -070069
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080070 std::string m_name;
71};
72
73} // Sync
74
75#endif // SYNC_CCNX_NAME_INFO_H