libcruft-util/library_posix.cpp

40 lines
1010 B
C++
Raw Normal View History

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>
using cruft::detail::library_posix;
2015-08-10 15:45:56 +10: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 ());
}
//-----------------------------------------------------------------------------
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);
}