aboutsummaryrefslogtreecommitdiff
path: root/src/backend/port/dynloader/beos.c
blob: ea97057e62014b760cd42ca77f8b3b62bffcc68e (plain)
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
/*-------------------------------------------------------------------------
 *
 * dynloader.c
 *	  Dynamic Loader for Postgres for BeOS
 *
 * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
 *	  $Header: /cvsroot/pgsql/src/backend/port/dynloader/Attic/beos.c,v 1.3 2000/10/07 14:39:11 momjian Exp $
 *
 *-------------------------------------------------------------------------
 */

#include "postgres.h"
#include "utils/dynamic_loader.h"
#include "utils/elog.h"


void	   *
pg_dlopen(char *filename)
{
	image_id* im; 
	
	/* Handle memory allocation to store the Id of the shared object*/
	im=(image_id*)(malloc(sizeof(image_id)));
	
	/* Add-on loading */
	*im=beos_dl_open(filename);
			
	return im;
}


char	   *
pg_dlerror()
{
	static char errmsg[] = "Load Add-On failed";
	return errmsg;
}

PGFunction 
pg_dlsym(void *handle, char *funcname)
{
	PGFunction fpt;

	/* Checking that "Handle" is valid */
	if ((handle) && ((*(int*)(handle))>=0))
	{
		/* Loading symbol */
		if(get_image_symbol(*((int*)(handle)),funcname,B_SYMBOL_TYPE_TEXT,(void**)&fpt)==B_OK);
		{
			return fpt;
		}
		elog(NOTICE, "loading symbol '%s' failed ",funcname);
	}
	elog(NOTICE, "add-on not loaded correctly");
	return NULL;
}

void 
pg_dlclose(void *handle)
{
	/* Checking that "Handle" is valid */
	if ((handle) && ((*(int*)(handle))>=0))
	{
		if (beos_dl_close(*(image_id*)handle)!=B_OK)
			elog(NOTICE, "error while unloading add-on");
		free(handle);
	}
}