Code cleanup: removed unused variables amd removed unnedeed code.
[midnight-commander.git] / src / vfs / sfs / sfs.c
blob2e146c6658fbac17f448fcae1fb6030d8633a8ce
1 /*
2 Single File fileSystem
4 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 2011
6 The Free Software Foundation, Inc.
8 This file is part of the Midnight Commander.
10 The Midnight Commander is free software: you can redistribute it
11 and/or modify it under the terms of the GNU General Public License as
12 published by the Free Software Foundation, either version 3 of the License,
13 or (at your option) any later version.
15 The Midnight Commander is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 /**
25 * \file
26 * \brief Source: Single File fileSystem
28 * This defines whole class of filesystems which contain single file
29 * inside. It is somehow similar to extfs, except that extfs makes
30 * whole virtual trees and we do only single virtual files.
32 * If you want to gunzip something, you should open it with \verbatim #ugz \endverbatim
33 * suffix, DON'T try to gunzip it yourself.
35 * Namespace: exports vfs_sfs_ops
38 #include <config.h>
39 #include <errno.h>
40 #include <sys/types.h>
41 #include <unistd.h>
42 #include <stdio.h>
43 #include <string.h>
44 #include <fcntl.h>
46 #include "lib/global.h"
47 #include "lib/util.h"
48 #include "lib/widget.h" /* D_ERROR, D_NORMAL */
50 #include "src/execute.h" /* EXECUTE_AS_SHELL */
52 #include "lib/vfs/vfs.h"
53 #include "lib/vfs/utilvfs.h"
54 #include "src/vfs/local/local.h"
55 #include "lib/vfs/gc.h" /* vfs_stamp_create */
57 #include "sfs.h"
59 /*** global variables ****************************************************************************/
61 /*** file scope macro definitions ****************************************************************/
63 #define MAXFS 32
65 #define F_1 1
66 #define F_2 2
67 #define F_NOLOCALCOPY 4
68 #define F_FULLMATCH 8
70 #define COPY_CHAR \
71 if ((size_t) (t - pad) > sizeof(pad)) \
72 { \
73 g_free (pqname); \
74 return -1; \
75 } \
76 else \
77 *t++ = *s_iter;
79 #define COPY_STRING(a) \
80 if ((t - pad) + strlen(a) > sizeof(pad)) \
81 { \
82 g_free (pqname); \
83 return -1; \
84 } \
85 else \
86 { \
87 strcpy (t, a); \
88 t += strlen (a); \
91 /*** file scope type declarations ****************************************************************/
93 typedef struct cachedfile
95 char *name;
96 char *cache;
97 } cachedfile;
99 /*** file scope variables ************************************************************************/
101 static GSList *head;
102 static struct vfs_class vfs_sfs_ops;
104 static int sfs_no = 0;
105 static char *sfs_prefix[MAXFS];
106 static char *sfs_command[MAXFS];
107 static int sfs_flags[MAXFS];
109 /*** file scope functions ************************************************************************/
111 static int
112 cachedfile_compare (const void *a, const void *b)
114 const cachedfile *cf = (const cachedfile *) a;
115 const char *name = (const char *) b;
117 return strcmp (name, cf->name);
120 /* --------------------------------------------------------------------------------------------- */
122 static int
123 sfs_vfmake (const vfs_path_t * vpath, vfs_path_t * cache_vpath)
125 int w;
126 char pad[10240];
127 char *s_iter, *t = pad;
128 int was_percent = 0;
129 vfs_path_t *pname, *s; /* name of parent archive */
130 char *pqname; /* name of parent archive, quoted */
131 const vfs_path_element_t *path_element;
133 path_element = vfs_path_get_by_index (vpath, -1);
134 pname = vfs_path_clone (vpath);
135 vfs_path_remove_element_by_index (pname, -1);
137 w = (*path_element->class->which) (path_element->class, path_element->vfs_prefix);
138 if (w == -1)
139 vfs_die ("This cannot happen... Hopefully.\n");
141 if ((sfs_flags[w] & F_1) == 0 && strcmp (vfs_path_get_last_path_str (pname), PATH_SEP_STR) != 0)
143 vfs_path_free (pname);
144 return -1;
147 /* if ((sfs_flags[w] & F_2) || (!inpath) || (!*inpath)); else return -1; */
148 if ((sfs_flags[w] & F_NOLOCALCOPY) == 0)
150 s = mc_getlocalcopy (pname);
151 if (s == NULL)
153 vfs_path_free (pname);
154 return -1;
156 pqname = name_quote (vfs_path_get_last_path_str (s), 0);
157 vfs_path_free (s);
159 else
161 char *pname_str;
163 pname_str = vfs_path_to_str (pname);
164 pqname = name_quote (pname_str, 0);
165 g_free (pname_str);
167 vfs_path_free (pname);
170 for (s_iter = sfs_command[w]; *s_iter != '\0'; s_iter++)
172 if (was_percent)
174 const char *ptr = NULL;
176 was_percent = 0;
178 switch (*s_iter)
180 case '1':
181 ptr = pqname;
182 break;
183 case '2':
184 ptr = path_element->path;
185 break;
186 case '3':
187 ptr = vfs_path_get_by_index (cache_vpath, -1)->path;
188 break;
189 case '%':
190 COPY_CHAR;
191 continue;
193 if (ptr != NULL) {
194 COPY_STRING (ptr);
197 else
199 if (*s_iter == '%')
200 was_percent = 1;
201 else
202 COPY_CHAR;
206 g_free (pqname);
207 open_error_pipe ();
208 if (my_system (EXECUTE_AS_SHELL, "/bin/sh", pad))
210 close_error_pipe (D_ERROR, NULL);
211 return -1;
214 close_error_pipe (D_NORMAL, NULL);
215 return 0; /* OK */
218 /* --------------------------------------------------------------------------------------------- */
220 static const char *
221 sfs_redirect (const vfs_path_t * vpath)
223 GSList *cur;
224 cachedfile *cf;
225 vfs_path_t *cache_vpath;
226 int handle;
227 const vfs_path_element_t *path_element;
228 char *path;
230 path = vfs_path_to_str (vpath);
231 path_element = vfs_path_get_by_index (vpath, -1);
232 cur = g_slist_find_custom (head, path, cachedfile_compare);
233 g_free (path);
235 if (cur != NULL)
237 cf = (cachedfile *) cur->data;
238 vfs_stamp (&vfs_sfs_ops, cf);
239 return cf->cache;
242 handle = vfs_mkstemps (&cache_vpath, "sfs", path_element->path);
244 if (handle == -1)
245 return "/SOMEONE_PLAYING_DIRTY_TMP_TRICKS_ON_US";
247 close (handle);
249 if (sfs_vfmake (vpath, cache_vpath) == 0)
251 cf = g_new (cachedfile, 1);
252 cf->name = vfs_path_to_str (vpath);
253 cf->cache = vfs_path_to_str (cache_vpath);
254 head = g_slist_prepend (head, cf);
255 vfs_path_free (cache_vpath);
257 vfs_stamp_create (&vfs_sfs_ops, (cachedfile *) head->data);
258 return cf->cache;
261 mc_unlink (cache_vpath);
262 vfs_path_free (cache_vpath);
263 return "/I_MUST_NOT_EXIST";
266 /* --------------------------------------------------------------------------------------------- */
268 static void *
269 sfs_open (const vfs_path_t * vpath /*struct vfs_class *me, const char *path */ , int flags,
270 mode_t mode)
272 int *sfs_info;
273 int fd;
275 fd = open (sfs_redirect (vpath), NO_LINEAR (flags), mode);
276 if (fd == -1)
277 return 0;
279 sfs_info = g_new (int, 1);
280 *sfs_info = fd;
282 return sfs_info;
285 /* --------------------------------------------------------------------------------------------- */
287 static int
288 sfs_stat (const vfs_path_t * vpath, struct stat *buf)
290 return stat (sfs_redirect (vpath), buf);
293 /* --------------------------------------------------------------------------------------------- */
295 static int
296 sfs_lstat (const vfs_path_t * vpath, struct stat *buf)
298 #ifndef HAVE_STATLSTAT
299 return lstat (sfs_redirect (vpath), buf);
300 #else
301 return statlstat (sfs_redirect (vpath), buf);
302 #endif
305 /* --------------------------------------------------------------------------------------------- */
307 static int
308 sfs_chmod (const vfs_path_t * vpath, mode_t mode)
310 return chmod (sfs_redirect (vpath), mode);
313 /* --------------------------------------------------------------------------------------------- */
315 static int
316 sfs_chown (const vfs_path_t * vpath, uid_t owner, gid_t group)
318 return chown (sfs_redirect (vpath), owner, group);
321 /* --------------------------------------------------------------------------------------------- */
323 static int
324 sfs_utime (const vfs_path_t * vpath, struct utimbuf *times)
326 return utime (sfs_redirect (vpath), times);
329 /* --------------------------------------------------------------------------------------------- */
331 static int
332 sfs_readlink (const vfs_path_t * vpath, char *buf, size_t size)
334 return readlink (sfs_redirect (vpath), buf, size);
337 /* --------------------------------------------------------------------------------------------- */
339 static vfsid
340 sfs_getid (const vfs_path_t * vpath)
342 GSList *cur;
343 char *path = vfs_path_to_str (vpath);
345 cur = g_slist_find_custom (head, path, cachedfile_compare);
346 g_free (path);
348 return (vfsid) (cur != NULL ? cur->data : NULL);
351 /* --------------------------------------------------------------------------------------------- */
353 static void
354 sfs_free (vfsid id)
356 struct cachedfile *which;
357 GSList *cur;
359 which = (struct cachedfile *) id;
360 cur = g_slist_find (head, which);
361 if (cur == NULL)
362 vfs_die ("Free of thing which is unknown to me\n");
364 which = (struct cachedfile *) cur->data;
365 unlink (which->cache);
366 g_free (which->cache);
367 g_free (which->name);
368 g_free (which);
370 head = g_slist_delete_link (head, cur);
373 /* --------------------------------------------------------------------------------------------- */
375 static void
376 sfs_fill_names (struct vfs_class *me, fill_names_f func)
378 GSList *cur;
380 (void) me;
382 for (cur = head; cur != NULL; cur = g_slist_next (cur))
383 func (((cachedfile *) cur->data)->name);
386 /* --------------------------------------------------------------------------------------------- */
388 static int
389 sfs_nothingisopen (vfsid id)
391 /* FIXME: Investigate whether have to guard this like in
392 the other VFSs (see fd_usage in extfs) -- Norbert */
393 (void) id;
394 return 1;
397 /* --------------------------------------------------------------------------------------------- */
399 static vfs_path_t *
400 sfs_getlocalcopy (const vfs_path_t * vpath)
402 return vfs_path_from_str (sfs_redirect (vpath));
405 /* --------------------------------------------------------------------------------------------- */
407 static int
408 sfs_ungetlocalcopy (const vfs_path_t * vpath, const vfs_path_t * local, gboolean has_changed)
410 (void) vpath;
411 (void) local;
412 (void) has_changed;
413 return 0;
416 /* --------------------------------------------------------------------------------------------- */
418 static int
419 sfs_init (struct vfs_class *me)
421 char *mc_sfsini;
422 FILE *cfg;
423 char key[256];
425 (void) me;
427 mc_sfsini = g_build_filename (mc_global.sysconfig_dir, "sfs.ini", (char *) NULL);
428 cfg = fopen (mc_sfsini, "r");
430 if (cfg == NULL)
432 fprintf (stderr, _("%s: Warning: file %s not found\n"), "sfs_init()", mc_sfsini);
433 g_free (mc_sfsini);
434 return 0;
436 g_free (mc_sfsini);
438 sfs_no = 0;
439 while (sfs_no < MAXFS && fgets (key, sizeof (key), cfg))
441 char *c, *semi = NULL, flags = 0;
443 if (*key == '#' || *key == '\n')
444 continue;
446 for (c = key; *c; c++)
447 if ((*c == ':') || (*c == '/'))
449 semi = c;
450 if (*c == '/')
452 *c = 0;
453 flags |= F_FULLMATCH;
455 break;
458 if (!semi)
460 invalid_line:
461 fprintf (stderr, _("Warning: Invalid line in %s:\n%s\n"), "sfs.ini", key);
462 continue;
465 c = semi + 1;
466 while (*c && (*c != ' ') && (*c != '\t'))
468 switch (*c)
470 case '1':
471 flags |= F_1;
472 break;
473 case '2':
474 flags |= F_2;
475 break;
476 case 'R':
477 flags |= F_NOLOCALCOPY;
478 break;
479 default:
480 fprintf (stderr, _("Warning: Invalid flag %c in %s:\n%s\n"), *c, "sfs.ini", key);
482 c++;
484 if (!*c)
485 goto invalid_line;
487 c++;
488 *(semi + 1) = 0;
489 semi = strchr (c, '\n');
490 if (semi != NULL)
491 *semi = 0;
493 sfs_prefix[sfs_no] = g_strdup (key);
494 sfs_command[sfs_no] = g_strdup (c);
495 sfs_flags[sfs_no] = flags;
496 sfs_no++;
498 fclose (cfg);
499 return 1;
502 /* --------------------------------------------------------------------------------------------- */
504 static void
505 sfs_done (struct vfs_class *me)
507 int i;
509 (void) me;
511 for (i = 0; i < sfs_no; i++)
513 g_free (sfs_prefix[i]);
514 g_free (sfs_command[i]);
515 sfs_prefix[i] = sfs_command[i] = NULL;
517 sfs_no = 0;
520 /* --------------------------------------------------------------------------------------------- */
522 static int
523 sfs_which (struct vfs_class *me, const char *path)
525 int i;
527 (void) me;
529 for (i = 0; i < sfs_no; i++)
530 if (sfs_flags[i] & F_FULLMATCH)
532 if (!strcmp (path, sfs_prefix[i]))
533 return i;
535 else if (!strncmp (path, sfs_prefix[i], strlen (sfs_prefix[i])))
536 return i;
538 return -1;
541 /* --------------------------------------------------------------------------------------------- */
542 /*** public functions ****************************************************************************/
543 /* --------------------------------------------------------------------------------------------- */
545 void
546 init_sfs (void)
548 vfs_sfs_ops.name = "sfs";
549 vfs_sfs_ops.init = sfs_init;
550 vfs_sfs_ops.done = sfs_done;
551 vfs_sfs_ops.fill_names = sfs_fill_names;
552 vfs_sfs_ops.which = sfs_which;
553 vfs_sfs_ops.open = sfs_open;
554 vfs_sfs_ops.close = local_close;
555 vfs_sfs_ops.read = local_read;
556 vfs_sfs_ops.stat = sfs_stat;
557 vfs_sfs_ops.lstat = sfs_lstat;
558 vfs_sfs_ops.fstat = local_fstat;
559 vfs_sfs_ops.chmod = sfs_chmod;
560 vfs_sfs_ops.chown = sfs_chown;
561 vfs_sfs_ops.utime = sfs_utime;
562 vfs_sfs_ops.readlink = sfs_readlink;
563 vfs_sfs_ops.ferrno = local_errno;
564 vfs_sfs_ops.lseek = local_lseek;
565 vfs_sfs_ops.getid = sfs_getid;
566 vfs_sfs_ops.nothingisopen = sfs_nothingisopen;
567 vfs_sfs_ops.free = sfs_free;
568 vfs_sfs_ops.getlocalcopy = sfs_getlocalcopy;
569 vfs_sfs_ops.ungetlocalcopy = sfs_ungetlocalcopy;
570 vfs_register_class (&vfs_sfs_ops);
573 /* --------------------------------------------------------------------------------------------- */