Kea 2.5.8
library_manager_collection.h
Go to the documentation of this file.
1// Copyright (C) 2013-2023 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#ifndef LIBRARY_MANAGER_COLLECTION_H
8#define LIBRARY_MANAGER_COLLECTION_H
9
11
12#include <boost/shared_ptr.hpp>
13#include <hooks/libinfo.h>
14
15#include <vector>
16
17namespace isc {
18namespace hooks {
19
25public:
26 LoadLibrariesNotCalled(const char* file, size_t line, const char* what) :
27 isc::Exception(file, line, what) {}
28};
29
30
31// Forward declarations
32class CalloutManager;
33class LibraryManager;
34
69
71public:
78
83 static_cast<void>(unloadLibraries());
84 }
85
98 bool loadLibraries(bool multi_threading_enabled = false);
99
110 boost::shared_ptr<CalloutManager> getCalloutManager() const;
111
117 std::vector<std::string> getLibraryNames() const {
118 return (library_names_);
119 }
120
126 return (library_info_);
127 }
128
135 int getLoadedLibraryCount() const;
136
149 static std::vector<std::string> validateLibraries(const std::vector<std::string>& libraries,
150 bool multi_threading_enabled = false);
151
164
165protected:
170 void unloadLibraries();
171
172private:
173
175 std::vector<std::string> library_names_;
176
178 std::vector<boost::shared_ptr<LibraryManager> > lib_managers_;
179
182 HookLibsCollection library_info_;
183
185 boost::shared_ptr<CalloutManager> callout_manager_;
186};
187
188} // namespace hooks
189} // namespace isc
190
191
192#endif // LIBRARY_MANAGER_COLLECTION_H
This is a base class for exceptions thrown from the DNS library module.
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
std::vector< std::string > getLibraryNames() const
Get library names.
HookLibsCollection getLibraryInfo() const
Returns library info.
boost::shared_ptr< CalloutManager > getCalloutManager() const
Get callout manager.
bool prepareUnloadLibraries()
Prepare libaries unloading.
int getLoadedLibraryCount() const
Get number of loaded libraries.
static std::vector< std::string > validateLibraries(const std::vector< std::string > &libraries, bool multi_threading_enabled=false)
Validate libraries.
bool loadLibraries(bool multi_threading_enabled=false)
Load libraries.
LoadLibrariesNotCalled(const char *file, size_t line, const char *what)
std::vector< HookLibInfo > HookLibsCollection
A storage for information about hook libraries.
Definition: libinfo.h:31
Defines the logger used by the top-level component of kea-lfc.