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 | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2019 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 | |
| 30 | namespace nfd { |
| 31 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 32 | /** \brief Returns the global io_service instance for the calling thread. |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 33 | */ |
| 34 | boost::asio::io_service& |
| 35 | getGlobalIoService(); |
| 36 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 37 | /** \brief Returns the global Scheduler instance for the calling thread. |
Teng Liang | f59e58f | 2018-09-07 16:41:54 -0700 | [diff] [blame] | 38 | */ |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 39 | Scheduler& |
| 40 | getScheduler(); |
Teng Liang | 952d6fd | 2018-05-29 21:09:52 -0700 | [diff] [blame] | 41 | |
Teng Liang | 952d6fd | 2018-05-29 21:09:52 -0700 | [diff] [blame] | 42 | boost::asio::io_service& |
Teng Liang | f59e58f | 2018-09-07 16:41:54 -0700 | [diff] [blame] | 43 | getMainIoService(); |
| 44 | |
| 45 | boost::asio::io_service& |
Teng Liang | 952d6fd | 2018-05-29 21:09:52 -0700 | [diff] [blame] | 46 | getRibIoService(); |
| 47 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 48 | void |
| 49 | setMainIoService(boost::asio::io_service* mainIo); |
| 50 | |
| 51 | void |
| 52 | setRibIoService(boost::asio::io_service* ribIo); |
| 53 | |
| 54 | /** \brief Run a function on the main io_service instance. |
| 55 | */ |
| 56 | void |
| 57 | runOnMainIoService(const std::function<void()>& f); |
| 58 | |
| 59 | /** \brief Run a function on the RIB io_service instance. |
| 60 | */ |
| 61 | void |
| 62 | runOnRibIoService(const std::function<void()>& f); |
| 63 | |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 64 | #ifdef WITH_TESTS |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 65 | /** \brief Destroy the global io_service instance. |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 66 | * |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 67 | * It will be recreated at the next invocation of getGlobalIoService(). |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame] | 68 | */ |
| 69 | void |
| 70 | resetGlobalIoService(); |
| 71 | #endif |
| 72 | |
| 73 | } // namespace nfd |
| 74 | |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 75 | #endif // NFD_DAEMON_COMMON_GLOBAL_HPP |