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
|
/*
* dl.c - Example of adding a new builtin function to gawk.
*
* Christos Zoulas, Thu Jun 29 17:40:41 EDT 1995
* Arnold Robbins, update for 3.1, Wed Sep 13 09:38:56 2000
*/
/*
* Copyright (C) 1995 - 2001 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Programming Language.
*
* GAWK is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GAWK is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "awk.h"
#include <dlfcn.h>
static void *sdl = NULL;
static NODE *
zaxxon(tree)
NODE *tree;
{
NODE *obj;
int i;
int comma = 0;
/*
* Print the arguments
*/
printf("External linkage %s(", tree->param);
for (i = 0; i < tree->param_cnt; i++) {
obj = get_argument(tree, i);
if (obj == NULL)
break;
force_string(obj);
printf(comma ? ", %s" : "%s", obj->stptr);
free_temp(obj);
comma = 1;
}
printf(");\n");
/*
* Do something useful
*/
obj = get_argument(tree, 0);
if (obj != NULL) {
force_string(obj);
if (strcmp(obj->stptr, "unload") == 0 && sdl) {
/*
* XXX: How to clean up the function?
* I would like the ability to remove a function...
*/
dlclose(sdl);
sdl = NULL;
}
free_temp(obj);
}
/* Set the return value */
set_value(tmp_number((AWKNUM) 3.14));
/* Just to make the interpreter happy */
return tmp_number((AWKNUM) 0);
}
NODE *
dlload(tree, dl)
NODE *tree;
void *dl;
{
sdl = dl;
make_builtin("zaxxon", zaxxon, 4);
return tmp_number((AWKNUM) 0);
}
|