2 Virtual File System path handlers
4 Copyright (C) 2011-2024
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2011, 2013
9 Andrew Borodin <aborodin@vmail.ru>, 2013-2022
11 This file is part of the Midnight Commander.
13 The Midnight Commander is free software: you can redistribute it
14 and/or modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation, either version 3 of the License,
16 or (at your option) any later version.
18 The Midnight Commander is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program. If not, see <http://www.gnu.org/licenses/>.
29 * \brief Source: Virtual File System: path handlers
39 #include "lib/global.h"
40 #include "lib/strutil.h"
41 #include "lib/util.h" /* mc_build_filename() */
42 #include "lib/serialize.h"
46 #include "xdirentry.h"
49 extern GPtrArray
*vfs__classes_list
;
51 /*** global variables ****************************************************************************/
53 /*** file scope macro definitions ****************************************************************/
55 /*** file scope type declarations ****************************************************************/
57 /*** forward declarations (file scope functions) *************************************************/
59 /*** file scope variables ************************************************************************/
61 /* --------------------------------------------------------------------------------------------- */
62 /*** file scope functions ************************************************************************/
63 /* --------------------------------------------------------------------------------------------- */
66 path_magic (const char *path
)
70 return (stat (path
, &buf
) != 0);
73 /* --------------------------------------------------------------------------------------------- */
76 * Splits path extracting vfs part.
79 * \verbatim /p1#op/inpath \endverbatim
81 * \verbatim inpath,op; \endverbatim
82 * returns which vfs it is.
83 * What is left in path is p1. You still want to g_free(path), you DON'T
84 * want to free neither *inpath nor *op
87 static struct vfs_class
*
88 _vfs_split_with_semi_skip_count (char *path
, const char **inpath
, const char **op
,
93 struct vfs_class
*ret
;
96 vfs_die ("Cannot split NULL");
98 semi
= strrstr_skip_count (path
, "#", skip_count
);
100 if ((semi
== NULL
) || (!path_magic (path
)))
103 slash
= strchr (semi
, PATH_SEP
);
115 ret
= vfs_prefix_to_class (semi
+ 1);
121 *inpath
= slash
!= NULL
? slash
+ 1 : NULL
;
129 ret
= _vfs_split_with_semi_skip_count (path
, inpath
, op
, skip_count
+ 1);
133 /* --------------------------------------------------------------------------------------------- */
135 * remove //, /./ and /../
137 * @return newly allocated string
141 vfs_canon (const char *path
)
146 vfs_die ("Cannot canonicalize NULL");
148 if (!IS_PATH_SEP (*path
))
150 /* Relative to current directory */
155 if (g_str_has_prefix (path
, VFS_ENCODING_PREFIX
))
158 encoding prefix placed at start of string without the leading slash
159 should be autofixed by adding the leading slash
161 local
= mc_build_filename (PATH_SEP_STR
, path
, (char *) NULL
);
166 const char *curr_dir
;
168 curr_dir
= vfs_get_current_dir ();
169 local
= mc_build_filename (curr_dir
, path
, (char *) NULL
);
171 result
= vfs_canon (local
);
178 result
= g_strdup (path
);
179 canonicalize_pathname (result
);
185 /* --------------------------------------------------------------------------------------------- */
186 /** Extract the hostname and username from the path
188 * Format of the path is [user@]hostname:port/remote-dir, e.g.:
190 * ftp://sunsite.unc.edu/pub/linux
191 * ftp://miguel@sphinx.nuclecu.unam.mx/c/nc
192 * ftp://tsx-11.mit.edu:8192/
193 * ftp://joe@foo.edu:11321/private
194 * ftp://joe:password@foo.se
196 * @param path_element is an input string to be parsed
197 * @param path is an input string to be parsed
199 * @return g_malloc()ed url info.
200 * If the user is empty, e.g. ftp://@roxanne/private, and URL_USE_ANONYMOUS
201 * is not set, then the current login name is supplied.
202 * Return value is a g_malloc()ed structure with the pathname relative to the
207 vfs_path_url_split (vfs_path_element_t
*path_element
, const char *path
)
210 char *colon
, *at
, *rest
;
212 path_element
->port
= 0;
214 pcopy
= g_strdup (path
);
216 /* search for any possible user */
217 at
= strrchr (pcopy
, '@');
219 /* We have a username */
227 pend
= strchr (at
, '\0');
230 inner_colon
= strchr (pcopy
, ':');
231 if (inner_colon
!= NULL
)
235 path_element
->password
= g_strdup (inner_colon
);
239 path_element
->user
= g_strdup (pcopy
);
247 /* Check if the host comes with a port spec, if so, chop it */
249 colon
= strchr (rest
, ':');
252 colon
= strchr (++rest
, ']');
258 path_element
->ipv6
= TRUE
;
265 /* cppcheck-suppress invalidscanf */
266 if (sscanf (colon
+ 1, "%d", &path_element
->port
) == 1)
268 if (path_element
->port
<= 0 || path_element
->port
>= 65536)
269 path_element
->port
= 0;
272 while (*(++colon
) != '\0')
277 path_element
->port
= 1;
280 path_element
->port
= 2;
287 path_element
->host
= g_strdup (rest
);
291 /* --------------------------------------------------------------------------------------------- */
293 * get VFS class for the given name
295 * @param class_name name of class
297 * @return pointer to class structure or NULL if class not found
300 static struct vfs_class
*
301 vfs_get_class_by_name (const char *class_name
)
305 if (class_name
== NULL
)
308 for (i
= 0; i
< vfs__classes_list
->len
; i
++)
310 struct vfs_class
*vfs
= VFS_CLASS (g_ptr_array_index (vfs__classes_list
, i
));
311 if ((vfs
->name
!= NULL
) && (strcmp (vfs
->name
, class_name
) == 0))
318 /* --------------------------------------------------------------------------------------------- */
320 * Check if path string contain URL-like elements
322 * @param path_str path
324 * @return TRUE if path is deprecated or FALSE otherwise
328 vfs_path_is_str_path_deprecated (const char *path_str
)
330 return strstr (path_str
, VFS_PATH_URL_DELIMITER
) == NULL
;
333 /* --------------------------------------------------------------------------------------------- */
334 /** Split path string to path elements by deprecated algorithm.
336 * @param path_str VFS-path
338 * @return pointer to newly created vfs_path_t object with filled path elements array.
342 vfs_path_from_str_deprecated_parser (char *path
)
345 vfs_path_element_t
*element
;
346 struct vfs_class
*class;
347 const char *local
, *op
;
349 vpath
= vfs_path_new (FALSE
);
351 while ((class = _vfs_split_with_semi_skip_count (path
, &local
, &op
, 0)) != NULL
)
354 element
= g_new0 (vfs_path_element_t
, 1);
355 element
->class = class;
358 element
->path
= vfs_translate_path_n (local
);
361 element
->encoding
= vfs_get_encoding (local
, -1);
362 element
->dir
.converter
=
363 (element
->encoding
!= NULL
) ? str_crt_conv_from (element
->encoding
) : INVALID_CONV
;
366 url_params
= strchr (op
, ':'); /* skip VFS prefix */
367 if (url_params
!= NULL
)
371 vfs_path_url_split (element
, url_params
);
375 element
->vfs_prefix
= g_strdup (op
);
377 g_array_prepend_val (vpath
->path
, element
);
381 element
= g_new0 (vfs_path_element_t
, 1);
382 element
->class = g_ptr_array_index (vfs__classes_list
, 0);
383 element
->path
= vfs_translate_path_n (path
);
386 element
->encoding
= vfs_get_encoding (path
, -1);
387 element
->dir
.converter
=
388 (element
->encoding
!= NULL
) ? str_crt_conv_from (element
->encoding
) : INVALID_CONV
;
390 g_array_prepend_val (vpath
->path
, element
);
396 /* --------------------------------------------------------------------------------------------- */
397 /** Split path string to path elements by URL algorithm.
399 * @param path_str VFS-path
400 * @param flags flags for converter
402 * @return pointer to newly created vfs_path_t object with filled path elements array.
406 vfs_path_from_str_uri_parser (char *path
)
408 gboolean path_is_absolute
;
410 vfs_path_element_t
*element
;
414 return vfs_path_new (FALSE
);
416 path_is_absolute
= IS_PATH_SEP (*path
);
418 path_is_absolute
= path_is_absolute
|| g_str_has_prefix (path
, VFS_ENCODING_PREFIX
);
421 vpath
= vfs_path_new (!path_is_absolute
);
423 while ((url_delimiter
= g_strrstr (path
, VFS_PATH_URL_DELIMITER
)) != NULL
)
425 char *vfs_prefix_start
;
426 char *real_vfs_prefix_start
= url_delimiter
;
428 while (real_vfs_prefix_start
> path
&& !IS_PATH_SEP (*real_vfs_prefix_start
))
429 real_vfs_prefix_start
--;
430 vfs_prefix_start
= real_vfs_prefix_start
;
432 if (IS_PATH_SEP (*vfs_prefix_start
))
435 *url_delimiter
= '\0';
437 element
= g_new0 (vfs_path_element_t
, 1);
438 element
->class = vfs_prefix_to_class (vfs_prefix_start
);
439 element
->vfs_prefix
= g_strdup (vfs_prefix_start
);
441 url_delimiter
+= strlen (VFS_PATH_URL_DELIMITER
);
443 if (element
->class != NULL
&& (element
->class->flags
& VFSF_REMOTE
) != 0)
447 slash_pointer
= strchr (url_delimiter
, PATH_SEP
);
448 if (slash_pointer
== NULL
)
449 element
->path
= g_strdup ("");
452 element
->path
= vfs_translate_path_n (slash_pointer
+ 1);
454 element
->encoding
= vfs_get_encoding (slash_pointer
, -1);
456 *slash_pointer
= '\0';
458 vfs_path_url_split (element
, url_delimiter
);
462 element
->path
= vfs_translate_path_n (url_delimiter
);
464 element
->encoding
= vfs_get_encoding (url_delimiter
, -1);
468 element
->dir
.converter
=
469 (element
->encoding
!= NULL
) ? str_crt_conv_from (element
->encoding
) : INVALID_CONV
;
471 g_array_prepend_val (vpath
->path
, element
);
473 if ((real_vfs_prefix_start
> path
&& IS_PATH_SEP (*real_vfs_prefix_start
)) ||
474 (real_vfs_prefix_start
== path
&& !IS_PATH_SEP (*real_vfs_prefix_start
)))
475 *real_vfs_prefix_start
= '\0';
477 *(real_vfs_prefix_start
+ 1) = '\0';
482 element
= g_new0 (vfs_path_element_t
, 1);
483 element
->class = g_ptr_array_index (vfs__classes_list
, 0);
484 element
->path
= vfs_translate_path_n (path
);
486 element
->encoding
= vfs_get_encoding (path
, -1);
487 element
->dir
.converter
=
488 (element
->encoding
!= NULL
) ? str_crt_conv_from (element
->encoding
) : INVALID_CONV
;
490 g_array_prepend_val (vpath
->path
, element
);
496 /* --------------------------------------------------------------------------------------------- */
498 * Add element's class info to result string (such as VFS name, host, encoding etc)
499 * This function used as helper only in vfs_path_tokens_get() function
501 * @param element current path element
502 * @param ret_tokens total tikens for return
503 * @param element_tokens accumulated element-only tokens
507 vfs_path_tokens_add_class_info (const vfs_path_element_t
*element
, GString
*ret_tokens
,
508 GString
*element_tokens
)
510 if (((element
->class->flags
& VFSF_LOCAL
) == 0 || ret_tokens
->len
> 0)
511 && element_tokens
->len
> 0)
515 if (ret_tokens
->len
> 0 && !IS_PATH_SEP (ret_tokens
->str
[ret_tokens
->len
- 1]))
516 g_string_append_c (ret_tokens
, PATH_SEP
);
518 g_string_append (ret_tokens
, element
->vfs_prefix
);
519 g_string_append (ret_tokens
, VFS_PATH_URL_DELIMITER
);
521 url_str
= vfs_path_build_url_params_str (element
, TRUE
);
524 g_string_append_len (ret_tokens
, url_str
->str
, url_str
->len
);
525 g_string_append_c (ret_tokens
, PATH_SEP
);
526 g_string_free (url_str
, TRUE
);
531 if (element
->encoding
!= NULL
)
533 if (ret_tokens
->len
> 0 && !IS_PATH_SEP (ret_tokens
->str
[ret_tokens
->len
- 1]))
534 g_string_append (ret_tokens
, PATH_SEP_STR
);
535 g_string_append (ret_tokens
, VFS_ENCODING_PREFIX
);
536 g_string_append (ret_tokens
, element
->encoding
);
537 g_string_append (ret_tokens
, PATH_SEP_STR
);
541 g_string_append (ret_tokens
, element_tokens
->str
);
544 /* --------------------------------------------------------------------------------------------- */
546 * Strip path to home dir.
547 * @param dir pointer to string contains full path
551 vfs_path_strip_home (const char *dir
)
553 const char *home_dir
= mc_config_get_home_dir ();
555 if (home_dir
!= NULL
)
559 len
= strlen (home_dir
);
561 if (strncmp (dir
, home_dir
, len
) == 0 && (IS_PATH_SEP (dir
[len
]) || dir
[len
] == '\0'))
562 return g_strdup_printf ("~%s", dir
+ len
);
565 return g_strdup (dir
);
568 /* --------------------------------------------------------------------------------------------- */
569 /*** public functions ****************************************************************************/
570 /* --------------------------------------------------------------------------------------------- */
572 #define vfs_append_from_path(appendfrom, is_relative) \
574 if ((flags & VPF_STRIP_HOME) && element_index == 0 && \
575 (element->class->flags & VFSF_LOCAL) != 0) \
577 char *stripped_home_str; \
578 stripped_home_str = vfs_path_strip_home (appendfrom); \
579 g_string_append (buffer, stripped_home_str); \
580 g_free (stripped_home_str); \
584 if (!is_relative && !IS_PATH_SEP (*appendfrom) && *appendfrom != '\0' \
585 && (buffer->len == 0 || !IS_PATH_SEP (buffer->str[buffer->len - 1]))) \
586 g_string_append_c (buffer, PATH_SEP); \
587 g_string_append (buffer, appendfrom); \
592 * Convert first elements_count elements from vfs_path_t to string representation with flags.
594 * @param vpath pointer to vfs_path_t object
595 * @param elements_count count of first elements for convert
596 * @param flags for converter
598 * @return pointer to newly created string.
602 vfs_path_to_str_flags (const vfs_path_t
*vpath
, int elements_count
, vfs_path_flag_t flags
)
607 GString
*recode_buffer
= NULL
;
613 if (elements_count
== 0 || elements_count
> vfs_path_elements_count (vpath
))
614 elements_count
= vfs_path_elements_count (vpath
);
616 if (elements_count
< 0)
617 elements_count
= vfs_path_elements_count (vpath
) + elements_count
;
619 buffer
= g_string_new ("");
621 for (element_index
= 0; element_index
< elements_count
; element_index
++)
623 const vfs_path_element_t
*element
;
624 gboolean is_relative
= vpath
->relative
&& (element_index
== 0);
626 element
= vfs_path_get_by_index (vpath
, element_index
);
627 if (element
->vfs_prefix
!= NULL
)
631 if (!is_relative
&& (buffer
->len
== 0 || !IS_PATH_SEP (buffer
->str
[buffer
->len
- 1])))
632 g_string_append_c (buffer
, PATH_SEP
);
634 g_string_append (buffer
, element
->vfs_prefix
);
635 g_string_append (buffer
, VFS_PATH_URL_DELIMITER
);
637 url_str
= vfs_path_build_url_params_str (element
, (flags
& VPF_STRIP_PASSWORD
) == 0);
640 g_string_append_len (buffer
, url_str
->str
, url_str
->len
);
641 g_string_append_c (buffer
, PATH_SEP
);
642 g_string_free (url_str
, TRUE
);
647 if ((flags
& VPF_RECODE
) == 0 && vfs_path_element_need_cleanup_converter (element
))
649 if ((flags
& VPF_HIDE_CHARSET
) == 0)
652 && (buffer
->len
== 0 || !IS_PATH_SEP (buffer
->str
[buffer
->len
- 1])))
653 g_string_append (buffer
, PATH_SEP_STR
);
654 g_string_append (buffer
, VFS_ENCODING_PREFIX
);
655 g_string_append (buffer
, element
->encoding
);
658 if (recode_buffer
== NULL
)
659 recode_buffer
= g_string_sized_new (32);
661 g_string_set_size (recode_buffer
, 0);
663 str_vfs_convert_from (element
->dir
.converter
, element
->path
, recode_buffer
);
664 vfs_append_from_path (recode_buffer
->str
, is_relative
);
669 vfs_append_from_path (element
->path
, is_relative
);
674 if (recode_buffer
!= NULL
)
675 g_string_free (recode_buffer
, TRUE
);
678 return g_string_free (buffer
, FALSE
);
681 #undef vfs_append_from_path
683 /* --------------------------------------------------------------------------------------------- */
685 * Convert first elements_count elements from vfs_path_t to string representation.
687 * @param vpath pointer to vfs_path_t object
688 * @param elements_count count of first elements for convert
690 * @return pointer to newly created string.
694 vfs_path_to_str_elements_count (const vfs_path_t
*vpath
, int elements_count
)
696 return vfs_path_to_str_flags (vpath
, elements_count
, VPF_NONE
);
699 /* --------------------------------------------------------------------------------------------- */
701 * Split path string to path elements with flags for change parce process.
703 * @param path_str VFS-path
704 * @param flags flags for parser
706 * @return pointer to newly created vfs_path_t object with filled path elements array.
710 vfs_path_from_str_flags (const char *path_str
, vfs_path_flag_t flags
)
715 if (path_str
== NULL
)
718 if ((flags
& VPF_NO_CANON
) == 0)
719 path
= vfs_canon (path_str
);
721 path
= g_strdup (path_str
);
726 if ((flags
& VPF_USE_DEPRECATED_PARSER
) != 0 && vfs_path_is_str_path_deprecated (path
))
727 vpath
= vfs_path_from_str_deprecated_parser (path
);
729 vpath
= vfs_path_from_str_uri_parser (path
);
731 vpath
->str
= vfs_path_to_str_flags (vpath
, 0, flags
);
737 /* --------------------------------------------------------------------------------------------- */
739 * Split path string to path elements.
741 * @param path_str VFS-path
743 * @return pointer to newly created vfs_path_t object with filled path elements array.
747 vfs_path_from_str (const char *path_str
)
749 return vfs_path_from_str_flags (path_str
, VPF_NONE
);
752 /* --------------------------------------------------------------------------------------------- */
754 * Create new vfs_path_t object.
756 * @return pointer to newly created vfs_path_t object.
760 vfs_path_new (gboolean relative
)
764 vpath
= g_new0 (vfs_path_t
, 1);
765 vpath
->path
= g_array_new (FALSE
, TRUE
, sizeof (vfs_path_element_t
*));
766 vpath
->relative
= relative
;
771 /* --------------------------------------------------------------------------------------------- */
773 * Get count of path elements.
775 * @param vpath pointer to vfs_path_t object
777 * @return count of path elements.
781 vfs_path_elements_count (const vfs_path_t
*vpath
)
783 return (vpath
!= NULL
&& vpath
->path
!= NULL
) ? vpath
->path
->len
: 0;
786 /* --------------------------------------------------------------------------------------------- */
788 * Add vfs_path_element_t object to end of list in vfs_path_t object
789 * @param vpath pointer to vfs_path_t object
790 * @param path_element pointer to vfs_path_element_t object
794 vfs_path_add_element (vfs_path_t
*vpath
, const vfs_path_element_t
*path_element
)
796 g_array_append_val (vpath
->path
, path_element
);
798 vpath
->str
= vfs_path_to_str_flags (vpath
, 0, VPF_NONE
);
801 /* --------------------------------------------------------------------------------------------- */
803 * Get one path element by index.
805 * @param vpath pointer to vfs_path_t object.
806 * May be NULL. In this case NULL is returned and errno set to 0.
807 * @param element_index element index. May have negative value (in this case count was started at
808 * the end of list). If @element_index is out of range, NULL is returned and
809 * errno set to EINVAL.
811 * @return path element
814 const vfs_path_element_t
*
815 vfs_path_get_by_index (const vfs_path_t
*vpath
, int element_index
)
825 n
= vfs_path_elements_count (vpath
);
827 if (element_index
< 0)
830 if (element_index
< 0 || element_index
> n
)
836 return g_array_index (vpath
->path
, vfs_path_element_t
*, element_index
);
839 /* --------------------------------------------------------------------------------------------- */
841 * Clone one path element
843 * @param element pointer to vfs_path_element_t object
845 * @return Newly allocated path element
849 vfs_path_element_clone (const vfs_path_element_t
*element
)
851 vfs_path_element_t
*new_element
= g_new (vfs_path_element_t
, 1);
853 new_element
->user
= g_strdup (element
->user
);
854 new_element
->password
= g_strdup (element
->password
);
855 new_element
->host
= g_strdup (element
->host
);
856 new_element
->ipv6
= element
->ipv6
;
857 new_element
->port
= element
->port
;
858 new_element
->path
= g_strdup (element
->path
);
859 new_element
->class = element
->class;
860 new_element
->vfs_prefix
= g_strdup (element
->vfs_prefix
);
862 new_element
->encoding
= g_strdup (element
->encoding
);
863 if (vfs_path_element_need_cleanup_converter (element
) && element
->encoding
!= NULL
)
864 new_element
->dir
.converter
= str_crt_conv_from (element
->encoding
);
866 new_element
->dir
.converter
= element
->dir
.converter
;
868 new_element
->dir
.info
= element
->dir
.info
;
873 /* --------------------------------------------------------------------------------------------- */
875 * Free one path element.
877 * @param element pointer to vfs_path_element_t object
882 vfs_path_element_free (vfs_path_element_t
*element
)
887 g_free (element
->user
);
888 g_free (element
->password
);
889 g_free (element
->host
);
890 g_free (element
->path
);
891 g_free (element
->vfs_prefix
);
894 g_free (element
->encoding
);
896 if (vfs_path_element_need_cleanup_converter (element
))
897 str_close_conv (element
->dir
.converter
);
903 /* --------------------------------------------------------------------------------------------- */
907 * @param vpath pointer to vfs_path_t object
909 * @return Newly allocated path object
913 vfs_path_clone (const vfs_path_t
*vpath
)
915 vfs_path_t
*new_vpath
;
916 int vpath_element_index
;
921 new_vpath
= vfs_path_new (vpath
->relative
);
923 for (vpath_element_index
= 0; vpath_element_index
< vfs_path_elements_count (vpath
);
924 vpath_element_index
++)
926 vfs_path_element_t
*path_element
;
928 path_element
= vfs_path_element_clone (vfs_path_get_by_index (vpath
, vpath_element_index
));
929 g_array_append_val (new_vpath
->path
, path_element
);
931 new_vpath
->str
= g_strdup (vpath
->str
);
936 /* --------------------------------------------------------------------------------------------- */
938 * Free vfs_path_t object.
940 * @param vpath pointer to vfs_path_t object
941 * @param free_str if TRUE the string representation of vpath is freed as well
943 * @return the string representation of vpath (i.e. NULL if free_str is TRUE)
947 vfs_path_free (vfs_path_t
*vpath
, gboolean free_str
)
949 int vpath_element_index
;
955 for (vpath_element_index
= 0; vpath_element_index
< vfs_path_elements_count (vpath
);
956 vpath_element_index
++)
958 vfs_path_element_t
*path_element
;
960 path_element
= (vfs_path_element_t
*) vfs_path_get_by_index (vpath
, vpath_element_index
);
961 vfs_path_element_free (path_element
);
964 g_array_free (vpath
->path
, TRUE
);
979 /* --------------------------------------------------------------------------------------------- */
981 * Remove one path element by index
983 * @param vpath pointer to vfs_path_t object
984 * @param element_index element index. May have negative value (in this case count was started at the end of list).
989 vfs_path_remove_element_by_index (vfs_path_t
*vpath
, int element_index
)
991 vfs_path_element_t
*element
;
993 if ((vpath
== NULL
) || (vfs_path_elements_count (vpath
) == 1))
996 if (element_index
< 0)
997 element_index
= vfs_path_elements_count (vpath
) + element_index
;
999 element
= (vfs_path_element_t
*) vfs_path_get_by_index (vpath
, element_index
);
1000 vpath
->path
= g_array_remove_index (vpath
->path
, element_index
);
1001 vfs_path_element_free (element
);
1002 g_free (vpath
->str
);
1003 vpath
->str
= vfs_path_to_str_flags (vpath
, 0, VPF_NONE
);
1006 /* --------------------------------------------------------------------------------------------- */
1007 /** Return VFS class for the given prefix */
1010 vfs_prefix_to_class (const char *prefix
)
1014 /* Avoid first class (localfs) that would accept any prefix */
1015 for (i
= 1; i
< vfs__classes_list
->len
; i
++)
1017 struct vfs_class
*vfs
;
1019 vfs
= VFS_CLASS (g_ptr_array_index (vfs__classes_list
, i
));
1020 if (vfs
->which
!= NULL
)
1022 if (vfs
->which (vfs
, prefix
) == -1)
1027 if (vfs
->prefix
!= NULL
&& strncmp (prefix
, vfs
->prefix
, strlen (vfs
->prefix
)) == 0)
1034 /* --------------------------------------------------------------------------------------------- */
1038 /** get encoding after last #enc: or NULL, if part does not contain #enc:
1040 * @param path null-terminated string
1041 * @param len the maximum length of path, where #enc: should be searched
1043 * @return newly allocated string.
1047 vfs_get_encoding (const char *path
, ssize_t len
)
1051 /* try found #enc: */
1052 semi
= g_strrstr_len (path
, len
, VFS_ENCODING_PREFIX
);
1056 if (semi
== path
|| IS_PATH_SEP (semi
[-1]))
1060 semi
+= strlen (VFS_ENCODING_PREFIX
); /* skip "#enc:" */
1061 slash
= strchr (semi
, PATH_SEP
);
1063 return g_strndup (semi
, slash
- semi
);
1064 return g_strdup (semi
);
1067 return vfs_get_encoding (path
, semi
- path
);
1070 /* --------------------------------------------------------------------------------------------- */
1072 * Check if need cleanup charset converter for vfs_path_element_t
1074 * @param element part of path
1076 * @return TRUE if need cleanup converter or FALSE otherwise
1080 vfs_path_element_need_cleanup_converter (const vfs_path_element_t
*element
)
1082 return (element
->dir
.converter
!= str_cnv_from_term
&& element
->dir
.converter
!= INVALID_CONV
);
1085 /* --------------------------------------------------------------------------------------------- */
1087 * Change encoding for last part (vfs_path_element_t) of vpath
1089 * @param vpath pointer to path structure
1090 * encoding name of charset
1092 * @return pointer to path structure (for use function in another functions)
1095 vfs_path_change_encoding (vfs_path_t
*vpath
, const char *encoding
)
1097 vfs_path_element_t
*path_element
;
1099 path_element
= (vfs_path_element_t
*) vfs_path_get_by_index (vpath
, -1);
1100 /* don't add current encoding */
1101 if ((path_element
->encoding
!= NULL
) && (strcmp (encoding
, path_element
->encoding
) == 0))
1104 g_free (path_element
->encoding
);
1105 path_element
->encoding
= g_strdup (encoding
);
1107 if (vfs_path_element_need_cleanup_converter (path_element
))
1108 str_close_conv (path_element
->dir
.converter
);
1110 path_element
->dir
.converter
= str_crt_conv_from (path_element
->encoding
);
1112 g_free (vpath
->str
);
1113 vpath
->str
= vfs_path_to_str_flags (vpath
, 0, VPF_NONE
);
1119 /* --------------------------------------------------------------------------------------------- */
1122 * Serialize vfs_path_t object to string
1124 * @param vpath data for serialization
1125 * @param error contain pointer to object for handle error code and message
1127 * @return serialized vpath as newly allocated string
1131 vfs_path_serialize (const vfs_path_t
*vpath
, GError
**mcerror
)
1134 ssize_t element_index
;
1137 mc_return_val_if_error (mcerror
, FALSE
);
1139 if ((vpath
== NULL
) || (vfs_path_elements_count (vpath
) == 0))
1141 mc_propagate_error (mcerror
, 0, "%s", "vpath object is empty");
1145 cpath
= mc_config_init (NULL
, FALSE
);
1147 for (element_index
= 0; element_index
< vfs_path_elements_count (vpath
); element_index
++)
1149 char groupname
[BUF_TINY
];
1150 const vfs_path_element_t
*element
;
1152 g_snprintf (groupname
, sizeof (groupname
), "path-element-%zd", element_index
);
1153 element
= vfs_path_get_by_index (vpath
, element_index
);
1154 /* convert one element to config group */
1156 mc_config_set_string_raw (cpath
, groupname
, "path", element
->path
);
1157 mc_config_set_string_raw (cpath
, groupname
, "class-name", element
->class->name
);
1159 mc_config_set_string_raw (cpath
, groupname
, "encoding", element
->encoding
);
1161 mc_config_set_string_raw (cpath
, groupname
, "vfs_prefix", element
->vfs_prefix
);
1163 mc_config_set_string_raw (cpath
, groupname
, "user", element
->user
);
1164 mc_config_set_string_raw (cpath
, groupname
, "password", element
->password
);
1165 mc_config_set_string_raw (cpath
, groupname
, "host", element
->host
);
1166 if (element
->port
!= 0)
1167 mc_config_set_int (cpath
, groupname
, "port", element
->port
);
1170 ret_value
= mc_serialize_config (cpath
, mcerror
);
1171 mc_config_deinit (cpath
);
1175 /* --------------------------------------------------------------------------------------------- */
1177 * Deserialize string to vfs_path_t object
1179 * @param data data for serialization
1180 * @param error contain pointer to object for handle error code and message
1182 * @return newly allocated vfs_path_t object
1186 vfs_path_deserialize (const char *data
, GError
**mcerror
)
1189 size_t element_index
;
1192 mc_return_val_if_error (mcerror
, FALSE
);
1194 cpath
= mc_deserialize_config (data
, mcerror
);
1198 vpath
= vfs_path_new (FALSE
);
1200 for (element_index
= 0;; element_index
++)
1202 struct vfs_class
*eclass
;
1203 vfs_path_element_t
*element
;
1205 char groupname
[BUF_TINY
];
1207 g_snprintf (groupname
, sizeof (groupname
), "path-element-%zu", element_index
);
1208 if (!mc_config_has_group (cpath
, groupname
))
1211 cfg_value
= mc_config_get_string_raw (cpath
, groupname
, "class-name", NULL
);
1212 eclass
= vfs_get_class_by_name (cfg_value
);
1215 vfs_path_free (vpath
, TRUE
);
1216 g_set_error (mcerror
, MC_ERROR
, 0, "Unable to find VFS class by name '%s'", cfg_value
);
1218 mc_config_deinit (cpath
);
1223 element
= g_new0 (vfs_path_element_t
, 1);
1224 element
->class = eclass
;
1225 element
->path
= mc_config_get_string_raw (cpath
, groupname
, "path", NULL
);
1228 element
->encoding
= mc_config_get_string_raw (cpath
, groupname
, "encoding", NULL
);
1229 element
->dir
.converter
=
1230 (element
->encoding
!= NULL
) ? str_crt_conv_from (element
->encoding
) : INVALID_CONV
;
1233 element
->vfs_prefix
= mc_config_get_string_raw (cpath
, groupname
, "vfs_prefix", NULL
);
1235 element
->user
= mc_config_get_string_raw (cpath
, groupname
, "user", NULL
);
1236 element
->password
= mc_config_get_string_raw (cpath
, groupname
, "password", NULL
);
1237 element
->host
= mc_config_get_string_raw (cpath
, groupname
, "host", NULL
);
1238 element
->port
= mc_config_get_int (cpath
, groupname
, "port", 0);
1240 vpath
->path
= g_array_append_val (vpath
->path
, element
);
1243 mc_config_deinit (cpath
);
1244 if (vfs_path_elements_count (vpath
) == 0)
1246 vfs_path_free (vpath
, TRUE
);
1247 g_set_error (mcerror
, MC_ERROR
, 0, "No any path elements found");
1250 vpath
->str
= vfs_path_to_str_flags (vpath
, 0, VPF_NONE
);
1255 /* --------------------------------------------------------------------------------------------- */
1257 * Build vfs_path_t object from arguments.
1259 * @param first_element of path
1260 * @param ... path tokens, terminated by NULL
1262 * @return newly allocated vfs_path_t object
1266 vfs_path_build_filename (const char *first_element
, ...)
1272 if (first_element
== NULL
)
1275 va_start (args
, first_element
);
1276 str_path
= mc_build_filenamev (first_element
, args
);
1278 vpath
= vfs_path_from_str (str_path
);
1283 /* --------------------------------------------------------------------------------------------- */
1285 * Append tokens to path object
1287 * @param vpath path object
1288 * @param first_element of path
1289 * @param ... NULL-terminated strings
1291 * @return newly allocated path object
1295 vfs_path_append_new (const vfs_path_t
*vpath
, const char *first_element
, ...)
1299 const char *result_str
;
1300 vfs_path_t
*ret_vpath
;
1302 if (vpath
== NULL
|| first_element
== NULL
)
1305 va_start (args
, first_element
);
1306 str_path
= mc_build_filenamev (first_element
, args
);
1309 result_str
= vfs_path_as_str (vpath
);
1310 ret_vpath
= vfs_path_build_filename (result_str
, str_path
, (char *) NULL
);
1317 /* --------------------------------------------------------------------------------------------- */
1320 * Append vpath_t tokens to path object
1322 * @param first_vpath vpath objects
1323 * @param ... NULL-terminated vpath objects
1325 * @return newly allocated path object
1329 vfs_path_append_vpath_new (const vfs_path_t
*first_vpath
, ...)
1332 vfs_path_t
*ret_vpath
;
1333 const vfs_path_t
*current_vpath
= first_vpath
;
1335 if (first_vpath
== NULL
)
1338 ret_vpath
= vfs_path_new (FALSE
);
1340 va_start (args
, first_vpath
);
1345 for (vindex
= 0; vindex
< vfs_path_elements_count (current_vpath
); vindex
++)
1347 vfs_path_element_t
*path_element
;
1349 path_element
= vfs_path_element_clone (vfs_path_get_by_index (current_vpath
, vindex
));
1350 g_array_append_val (ret_vpath
->path
, path_element
);
1352 current_vpath
= va_arg (args
, const vfs_path_t
*);
1354 while (current_vpath
!= NULL
);
1357 ret_vpath
->str
= vfs_path_to_str_flags (ret_vpath
, 0, VPF_NONE
);
1362 /* --------------------------------------------------------------------------------------------- */
1365 * get tokens count in path.
1367 * @param vpath path object
1369 * @return count of tokens
1373 vfs_path_tokens_count (const vfs_path_t
*vpath
)
1375 size_t count_tokens
= 0;
1381 for (element_index
= 0; element_index
< vfs_path_elements_count (vpath
); element_index
++)
1383 const vfs_path_element_t
*element
;
1384 const char *token
, *prev_token
;
1386 element
= vfs_path_get_by_index (vpath
, element_index
);
1388 for (prev_token
= element
->path
; (token
= strchr (prev_token
, PATH_SEP
)) != NULL
;
1389 prev_token
= token
+ 1)
1391 /* skip empty substring */
1392 if (token
!= prev_token
)
1396 if (*prev_token
!= '\0')
1400 return count_tokens
;
1403 /* --------------------------------------------------------------------------------------------- */
1406 * Get subpath by tokens
1408 * @param vpath path object
1409 * @param start_position first token for got/ Started from 0.
1410 * If negative, then position will be relative to end of path
1411 * @param length count of tokens
1413 * @return newly allocated string with path tokens separated by slash
1417 vfs_path_tokens_get (const vfs_path_t
*vpath
, ssize_t start_position
, ssize_t length
)
1419 GString
*ret_tokens
, *element_tokens
;
1421 size_t tokens_count
= vfs_path_tokens_count (vpath
);
1427 length
= tokens_count
;
1430 length
= tokens_count
+ length
;
1432 if (start_position
< 0)
1433 start_position
= (ssize_t
) tokens_count
+ start_position
;
1435 if (start_position
< 0)
1438 if (start_position
>= (ssize_t
) tokens_count
)
1441 if (start_position
+ (ssize_t
) length
> (ssize_t
) tokens_count
)
1442 length
= tokens_count
- start_position
;
1444 ret_tokens
= g_string_sized_new (32);
1445 element_tokens
= g_string_sized_new (32);
1447 for (element_index
= 0; element_index
< vfs_path_elements_count (vpath
); element_index
++)
1449 const vfs_path_element_t
*element
;
1450 char **path_tokens
, **iterator
;
1452 g_string_assign (element_tokens
, "");
1453 element
= vfs_path_get_by_index (vpath
, element_index
);
1454 path_tokens
= g_strsplit (element
->path
, PATH_SEP_STR
, -1);
1456 for (iterator
= path_tokens
; *iterator
!= NULL
; iterator
++)
1458 if (**iterator
!= '\0')
1460 if (start_position
== 0)
1464 vfs_path_tokens_add_class_info (element
, ret_tokens
, element_tokens
);
1465 g_string_free (element_tokens
, TRUE
);
1466 g_strfreev (path_tokens
);
1467 return g_string_free (ret_tokens
, FALSE
);
1470 if (element_tokens
->len
!= 0)
1471 g_string_append_c (element_tokens
, PATH_SEP
);
1472 g_string_append (element_tokens
, *iterator
);
1478 g_strfreev (path_tokens
);
1479 vfs_path_tokens_add_class_info (element
, ret_tokens
, element_tokens
);
1482 g_string_free (element_tokens
, TRUE
);
1483 return g_string_free (ret_tokens
, !(start_position
== 0 && length
== 0));
1486 /* --------------------------------------------------------------------------------------------- */
1488 * Get subpath by tokens
1490 * @param vpath path object
1491 * @param start_position first token for got/ Started from 0.
1492 * If negative, then position will be relative to end of path
1493 * @param length count of tokens
1495 * @return newly allocated path object with path tokens separated by slash
1499 vfs_path_vtokens_get (const vfs_path_t
*vpath
, ssize_t start_position
, ssize_t length
)
1502 vfs_path_t
*ret_vpath
= NULL
;
1504 str_tokens
= vfs_path_tokens_get (vpath
, start_position
, length
);
1505 if (str_tokens
!= NULL
)
1507 ret_vpath
= vfs_path_from_str_flags (str_tokens
, VPF_NO_CANON
);
1508 g_free (str_tokens
);
1513 /* --------------------------------------------------------------------------------------------- */
1516 * Build URL parameters (such as user:pass @ host:port) from one path element object
1518 * @param element path element
1519 * @param keep_password TRUE or FALSE
1521 * @return newly allocated non-empty string or NULL
1525 vfs_path_build_url_params_str (const vfs_path_element_t
*element
, gboolean keep_password
)
1529 if (element
== NULL
)
1532 buffer
= g_string_sized_new (64);
1534 if (element
->user
!= NULL
)
1535 g_string_append (buffer
, element
->user
);
1537 if (element
->password
!= NULL
&& keep_password
)
1539 g_string_append_c (buffer
, ':');
1540 g_string_append (buffer
, element
->password
);
1543 if (element
->host
!= NULL
)
1545 if ((element
->user
!= NULL
) || (element
->password
!= NULL
))
1546 g_string_append_c (buffer
, '@');
1548 g_string_append_c (buffer
, '[');
1549 g_string_append (buffer
, element
->host
);
1551 g_string_append_c (buffer
, ']');
1553 if (element
->port
!= 0)
1554 g_string_append_printf (buffer
, ":%d", element
->port
);
1557 if (buffer
->len
!= 0)
1560 g_string_free (buffer
, TRUE
);
1564 /* --------------------------------------------------------------------------------------------- */
1566 * Build pretty string representation of one path_element_t object
1568 * @param element path element
1570 * @return newly allocated string
1574 vfs_path_element_build_pretty_path_str (const vfs_path_element_t
*element
)
1576 GString
*url_params
, *pretty_path
;
1578 pretty_path
= g_string_new (element
->class->prefix
);
1579 g_string_append (pretty_path
, VFS_PATH_URL_DELIMITER
);
1581 url_params
= vfs_path_build_url_params_str (element
, FALSE
);
1582 if (url_params
!= NULL
)
1584 g_string_append_len (pretty_path
, url_params
->str
, url_params
->len
);
1585 g_string_free (url_params
, TRUE
);
1588 if (!IS_PATH_SEP (*element
->path
))
1589 g_string_append_c (pretty_path
, PATH_SEP
);
1591 return g_string_append (pretty_path
, element
->path
);
1594 /* --------------------------------------------------------------------------------------------- */
1596 * Compare two path objects as strings
1598 * @param vpath1 first path object
1599 * @param vpath2 second vpath object
1601 * @return integer value like to strcmp.
1605 vfs_path_equal (const vfs_path_t
*vpath1
, const vfs_path_t
*vpath2
)
1607 const char *path1
, *path2
;
1610 if (vpath1
== NULL
|| vpath2
== NULL
)
1613 path1
= vfs_path_as_str (vpath1
);
1614 path2
= vfs_path_as_str (vpath2
);
1616 ret_val
= strcmp (path1
, path2
) == 0;
1621 /* --------------------------------------------------------------------------------------------- */
1623 * Compare two path objects as strings
1625 * @param vpath1 first path object
1626 * @param vpath2 second vpath object
1627 * @param len number of first 'len' characters
1629 * @return integer value like to strcmp.
1633 vfs_path_equal_len (const vfs_path_t
*vpath1
, const vfs_path_t
*vpath2
, size_t len
)
1635 const char *path1
, *path2
;
1638 if (vpath1
== NULL
|| vpath2
== NULL
)
1641 path1
= vfs_path_as_str (vpath1
);
1642 path2
= vfs_path_as_str (vpath2
);
1644 ret_val
= strncmp (path1
, path2
, len
) == 0;
1649 /* --------------------------------------------------------------------------------------------- */
1651 * Calculate path length in string representation
1653 * @param vpath path object
1655 * @return length of path
1659 vfs_path_len (const vfs_path_t
*vpath
)
1664 return strlen (vpath
->str
);
1667 /* --------------------------------------------------------------------------------------------- */
1669 * Convert relative vpath object to absolute
1671 * @param vpath path object
1673 * @return absolute path object
1677 vfs_path_to_absolute (const vfs_path_t
*vpath
)
1679 vfs_path_t
*absolute_vpath
;
1680 const char *path_str
;
1682 if (!vpath
->relative
)
1683 return vfs_path_clone (vpath
);
1685 path_str
= vfs_path_as_str (vpath
);
1686 absolute_vpath
= vfs_path_from_str (path_str
);
1687 return absolute_vpath
;
1690 /* --------------------------------------------------------------------------------------------- */