global.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2022 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  *
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  **/
24 
25 #ifndef NFD_DAEMON_COMMON_GLOBAL_HPP
26 #define NFD_DAEMON_COMMON_GLOBAL_HPP
27 
28 #include "core/common.hpp"
29 
30 #include <boost/asio/io_service.hpp>
31 
32 namespace nfd {
33 
36 boost::asio::io_service&
38 
41 Scheduler&
42 getScheduler();
43 
44 boost::asio::io_service&
46 
47 boost::asio::io_service&
49 
50 void
51 setMainIoService(boost::asio::io_service* mainIo);
52 
53 void
54 setRibIoService(boost::asio::io_service* ribIo);
55 
58 void
59 runOnMainIoService(const std::function<void()>& f);
60 
63 void
64 runOnRibIoService(const std::function<void()>& f);
65 
66 #ifdef NFD_WITH_TESTS
71 void
72 resetGlobalIoService();
73 #endif
74 
75 } // namespace nfd
76 
77 #endif // NFD_DAEMON_COMMON_GLOBAL_HPP
Definition: common.hpp:77
void setMainIoService(boost::asio::io_service *mainIo)
Definition: global.cpp:77
void runOnMainIoService(const std::function< void()> &f)
Run a function on the main io_service instance.
Definition: global.cpp:89
boost::asio::io_service & getRibIoService()
Definition: global.cpp:70
boost::asio::io_service & getMainIoService()
Definition: global.cpp:63
boost::asio::io_service & getGlobalIoService()
Returns the global io_service instance for the calling thread.
Definition: global.cpp:36
void runOnRibIoService(const std::function< void()> &f)
Run a function on the RIB io_service instance.
Definition: global.cpp:95
Scheduler & getScheduler()
Returns the global Scheduler instance for the calling thread.
Definition: global.cpp:45
void setRibIoService(boost::asio::io_service *ribIo)
Definition: global.cpp:83