Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Teng Liang | 952d6fd | 2018-05-29 21:09:52 -0700 | [diff] [blame] | 2 | /* |
Davide Pesavento | a9b09b6 | 2022-06-04 14:07:25 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2022 Regents of the University of California, |
Teng Liang | 952d6fd | 2018-05-29 21:09:52 -0700 | [diff] [blame] | 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 |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 9 | * |
| 10 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 11 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 12 | * |
| 13 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 14 | * of the GNU General Public License as published by the Free Software Foundation, |
| 15 | * either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 18 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 19 | * PURPOSE. See the GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 23 | **/ |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 24 | |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 25 | #ifndef NFD_DAEMON_COMMON_GLOBAL_HPP |
| 26 | #define NFD_DAEMON_COMMON_GLOBAL_HPP |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 27 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 28 | #include "core/common.hpp" |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 29 | |
Davide Pesavento | a9b09b6 | 2022-06-04 14:07:25 -0400 | [diff] [blame] | 30 | #include <boost/asio/io_service.hpp> |
| 31 | |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 32 | namespace nfd { |
| 33 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 34 | /** \brief Returns the global io_service instance for the calling thread. |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 35 | */ |
| 36 | boost::asio::io_service& |
| 37 | getGlobalIoService(); |
| 38 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 39 | /** \brief Returns the global Scheduler instance for the calling thread. |
Teng Liang | f59e58f | 2018-09-07 16:41:54 -0700 | [diff] [blame] | 40 | */ |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 41 | Scheduler& |
| 42 | getScheduler(); |
Teng Liang | 952d6fd | 2018-05-29 21:09:52 -0700 | [diff] [blame] | 43 | |
Teng Liang | 952d6fd | 2018-05-29 21:09:52 -0700 | [diff] [blame] | 44 | boost::asio::io_service& |
Teng Liang | f59e58f | 2018-09-07 16:41:54 -0700 | [diff] [blame] | 45 | getMainIoService(); |
| 46 | |
| 47 | boost::asio::io_service& |
Teng Liang | 952d6fd | 2018-05-29 21:09:52 -0700 | [diff] [blame] | 48 | getRibIoService(); |
| 49 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 50 | void |
| 51 | setMainIoService(boost::asio::io_service* mainIo); |
| 52 | |
| 53 | void |
| 54 | setRibIoService(boost::asio::io_service* ribIo); |
| 55 | |
| 56 | /** \brief Run a function on the main io_service instance. |
| 57 | */ |
| 58 | void |
| 59 | runOnMainIoService(const std::function<void()>& f); |
| 60 | |
| 61 | /** \brief Run a function on the RIB io_service instance. |
| 62 | */ |
| 63 | void |
| 64 | runOnRibIoService(const std::function<void()>& f); |
| 65 | |
Davide Pesavento | 264af77 | 2021-02-09 21:48:24 -0500 | [diff] [blame] | 66 | #ifdef NFD_WITH_TESTS |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 67 | /** \brief Destroy the global io_service instance. |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 68 | * |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 69 | * It will be recreated at the next invocation of getGlobalIoService(). |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 70 | */ |
| 71 | void |
| 72 | resetGlobalIoService(); |
| 73 | #endif |
| 74 | |
| 75 | } // namespace nfd |
| 76 | |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 77 | #endif // NFD_DAEMON_COMMON_GLOBAL_HPP |