2008-10-30 10:00:29 +01:00
|
|
|
/*
|
|
|
|
* This program can either change modification time of the given
|
2014-04-01 00:11:46 +02:00
|
|
|
* file(s) or just print it. The program does not change atime or
|
2010-02-04 06:23:18 +01:00
|
|
|
* ctime (their values are explicitly preserved).
|
2008-10-30 10:00:29 +01:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
2007-02-25 03:18:22 +01:00
|
|
|
#include "git-compat-util.h"
|
|
|
|
#include <utime.h>
|
|
|
|
|
2008-10-30 10:00:29 +01:00
|
|
|
static const char usage_str[] = "-v|--verbose (+|=|=+|=-|-)<seconds> <file>...";
|
2007-02-25 03:18:22 +01:00
|
|
|
|
2008-10-30 10:00:29 +01:00
|
|
|
static int timespec_arg(const char *arg, long int *set_time, int *set_eq)
|
2007-02-25 03:18:22 +01:00
|
|
|
{
|
|
|
|
char *test;
|
2008-10-30 10:00:29 +01:00
|
|
|
const char *timespec = arg;
|
|
|
|
*set_eq = (*timespec == '=') ? 1 : 0;
|
|
|
|
if (*set_eq) {
|
2007-02-25 03:18:22 +01:00
|
|
|
timespec++;
|
|
|
|
if (*timespec == '+') {
|
2008-10-30 10:00:29 +01:00
|
|
|
*set_eq = 2; /* relative "in the future" */
|
2007-02-25 03:18:22 +01:00
|
|
|
timespec++;
|
|
|
|
}
|
|
|
|
}
|
2008-10-30 10:00:29 +01:00
|
|
|
*set_time = strtol(timespec, &test, 10);
|
2007-02-25 03:18:22 +01:00
|
|
|
if (*test) {
|
2008-10-30 10:00:29 +01:00
|
|
|
fprintf(stderr, "Not a base-10 integer: %s\n", arg + 1);
|
|
|
|
return 0;
|
2007-02-25 03:18:22 +01:00
|
|
|
}
|
2008-10-30 10:00:29 +01:00
|
|
|
if ((*set_eq && *set_time < 0) || *set_eq == 2) {
|
2007-02-25 03:18:22 +01:00
|
|
|
time_t now = time(NULL);
|
2008-10-30 10:00:29 +01:00
|
|
|
*set_time += now;
|
2007-02-25 03:18:22 +01:00
|
|
|
}
|
2008-10-30 10:00:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
add an extra level of indirection to main()
There are certain startup tasks that we expect every git
process to do. In some cases this is just to improve the
quality of the program (e.g., setting up gettext()). In
others it is a requirement for using certain functions in
libgit.a (e.g., system_path() expects that you have called
git_extract_argv0_path()).
Most commands are builtins and are covered by the git.c
version of main(). However, there are still a few external
commands that use their own main(). Each of these has to
remember to include the correct startup sequence, and we are
not always consistent.
Rather than just fix the inconsistencies, let's make this
harder to get wrong by providing a common main() that can
run this standard startup.
We basically have two options to do this:
- the compat/mingw.h file already does something like this by
adding a #define that replaces the definition of main with a
wrapper that calls mingw_startup().
The upside is that the code in each program doesn't need
to be changed at all; it's rewritten on the fly by the
preprocessor.
The downside is that it may make debugging of the startup
sequence a bit more confusing, as the preprocessor is
quietly inserting new code.
- the builtin functions are all of the form cmd_foo(),
and git.c's main() calls them.
This is much more explicit, which may make things more
obvious to somebody reading the code. It's also more
flexible (because of course we have to figure out _which_
cmd_foo() to call).
The downside is that each of the builtins must define
cmd_foo(), instead of just main().
This patch chooses the latter option, preferring the more
explicit approach, even though it is more invasive. We
introduce a new file common-main.c, with the "real" main. It
expects to call cmd_main() from whatever other objects it is
linked against.
We link common-main.o against anything that links against
libgit.a, since we know that such programs will need to do
this setup. Note that common-main.o can't actually go inside
libgit.a, as the linker would not pick up its main()
function automatically (it has no callers).
The rest of the patch is just adjusting all of the various
external programs (mostly in t/helper) to use cmd_main().
I've provided a global declaration for cmd_main(), which
means that all of the programs also need to match its
signature. In particular, many functions need to switch to
"const char **" instead of "char **" for argv. This effect
ripples out to a few other variables and functions, as well.
This makes the patch even more invasive, but the end result
is much better. We should be treating argv strings as const
anyway, and now all programs conform to the same signature
(which also matches the way builtins are defined).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-07-01 07:58:58 +02:00
|
|
|
int cmd_main(int argc, const char **argv)
|
2008-10-30 10:00:29 +01:00
|
|
|
{
|
|
|
|
static int verbose;
|
2007-02-25 03:18:22 +01:00
|
|
|
|
2008-10-30 10:00:29 +01:00
|
|
|
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++) {
|
2007-02-25 03:18:22 +01:00
|
|
|
struct stat sb;
|
|
|
|
struct utimbuf utb;
|
|
|
|
|
|
|
|
if (stat(argv[i], &sb) < 0) {
|
|
|
|
fprintf(stderr, "Failed to stat %s: %s\n",
|
|
|
|
argv[i], strerror(errno));
|
2013-06-01 11:34:20 +02:00
|
|
|
return 1;
|
2007-02-25 03:18:22 +01:00
|
|
|
}
|
|
|
|
|
2013-05-02 21:26:08 +02:00
|
|
|
#ifdef GIT_WINDOWS_NATIVE
|
2009-05-31 18:15:18 +02:00
|
|
|
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));
|
2013-06-01 11:34:20 +02:00
|
|
|
return 1;
|
2009-05-31 18:15:18 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-02-25 03:18:22 +01:00
|
|
|
utb.actime = sb.st_atime;
|
|
|
|
utb.modtime = set_eq ? set_time : sb.st_mtime + set_time;
|
|
|
|
|
2008-10-30 10:00:29 +01:00
|
|
|
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) {
|
2007-02-25 03:18:22 +01:00
|
|
|
fprintf(stderr, "Failed to modify time on %s: %s\n",
|
|
|
|
argv[i], strerror(errno));
|
2013-06-01 11:34:20 +02:00
|
|
|
return 1;
|
2007-02-25 03:18:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
usage:
|
2013-02-24 23:48:39 +01:00
|
|
|
fprintf(stderr, "usage: %s %s\n", argv[0], usage_str);
|
2013-06-01 11:34:20 +02:00
|
|
|
return 1;
|
2007-02-25 03:18:22 +01:00
|
|
|
}
|