blob: 542f9e810293b5716bb8576390a1974ab2d51a97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
//
// 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) && defined(POCO_WIN32_UTF8)
#include "SharedLibrary_WIN32U.cpp"
#elif defined(POCO_OS_FAMILY_WINDOWS)
#include "SharedLibrary_WIN32.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
|