]>
git.cameronkatri.com Git - apple_cmds.git/blob - patch_cmds/patch/backupfile.c
1 /* $OpenBSD: backupfile.c,v 1.20 2009/10/27 23:59:41 deraadt Exp $ */
4 * backupfile.c -- make Emacs style backup file names Copyright (C) 1990 Free
5 * Software Foundation, Inc.
7 * This program is free software; you can redistribute it and/or modify it
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE.
16 * David MacKenzie <djm@ai.mit.edu>. Some algorithms adapted from GNU Emacs.
27 #include "backupfile.h"
30 #define ISDIGIT(c) (isascii (c) && isdigit (c))
32 /* Which type of backup file names are generated. */
33 enum backup_type backup_type
= none
;
36 * The extension added to file names to produce a simple (as opposed to
37 * numbered) backup file name.
39 char *simple_backup_suffix
= "~";
41 static char *concat(const char *, const char *);
42 static char *make_version_name(const char *, int);
43 static int max_backup_version(const char *, const char *);
44 static int version_number(const char *, const char *, size_t);
45 static int argmatch(const char *, const char **);
46 static void invalid_arg(const char *, const char *, int);
49 * Return the name of the new backup file for file FILE, allocated with
50 * malloc. Return 0 if out of memory. FILE must not end with a '/' unless it
51 * is the root directory. Do not call this function if backup_type == none.
54 find_backup_file_name(const char *file
)
56 char *dir
, *base_versions
;
59 if (backup_type
== simple
)
60 return concat(file
, simple_backup_suffix
);
61 base_versions
= concat(basename((char *)file
), ".~");
62 if (base_versions
== NULL
)
64 dir
= dirname((char *)file
);
69 highest_backup
= max_backup_version(base_versions
, dir
);
71 if (backup_type
== numbered_existing
&& highest_backup
== 0)
72 return concat(file
, simple_backup_suffix
);
73 return make_version_name(file
, highest_backup
+ 1);
77 * Return the number of the highest-numbered backup file for file FILE in
78 * directory DIR. If there are no numbered backups of FILE in DIR, or an
79 * error occurs reading DIR, return 0. FILE should already have ".~" appended
83 max_backup_version(const char *file
, const char *dir
)
87 int highest_version
, this_version
;
88 size_t file_name_length
;
95 file_name_length
= strlen(file
);
97 while ((dp
= readdir(dirp
)) != NULL
) {
98 if (dp
->d_namlen
<= file_name_length
)
101 this_version
= version_number(file
, dp
->d_name
, file_name_length
);
102 if (this_version
> highest_version
)
103 highest_version
= this_version
;
106 return highest_version
;
110 * Return a string, allocated with malloc, containing "FILE.~VERSION~".
111 * Return 0 if out of memory.
114 make_version_name(const char *file
, int version
)
118 if (asprintf(&backup_name
, "%s.~%d~", file
, version
) == -1)
124 * If BACKUP is a numbered backup of BASE, return its version number;
125 * otherwise return 0. BASE_LENGTH is the length of BASE. BASE should
126 * already have ".~" appended to it.
129 version_number(const char *base
, const char *backup
, size_t base_length
)
135 if (!strncmp(base
, backup
, base_length
) && ISDIGIT(backup
[base_length
])) {
136 for (p
= &backup
[base_length
]; ISDIGIT(*p
); ++p
)
137 version
= version
* 10 + *p
- '0';
138 if (p
[0] != '~' || p
[1])
145 * Return the newly-allocated concatenation of STR1 and STR2. If out of
149 concat(const char *str1
, const char *str2
)
153 if (asprintf(&newstr
, "%s%s", str1
, str2
) == -1)
159 * If ARG is an unambiguous match for an element of the null-terminated array
160 * OPTLIST, return the index in OPTLIST of the matched element, else -1 if it
161 * does not match any element or -2 if it is ambiguous (is a prefix of more
165 argmatch(const char *arg
, const char **optlist
)
167 int i
; /* Temporary index in OPTLIST. */
168 size_t arglen
; /* Length of ARG. */
169 int matchind
= -1; /* Index of first nonexact match. */
170 int ambiguous
= 0; /* If nonzero, multiple nonexact match(es). */
172 arglen
= strlen(arg
);
174 /* Test all elements for either exact match or abbreviated matches. */
175 for (i
= 0; optlist
[i
]; i
++) {
176 if (!strncmp(optlist
[i
], arg
, arglen
)) {
177 if (strlen(optlist
[i
]) == arglen
)
178 /* Exact match found. */
180 else if (matchind
== -1)
181 /* First nonexact match found. */
184 /* Second nonexact match found. */
195 * Error reporting for argmatch. KIND is a description of the type of entity
196 * that was being matched. VALUE is the invalid value that was given. PROBLEM
197 * is the return value from argmatch.
200 invalid_arg(const char *kind
, const char *value
, int problem
)
202 fprintf(stderr
, "patch: ");
204 fprintf(stderr
, "invalid");
205 else /* Assume -2. */
206 fprintf(stderr
, "ambiguous");
207 fprintf(stderr
, " %s `%s'\n", kind
, value
);
210 static const char *backup_args
[] = {
211 "never", "simple", "nil", "existing", "t", "numbered", 0
214 static enum backup_type backup_types
[] = {
215 simple
, simple
, numbered_existing
,
216 numbered_existing
, numbered
, numbered
220 * Return the type of backup indicated by VERSION. Unique abbreviations are
224 get_version(const char *version
)
228 if (version
== NULL
|| *version
== '\0')
229 return numbered_existing
;
230 i
= argmatch(version
, backup_args
);
232 return backup_types
[i
];
233 invalid_arg("version control type", version
, i
);