1 /* gfileutils.c - File utility functions
3 * Copyright 2000 Red Hat, Inc.
5 * GLib is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser 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.
10 * GLib is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with GLib; see the file COPYING.LIB. If not,
17 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
34 #include <sys/types.h>
49 #define S_ISREG(mode) ((mode)&_S_IFREG)
53 #define S_ISDIR(mode) ((mode)&_S_IFDIR)
56 #endif /* G_OS_WIN32 */
70 * @filename: a filename to test
71 * @test: bitfield of #GFileTest flags
73 * Returns %TRUE if any of the tests in the bitfield @test are
74 * %TRUE. For example, <literal>(G_FILE_TEST_EXISTS |
75 * G_FILE_TEST_IS_DIR)</literal> will return %TRUE if the file exists;
76 * the check whether it's a directory doesn't matter since the existence
77 * test is %TRUE. With the current set of available tests, there's no point
78 * passing in more than one test at a time.
80 * Apart from #G_FILE_TEST_IS_SYMLINK all tests follow symbolic links,
81 * so for a symbolic link to a regular file g_file_test() will return
82 * %TRUE for both #G_FILE_TEST_IS_SYMLINK and #G_FILE_TEST_IS_REGULAR.
84 * Note, that for a dangling symbolic link g_file_test() will return
85 * %TRUE for #G_FILE_TEST_IS_SYMLINK and %FALSE for all other flags.
87 * Return value: whether a test was %TRUE
90 g_file_test (const gchar *filename,
93 if ((test & G_FILE_TEST_EXISTS) && (access (filename, F_OK) == 0))
96 if ((test & G_FILE_TEST_IS_EXECUTABLE) && (access (filename, X_OK) == 0))
99 if (test & G_FILE_TEST_IS_SYMLINK)
102 /* no sym links on win32, no lstat in msvcrt */
106 if ((lstat (filename, &s) == 0) && S_ISLNK (s.st_mode))
111 if (test & (G_FILE_TEST_IS_REGULAR | G_FILE_TEST_IS_DIR))
115 if (stat (filename, &s) == 0)
117 if ((test & G_FILE_TEST_IS_REGULAR) && S_ISREG (s.st_mode))
120 if ((test & G_FILE_TEST_IS_DIR) && S_ISDIR (s.st_mode))
129 g_file_error_quark (void)
133 q = g_quark_from_static_string ("g-file-error-quark");
139 * g_file_error_from_errno:
140 * @err_no: an "errno" value
142 * Gets a #GFileError constant based on the passed-in @errno.
143 * For example, if you pass in %EEXIST this function returns
144 * #G_FILE_ERROR_EXIST. Unlike @errno values, you can portably
145 * assume that all #GFileError values will exist.
147 * Normally a #GFileError value goes into a #GError returned
148 * from a function that manipulates files. So you would use
149 * g_file_error_from_errno() when constructing a #GError.
151 * Return value: #GFileError corresponding to the given @errno
154 g_file_error_from_errno (gint err_no)
160 return G_FILE_ERROR_EXIST;
166 return G_FILE_ERROR_ISDIR;
172 return G_FILE_ERROR_ACCES;
178 return G_FILE_ERROR_NAMETOOLONG;
184 return G_FILE_ERROR_NOENT;
190 return G_FILE_ERROR_NOTDIR;
196 return G_FILE_ERROR_NXIO;
202 return G_FILE_ERROR_NODEV;
208 return G_FILE_ERROR_ROFS;
214 return G_FILE_ERROR_TXTBSY;
220 return G_FILE_ERROR_FAULT;
226 return G_FILE_ERROR_LOOP;
232 return G_FILE_ERROR_NOSPC;
238 return G_FILE_ERROR_NOMEM;
244 return G_FILE_ERROR_MFILE;
250 return G_FILE_ERROR_NFILE;
256 return G_FILE_ERROR_BADF;
262 return G_FILE_ERROR_INVAL;
268 return G_FILE_ERROR_PIPE;
274 return G_FILE_ERROR_AGAIN;
280 return G_FILE_ERROR_INTR;
286 return G_FILE_ERROR_IO;
292 return G_FILE_ERROR_PERM;
297 return G_FILE_ERROR_FAILED;
303 get_contents_stdio (const gchar *filename,
313 size_t total_allocated;
315 g_assert (f != NULL);
317 #define STARTING_ALLOC 64
320 total_allocated = STARTING_ALLOC;
321 str = g_malloc (STARTING_ALLOC);
325 bytes = fread (buf, 1, 2048, f);
327 while ((total_bytes + bytes + 1) > total_allocated)
329 total_allocated *= 2;
330 str = g_try_realloc (str, total_allocated);
337 _("Could not allocate %lu bytes to read file \"%s\""),
338 (gulong) total_allocated, filename);
347 g_file_error_from_errno (errno),
348 _("Error reading file '%s': %s"),
349 filename, g_strerror (errno));
354 memcpy (str + total_bytes, buf, bytes);
355 total_bytes += bytes;
360 str[total_bytes] = '\0';
363 *length = total_bytes;
380 get_contents_regfile (const gchar *filename,
381 struct stat *stat_buf,
392 size = stat_buf->st_size;
394 alloc_size = size + 1;
395 buf = g_try_malloc (alloc_size);
402 _("Could not allocate %lu bytes to read file \"%s\""),
403 (gulong) alloc_size, filename);
409 while (bytes_read < size)
413 rc = read (fd, buf + bytes_read, size - bytes_read);
425 g_file_error_from_errno (errno),
426 _("Failed to read from file '%s': %s"),
427 filename, g_strerror (errno));
438 buf[bytes_read] = '\0';
441 *length = bytes_read;
449 get_contents_posix (const gchar *filename,
454 struct stat stat_buf;
457 /* O_BINARY useful on Cygwin */
458 fd = open (filename, O_RDONLY|O_BINARY);
464 g_file_error_from_errno (errno),
465 _("Failed to open file '%s': %s"),
466 filename, g_strerror (errno));
471 /* I don't think this will ever fail, aside from ENOMEM, but. */
472 if (fstat (fd, &stat_buf) < 0)
478 g_file_error_from_errno (errno),
479 _("Failed to get attributes of file '%s': fstat() failed: %s"),
480 filename, g_strerror (errno));
485 if (stat_buf.st_size > 0 && S_ISREG (stat_buf.st_mode))
487 return get_contents_regfile (filename,
498 f = fdopen (fd, "r");
504 g_file_error_from_errno (errno),
505 _("Failed to open file '%s': fdopen() failed: %s"),
506 filename, g_strerror (errno));
511 return get_contents_stdio (filename, f, contents, length, error);
515 #else /* G_OS_WIN32 */
518 get_contents_win32 (const gchar *filename,
525 /* I guess you want binary mode; maybe you want text sometimes? */
526 f = fopen (filename, "rb");
532 g_file_error_from_errno (errno),
533 _("Failed to open file '%s': %s"),
534 filename, g_strerror (errno));
539 return get_contents_stdio (filename, f, contents, length, error);
545 * g_file_get_contents:
546 * @filename: a file to read contents from
547 * @contents: location to store an allocated string
548 * @length: location to store length in bytes of the contents
549 * @error: return location for a #GError
551 * Reads an entire file into allocated memory, with good error
552 * checking. If @error is set, %FALSE is returned, and @contents is set
553 * to %NULL. If %TRUE is returned, @error will not be set, and @contents
554 * will be set to the file contents. The string stored in @contents
555 * will be nul-terminated, so for text files you can pass %NULL for the
556 * @length argument. The error domain is #G_FILE_ERROR. Possible
557 * error codes are those in the #GFileError enumeration.
559 * Return value: %TRUE on success, %FALSE if error is set
562 g_file_get_contents (const gchar *filename,
567 g_return_val_if_fail (filename != NULL, FALSE);
568 g_return_val_if_fail (contents != NULL, FALSE);
575 return get_contents_win32 (filename, contents, length, error);
577 return get_contents_posix (filename, contents, length, error);
582 * mkstemp() implementation is from the GNU C library.
583 * Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc.
587 * @tmpl: template filename
589 * Opens a temporary file. See the <function>mkstemp()</function> documentation
590 * on most UNIX-like systems. This is a portability wrapper, which simply calls
591 * <function>mkstemp()</function> on systems that have it, and implements
592 * it in GLib otherwise.
594 * The parameter is a string that should match the rules for
595 * <function>mkstemp()</function>, i.e. end in "XXXXXX". The X string will
596 * be modified to form the name of a file that didn't exist.
598 * Return value: A file handle (as from <function>open()</function>) to the file
599 * opened for reading and writing. The file is opened in binary mode
600 * on platforms where there is a difference. The file handle should be
601 * closed with <function>close()</function>. In case of errors, -1 is returned.
604 g_mkstemp (char *tmpl)
607 return mkstemp (tmpl);
612 static const char letters[] =
613 "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
614 static const int NLETTERS = sizeof (letters) - 1;
617 static int counter = 0;
620 if (len < 6 || strcmp (&tmpl[len - 6], "XXXXXX"))
623 /* This is where the Xs start. */
624 XXXXXX = &tmpl[len - 6];
626 /* Get some more or less random data. */
627 g_get_current_time (&tv);
628 value = (tv.tv_usec ^ tv.tv_sec) + counter++;
630 for (count = 0; count < 100; value += 7777, ++count)
634 /* Fill in the random bits. */
635 XXXXXX[0] = letters[v % NLETTERS];
637 XXXXXX[1] = letters[v % NLETTERS];
639 XXXXXX[2] = letters[v % NLETTERS];
641 XXXXXX[3] = letters[v % NLETTERS];
643 XXXXXX[4] = letters[v % NLETTERS];
645 XXXXXX[5] = letters[v % NLETTERS];
647 fd = open (tmpl, O_RDWR | O_CREAT | O_EXCL | O_BINARY, 0600);
651 else if (errno != EEXIST)
652 /* Any other error will apply also to other names we might
653 * try, and there are 2^32 or so of them, so give up now.
658 /* We got out of the loop because we ran out of combinations to try. */
665 * @tmpl: Template for file name, as in g_mkstemp(), basename only
666 * @name_used: location to store actual name used
667 * @error: return location for a #GError
669 * Opens a file for writing in the preferred directory for temporary
670 * files (as returned by g_get_tmp_dir()).
672 * @tmpl should be a string ending with six 'X' characters, as the
673 * parameter to g_mkstemp() (or <function>mkstemp()</function>).
674 * However, unlike these functions, the template should only be a
675 * basename, no directory components are allowed. If template is %NULL,
676 * a default template is used.
678 * Note that in contrast to g_mkstemp() (and <function>mkstemp()</function>)
679 * @tmpl is not modified, and might thus be a read-only literal string.
681 * The actual name used is returned in @name_used if non-%NULL. This
682 * string should be freed with g_free() when not needed any longer.
684 * Return value: A file handle (as from <function>open()</function>) to
685 * the file opened for reading and writing. The file is opened in binary
686 * mode on platforms where there is a difference. The file handle should be
687 * closed with <function>close()</function>. In case of errors, -1 is returned
688 * and @error will be set.
691 g_file_open_tmp (const char *tmpl,
703 if (strchr (tmpl, G_DIR_SEPARATOR)
705 || strchr (tmpl, '/')
712 _("Template '%s' invalid, should not contain a '%s'"),
713 tmpl, G_DIR_SEPARATOR_S);
718 if (strlen (tmpl) < 6 ||
719 strcmp (tmpl + strlen (tmpl) - 6, "XXXXXX") != 0)
724 _("Template '%s' doesn't end with XXXXXX"),
729 tmpdir = g_get_tmp_dir ();
731 if (tmpdir [strlen (tmpdir) - 1] == G_DIR_SEPARATOR)
734 sep = G_DIR_SEPARATOR_S;
736 fulltemplate = g_strconcat (tmpdir, sep, tmpl, NULL);
738 retval = g_mkstemp (fulltemplate);
744 g_file_error_from_errno (errno),
745 _("Failed to create file '%s': %s"),
746 fulltemplate, g_strerror (errno));
747 g_free (fulltemplate);
752 *name_used = fulltemplate;
754 g_free (fulltemplate);
760 g_build_pathv (const gchar *separator,
761 const gchar *first_element,
765 gint separator_len = strlen (separator);
766 gboolean is_first = TRUE;
767 const gchar *next_element;
769 result = g_string_new (NULL);
771 next_element = first_element;
775 const gchar *element;
781 element = next_element;
782 next_element = va_arg (args, gchar *);
791 else if (separator_len)
794 strncmp (start, separator, separator_len) == 0)
795 start += separator_len;
798 end = start + strlen (start);
800 if (next_element && separator_len)
802 while (end > start + separator_len &&
803 strncmp (end - separator_len, separator, separator_len) == 0)
804 end -= separator_len;
810 g_string_append (result, separator);
812 g_string_append_len (result, start, end - start);
816 return g_string_free (result, FALSE);
821 * @separator: a string used to separator the elements of the path.
822 * @first_element: the first element in the path
823 * @Varargs: remaining elements in path
825 * Creates a path from a series of elements using @separator as the
826 * separator between elements. At the boundary between two elements,
827 * any trailing occurrences of separator in the first element, or
828 * leading occurrences of separator in the second element are removed
829 * and exactly one copy of the separator is inserted.
831 * Return value: a newly-allocated string that must be freed with g_free().
834 g_build_path (const gchar *separator,
835 const gchar *first_element,
841 g_return_val_if_fail (separator != NULL, NULL);
843 va_start (args, first_element);
844 str = g_build_pathv (separator, first_element, args);
852 * @first_element: the first element in the path
853 * @Varargs: remaining elements in path
855 * Creates a filename from a series of elements using the correct
856 * separator for filenames. This function behaves identically
857 * to <literal>g_build_path (G_DIR_SEPARATOR_S, first_element, ....)</literal>.
859 * No attempt is made to force the resulting filename to be an absolute
860 * path. If the first element is a relative path, the result will
861 * be a relative path.
863 * Return value: a newly-allocated string that must be freed with g_free().
866 g_build_filename (const gchar *first_element,
872 va_start (args, first_element);
873 str = g_build_pathv (G_DIR_SEPARATOR_S, first_element, args);