extension.c
3.64 KB
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
/*
* Copyright 2008, Banco do Brasil S.A.
*
* This file is part of g3270
*
* This program file 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; version 3 of the License.
*
* This program 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 in a file named COPYING; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* Authors:
*
* Perry Werneck<perry.werneck@gmail.com>
*
*/
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
#include <fnmatch.h>
#include <dlfcn.h>
#include "g3270.h"
#include "trace.h"
/*---[ Publics ]--------------------------------------------------------------*/
static EXTENSION *first = 0;
static EXTENSION *last = 0;
/*---[ Implement ]------------------------------------------------------------*/
int LoadExtensions(const char *dir)
{
DIR *hDir = opendir(dir);
struct dirent *fl;
char buffer[4096];
if(!hDir)
{
WriteLog("Can't search extensions in \"%s\": %s",dir,strerror(errno));
return errno;
}
for(fl = readdir(hDir);fl; fl = readdir(hDir))
{
if((fnmatch("*.so", fl->d_name, FNM_PATHNAME)) == 0)
{
snprintf(buffer,4095,"%s/%s",dir,fl->d_name);
OpenExtension(buffer);
}
}
closedir(hDir);
return 0;
}
void UnloadExtensions(void)
{
while(first)
CloseExtension(first);
CHKPoint();
}
EXTENSION *OpenExtension(const char *path)
{
EXTENSION *rc;
void *handle;
int i;
handle = dlopen(path, RTLD_LAZY);
if(!handle)
{
WriteLog("Error loading \"%s\": %s",path,dlerror());
return 0;
}
rc = malloc(sizeof(EXTENSION));
if(!rc)
return rc;
memset(rc,0,sizeof(EXTENSION));
rc->handle = handle;
if(!first)
{
first = last = rc;
}
else
{
rc->up = last;
last = rc;
}
i = CallExtension(rc,"g3270OpenExtension",0);
if(i)
WriteLog("Opening \"%s\": rc=%d",path,i);
else
WriteLog("Extension \"%s\" loaded.",path);
return rc;
}
int CloseExtension(EXTENSION *ext)
{
if(ext->up)
ext->up->down = ext->down;
else
first = ext->down;
if(ext->down)
ext->down->up = ext->up;
else
last = ext->down;
DBGPrintf("Removendo %p (first: %p last: %p)",ext,first,last);
if(ext->handle)
{
CallExtension(ext,"g3270CloseExtension",0);
CHKPoint();
dlclose(ext->handle);
CHKPoint();
}
CHKPoint();
free(ext);
CHKPoint();
return 0;
}
int CallExtension(EXTENSION *ext, const char *function, GtkWidget *widget)
{
int (*call)(GtkWidget *) = 0;
if(!widget)
widget = top_window;
if(ext->handle)
{
call = dlsym(ext->handle,function);
if(call)
return call(widget);
}
return 0;
}
void SetExtensionsChar(const char *function, const char *parameter)
{
void (*call)(GtkWidget *, const char *) = 0;
EXTENSION *ext = first;
while(ext)
{
call = dlsym(ext->handle,function);
if(call)
call(top_window,parameter);
ext = ext->down;
}
}
GtkItemFactoryCallback QueryActionCallback(const char *name)
{
GtkItemFactoryCallback call;
char function[512];
snprintf(function,511,"g3270_action_%s",name);
EXTENSION *ext = first;
while(ext)
{
call = dlsym(ext->handle,function);
if(call)
return call;
ext = ext->down;
}
return 0;
}