aboutsummaryrefslogtreecommitdiffstats
path: root/dynamic.cpp
blob: da2c62e1d8b9cb13b3667ba1269d61918868f3c1 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
// dynamic.cpp
// Revision 1-jan-2005

#include "dynamic.h"
#include "error.h"
#include "showerror.h"

// For debugging.
#include <errno.h>
#include <iostream>
using std::cerr;
using std::endl;


#if (defined __unix__ || defined __linux__ || defined __NetBSD__) &&  \
	! defined __CYGWIN__
// Kylix defines only __linux__


#ifdef __hpux__


#include <dl.h>

class DynamicHandle::Internal {
	shl_t handle;
public:
	Internal (const std::string & name);
	~Internal ();
	DynamicUsrFunc addr (const std::string & str);
};

DynamicHandle::Internal::Internal (const std::string & name)
{
	handle= shl_load (name.c_str (), BIND_DEFERRED, 0);
	if (handle == NULL)
		throw ErrNoDynamicLibrary;
}

DynamicHandle::Internal::~Internal ()
{
	// HP-UX seems to unload the library even if it was
	// opened several times, then we don't unload it.
	//shl_unload (handle);
}

DynamicUsrFunc DynamicHandle::Internal::addr (const std::string & str)
{
	void * value;
	if (shl_findsym (& handle, str.c_str (), TYPE_UNDEFINED,
			& value) == 0)
	{
		//return reinterpret_cast <DynamicUsrFunc> (value);
		return (DynamicUsrFunc) (value);
	}
	else
		throw ErrNoDynamicSymbol;
}

#else
// Unix no hp-ux


#include <dlfcn.h>

class DynamicHandle::Internal {
	void * handle;
public:
	Internal (const std::string & name);
	~Internal ();
	DynamicUsrFunc addr (const std::string & str);
};

DynamicHandle::Internal::Internal (const std::string & name)
{
	handle= dlopen (name.c_str (), RTLD_LAZY);
	if (handle == NULL)
	{
		if (showdebuginfo () )
		{
			cerr << "Error loading " << name << ": " <<
				dlerror () << endl;
		}
		throw ErrNoDynamicLibrary;
	}
}

DynamicHandle::Internal::~Internal ()
{
	dlclose (handle);
}

DynamicUsrFunc DynamicHandle::Internal::addr (const std::string & str)
{
	void * value;
	if ( (value= dlsym (handle, str.c_str () ) ) != NULL)
	{
		//return reinterpret_cast <DynamicUsrFunc> (value);
		return (DynamicUsrFunc) value;
	}
	else
		throw ErrNoDynamicSymbol;
}

#endif


#elif defined BLASSIC_USE_WINDOWS


#include <windows.h>
#undef min
#undef max

namespace {

void * GetAddress (HMODULE handle, const std::string & str)
{
	FARPROC result= GetProcAddress (handle, str.c_str () );
	if (result == NULL)
	{
		std::string str_ (1, '_');
		str_+= str;
		result= GetProcAddress (handle, str_.c_str () );
	}
	if (result == NULL)
	{
	        showlasterror ();
		throw ErrNoDynamicSymbol;
	}
	return (void *) (result);
}

} // namespace

class DynamicHandle::Internal {
	HMODULE handle;
public:
	Internal (const std::string & name);
	~Internal ();
	DynamicUsrFunc addr (const std::string & str);
};

DynamicHandle::Internal::Internal (const std::string & name)
{
	handle= LoadLibrary (name.c_str () );
	if (handle == NULL)
	{
		showlasterror ();
		throw ErrNoDynamicLibrary;
	}
}

DynamicHandle::Internal::~Internal ()
{
	FreeLibrary (handle);
}

DynamicUsrFunc DynamicHandle::Internal::addr (const std::string & str)
{
	return (DynamicUsrFunc) GetAddress (handle, str);
}

#else


#warning Dynamic link unsupported

class DynamicHandle::Internal {
public:
	Internal (const std::string & name);
	~Internal ();
	DynamicUsrFunc addr (const std::string & str);
};

DynamicHandle::Internal::Internal (const std::string & name)
{
	throw ErrDynamicUnsupported;
}

DynamicHandle::Internal::~Internal ()
{
}

DynamicUsrFunc DynamicHandle::Internal::addr (const std::string & str)
{
	throw ErrDynamicUnsupported;
}

#endif


DynamicHandle::DynamicHandle () :
	pin (0)
{
}

DynamicHandle::DynamicHandle (const std::string & name) :
	pin (new Internal (name) )
{
}

void DynamicHandle::assign (const std::string & name)
{
	// Create the new before destructing the old, thus leaving
	// intouched in case of exception.
	Internal * npin= new Internal (name);
	delete pin;
	pin= npin;
}

DynamicHandle::~DynamicHandle ()
{
	delete pin;
}

DynamicUsrFunc DynamicHandle::addr (const std::string & str)
{
	return pin->addr (str);
}

// Fin de dymanic.cpp
Un proyecto texto-plano.xyz