blob: b280535ff28dcb9486344281bb3d3c46d8054dbc [file] [log] [blame]
Teng Liang952d6fd2018-05-29 21:09:52 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -04003 * Copyright (c) 2014-2023, Regents of the University of California,
Teng Liang952d6fd2018-05-29 21:09:52 -07004 * 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.
10 *
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/>.
24 */
25
Davide Pesavento3dade002019-03-19 11:29:56 -060026#ifndef NFD_TESTS_DAEMON_RIB_IO_FIXTURE_HPP
27#define NFD_TESTS_DAEMON_RIB_IO_FIXTURE_HPP
Teng Liang952d6fd2018-05-29 21:09:52 -070028
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040029#include "tests/daemon/global-io-fixture.hpp"
Davide Pesavento2bdf60c2019-02-19 18:23:45 -050030
Teng Liang952d6fd2018-05-29 21:09:52 -070031#include <condition_variable>
32#include <mutex>
Davide Pesavento2bdf60c2019-02-19 18:23:45 -050033#include <thread>
Teng Liang952d6fd2018-05-29 21:09:52 -070034
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040035namespace nfd::tests {
Teng Liang952d6fd2018-05-29 21:09:52 -070036
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040037/**
38 * \brief A base test fixture that provides both main and RIB io_context.
Teng Liang952d6fd2018-05-29 21:09:52 -070039 */
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040040class RibIoFixture : public GlobalIoFixture
Teng Liang952d6fd2018-05-29 21:09:52 -070041{
42protected:
43 RibIoFixture();
44
45 ~RibIoFixture();
46
47protected:
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040048 /**
49 * \brief Poll main and RIB thread io_context to process all pending I/O events.
Teng Liang952d6fd2018-05-29 21:09:52 -070050 *
51 * This call will execute all pending I/O events, including events that are posted
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040052 * inside the processing event, i.e., main and RIB thread io_context will be polled
Teng Liang952d6fd2018-05-29 21:09:52 -070053 * repeatedly until all pending events are processed.
54 *
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040055 * \warning Must be called from the main thread.
Teng Liang952d6fd2018-05-29 21:09:52 -070056 */
57 void
58 poll();
59
60protected:
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040061 /**
62 * \brief Pointer to global main io_context.
Teng Liangf59e58f2018-09-07 16:41:54 -070063 */
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040064 boost::asio::io_context* g_mainIo = nullptr;
Teng Liangf59e58f2018-09-07 16:41:54 -070065
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040066 /**
67 * \brief Pointer to global RIB io_context.
Teng Liang952d6fd2018-05-29 21:09:52 -070068 */
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040069 boost::asio::io_context* g_ribIo = nullptr;
Teng Liang952d6fd2018-05-29 21:09:52 -070070
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040071 /**
72 * \brief Global RIB thread.
Teng Liang952d6fd2018-05-29 21:09:52 -070073 */
Davide Pesavento2bdf60c2019-02-19 18:23:45 -050074 std::thread g_ribThread;
Teng Liang952d6fd2018-05-29 21:09:52 -070075
76private:
77 bool m_shouldStopRibIo = false;
78 bool m_shouldPollRibIo = false;
79 std::mutex m_ribPollMutex;
80 std::condition_variable m_ribPollStartCv;
81 std::condition_variable m_ribPollEndCv;
82};
83
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040084/**
85 * \brief RibIoFixture that also overrides steady clock and system clock.
Teng Liang952d6fd2018-05-29 21:09:52 -070086 */
Davide Pesavento21353752020-11-20 00:43:44 -050087class RibIoTimeFixture : public ClockFixture, public RibIoFixture
Teng Liang952d6fd2018-05-29 21:09:52 -070088{
Davide Pesaventob7703ad2019-03-23 21:12:56 -040089private:
Teng Liang952d6fd2018-05-29 21:09:52 -070090 void
Davide Pesavento21353752020-11-20 00:43:44 -050091 afterTick() final;
Teng Liang952d6fd2018-05-29 21:09:52 -070092};
93
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040094} // namespace nfd::tests
Teng Liang952d6fd2018-05-29 21:09:52 -070095
Davide Pesavento3dade002019-03-19 11:29:56 -060096#endif // NFD_TESTS_DAEMON_RIB_IO_FIXTURE_HPP