blob: 333bae286ac1550350cf9950a283aa265affaf05 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi1e46be32015-01-08 20:18:05 -07003 * Copyright (c) 2014-2015, Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Junxiao Shi1e46be32015-01-08 20:18:05 -070024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_UDP_FACE_HPP
27#define NFD_DAEMON_FACE_UDP_FACE_HPP
Giulio Grassi624f6c62014-02-18 19:42:14 +010028
29#include "datagram-face.hpp"
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070030#include "core/scheduler.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010031
Davide Pesaventod8d4d982014-03-21 18:47:58 +010032namespace nfd {
Giulio Grassi624f6c62014-02-18 19:42:14 +010033
34/**
Davide Pesavento94279412015-02-27 01:29:32 +010035 * \brief Implementation of Face abstraction that uses
36 * unicast UDP as underlying transport mechanism
Giulio Grassi624f6c62014-02-18 19:42:14 +010037 */
38class UdpFace : public DatagramFace<boost::asio::ip::udp>
39{
40public:
Davide Pesavento292e5e12015-03-13 02:08:33 +010041 UdpFace(const FaceUri& remoteUri, const FaceUri& localUri,
42 protocol::socket socket, bool isOnDemand,
43 const time::seconds& idleTimeout);
Giulio Grassi624f6c62014-02-18 19:42:14 +010044
Davide Pesavento66ff0982015-01-29 22:39:00 +010045 ndn::nfd::FaceStatus
46 getFaceStatus() const DECL_OVERRIDE;
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070047
48private:
49 void
50 closeIfIdle();
51
52private:
Davide Pesaventobe40fb12015-02-23 21:09:34 +010053 const time::seconds m_idleTimeout;
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070054 time::steady_clock::TimePoint m_lastIdleCheck;
Davide Pesavento292e5e12015-03-13 02:08:33 +010055 scheduler::ScopedEventId m_closeIfIdleEvent;
Davide Pesavento94279412015-02-27 01:29:32 +010056
57 // friend because it needs to invoke protected Face::setOnDemand
58 friend class UdpChannel;
Giulio Grassi624f6c62014-02-18 19:42:14 +010059};
60
61} // namespace nfd
62
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070063#endif // NFD_DAEMON_FACE_UDP_FACE_HPP