2015-08-10 15:45:56 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2015-08-10 15:45:56 +10:00
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
2021-04-14 15:35:49 +10:00
|
|
|
#pragma once
|
2015-08-10 15:45:56 +10:00
|
|
|
|
2018-12-05 19:12:03 +11:00
|
|
|
#include <filesystem>
|
2015-08-10 15:45:56 +10:00
|
|
|
|
2018-05-03 21:22:41 +10:00
|
|
|
#include <dlfcn.h>
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft {
|
2015-08-10 15:45:56 +10:00
|
|
|
namespace detail {
|
|
|
|
class library_posix {
|
|
|
|
public:
|
2018-12-05 19:12:03 +11:00
|
|
|
explicit library_posix (const std::filesystem::path&);
|
2018-07-24 15:48:50 +10:00
|
|
|
library_posix (library_posix&&) noexcept;
|
2015-08-10 15:45:56 +10:00
|
|
|
~library_posix ();
|
|
|
|
|
|
|
|
library_posix (const library_posix&) = delete;
|
|
|
|
library_posix& operator= (const library_posix&) = delete;
|
|
|
|
|
2018-05-03 21:22:41 +10:00
|
|
|
template <typename FunctionT>
|
|
|
|
FunctionT
|
|
|
|
symbol (const char *name)
|
|
|
|
{
|
|
|
|
return reinterpret_cast<FunctionT> (
|
|
|
|
dlsym (m_handle, name)
|
|
|
|
);
|
|
|
|
}
|
2015-08-10 15:45:56 +10:00
|
|
|
|
|
|
|
private:
|
|
|
|
void *m_handle;
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef detail::library_posix library;
|
2021-04-14 15:35:49 +10:00
|
|
|
}
|