blob: 868cf9e20e7b0f48be1e4384de7339e1a951da79 [file] [log] [blame]
Junxiao Shia4f2be82014-03-02 22:56:41 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (C) 2014 Named Data Networking Project
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NFD_FW_FACE_TABLE_HPP
8#define NFD_FW_FACE_TABLE_HPP
9
10#include "face/face.hpp"
11#include "core/map-value-iterator.hpp"
12
13namespace nfd
14{
15
16class Forwarder;
17
18/** \brief container of all Faces
19 */
20class FaceTable
21{
22public:
23 explicit
24 FaceTable(Forwarder& forwarder);
25
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070026 VIRTUAL_WITH_TESTS
27 ~FaceTable();
28
29 VIRTUAL_WITH_TESTS void
Junxiao Shia4f2be82014-03-02 22:56:41 -070030 add(shared_ptr<Face> face);
31
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070032 VIRTUAL_WITH_TESTS shared_ptr<Face>
Junxiao Shia4f2be82014-03-02 22:56:41 -070033 get(FaceId id) const;
34
35 size_t
36 size() const;
37
38public: // enumeration
39 typedef std::map<FaceId, shared_ptr<Face> > FaceMap;
40
41 /** \brief ForwarderIterator for shared_ptr<Face>
42 */
43 typedef MapValueIterator<FaceMap> const_iterator;
44
45 const_iterator
46 begin() const;
47
48 const_iterator
49 end() const;
50
Junxiao Shibd392bf2014-03-17 15:54:11 -070051public: // events
52 /** \brief fires after a Face is added
53 */
54 EventEmitter<shared_ptr<Face> > onAdd;
55
56 /** \brief fires before a Face is removed
57 *
58 * FaceId is valid when this event is fired
59 */
60 EventEmitter<shared_ptr<Face> > onRemove;
61
Junxiao Shia4f2be82014-03-02 22:56:41 -070062private:
Junxiao Shic542b2b2014-03-16 21:45:52 -070063 // remove is private because it's a subscriber of face.onFail event.
64 // face->close() closes a face and would trigger .remove(face)
65 void
66 remove(shared_ptr<Face> face);
67
68private:
Junxiao Shia4f2be82014-03-02 22:56:41 -070069 Forwarder& m_forwarder;
70 FaceId m_lastFaceId;
71 FaceMap m_faces;
72};
73
74inline shared_ptr<Face>
75FaceTable::get(FaceId id) const
76{
77 std::map<FaceId, shared_ptr<Face> >::const_iterator i = m_faces.find(id);
78 return (i == m_faces.end()) ? (shared_ptr<Face>()) : (i->second);
79}
80
81inline size_t
82FaceTable::size() const
83{
84 return m_faces.size();
85}
86
87inline FaceTable::const_iterator
88FaceTable::begin() const
89{
90 return const_iterator(m_faces.begin());
91}
92
93inline FaceTable::const_iterator
94FaceTable::end() const
95{
96 return const_iterator(m_faces.end());
97}
98
99} // namespace nfd
100
101#endif // NFD_FW_FACE_TABLE_HPP