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>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "library_posix.hpp"
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
using cruft::detail::library_posix;
|
2015-08-10 15:45:56 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2016-10-08 17:18:04 +11:00
|
|
|
library_posix::library_posix (const std::experimental::filesystem::path &path):
|
|
|
|
m_handle (dlopen (path.c_str (), RTLD_NOW))
|
2015-08-10 15:45:56 +10:00
|
|
|
{
|
|
|
|
if (!m_handle)
|
|
|
|
throw std::runtime_error (dlerror ());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2018-07-24 15:48:50 +10:00
|
|
|
library_posix::library_posix (library_posix &&rhs) noexcept:
|
2015-08-10 15:45:56 +10:00
|
|
|
m_handle (nullptr)
|
|
|
|
{
|
|
|
|
std::swap (m_handle, rhs.m_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
library_posix::~library_posix ()
|
|
|
|
{
|
|
|
|
if (m_handle)
|
|
|
|
dlclose (m_handle);
|
|
|
|
}
|