1 '\" te 2 .\" Copyright (c) 2000, 2001, 2002, 2003, 2004 by Martin C. Shepherd. All Rights Reserved. 3 .\" Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 4 .\" "Software"), to deal in the Software without restriction, including 5 .\" without limitation the rights to use, copy, modify, merge, publish, 6 .\" distribute, and/or sell copies of the Software, and to permit persons 7 .\" to whom the Software is furnished to do so, provided that the above 8 .\" copyright notice(s) and this permission notice appear in all copies of 9 .\" the Software and that both the above copyright notice(s) and this 10 .\" permission notice appear in supporting documentation. 11 .\" 12 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 13 .\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 14 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 15 .\" OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 16 .\" HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL 17 .\" INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING 18 .\" FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 19 .\" NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION 20 .\" WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 21 .\" 22 .\" Except as contained in this notice, the name of a copyright holder 23 .\" shall not be used in advertising or otherwise to promote the sale, use 24 .\" or other dealings in this Software without prior written authorization 25 .\" of the copyright holder. 26 .\" Portions Copyright (c) 2007, Sun Microsystems, Inc. All Rights Reserved. 27 .TH PCA_LOOKUP_FILE 3TECLA "January 18, 2020" 28 .SH NAME 29 pca_lookup_file, del_PathCache, del_PcaPathConf, new_PathCache, 30 new_PcaPathConf, pca_last_error, pca_path_completions, pca_scan_path, 31 pca_set_check_fn, ppc_file_start, ppc_literal_escapes \- lookup a file in a 32 list of directories 33 .SH SYNOPSIS 34 .nf 35 cc [ \fIflag\fR\&.\|.\|. ] \fIfile\fR\&.\|.\|. \fB-ltecla\fR [ \fIlibrary\fR\&.\|.\|. ] 36 #include <libtecla.h> 37 38 \fBchar *\fR\fBpca_lookup_file\fR(\fBPathCache *\fR\fIpc\fR, \fBconst char *\fR\fIname\fR, 39 \fBint\fR \fIname_len\fR, \fBint\fR \fIliteral\fR); 40 .fi 41 42 .LP 43 .nf 44 \fBPathCache *\fR\fBdel_PathCache\fR(\fBPathCache *\fR\fIpc\fR); 45 .fi 46 47 .LP 48 .nf 49 \fBPcaPathConf *\fR\fBdel_PcaPathConf\fR(\fBPcaPathConf *\fR\fIppc\fR); 50 .fi 51 52 .LP 53 .nf 54 \fBPathCache *\fR\fBnew_PathCache\fR(\fBvoid\fR); 55 .fi 56 57 .LP 58 .nf 59 \fBPcaPathConf *\fR\fBnew_PcaPathConf\fR(\fBPathCache *\fR\fIpc\fR); 60 .fi 61 62 .LP 63 .nf 64 \fBconst char *\fR\fBpca_last_error\fR(\fBPathCache *\fR\fIpc\fR); 65 .fi 66 67 .LP 68 .nf 69 \fBCPL_MATCH_FN\fR(\fBpca_path_completions\fR); 70 .fi 71 72 .LP 73 .nf 74 \fBint\fR \fBpca_scan_path\fR(\fBPathCache *\fR\fIpc\fR, \fBconst char *\fR\fIpath\fR); 75 .fi 76 77 .LP 78 .nf 79 \fBvoid\fR \fBpca_set_check_fn\fR(\fBPathCache *\fR\fIpc\fR, \fBCplCheckFn *\fR\fIcheck_fn\fR, 80 \fBvoid *\fR\fIdata\fR); 81 .fi 82 83 .LP 84 .nf 85 \fBvoid\fR \fBppc_file_start\fR(\fBPcaPathConf *\fR\fIppc\fR, \fBint\fR \fIstart_index\fR); 86 .fi 87 88 .LP 89 .nf 90 \fBvoid\fR \fBppc_literal_escapes\fR(\fBPcaPathConf *\fR\fIppc\fR, \fBint\fR \fIliteral\fR); 91 .fi 92 93 .SH DESCRIPTION 94 The \fBPathCache\fR object is part of the \fBlibtecla\fR(3LIB) library. 95 \fBPathCache\fR objects allow an application to search for files in any colon 96 separated list of directories, such as the UNIX execution \fBPATH\fR 97 environment variable. Files in absolute directories are cached in a 98 \fBPathCache\fR object, whereas relative directories are scanned as needed. 99 Using a \fBPathCache\fR object, you can look up the full pathname of a simple 100 filename, or you can obtain a list of the possible completions of a given 101 filename prefix. By default all files in the list of directories are targets 102 for lookup and completion, but a versatile mechanism is provided for only 103 selecting specific types of files. The obvious application of this facility is 104 to provide Tab-completion and lookup of executable commands in the UNIX 105 \fBPATH\fR, so an optional callback which rejects all but executable files is 106 provided. 107 .SS "An Example" 108 Under UNIX, the following example program looks up and displays the full 109 pathnames of each of the command names on the command line. 110 .sp 111 .in +2 112 .nf 113 #include <stdio.h> 114 #include <stdlib.h> 115 #include <libtecla.h> 116 117 int main(int argc, char *argv[]) 118 { 119 int i; 120 /* 121 * Create a cache for executable files. 122 */ 123 PathCache *pc = new_PathCache(); 124 if(!pc) 125 exit(1); 126 /* 127 * Scan the user's PATH for executables. 128 */ 129 if(pca_scan_path(pc, getenv("PATH"))) { 130 fprintf(stderr, "%s\en", pca_last_error(pc)); 131 exit(1); 132 } 133 /* 134 * Arrange to only report executable files. 135 */ 136 pca_set_check_fn(pc, cpl_check_exe, NULL); 137 /* 138 * Lookup and display the full pathname of each of the 139 * commands listed on the command line. 140 */ 141 for(i=1; i<argc; i++) { 142 char *cmd = pca_lookup_file(pc, argv[i], -1, 0); 143 printf("The full pathname of '%s' is %s\e\en", argv[i], 144 cmd ? cmd : "unknown"); 145 } 146 pc = del_PathCache(pc); /* Clean up */ 147 return 0; 148 } 149 .fi 150 .in -2 151 152 .sp 153 .LP 154 The following is an example of what this does on a laptop under LINUX: 155 .sp 156 .in +2 157 .nf 158 $ ./example less more blob 159 The full pathname of 'less' is /usr/bin/less 160 The full pathname of 'more' is /bin/more 161 The full pathname of 'blob' is unknown 162 $ 163 .fi 164 .in -2 165 166 .SS "Function Descriptions" 167 To use the facilities of this module, you must first allocate a \fBPathCache\fR 168 object by calling the \fBnew_PathCache()\fR constructor function. This function 169 creates the resources needed to cache and lookup files in a list of 170 directories. It returns \fINULL\fR on error. 171 .SS "Populating The Cache" 172 Once you have created a cache, it needs to be populated with files. To do this, 173 call the \fBpca_scan_path()\fR function. Whenever this function is called, it 174 discards the current contents of the cache, then scans the list of directories 175 specified in its path argument for files. The path argument must be a string 176 containing a colon-separated list of directories, such as 177 "\fB/usr/bin\fR:\fB/home/mcs/bin\fR:". This can include directories specified 178 by absolute pathnames such as "\fB/usr/bin\fR", as well as sub-directories 179 specified by relative pathnames such as "." or "\fBbin\fR". Files in the 180 absolute directories are immediately cached in the specified \fBPathCache\fR 181 object, whereas subdirectories, whose identities obviously change whenever the 182 current working directory is changed, are marked to be scanned on the fly 183 whenever a file is looked up. 184 .sp 185 .LP 186 On success this function return 0. On error it returns 1, and a description of 187 the error can be obtained by calling \fBpca_last_error\fR(\fIpc\fR). 188 .SS "Looking Up Files" 189 Once the cache has been populated with files, you can look up the full pathname 190 of a file, simply by specifying its filename to \fBpca_lookup_file()\fR. 191 .sp 192 .LP 193 To make it possible to pass this function a filename which is actually part of 194 a longer string, the \fIname_len\fR argument can be used to specify the length 195 of the filename at the start of the \fIname\fR[] argument. If you pass -1 for 196 this length, the length of the string will be determined with \fIstrlen\fR. If 197 the \fIname\fR[] string might contain backslashes that escape the special 198 meanings of spaces and tabs within the filename, give the \fIliteral\fR 199 argument the value 0. Otherwise, if backslashes should be treated as normal 200 characters, pass 1 for the value of the \fIliteral\fR argument. 201 .SS "Filename Completion" 202 Looking up the potential completions of a filename-prefix in the filename cache 203 is achieved by passing the provided \fBpca_path_completions()\fR callback 204 function to the \fBcpl_complete_word\fR(3TECLA) function. 205 .sp 206 .LP 207 This callback requires that its data argument be a pointer to a PcaPathConf 208 object. Configuration objects of this type are allocated by calling 209 \fBnew_PcaPathConf()\fR. 210 .sp 211 .LP 212 This function returns an object initialized with default configuration 213 parameters, which determine how the \fBcpl_path_completions()\fR callback 214 function behaves. The functions which allow you to individually change these 215 parameters are discussed below. 216 .sp 217 .LP 218 By default, the \fBpca_path_completions()\fR callback function searches 219 backwards for the start of the filename being completed, looking for the first 220 un-escaped space or the start of the input line. If you wish to specify a 221 different location, call \fBppc_file_start()\fR with the index at which the 222 filename starts in the input line. Passing \fIstart_index\fR=-1 re-enables the 223 default behavior. 224 .sp 225 .LP 226 By default, when \fBpca_path_completions()\fR looks at a filename in the input 227 line, each lone backslash in the input line is interpreted as being a special 228 character which removes any special significance of the character which follows 229 it, such as a space which should be taken as part of the filename rather than 230 delimiting the start of the filename. These backslashes are thus ignored while 231 looking for completions, and subsequently added before spaces, tabs and literal 232 backslashes in the list of completions. To have unescaped backslashes treated 233 as normal characters, call \fBppc_literal_escapes()\fR with a non-zero value in 234 its literal argument. 235 .sp 236 .LP 237 When you have finished with a \fBPcaPathConf\fR variable, you can pass it to 238 the \fBdel_PcaPathConf()\fR destructor function to reclaim its memory. 239 .SS "Being Selective" 240 If you are only interested in certain types or files, such as, for example, 241 executable files, or files whose names end in a particular suffix, you can 242 arrange for the file completion and lookup functions to be selective in the 243 filenames that they return. This is done by registering a callback function 244 with your \fBPathCache\fR object. Thereafter, whenever a filename is found 245 which either matches a filename being looked up or matches a prefix which is 246 being completed, your callback function will be called with the full pathname 247 of the file, plus any application-specific data that you provide. If the 248 callback returns 1 the filename will be reported as a match. If it returns 0, 249 it will be ignored. Suitable callback functions and their prototypes should be 250 declared with the following macro. The \fBCplCheckFn\fR typedef is also 251 provided in case you wish to declare pointers to such functions. 252 .sp 253 .in +2 254 .nf 255 #define CPL_CHECK_FN(fn) int (fn)(void *data, const char *pathname) 256 typedef CPL_CHECK_FN(CplCheckFn); 257 .fi 258 .in -2 259 260 .sp 261 .LP 262 Registering one of these functions involves calling the 263 \fBpca_set_check_fn()\fR function. In addition to the callback function passed 264 with the \fIcheck_fn\fR argument, you can pass a pointer to anything with the 265 \fIdata\fR argument. This pointer will be passed on to your callback function 266 by its own \fIdata\fR argument whenever it is called, providing a way to pass 267 application-specific data to your callback. Note that these callbacks are 268 passed the full pathname of each matching file, so the decision about whether a 269 file is of interest can be based on any property of the file, not just its 270 filename. As an example, the provided \fBcpl_check_exe()\fR callback function 271 looks at the executable permissions of the file and the permissions of its 272 parent directories, and only returns 1 if the user has execute permission to 273 the file. This callback function can thus be used to lookup or complete command 274 names found in the directories listed in the user's \fBPATH\fR environment 275 variable. The example program above provides a demonstration of this. 276 .sp 277 .LP 278 Beware that if somebody tries to complete an empty string, your callback will 279 get called once for every file in the cache, which could number in the 280 thousands. If your callback does anything time consuming, this could result in 281 an unacceptable delay for the user, so callbacks should be kept short. 282 .sp 283 .LP 284 To improve performance, whenever one of these callbacks is called, the choice 285 that it makes is cached, and the next time the corresponding file is looked up, 286 instead of calling the callback again, the cached record of whether it was 287 accepted or rejected is used. Thus if somebody tries to complete an empty 288 string, and hits tab a second time when nothing appears to happen, there will 289 only be one long delay, since the second pass will operate entirely from the 290 cached dispositions of the files. These cached dispositions are discarded 291 whenever \fBpca_scan_path()\fR is called, and whenever \fBpca_set_check_fn()\fR 292 is called with changed callback function or \fIdata\fR arguments. 293 .SS "Error Handling" 294 If \fBpca_scan_path()\fR reports that an error occurred by returning 1, you can 295 obtain a terse description of the error by calling 296 \fBpca_last_error\fR(\fIpc\fR). This returns an internal string containing an 297 error message. 298 .SS "Cleaning Up" 299 Once you have finished using a \fBPathCache\fR object, you can reclaim its 300 resources by passing it to the \fBdel_PathCache()\fR destructor function. This 301 takes a pointer to one of these objects, and always returns \fINULL\fR. 302 .SS "Thread Safety" 303 It is safe to use the facilities of this module in multiple threads, provided 304 that each thread uses a separately allocated \fBPathCache\fR object. In other 305 words, if two threads want to do path searching, they should each call 306 \fBnew_PathCache()\fR to allocate their own caches. 307 .SH ATTRIBUTES 308 See \fBattributes\fR(5) for descriptions of the following attributes: 309 .sp 310 311 .sp 312 .TS 313 box; 314 c | c 315 l | l . 316 ATTRIBUTE TYPE ATTRIBUTE VALUE 317 _ 318 Interface Stability Evolving 319 _ 320 MT-Level MT-Safe 321 .TE 322 323 .SH SEE ALSO 324 \fBcpl_complete_word\fR(3TECLA), \fBef_expand_file\fR(3TECLA), 325 \fBgl_get_line\fR(3TECLA), \fBlibtecla\fR(3LIB), \fBattributes\fR(5)