]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/db_iterator.c
ncurses 5.9 - patch 20120825
[ncurses.git] / ncurses / tinfo / db_iterator.c
1 /****************************************************************************
2  * Copyright (c) 2006-2011,2012 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Thomas E. Dickey                                                *
31  ****************************************************************************/
32
33 /*
34  * Iterators for terminal databases.
35  */
36
37 #include <curses.priv.h>
38
39 #include <time.h>
40 #include <tic.h>
41
42 #if USE_HASHED_DB
43 #include <hashed_db.h>
44 #endif
45
46 MODULE_ID("$Id: db_iterator.c,v 1.34 2012/06/30 16:30:10 tom Exp $")
47
48 #define HaveTicDirectory _nc_globals.have_tic_directory
49 #define KeepTicDirectory _nc_globals.keep_tic_directory
50 #define TicDirectory     _nc_globals.tic_directory
51 #define my_blob          _nc_globals.dbd_blob
52 #define my_list          _nc_globals.dbd_list
53 #define my_size          _nc_globals.dbd_size
54 #define my_time          _nc_globals.dbd_time
55 #define my_vars          _nc_globals.dbd_vars
56
57 static void
58 add_to_blob(const char *text, size_t limit)
59 {
60     (void) limit;
61
62     if (*text != '\0') {
63         char *last = my_blob + strlen(my_blob);
64         if (last != my_blob)
65             *last++ = NCURSES_PATHSEP;
66         _nc_STRCPY(last, text, limit);
67     }
68 }
69
70 static bool
71 check_existence(const char *name, struct stat *sb)
72 {
73     bool result = FALSE;
74
75     if (stat(name, sb) == 0
76         && (S_ISDIR(sb->st_mode) || S_ISREG(sb->st_mode))) {
77         result = TRUE;
78     }
79 #if USE_HASHED_DB
80     else if (strlen(name) < PATH_MAX - sizeof(DBM_SUFFIX)) {
81         char temp[PATH_MAX];
82         _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "%s%s", name, DBM_SUFFIX);
83         if (stat(temp, sb) == 0 && S_ISREG(sb->st_mode)) {
84             result = TRUE;
85         }
86     }
87 #endif
88     return result;
89 }
90
91 /*
92  * Store the latest value of an environment variable in my_vars[] so we can
93  * detect if one changes, invalidating the cached search-list.
94  */
95 static bool
96 update_getenv(const char *name, DBDIRS which)
97 {
98     bool result = FALSE;
99
100     if (which < dbdLAST) {
101         char *value;
102
103         if ((value = getenv(name)) == 0 || (value = strdup(value)) == 0) {
104             ;
105         } else if (my_vars[which].name == 0 || strcmp(my_vars[which].name, name)) {
106             FreeIfNeeded(my_vars[which].value);
107             my_vars[which].name = name;
108             my_vars[which].value = value;
109             result = TRUE;
110         } else if ((my_vars[which].value != 0) ^ (value != 0)) {
111             FreeIfNeeded(my_vars[which].value);
112             my_vars[which].value = value;
113             result = TRUE;
114         } else if (value != 0 && strcmp(value, my_vars[which].value)) {
115             FreeIfNeeded(my_vars[which].value);
116             my_vars[which].value = value;
117             result = TRUE;
118         } else {
119             free(value);
120         }
121     }
122     return result;
123 }
124
125 static char *
126 cache_getenv(const char *name, DBDIRS which)
127 {
128     char *result = 0;
129
130     (void) update_getenv(name, which);
131     if (which < dbdLAST) {
132         result = my_vars[which].value;
133     }
134     return result;
135 }
136
137 /*
138  * The cache expires if at least a second has passed since the initial lookup,
139  * or if one of the environment variables changed.
140  *
141  * Only a few applications use multiple lookups of terminal entries, seems that
142  * aside from bulk I/O such as tic and toe, that leaves interactive programs
143  * which should not be modifying the terminal databases in a way that would
144  * invalidate the search-list.
145  *
146  * The "1-second" is to allow for user-directed changes outside the program.
147  */
148 static bool
149 cache_expired(void)
150 {
151     bool result = FALSE;
152     time_t now = time((time_t *) 0);
153
154     if (now > my_time) {
155         result = TRUE;
156     } else {
157         DBDIRS n;
158         for (n = (DBDIRS) 0; n < dbdLAST; ++n) {
159             if (my_vars[n].name != 0
160                 && update_getenv(my_vars[n].name, n)) {
161                 result = TRUE;
162                 break;
163             }
164         }
165     }
166     return result;
167 }
168
169 static void
170 free_cache(void)
171 {
172     FreeAndNull(my_blob);
173     FreeAndNull(my_list);
174 }
175
176 /*
177  * Record the "official" location of the terminfo directory, according to
178  * the place where we're writing to, or the normal default, if not.
179  */
180 NCURSES_EXPORT(const char *)
181 _nc_tic_dir(const char *path)
182 {
183     T(("_nc_tic_dir %s", NonNull(path)));
184     if (!KeepTicDirectory) {
185         if (path != 0) {
186             TicDirectory = path;
187             HaveTicDirectory = TRUE;
188         } else if (!HaveTicDirectory && use_terminfo_vars()) {
189             char *envp;
190             if ((envp = getenv("TERMINFO")) != 0)
191                 return _nc_tic_dir(envp);
192         }
193     }
194     return TicDirectory ? TicDirectory : TERMINFO;
195 }
196
197 /*
198  * Special fix to prevent the terminfo directory from being moved after tic
199  * has chdir'd to it.  If we let it be changed, then if $TERMINFO has a
200  * relative path, we'll lose track of the actual directory.
201  */
202 NCURSES_EXPORT(void)
203 _nc_keep_tic_dir(const char *path)
204 {
205     _nc_tic_dir(path);
206     KeepTicDirectory = TRUE;
207 }
208
209 /*
210  * Cleanup.
211  */
212 NCURSES_EXPORT(void)
213 _nc_last_db(void)
214 {
215     if (my_blob != 0 && cache_expired()) {
216         free_cache();
217     }
218 }
219
220 /*
221  * This is a simple iterator which allows the caller to step through the
222  * possible locations for a terminfo directory.  ncurses uses this to find
223  * terminfo files to read.
224  */
225 NCURSES_EXPORT(const char *)
226 _nc_next_db(DBDIRS * state, int *offset)
227 {
228     const char *result;
229
230     (void) offset;
231     if ((int) *state < my_size
232         && my_list != 0
233         && my_list[*state] != 0) {
234         result = my_list[*state];
235         (*state)++;
236     } else {
237         result = 0;
238     }
239     if (result != 0) {
240         T(("_nc_next_db %d %s", *state, result));
241     }
242     return result;
243 }
244
245 NCURSES_EXPORT(void)
246 _nc_first_db(DBDIRS * state, int *offset)
247 {
248     bool cache_has_expired = FALSE;
249     *state = dbdTIC;
250     *offset = 0;
251
252     T(("_nc_first_db"));
253
254     /* build a blob containing all of the strings we will use for a lookup
255      * table.
256      */
257     if (my_blob == 0 || (cache_has_expired = cache_expired())) {
258         size_t blobsize = 0;
259         const char *values[dbdLAST];
260         struct stat *my_stat;
261         int j, k;
262
263         if (cache_has_expired)
264             free_cache();
265
266         for (j = 0; j < dbdLAST; ++j)
267             values[j] = 0;
268
269         /*
270          * This is the first item in the list, and is used only when tic is
271          * writing to the database, as a performance improvement.
272          */
273         values[dbdTIC] = TicDirectory;
274
275 #if USE_DATABASE
276 #ifdef TERMINFO_DIRS
277         values[dbdCfgList] = TERMINFO_DIRS;
278 #endif
279 #ifdef TERMINFO
280         values[dbdCfgOnce] = TERMINFO;
281 #endif
282 #endif
283
284 #if USE_TERMCAP
285         values[dbdCfgList2] = TERMPATH;
286 #endif
287
288         if (use_terminfo_vars()) {
289 #if USE_DATABASE
290             values[dbdEnvOnce] = cache_getenv("TERMINFO", dbdEnvOnce);
291             values[dbdHome] = _nc_home_terminfo();
292             (void) cache_getenv("HOME", dbdHome);
293             values[dbdEnvList] = cache_getenv("TERMINFO_DIRS", dbdEnvList);
294
295 #endif
296 #if USE_TERMCAP
297             values[dbdEnvOnce2] = cache_getenv("TERMCAP", dbdEnvOnce2);
298             /* only use $TERMCAP if it is an absolute path */
299             if (values[dbdEnvOnce2] != 0
300                 && *values[dbdEnvOnce2] != '/') {
301                 values[dbdEnvOnce2] = 0;
302             }
303             values[dbdEnvList2] = cache_getenv("TERMPATH", dbdEnvList2);
304 #endif /* USE_TERMCAP */
305         }
306
307         for (j = 0; j < dbdLAST; ++j) {
308             if (values[j] == 0)
309                 values[j] = "";
310             blobsize += 2 + strlen(values[j]);
311         }
312
313         my_blob = malloc(blobsize);
314         if (my_blob != 0) {
315             *my_blob = '\0';
316             for (j = 0; j < dbdLAST; ++j) {
317                 add_to_blob(values[j], blobsize);
318             }
319
320             /* Now, build an array which will be pointers to the distinct
321              * strings in the blob.
322              */
323             blobsize = 2;
324             for (j = 0; my_blob[j] != '\0'; ++j) {
325                 if (my_blob[j] == NCURSES_PATHSEP)
326                     ++blobsize;
327             }
328             my_list = typeCalloc(char *, blobsize);
329             my_stat = typeCalloc(struct stat, blobsize);
330             if (my_list != 0 && my_stat != 0) {
331                 k = 0;
332                 my_list[k++] = my_blob;
333                 for (j = 0; my_blob[j] != '\0'; ++j) {
334                     if (my_blob[j] == NCURSES_PATHSEP) {
335                         my_blob[j] = '\0';
336                         my_list[k++] = &my_blob[j + 1];
337                     }
338                 }
339
340                 /*
341                  * Eliminate duplicates from the list.
342                  */
343                 for (j = 0; my_list[j] != 0; ++j) {
344 #ifdef TERMINFO
345                     if (*my_list[j] == '\0')
346                         my_list[j] = strdup(TERMINFO);
347 #endif
348                     for (k = 0; k < j; ++k) {
349                         if (!strcmp(my_list[j], my_list[k])) {
350                             k = j - 1;
351                             while ((my_list[j] = my_list[j + 1]) != 0) {
352                                 ++j;
353                             }
354                             j = k;
355                             break;
356                         }
357                     }
358                 }
359
360                 /*
361                  * Eliminate non-existent databases, and those that happen to
362                  * be symlinked to another location.
363                  */
364                 for (j = 0; my_list[j] != 0; ++j) {
365                     bool found = check_existence(my_list[j], &my_stat[j]);
366 #if HAVE_LINK
367                     if (found) {
368                         for (k = 0; k < j; ++k) {
369                             if (my_stat[j].st_dev == my_stat[k].st_dev
370                                 && my_stat[j].st_ino == my_stat[k].st_ino) {
371                                 found = FALSE;
372                                 break;
373                             }
374                         }
375                     }
376 #endif
377                     if (!found) {
378                         k = j;
379                         while ((my_list[k] = my_list[k + 1]) != 0) {
380                             ++k;
381                         }
382                         --j;
383                     }
384                 }
385                 my_size = j;
386                 my_time = time((time_t *) 0);
387             } else {
388                 FreeAndNull(my_blob);
389             }
390             free(my_stat);
391         }
392     }
393 }
394
395 #if NO_LEAKS
396 void
397 _nc_db_iterator_leaks(void)
398 {
399     DBDIRS which;
400
401     if (my_blob != 0)
402         FreeAndNull(my_blob);
403     if (my_list != 0)
404         FreeAndNull(my_list);
405     for (which = 0; (int) which < dbdLAST; ++which) {
406         my_vars[which].name = 0;
407         FreeIfNeeded(my_vars[which].value);
408         my_vars[which].value = 0;
409     }
410 }
411 #endif