]> www.wagner.pp.ru Git - oss/catdoc.git/blob - src/fileutil.c
More uses of uint16_t instead of short
[oss/catdoc.git] / src / fileutil.c
1 /*
2   Copyright 1998-2003 Victor Wagner
3   Copyright 2003 Alex Ott
4   This file is released under the GPL.  Details can be
5   found in the file COPYING accompanying this distribution.
6 */
7 #ifdef HAVE_CONFIG_H
8 #include <config.h>
9 #endif
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <string.h>
13 #include <sys/stat.h>
14 #include <stdlib.h>
15 #include "catdoc.h"
16 #if defined(MSDOS) && !defined(__MSDOS__)
17 #define __MSDOS__
18 #endif
19 #if defined(__MSDOS__) || defined(_WIN32)
20 #include <dir.h>
21 #include <dos.h>
22 #else
23 #include <glob.h>
24 #endif
25
26
27 /************************************************************************/
28 /*  Copies component of string starting with p and ending one char      */
29 /*  before q into path_buf, expanding ~ if neccessary                   */
30 /************************************************************************/
31 int prepare_path_buf(char *path_buf, const char *start, const char *end) {
32         if (*start == '~' && start[1] == DIR_SEP) {
33                 char *home=getenv("HOME");
34                 start++;
35                 if (!home) {
36                         if (end-start>PATH_BUF_SIZE) return 0;
37                         strncpy(path_buf,start,end-start);
38                         path_buf[end-start]=0;
39                 } else {
40                         int l = strlen(home);
41                         if (l+(end-start)>PATH_BUF_SIZE) return 0;
42                         strcpy(path_buf,home);
43                         strncpy(path_buf+l,start,end-start);
44                         path_buf[end-start+l]=0;
45                 }       
46         } else {        
47                         if (end-start>PATH_BUF_SIZE) return 0;
48                         strncpy(path_buf,start,end-start);
49                         path_buf[end-start]=0;
50         }
51         /* Empty list element means current directory */
52         if (!*path_buf) {
53                 path_buf[0]='.';
54                 path_buf[1]=0;
55 #ifdef __MSDOS__
56         } else {
57                 strcpy(path_buf,add_exe_path(path_buf)); /* safe, becouse
58                                                                                                         add_exe_path knows about PATH_BUF_SIZE */
59 #endif
60         }
61         return 1;
62
63 }       
64 /************************************************************************/
65 /* Searches for file name in specified list of directories. Sets        */
66 /* Returns dynamically allocated full path or NULL. if nothing          */
67 /* appropriate   Expects name to be dynamically allocated and frees it  */
68 /************************************************************************/
69 char *find_file(char *name, const char *path)
70 { const char *p;
71         char *q;
72         char path_buf[PATH_BUF_SIZE];
73         char dir_sep[2]={DIR_SEP,0};
74         for (p=path;p;p=(q?(q+1):NULL)) {
75                 q=strchr(p,LIST_SEP);
76                 if (q) {
77                         if (!prepare_path_buf(path_buf,p,q)) continue;
78                 } else {
79                         if (!prepare_path_buf(path_buf,p,p+strlen(p))) continue;
80                 }
81                 strcat(path_buf,dir_sep); /* always one char */
82                 if (strlen(path_buf)+strlen(name)>=PATH_BUF_SIZE) 
83                         continue; /* Ignore too deeply nested directories */
84                 strcat(path_buf,name);
85                 if (access(path_buf,0)==0) {
86                         free(name); 
87                         return strdup(path_buf);
88                 }
89         }
90         /* if we are here, nothing found */
91         free(name); 
92         return NULL;
93 }
94
95 /************************************************************************/
96 /* Searches for charset with given name and put pointer to malloced copy*/
97 /* of its name into first arg if found. Otherwise leaves first arg      */
98 /*  unchanged. Returns non-zero on success                              */ 
99 /************************************************************************/
100 int check_charset(char **filename,const char *charset) {
101         char *tmppath;
102         if (!strncmp(charset,"utf-8",6)) {
103                 *filename=strdup("utf-8");
104                 return 1;
105         }   
106         tmppath=find_file(stradd(charset,CHARSET_EXT),charset_path);
107         /* Some compilers evalate both arguments of && before
108            applying, so let's not use && as in the shell */
109         if (tmppath) {
110             if (*tmppath) {
111                         *filename=strdup(charset);
112                         free(tmppath);
113                         return 1;
114                 }
115         }
116         return 0;
117 }
118
119 /**********************************************************************/
120 /*  Returns malloced string containing concatenation of two           */
121 /*  arguments                                                         */
122 /**********************************************************************/
123 char *stradd(const char *s1,const char *s2) 
124 { char *res;
125         res=malloc(strlen(s1)+strlen(s2)+1);
126         if (!res) {
127                 fprintf (stderr,"Out of memory!");
128                 exit(1);
129         }
130         strcpy(res,s1);
131         strcat(res,s2);
132         return res;
133 }  
134
135
136 /*
137  * In DOS, argv[0] contain full path to the program, and it is a custom
138  * to keep configuration files in same directory as program itself
139  */
140 #ifdef __MSDOS__
141 char *exe_dir(void) {
142         static char pathbuf[PATH_BUF_SIZE];
143         char *q;
144         strcpy(pathbuf,_argv[0]); /* DOS ensures, that our exe path is no
145                                                                  longer than PATH_BUF_SIZE*/
146         q=strrchr(pathbuf,DIR_SEP);
147         if (q) {
148                 *q=0;
149         } else {
150                 pathbuf[0]=0;
151         }
152         return pathbuf;
153 }
154 char *add_exe_path(const char *name) {
155         static char path[PATH_BUF_SIZE];
156         char *mypath=exe_dir();
157         /* No snprintf in Turbo C 2.0 library, so just check by hand
158            and exit if something goes wrong */
159         if (strchr(name,'%')) {
160                 /* there is substitution */
161                 if (strlen(name)-1+strlen(mypath)>=PATH_BUF_SIZE) {
162                         fprintf(stderr,"Invalid config file. file name \"%s\" too long "
163                                         "after substitution\n",name);
164                         exit(1);
165                 }   
166                 sprintf(path,name,exe_dir());
167                 return path;
168         } else {
169                 return name;
170         }  
171 }
172 #endif 
173 /*********************************************************************/
174 /* Prints out list of available charsets, i.e. names without extension *
175  * of all .txt files in the charset path + internally-supported utf-8  *
176  ************************************************************************/ 
177
178 void list_charsets(void) {
179         const char *p;
180         char *q;
181         char path_buf[PATH_BUF_SIZE];
182         char dir_sep[2]={DIR_SEP,0};
183         char **ptr;
184 #ifdef __MSDOS__
185         struct ffblk ffblock;
186         int res,col;
187 #else
188         glob_t glob_buf;
189         int count,glob_flags=GLOB_ERR;
190
191         memset(&glob_buf,0,sizeof(glob_t));
192 #endif
193         for (p=charset_path;p;p=(q?(q+1):NULL)) {
194                 q=strchr(p,LIST_SEP);
195                 if (q) {
196                         if (q-p>=PATH_BUF_SIZE) {
197                                 /* Oops, dir name too long, perhabs broken config file */
198                                 continue;
199                         }
200                         strncpy(path_buf,p,q-p);
201                         path_buf[q-p]=0;
202                 } else {
203                         if (strlen(p)>=PATH_BUF_SIZE) continue;
204                         strcpy(path_buf,p);
205                 }
206                 /* Empty list element means current directory */
207                 if (!*path_buf) {
208                         path_buf[0]='.';
209                         path_buf[1]=0;
210 #ifdef __MSDOS__
211                 } else {
212                         strcpy(path_buf,add_exe_path(path_buf)); /* safe, becouse
213                                                                                                                 add_exe_path knows about PATH_BUF_SIZE */
214 #endif
215                 }
216                 strcat(path_buf,dir_sep); /* always one char */
217                 if (strlen(path_buf)+6>=PATH_BUF_SIZE)
218                         continue; /* Ignore too deeply nested directories */
219                 strcat(path_buf,"*.txt");
220 #ifdef __MSDOS__
221                 res=findfirst(path_buf,&ffblock,FA_RDONLY | FA_HIDDEN | FA_ARCH);
222                 col=1;
223                 printf("Available charsets:\n"); 
224                 while (!res) {
225                         char name[12],*src,*dest;
226                         dest=name;
227                         src=ffblock.ff_name;
228                         for (dest=name,src=ffblock.ff_name;*src && *src !='.';dest++,src++)
229                                 *dest=tolower(*src);
230                         *dest++=(col<5)?'\t':'\n';
231                         if (++col>5) col=1;
232                         *dest=0;
233                         printf("%10s",name);
234                         res=findnext(&ffblock);
235                 }
236 #else
237                 switch (glob(path_buf,glob_flags,NULL,&glob_buf)) {
238                         case 0:
239 #ifdef GLOB_NOMATCH
240                         case GLOB_NOMATCH:
241 #endif
242                                 break;
243                         default:
244                                 perror("catdoc");
245                                 exit(1);
246                 }
247                 glob_flags|=GLOB_APPEND;
248 #endif
249         }
250 #ifdef __MSDOS__
251         fputs("utf-8\n",stdout);
252 #else
253         count=0;printf("Available charsets:"); 
254         for (ptr=glob_buf.gl_pathv;*ptr;ptr++) {
255                 printf("%c",(count++)%5?'\t':'\n');
256                 p=strrchr(*ptr,dir_sep[0]);
257                 if (!p) continue;
258                 p++;
259                 if ((q=strchr(p,'.'))) *q=0;
260                 fputs(p,stdout);
261         }  
262         printf("%c",(count++)%5?'\t':'\n');
263         fputs("utf-8",stdout);
264         printf("\n");
265         globfree(&glob_buf);
266 #endif   
267 }