forked from michaelrsweet/epm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gui-common.cxx
333 lines (267 loc) · 7.86 KB
/
gui-common.cxx
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
//
// ESP Software Wizard common functions for the ESP Package Manager (EPM).
//
// Copyright 1999-2014 by Michael R Sweet
// Copyright 1999-2006 by Easy Software Products.
//
// This program 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, or (at your option)
// any later version.
//
// 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.
//
#include "gui-common.h"
#include <FL/filename.H>
#include <errno.h>
#include <ctype.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
//
// 'gui_add_depend()' - Add a dependency to a distribution.
//
void
gui_add_depend(gui_dist_t *d, // I - Distribution
int type, // I - Dependency type
const char *name, // I - Name of product
int lowver, // I - Lower version number
int hiver) // I - Highre version number
{
gui_depend_t *temp; // Pointer to dependency
if (d->num_depends == 0)
temp = (gui_depend_t *)malloc(sizeof(gui_depend_t));
else
temp = (gui_depend_t *)realloc(d->depends,
sizeof(gui_depend_t) * (d->num_depends + 1));
if (temp == NULL)
{
perror("setup: Unable to allocate memory for dependency");
exit(1);
}
d->depends = temp;
temp += d->num_depends;
d->num_depends ++;
memset(temp, 0, sizeof(gui_depend_t));
strncpy(temp->product, name, sizeof(temp->product) - 1);
temp->type = type;
temp->vernumber[0] = lowver;
temp->vernumber[1] = hiver;
}
//
// 'gui_add_dist()' - Add a distribution.
//
gui_dist_t * // O - New distribution
gui_add_dist(int *num_d, // IO - Number of distributions
gui_dist_t **d) // IO - Distributions
{
gui_dist_t *temp; // Pointer to current distribution
// Add a new distribution entry...
if (*num_d == 0)
temp = (gui_dist_t *)malloc(sizeof(gui_dist_t));
else
temp = (gui_dist_t *)realloc(*d, sizeof(gui_dist_t) * (*num_d + 1));
if (temp == NULL)
{
perror("setup: Unable to allocate memory for distribution");
exit(1);
}
*d = temp;
temp += *num_d;
(*num_d) ++;
memset(temp, 0, sizeof(gui_dist_t));
return (temp);
}
//
// 'gui_find_dist()' - Find a distribution.
//
gui_dist_t * // O - Pointer to distribution or NULL
gui_find_dist(const char *name, // I - Distribution name
int num_d, // I - Number of distributions
gui_dist_t *d) // I - Distributions
{
while (num_d > 0)
{
if (!strcmp(name, d->product))
return (d);
d ++;
num_d --;
}
return (NULL);
}
//
// 'gui_get_installed()' - Get a list of installed software products.
//
void
gui_get_installed(void)
{
int i; // Looping var
int num_files; // Number of files
dirent **files; // Files
const char *ext; // Extension
gui_dist_t *temp; // Pointer to current distribution
FILE *fp; // File to read from
char line[1024]; // Line from file...
// See if there are any installed files...
NumInstalled = 0;
Installed = (gui_dist_t *)0;
if ((num_files = fl_filename_list(EPM_SOFTWARE, &files)) > 0)
{
// Build a distribution list...
for (i = 0; i < num_files; i ++)
{
ext = fl_filename_ext(files[i]->d_name);
if (!strcmp(ext, ".remove"))
{
// Found a .remove script...
snprintf(line, sizeof(line), EPM_SOFTWARE "/%s", files[i]->d_name);
if ((fp = fopen(line, "r")) == NULL)
{
perror("setup: Unable to open removal script");
exit(1);
}
// Add a new distribution entry...
temp = gui_add_dist(&NumInstalled, &Installed);
temp->type = PACKAGE_PORTABLE;
strncpy(temp->product, files[i]->d_name, sizeof(temp->product) - 1);
*strrchr(temp->product, '.') = '\0'; // Drop .remove
// Read info from the removal script...
while (fgets(line, sizeof(line), fp))
{
// Only read distribution info lines...
if (strncmp(line, "#%", 2))
continue;
// Drop the trailing newline...
line[strlen(line) - 1] = '\0';
// Copy data as needed...
if (!strncmp(line, "#%product ", 10))
strncpy(temp->name, line + 10, sizeof(temp->name) - 1);
else if (!strncmp(line, "#%version ", 10))
sscanf(line + 10, "%31s%d", temp->version, &(temp->vernumber));
else if (!strncmp(line, "#%rootsize ", 11))
temp->rootsize = atoi(line + 11);
else if (!strncmp(line, "#%usrsize ", 10))
temp->usrsize = atoi(line + 10);
}
fclose(fp);
}
free(files[i]);
}
free(files);
}
// Get a list of RPM packages that are installed...
if (!access("/bin/rpm", 0) &&
(fp = popen("/bin/rpm -qa --qf "
"'%{NAME}|%{VERSION}|%{SIZE}|%{SUMMARY}\\n'", "r")) != NULL)
{
char *version, // Version number
*size, // Size of package
*description; // Summary string
while (fgets(line, sizeof(line), fp))
{
// Drop the trailing newline...
line[strlen(line) - 1] = '\0';
// Grab the different fields...
if ((version = strchr(line, '|')) == NULL)
continue;
*version++ = '\0';
if ((size = strchr(version, '|')) == NULL)
continue;
*size++ = '\0';
if ((description = strchr(size, '|')) == NULL)
continue;
*description++ = '\0';
// Add a new distribution entry...
temp = gui_add_dist(&NumInstalled, &Installed);
temp->type = PACKAGE_RPM;
strlcpy(temp->product, line, sizeof(temp->product));
strlcpy(temp->name, description, sizeof(temp->name));
strlcpy(temp->version, version, sizeof(temp->version));
temp->vernumber = get_vernumber(version);
temp->rootsize = (int)(atof(size) / 1024.0 + 0.5);
}
pclose(fp);
}
if (NumInstalled > 1)
qsort(Installed, NumInstalled, sizeof(gui_dist_t),
(compare_func_t)gui_sort_dists);
}
//
// 'gui_load_file()' - Load a file into a help widget.
//
void
gui_load_file(Fl_Help_View *hv, // I - Help widget
const char *filename) // I - File to load
{
FILE *fp; // File pointer
struct stat info; // Info about file
int ch; // Character from file
char *buffer, // File buffer
*ptr; // Pointer into buffer
// Try opening the file and getting the file size...
if ((fp = fopen(filename, "r")) == NULL)
{
hv->value(strerror(errno));
return;
}
if (stat(filename, &info))
{
hv->value(strerror(errno));
return;
}
// Allocate a buffer that is more than big enough to the hold the file...
buffer = new char[info.st_size * 2];
// See if we have a HTML file...
if ((ch = getc(fp)) == '<')
{
// Yes, just read it in...
buffer[0] = ch;
fread(buffer + 1, 1, info.st_size - 1, fp);
buffer[info.st_size] = '\0';
}
else
{
// No, treat it as plain text...
ungetc(ch, fp);
strcpy(buffer, "<pre>");
ptr = buffer + 5;
while ((ch = getc(fp)) != EOF)
{
if (ch == '&')
{
strcpy(ptr, "&");
ptr += 5;
}
else if (ch == '<')
{
strcpy(ptr, "<");
ptr += 4;
}
else
*ptr++ = ch;
}
strcpy(ptr, "</pre>\n");
// Preformatted text will be too large without a reduction in the
// base size...
hv->textsize(10);
}
// Save the loaded buffer to the help widget...
hv->value(buffer);
// Free memory and close the file...
delete[] buffer;
fclose(fp);
}
//
// 'gui_sort_dists()' - Compare two distribution names...
//
int // O - Result of comparison
gui_sort_dists(const gui_dist_t *d0, // I - First distribution
const gui_dist_t *d1) // I - Second distribution
{
return (strcmp(d0->name, d1->name));
}