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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
/* This file contains all routines for creating and managing a file
* requestor. The programmer's only interface to the file requestor
* is the function GetFile(). See the description for that function
* for usage information (it's pretty trivial).
*
* Originally written by Allen Martin (amartin@cs.wpi.edu).
*
* Significant modifications by me (Dominic Giampaolo, dbg@sgi.com)
* to clean up some bugs, do double-clicks correctly, and make
* relative path browsing work better.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/param.h>
#include <limits.h>
#include <sys/times.h>
#include "libsx.h"
#ifndef MAXPATHLEN
#define MAXPATHLEN 1024
#endif
#ifndef CLK_TCK
#include <unistd.h>
#define CLK_TCK sysconf(_SC_CLK_TCK) /* seems to work right */
#endif /* CLK_TCK */
#ifndef strdup
extern char *strdup(const char *str);
#endif
/*
* Some ugly hacks to make this work better under ultrix.
*/
#ifdef ultrix
/*
* Can you say "Let's be pinheaded and follow the letter of the spec without
* regard for what might make sense"? I knew you could. And so can the
* boys and girls at DEC.
*
* Which is why they don't provide strdup() in their libc. Gay or what?
*/
char *strdup(const char *str)
{
char *new;
new = malloc(strlen(str)+1);
if (new)
strcpy(new, str);
return new;
}
#endif /* ultrix */
/*
* Here's where the real code begins.
*/
typedef struct {
Widget freq_window;
Widget file_path;
Widget file_name;
Widget file_list;
char **dirlist; /* used by the list widget */
char fpath[MAXPATHLEN];
char fname[MAXPATHLEN];
clock_t last_click; /* time of last click */
} FReqData;
static void load_cancel(Widget w, FReqData *fdata);
static void load_ok(Widget w, FReqData *fdata);
static void load_list(Widget w, char *string, int index, FReqData *fdata);
static void load_dir(Widget w, char *string, FReqData *fdata);
static void load_name(Widget w, char *string, FReqData *fdata);
static int mystrcmp(const void *a, const void *b);
char **get_dir_list(char *pname, int *num);
void free_dirlist(char **table);
/*
* GetFile() - This is the entry point to the file requestor. A single
* argument is passed - the path name for the initial list.
* If this path name is passed as NULL, the current directory
* is used instead. The function returns a character string
* that is the name of the selected file, path included. If
* an error occurs, or the user selects CANCEL, NULL is returned.
*/
char *SimpleGetFile(char *_path)
{
FReqData fdata;
Widget w[8];
int num_dir;
char path[MAXPATHLEN];
if(!_path || strcmp(_path, ".") == 0 || strcmp(_path, "./") == 0)
getcwd(path, MAXPATHLEN);
else
strcpy(path, _path);
if(path[strlen(path)-1] != '/')
strcat(path, "/");
if(!(fdata.dirlist = get_dir_list(path, &num_dir)))
return(NULL);
qsort(fdata.dirlist, num_dir, sizeof(char *), mystrcmp);
fdata.freq_window = MakeWindow("File Requestor", SAME_DISPLAY,
EXCLUSIVE_WINDOW);
w[0] = MakeLabel("Path:");
w[1] = MakeStringEntry(path, 300, (void *)load_dir, &fdata);
w[2] = MakeScrollList(fdata.dirlist, 350, 300, (void *)load_list, &fdata);
w[3] = MakeLabel("File:");
w[4] = MakeStringEntry("", 300, (void *)load_name, &fdata);
w[5] = MakeButton("Ok", (void *)load_ok, &fdata);
w[6] = MakeLabel("Select a File from the List or Enter a Name");
w[7] = MakeButton("Cancel", (void *)load_cancel, &fdata);
SetWidgetPos(w[1], PLACE_RIGHT, w[0], NO_CARE, NULL);
SetWidgetPos(w[2], PLACE_UNDER, w[0], NO_CARE, NULL);
SetWidgetPos(w[3], PLACE_UNDER, w[2], NO_CARE, NULL);
SetWidgetPos(w[4], PLACE_UNDER, w[2], PLACE_RIGHT, w[3]);
SetWidgetPos(w[5], PLACE_UNDER, w[3], NO_CARE, NULL);
SetWidgetPos(w[6], PLACE_UNDER, w[3], PLACE_RIGHT, w[5]);
SetWidgetPos(w[7], PLACE_UNDER, w[3], PLACE_RIGHT, w[6]);
/* save the file name & file list widgets, so we can use them later */
fdata.file_path = w[1];
fdata.file_list = w[2];
fdata.file_name = w[4];
fdata.last_click = 0;
/* set up the file path */
strcpy(fdata.fpath, path);
ShowDisplay();
MainLoop();
/* free the directory list */
if (fdata.dirlist)
free_dirlist(fdata.dirlist);
SetCurrentWindow(ORIGINAL_WINDOW);
if(fdata.fname[0] == '\0')
return(NULL);
else
return(strdup(fdata.fname));
}
/*
* load_cancel() - Callback routine for CANCEL button
*/
static void load_cancel(Widget w, FReqData *fdata)
{
SetCurrentWindow(fdata->freq_window);
CloseWindow();
strcpy(fdata->fname, "");
}
/*
* load_ok() - Callback routine for OK button
*/
static void load_ok(Widget w, FReqData *fdata)
{
char *fpath, *fname;
char fullname[MAXPATHLEN];
fpath = GetStringEntry(fdata->file_path);
fname = GetStringEntry(fdata->file_name);
sprintf(fullname, "%s%s", fpath, fname);
/* right here we should check the validity of the file name */
/* and abort if invalid */
strcpy(fdata->fname, fullname);
SetCurrentWindow(fdata->freq_window);
CloseWindow();
}
/*
* load_list() - Callback routine for scrollable list widget
*/
static void load_list(Widget w, char *string, int index, FReqData *fdata)
{
char newpath[MAXPATHLEN], *cptr, *fpath, fullname[MAXPATHLEN];
char **old_dirlist=NULL;
static char oldfile[MAXPATHLEN] = { '\0', };
clock_t cur_click;
struct tms junk_tms; /* not used, but passed to times() */
int num_dir;
float tdiff; /* difference in time between two clicks as % of a second */
/*
* First we check fora double click.
*
* If the time between the last click and this click is greater than
* 0.5 seconds or the last filename and the current file name
* are different, then it's not a double click, so we just return.
*/
cur_click = times(&junk_tms);
tdiff = ((float)(cur_click - fdata->last_click) / CLK_TCK);
if(tdiff > 0.50 || strcmp(oldfile, string) != 0)
{
fdata->last_click = cur_click;
strcpy(oldfile, string);
SetStringEntry(fdata->file_name, string);
return;
}
/* check if a directory was selected */
if(string[strlen(string)-1] != '/') /* a regular file double click */
{
fpath = GetStringEntry(fdata->file_path);
sprintf(fullname, "%s%s", fpath, string);
/* right here we should check the validity of the file name */
/* and abort if invalid */
strcpy(fdata->fname, fullname);
SetCurrentWindow(fdata->freq_window);
CloseWindow();
return;
}
/*
* Else, we've got a directory name and should deal with it
* as approrpriate.
*/
/* check for special cases "./" and "../" */
if(strcmp(string, "./") == 0)
{
if (fdata->fpath)
strcpy(newpath, fdata->fpath);
else
strcpy(newpath, "./");
}
else if(strcmp(string, "../") == 0)
{
strcpy(newpath, fdata->fpath);
if (strcmp(newpath, "./") == 0)
strcpy(newpath, string);
else
{
/*
* chop off the last path component and look at what it
* is to determine what to do with the `..' we just got.
*/
cptr = strrchr(newpath, '/');
if (cptr)
*cptr = '\0';
cptr = strrchr(newpath, '/');
if (cptr)
*cptr = '\0';
if ( (cptr != NULL && strcmp(cptr+1, "..") == 0)
||(cptr == NULL && strcmp(newpath, "..") == 0))
{
if (cptr)
*cptr = '/';
strcat(newpath, "/"); /* put back the / we took out */
strcat(newpath, "../"); /* and append the new ../ */
}
else
{
if(cptr == NULL && strcmp(fdata->fpath, "/") == 0)
strcpy(newpath, "/");
else if (cptr == NULL)
strcpy(newpath, "./");
if (newpath[strlen(newpath)-1] != '/')
strcat(newpath, "/");
}
}
}
else /* not a `./' or `../', so it's just a regular old directory name */
{
if (fdata->fpath[strlen(fdata->fpath)-1] == '/')
sprintf(newpath, "%s%s", fdata->fpath, string);
else
sprintf(newpath, "%s/%s", fdata->fpath, string);
}
old_dirlist = fdata->dirlist;
if(!(fdata->dirlist = get_dir_list(newpath, &num_dir)))
/* should beep the display or something here */
return;
qsort(fdata->dirlist, num_dir, sizeof(char *), mystrcmp);
strcpy(fdata->fpath, newpath);
SetStringEntry(fdata->file_path, fdata->fpath);
SetStringEntry(fdata->file_name, "");
strcpy(fdata->fpath, newpath);
ChangeScrollList(fdata->file_list, fdata->dirlist);
/* free the directory list */
if (old_dirlist)
free_dirlist(old_dirlist);
fdata->last_click = 0; /* re-init double-click time */
return;
}
/*
* load_dir() - Callback routine for pathname string entry widget
*/
static void load_dir(Widget w, char *string, FReqData *fdata)
{
char **old_dirlist, temp[MAXPATHLEN];
int num_dir;
/* make sure the name has a '/' at the end */
strcpy(temp, string);
if(temp[strlen(temp)-1] != '/')
strcat(temp, "/");
old_dirlist = fdata->dirlist;
if(!(fdata->dirlist = get_dir_list(temp, &num_dir)))
{
/* bad path - reset the file path and return */
SetStringEntry(fdata->file_path, fdata->fpath);
return;
}
qsort(fdata->dirlist, num_dir, sizeof(char *), mystrcmp);
strcpy(fdata->fpath, temp);
SetStringEntry(fdata->file_path, temp);
ChangeScrollList(fdata->file_list, fdata->dirlist);
/* free the directory list */
if (old_dirlist)
free_dirlist(old_dirlist);
}
/*
* load_name() - Callback routine for file name string entry widget
*/
static void load_name(Widget w, char *string, FReqData *fdata)
{
char *fpath, fullname[MAXPATHLEN];
fpath = GetStringEntry(fdata->file_path);
sprintf(fullname, "%s%s", fpath, string);
/* right here we should check the validity of the file name */
/* and abort if invalid */
strcpy(fdata->fname, fullname);
SetCurrentWindow(fdata->freq_window);
CloseWindow();
return;
}
/*
* This function is just a wrapper for mystrcmp(), and is called by qsort()
* (if used) down below.
*/
static int mystrcmp(const void *a, const void *b)
{
return strcmp(*(char **)a, *(char **)b);
}
|