1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-14 07:46:28 +02:00
Files
coreutils/lib/backupfile.c

277 lines
7.4 KiB
C
Raw Normal View History

1992-10-31 20:42:48 +00:00
/* backupfile.c -- make Emacs style backup file names
Copyright (C) 1990-1997, 1998, 1999, 2000 Free Software Foundation, Inc.
1992-10-31 20:42:48 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
1997-05-27 09:41:25 +00:00
along with this program; see the file COPYING.
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
1992-10-31 20:42:48 +00:00
1997-05-27 09:41:25 +00:00
/* Written by David MacKenzie <djm@gnu.ai.mit.edu>.
Some algorithms adapted from GNU Emacs. */
1992-10-31 20:42:48 +00:00
1997-02-04 03:27:13 +00:00
#if HAVE_CONFIG_H
1995-08-09 05:14:06 +00:00
# include <config.h>
1993-10-06 16:44:26 +00:00
#endif
1997-05-27 09:41:25 +00:00
#include <argmatch.h>
#include <backupfile.h>
1992-10-31 20:42:48 +00:00
#include <stdio.h>
#include <sys/types.h>
1997-02-04 03:27:13 +00:00
#if HAVE_STRING_H
1995-08-09 05:14:06 +00:00
# include <string.h>
1992-10-31 20:42:48 +00:00
#else
1995-08-09 05:14:06 +00:00
# include <strings.h>
1992-10-31 20:42:48 +00:00
#endif
1997-02-04 03:27:13 +00:00
#if HAVE_DIRENT_H
1995-08-09 05:14:06 +00:00
# include <dirent.h>
1997-05-27 09:41:25 +00:00
# define NLENGTH(direct) strlen ((direct)->d_name)
1997-02-04 03:27:13 +00:00
#else
1995-08-09 05:14:06 +00:00
# define dirent direct
1997-05-27 09:41:25 +00:00
# define NLENGTH(direct) ((size_t) (direct)->d_namlen)
1997-02-04 03:27:13 +00:00
# if HAVE_SYS_NDIR_H
1995-08-09 05:14:06 +00:00
# include <sys/ndir.h>
1997-02-04 03:27:13 +00:00
# endif
# if HAVE_SYS_DIR_H
1995-08-09 05:14:06 +00:00
# include <sys/dir.h>
1997-02-04 03:27:13 +00:00
# endif
# if HAVE_NDIR_H
1995-08-09 05:14:06 +00:00
# include <ndir.h>
1997-02-04 03:27:13 +00:00
# endif
#endif
1992-10-31 20:42:48 +00:00
1997-02-04 03:27:13 +00:00
#if CLOSEDIR_VOID
1997-05-27 09:41:25 +00:00
/* Fake a return value. */
1995-08-09 05:14:06 +00:00
# define CLOSEDIR(d) (closedir (d), 0)
1992-10-31 20:42:48 +00:00
#else
1995-08-09 05:14:06 +00:00
# define CLOSEDIR(d) closedir (d)
1992-10-31 20:42:48 +00:00
#endif
#if HAVE_STDLIB_H
1995-08-09 05:14:06 +00:00
# include <stdlib.h>
1992-10-31 20:42:48 +00:00
#endif
#ifndef HAVE_DECL_GETENV
"this configure-time declaration test was not run"
#endif
#if !HAVE_DECL_GETENV
char *getenv ();
#endif
#ifndef HAVE_DECL_MALLOC
"this configure-time declaration test was not run"
#endif
#if !HAVE_DECL_MALLOC
char *malloc ();
#endif
char *base_name PARAMS ((char const *));
1997-05-27 09:41:25 +00:00
#if HAVE_DIRENT_H || HAVE_NDIR_H || HAVE_SYS_DIR_H || HAVE_SYS_NDIR_H
# define HAVE_DIR 1
#else
1997-05-27 09:41:25 +00:00
# define HAVE_DIR 0
1992-10-31 20:42:48 +00:00
#endif
1997-05-27 09:41:25 +00:00
#if HAVE_LIMITS_H
# include <limits.h>
1992-10-31 20:42:48 +00:00
#endif
1997-05-27 09:41:25 +00:00
#ifndef CHAR_BIT
1998-01-20 11:34:38 +00:00
# define CHAR_BIT 8
1997-05-27 09:41:25 +00:00
#endif
/* Upper bound on the string length of an integer converted to string.
302 / 1000 is ceil (log10 (2.0)). Subtract 1 for the sign bit;
add 1 for integer division truncation; add 1 more for a minus sign. */
#define INT_STRLEN_BOUND(t) ((sizeof (t) * CHAR_BIT - 1) * 302 / 1000 + 2)
/* ISDIGIT differs from isdigit, as follows:
- Its arg may be any int or unsigned int; it need not be an unsigned char.
- It's guaranteed to evaluate its argument exactly once.
- It's typically faster.
Posix 1003.2-1992 section 2.5.2.1 page 50 lines 1556-1558 says that
only '0' through '9' are digits. Prefer ISDIGIT to isdigit unless
it's important to use the locale's definition of `digit' even when the
host does not conform to Posix. */
#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
#if D_INO_IN_DIRENT
# define REAL_DIR_ENTRY(dp) ((dp)->d_ino != 0)
1992-10-31 20:42:48 +00:00
#else
1997-05-27 09:41:25 +00:00
# define REAL_DIR_ENTRY(dp) 1
1992-10-31 20:42:48 +00:00
#endif
/* The extension added to file names to produce a simple (as opposed
1997-05-27 09:41:25 +00:00
to numbered) backup file name. */
const char *simple_backup_suffix = "~";
1992-10-31 20:42:48 +00:00
static int max_backup_version PARAMS ((const char *, const char *));
static int version_number PARAMS ((const char *, const char *, size_t));
1992-10-31 20:42:48 +00:00
/* Return the name of the new backup file for file FILE,
allocated with malloc. Return 0 if out of memory.
FILE must not end with a '/' unless it is the root directory.
1997-05-27 09:41:25 +00:00
Do not call this function if backup_type == none. */
1992-10-31 20:42:48 +00:00
char *
find_backup_file_name (const char *file, enum backup_type backup_type)
1992-10-31 20:42:48 +00:00
{
1997-05-27 09:41:25 +00:00
size_t backup_suffix_size_max;
size_t file_len = strlen (file);
size_t numbered_suffix_size_max = INT_STRLEN_BOUND (int) + 4;
char *s;
const char *suffix = simple_backup_suffix;
/* Allow room for simple or `.~N~' backups. */
backup_suffix_size_max = strlen (simple_backup_suffix) + 1;
if (HAVE_DIR && backup_suffix_size_max < numbered_suffix_size_max)
backup_suffix_size_max = numbered_suffix_size_max;
s = malloc (file_len + backup_suffix_size_max + numbered_suffix_size_max);
if (s)
1992-10-31 20:42:48 +00:00
{
1997-05-27 09:41:25 +00:00
strcpy (s, file);
#if HAVE_DIR
if (backup_type != simple)
{
int highest_backup;
size_t dir_len = base_name (s) - s;
strcpy (s + dir_len, ".");
highest_backup = max_backup_version (file + dir_len, s);
if (! (backup_type == numbered_existing && highest_backup == 0))
{
char *numbered_suffix = s + (file_len + backup_suffix_size_max);
sprintf (numbered_suffix, ".~%d~", highest_backup + 1);
suffix = numbered_suffix;
}
strcpy (s, file);
}
#endif /* HAVE_DIR */
addext (s, suffix, '~');
1992-10-31 20:42:48 +00:00
}
1997-05-27 09:41:25 +00:00
return s;
1992-10-31 20:42:48 +00:00
}
1997-05-27 09:41:25 +00:00
#if HAVE_DIR
1992-10-31 20:42:48 +00:00
/* Return the number of the highest-numbered backup file for file
FILE in directory DIR. If there are no numbered backups
of FILE in DIR, or an error occurs reading DIR, return 0.
1997-05-27 09:41:25 +00:00
*/
1992-10-31 20:42:48 +00:00
static int
1998-01-20 11:34:38 +00:00
max_backup_version (const char *file, const char *dir)
1992-10-31 20:42:48 +00:00
{
DIR *dirp;
struct dirent *dp;
1992-10-31 20:42:48 +00:00
int highest_version;
int this_version;
size_t file_name_length;
1993-10-09 20:43:31 +00:00
1992-10-31 20:42:48 +00:00
dirp = opendir (dir);
if (!dirp)
return 0;
1993-10-09 20:43:31 +00:00
1992-10-31 20:42:48 +00:00
highest_version = 0;
file_name_length = strlen (file);
while ((dp = readdir (dirp)) != 0)
{
1997-05-27 09:41:25 +00:00
if (!REAL_DIR_ENTRY (dp) || NLENGTH (dp) < file_name_length + 4)
1992-10-31 20:42:48 +00:00
continue;
1993-10-09 20:43:31 +00:00
1992-10-31 20:42:48 +00:00
this_version = version_number (file, dp->d_name, file_name_length);
if (this_version > highest_version)
highest_version = this_version;
}
if (CLOSEDIR (dirp))
return 0;
return highest_version;
}
/* If BACKUP is a numbered backup of BASE, return its version number;
otherwise return 0. BASE_LENGTH is the length of BASE.
1997-05-27 09:41:25 +00:00
*/
1992-10-31 20:42:48 +00:00
static int
1998-01-20 11:34:38 +00:00
version_number (const char *base, const char *backup, size_t base_length)
1992-10-31 20:42:48 +00:00
{
int version;
const char *p;
1993-10-09 20:43:31 +00:00
1992-10-31 20:42:48 +00:00
version = 0;
1997-05-27 09:41:25 +00:00
if (strncmp (base, backup, base_length) == 0
&& backup[base_length] == '.'
&& backup[base_length + 1] == '~')
1992-10-31 20:42:48 +00:00
{
1997-05-27 09:41:25 +00:00
for (p = &backup[base_length + 2]; ISDIGIT (*p); ++p)
1992-10-31 20:42:48 +00:00
version = version * 10 + *p - '0';
if (p[0] != '~' || p[1])
version = 0;
}
return version;
}
1997-05-27 09:41:25 +00:00
#endif /* HAVE_DIR */
1992-10-31 20:42:48 +00:00
1998-11-14 13:17:34 +00:00
static const char * const backup_args[] =
1997-05-27 09:41:25 +00:00
{
/* In a series of synonyms, present the most meaning full first, so
that argmatch_valid be more readable. */
"none", "off",
"simple", "never",
"existing", "nil",
"numbered", "t",
0
1997-05-27 09:41:25 +00:00
};
1992-10-31 20:42:48 +00:00
1997-05-27 09:41:25 +00:00
static const enum backup_type backup_types[] =
1992-10-31 20:42:48 +00:00
{
none, none,
simple, simple,
numbered_existing, numbered_existing,
numbered, numbered
1997-05-27 09:41:25 +00:00
};
1992-10-31 20:42:48 +00:00
/* Return the type of backup specified by VERSION.
If VERSION is NULL or the empty string, return numbered_existing.
If VERSION is invalid or ambiguous, fail with a diagnostic appropriate
for the specified CONTEXT. Unambiguous abbreviations are accepted. */
1997-05-27 09:41:25 +00:00
enum backup_type
get_version (const char *context, const char *version)
1997-05-27 09:41:25 +00:00
{
if (version == 0 || *version == 0)
return numbered_existing;
else
return XARGMATCH (context, version, backup_args, backup_types);
}
/* Return the type of backup specified by VERSION.
If VERSION is NULL, use the value of the envvar VERSION_CONTROL.
If the specified string is invalid or ambiguous, fail with a diagnostic
appropriate for the specified CONTEXT.
Unambiguous abbreviations are accepted. */
enum backup_type
xget_version (const char *context, const char *version)
{
if (version && *version)
return get_version (context, version);
else
return get_version ("$VERSION_CONTROL", getenv ("VERSION_CONTROL"));
1992-10-31 20:42:48 +00:00
}