mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-14 19:57:17 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
114 lines
1.6 KiB
C++
114 lines
1.6 KiB
C++
//
|
|
// SharedLibrary.cpp
|
|
//
|
|
// Library: Foundation
|
|
// Package: SharedLibrary
|
|
// Module: SharedLibrary
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/SharedLibrary.h"
|
|
#include "Poco/Exception.h"
|
|
|
|
|
|
#if defined(hpux) || defined(_hpux)
|
|
#include "SharedLibrary_HPUX.cpp"
|
|
#elif defined(POCO_VXWORKS)
|
|
#include "SharedLibrary_VX.cpp"
|
|
#elif defined(POCO_OS_FAMILY_UNIX)
|
|
#include "SharedLibrary_UNIX.cpp"
|
|
#elif defined(POCO_OS_FAMILY_WINDOWS)
|
|
#include "SharedLibrary_WIN32U.cpp"
|
|
#endif
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
SharedLibrary::SharedLibrary()
|
|
{
|
|
}
|
|
|
|
|
|
SharedLibrary::SharedLibrary(const std::string& path)
|
|
{
|
|
loadImpl(path, 0);
|
|
}
|
|
|
|
|
|
SharedLibrary::SharedLibrary(const std::string& path, int flags)
|
|
{
|
|
loadImpl(path, flags);
|
|
}
|
|
|
|
|
|
SharedLibrary::~SharedLibrary()
|
|
{
|
|
}
|
|
|
|
|
|
void SharedLibrary::load(const std::string& path)
|
|
{
|
|
loadImpl(path, 0);
|
|
}
|
|
|
|
|
|
void SharedLibrary::load(const std::string& path, int flags)
|
|
{
|
|
loadImpl(path, flags);
|
|
}
|
|
|
|
|
|
void SharedLibrary::unload()
|
|
{
|
|
unloadImpl();
|
|
}
|
|
|
|
|
|
bool SharedLibrary::isLoaded() const
|
|
{
|
|
return isLoadedImpl();
|
|
}
|
|
|
|
|
|
bool SharedLibrary::hasSymbol(const std::string& name)
|
|
{
|
|
return findSymbolImpl(name) != 0;
|
|
}
|
|
|
|
|
|
void* SharedLibrary::getSymbol(const std::string& name)
|
|
{
|
|
void* result = findSymbolImpl(name);
|
|
if (result)
|
|
return result;
|
|
else
|
|
throw NotFoundException(name);
|
|
}
|
|
|
|
|
|
const std::string& SharedLibrary::getPath() const
|
|
{
|
|
return getPathImpl();
|
|
}
|
|
|
|
|
|
std::string SharedLibrary::suffix()
|
|
{
|
|
return suffixImpl();
|
|
}
|
|
|
|
|
|
bool SharedLibrary::setSearchPath(const std::string& path)
|
|
{
|
|
return setSearchPathImpl(path);
|
|
}
|
|
|
|
|
|
} // namespace Poco
|