Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 1 | /* -*- 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 | |
| 13 | namespace nfd |
| 14 | { |
| 15 | |
| 16 | class Forwarder; |
| 17 | |
| 18 | /** \brief container of all Faces |
| 19 | */ |
| 20 | class FaceTable |
| 21 | { |
| 22 | public: |
| 23 | explicit |
| 24 | FaceTable(Forwarder& forwarder); |
| 25 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 26 | VIRTUAL_WITH_TESTS |
| 27 | ~FaceTable(); |
| 28 | |
| 29 | VIRTUAL_WITH_TESTS void |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 30 | add(shared_ptr<Face> face); |
| 31 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 32 | VIRTUAL_WITH_TESTS shared_ptr<Face> |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 33 | get(FaceId id) const; |
| 34 | |
| 35 | size_t |
| 36 | size() const; |
| 37 | |
| 38 | public: // 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 | |
| 51 | private: |
Junxiao Shi | c542b2b | 2014-03-16 21:45:52 -0700 | [diff] [blame] | 52 | // remove is private because it's a subscriber of face.onFail event. |
| 53 | // face->close() closes a face and would trigger .remove(face) |
| 54 | void |
| 55 | remove(shared_ptr<Face> face); |
| 56 | |
| 57 | private: |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 58 | Forwarder& m_forwarder; |
| 59 | FaceId m_lastFaceId; |
| 60 | FaceMap m_faces; |
| 61 | }; |
| 62 | |
| 63 | inline shared_ptr<Face> |
| 64 | FaceTable::get(FaceId id) const |
| 65 | { |
| 66 | std::map<FaceId, shared_ptr<Face> >::const_iterator i = m_faces.find(id); |
| 67 | return (i == m_faces.end()) ? (shared_ptr<Face>()) : (i->second); |
| 68 | } |
| 69 | |
| 70 | inline size_t |
| 71 | FaceTable::size() const |
| 72 | { |
| 73 | return m_faces.size(); |
| 74 | } |
| 75 | |
| 76 | inline FaceTable::const_iterator |
| 77 | FaceTable::begin() const |
| 78 | { |
| 79 | return const_iterator(m_faces.begin()); |
| 80 | } |
| 81 | |
| 82 | inline FaceTable::const_iterator |
| 83 | FaceTable::end() const |
| 84 | { |
| 85 | return const_iterator(m_faces.end()); |
| 86 | } |
| 87 | |
| 88 | } // namespace nfd |
| 89 | |
| 90 | #endif // NFD_FW_FACE_TABLE_HPP |