You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
2.6 KiB
120 lines
2.6 KiB
16 years ago
|
/*
|
||
|
* This program can either change modification time of the given
|
||
11 years ago
|
* file(s) or just print it. The program does not change atime or
|
||
15 years ago
|
* ctime (their values are explicitly preserved).
|
||
16 years ago
|
*
|
||
|
* The mtime can be changed to an absolute value:
|
||
|
*
|
||
|
* test-chmtime =<seconds> file...
|
||
|
*
|
||
|
* Relative to the current time as returned by time(3):
|
||
|
*
|
||
|
* test-chmtime =+<seconds> (or =-<seconds>) file...
|
||
|
*
|
||
|
* Or relative to the current mtime of the file:
|
||
|
*
|
||
|
* test-chmtime <seconds> file...
|
||
|
* test-chmtime +<seconds> (or -<seconds>) file...
|
||
|
*
|
||
|
* Examples:
|
||
|
*
|
||
|
* To just print the mtime use --verbose and set the file mtime offset to 0:
|
||
|
*
|
||
|
* test-chmtime -v +0 file
|
||
|
*
|
||
|
* To set the mtime to current time:
|
||
|
*
|
||
|
* test-chmtime =+0 file
|
||
|
*
|
||
|
*/
|
||
18 years ago
|
#include "git-compat-util.h"
|
||
|
#include <utime.h>
|
||
|
|
||
16 years ago
|
static const char usage_str[] = "-v|--verbose (+|=|=+|=-|-)<seconds> <file>...";
|
||
18 years ago
|
|
||
16 years ago
|
static int timespec_arg(const char *arg, long int *set_time, int *set_eq)
|
||
18 years ago
|
{
|
||
|
char *test;
|
||
16 years ago
|
const char *timespec = arg;
|
||
|
*set_eq = (*timespec == '=') ? 1 : 0;
|
||
|
if (*set_eq) {
|
||
18 years ago
|
timespec++;
|
||
|
if (*timespec == '+') {
|
||
16 years ago
|
*set_eq = 2; /* relative "in the future" */
|
||
18 years ago
|
timespec++;
|
||
|
}
|
||
|
}
|
||
16 years ago
|
*set_time = strtol(timespec, &test, 10);
|
||
18 years ago
|
if (*test) {
|
||
16 years ago
|
fprintf(stderr, "Not a base-10 integer: %s\n", arg + 1);
|
||
|
return 0;
|
||
18 years ago
|
}
|
||
16 years ago
|
if ((*set_eq && *set_time < 0) || *set_eq == 2) {
|
||
18 years ago
|
time_t now = time(NULL);
|
||
16 years ago
|
*set_time += now;
|
||
18 years ago
|
}
|
||
16 years ago
|
return 1;
|
||
|
}
|
||
|
|
||
9 years ago
|
int cmd_main(int argc, const char **argv)
|
||
16 years ago
|
{
|
||
|
static int verbose;
|
||
18 years ago
|
|
||
16 years ago
|
int i = 1;
|
||
|
/* no mtime change by default */
|
||
|
int set_eq = 0;
|
||
|
long int set_time = 0;
|
||
|
|
||
|
if (argc < 3)
|
||
|
goto usage;
|
||
|
|
||
|
if (strcmp(argv[i], "--verbose") == 0 || strcmp(argv[i], "-v") == 0) {
|
||
|
verbose = 1;
|
||
|
++i;
|
||
|
}
|
||
|
if (timespec_arg(argv[i], &set_time, &set_eq))
|
||
|
++i;
|
||
|
else
|
||
|
goto usage;
|
||
|
|
||
|
for (; i < argc; i++) {
|
||
18 years ago
|
struct stat sb;
|
||
|
struct utimbuf utb;
|
||
|
|
||
|
if (stat(argv[i], &sb) < 0) {
|
||
|
fprintf(stderr, "Failed to stat %s: %s\n",
|
||
|
argv[i], strerror(errno));
|
||
12 years ago
|
return 1;
|
||
18 years ago
|
}
|
||
|
|
||
12 years ago
|
#ifdef GIT_WINDOWS_NATIVE
|
||
16 years ago
|
if (!(sb.st_mode & S_IWUSR) &&
|
||
|
chmod(argv[i], sb.st_mode | S_IWUSR)) {
|
||
|
fprintf(stderr, "Could not make user-writable %s: %s",
|
||
|
argv[i], strerror(errno));
|
||
12 years ago
|
return 1;
|
||
16 years ago
|
}
|
||
|
#endif
|
||
|
|
||
18 years ago
|
utb.actime = sb.st_atime;
|
||
|
utb.modtime = set_eq ? set_time : sb.st_mtime + set_time;
|
||
|
|
||
16 years ago
|
if (verbose) {
|
||
|
uintmax_t mtime = utb.modtime < 0 ? 0: utb.modtime;
|
||
|
printf("%"PRIuMAX"\t%s\n", mtime, argv[i]);
|
||
|
}
|
||
|
|
||
|
if (utb.modtime != sb.st_mtime && utime(argv[i], &utb) < 0) {
|
||
18 years ago
|
fprintf(stderr, "Failed to modify time on %s: %s\n",
|
||
|
argv[i], strerror(errno));
|
||
12 years ago
|
return 1;
|
||
18 years ago
|
}
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
|
||
|
usage:
|
||
12 years ago
|
fprintf(stderr, "usage: %s %s\n", argv[0], usage_str);
|
||
12 years ago
|
return 1;
|
||
18 years ago
|
}
|