93fa6e2a3dbe3662c1722b2674e17f159eece54a
[pspp-builds.git] / src / data / filename.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #if !filename_h
21 #define filename_h 1
22
23 #include <stdio.h>
24
25 /* Directory separator and path delimiter for this OS. */
26 #ifndef __MSDOS__
27 #define DIR_SEPARATOR '/'
28 #define PATH_DELIMITER ':'
29 #else
30 #define DIR_SEPARATOR '\\'
31 #define PATH_DELIMITER ';'
32 #endif
33
34 /* Search path for configuration files. */
35 extern const char *config_path;
36
37 void fn_init (void);
38
39 struct string;
40 void fn_interp_vars (struct string *target, 
41                         const char *(*getenv) (const char *));
42 char *fn_tilde_expand (const char *fn);
43 char *fn_search_path (const char *basename, const char *path,
44                       const char *prepend);
45 char *fn_prepend_dir (const char *filename, const char *directory);
46 char *fn_normalize (const char *fn);
47 char *fn_dirname (const char *fn);
48 char *fn_basename (const char *fn);
49 char *fn_extension (const char *fn);
50
51 char *fn_get_cwd (void);
52
53 int fn_absolute_p (const char *fn);
54 int fn_special_p (const char *fn);
55 int fn_exists_p (const char *fn);
56 char *fn_readlink (const char *fn);
57
58 const char *fn_getenv (const char *variable);
59 const char *fn_getenv_default (const char *variable, const char *def);
60
61 FILE *fn_open (const char *fn, const char *mode);
62 int fn_close (const char *fn, FILE *file);
63
64 struct file_identity *fn_get_identity (const char *filename);
65 void fn_free_identity (struct file_identity *);
66 int fn_compare_file_identities (const struct file_identity *,
67                                 const struct file_identity *);
68 \f
69 /* Extended file routines. */
70 struct file_ext;
71
72 typedef int (*file_callback) (struct file_ext *);
73
74 /* File callbacks may not return zero to indicate failure unless they
75    set errno to a sensible value. */
76 struct file_ext
77   {
78     char *filename;             /* Filename. */
79     const char *mode;           /* Open mode, i.e, "wb". */
80     FILE *file;                 /* File. */
81     int *sequence_no;           /* Page number, etc. */
82     void *param;                /* User data. */
83     file_callback postopen;     /* Called after FILE opened. */
84     file_callback preclose;     /* Called before FILE closed. */
85   };
86
87 int fn_open_ext (struct file_ext *file);
88 int fn_close_ext (struct file_ext *file);
89
90 #endif /* filename_h */