From: "Nguyễn Thái Ngọc Duy" <pclouds@gmail.com>
To: git@vger.kernel.org
Cc: "Nguyễn Thái Ngọc Duy" <pclouds@gmail.com>
Subject: [PATCH 11/24] backup-log: add diff command
Date: Sun, 9 Dec 2018 11:44:06 +0100 [thread overview]
Message-ID: <20181209104419.12639-12-pclouds@gmail.com> (raw)
In-Reply-To: <20181209104419.12639-1-pclouds@gmail.com>
This gives you a patch so you can apply if you want.
FIXME pathspec support?
PS. the file list in diff queue is not sorted like a normal "git
diff". If this is a big deal, we probably can sort it later.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
builtin/backup-log.c | 100 ++++++++++++++++++++++++++++++++++++++++++
t/t2080-backup-log.sh | 25 +++++++++++
2 files changed, 125 insertions(+)
diff --git a/builtin/backup-log.c b/builtin/backup-log.c
index b370ff9d27..f8029e0011 100644
--- a/builtin/backup-log.c
+++ b/builtin/backup-log.c
@@ -1,6 +1,8 @@
#include "cache.h"
#include "builtin.h"
#include "backup-log.h"
+#include "diff.h"
+#include "diffcore.h"
#include "dir.h"
#include "object-store.h"
#include "parse-options.h"
@@ -8,6 +10,7 @@
static char const * const backup_log_usage[] = {
N_("git backup-log [--path=<path> | --id=<id>] update <path> <old-hash> <new-hash>"),
N_("git backup-log [--path=<path> | --id=<id>] cat [<options>] <change-id> <path>"),
+ N_("git backup-log [--path=<path> | --id=<id>] diff [<diff-options>] <change-id>"),
NULL
};
@@ -115,6 +118,101 @@ static int cat(int argc, const char **argv,
return ret - 1;
}
+static void queue_blk_entry_for_diff(const struct bkl_entry *e)
+{
+ unsigned mode = canon_mode(S_IFREG | 0644);
+ struct diff_filespec *one, *two;
+ const struct object_id *old, *new;
+
+ if (is_null_oid(&e->old_oid))
+ old = the_hash_algo->empty_blob;
+ else
+ old = &e->old_oid;
+
+ if (is_null_oid(&e->new_oid))
+ new = the_hash_algo->empty_blob;
+ else
+ new = &e->new_oid;
+
+ if (oideq(old, new))
+ return;
+
+ one = alloc_filespec(e->path);
+ two = alloc_filespec(e->path);
+
+ fill_filespec(one, old, 1, mode);
+ fill_filespec(two, new, 1, mode);
+ diff_queue(&diff_queued_diff, one, two);
+}
+
+static int diff_parse(struct strbuf *line, void *data)
+{
+ timestamp_t id = *(timestamp_t *)data;
+ struct bkl_entry entry;
+
+ if (bkl_parse_entry(line, &entry))
+ return -1;
+
+ if (entry.timestamp < id)
+ return 1;
+
+ if (entry.timestamp > id)
+ return 0;
+
+ queue_blk_entry_for_diff(&entry);
+ return 0;
+}
+
+static int diff(int argc, const char **argv,
+ const char *prefix, const char *log_path)
+{
+ char *end = NULL;
+ struct diff_options diffopt;
+ timestamp_t id = -1;
+ int ret, i, found_dash_dash = 0;
+
+ repo_diff_setup(the_repository, &diffopt);
+ i = 1;
+ while (i < argc) {
+ const char *arg = argv[i];
+
+ if (!found_dash_dash && *arg == '-') {
+ if (!strcmp(arg, "--")) {
+ found_dash_dash = 1;
+ i++;
+ continue;
+ }
+ ret = diff_opt_parse(&diffopt, argv + i, argc - i, prefix);
+ if (ret < 0)
+ exit(128);
+ i += ret;
+ continue;
+ }
+
+ id = strtol(arg, &end, 10);
+ if (!end || *end)
+ die(_("not a valid change id: %s"), arg);
+ i++;
+ break;
+ }
+ if (!diffopt.output_format)
+ diffopt.output_format = DIFF_FORMAT_PATCH;
+ diff_setup_done(&diffopt);
+ if (i != argc || id == -1)
+ usage_with_options(backup_log_usage, NULL);
+
+ ret = bkl_parse_file_reverse(log_path, diff_parse, &id);
+ if (ret < 0)
+ die(_("failed to parse '%s'"), log_path);
+
+ if (ret == 1) {
+ setup_pager();
+ diffcore_std(&diffopt);
+ diff_flush(&diffopt);
+ }
+ return ret - 1;
+}
+
static char *log_id_to_path(const char *id)
{
if (!strcmp(id, "index"))
@@ -156,6 +254,8 @@ int cmd_backup_log(int argc, const char **argv, const char *prefix)
return update(argc, argv, prefix, log_path);
else if (!strcmp(argv[0], "cat"))
return cat(argc, argv, prefix, log_path);
+ else if (!strcmp(argv[0], "diff"))
+ return diff(argc, argv, prefix, log_path);
else
die(_("unknown subcommand: %s"), argv[0]);
diff --git a/t/t2080-backup-log.sh b/t/t2080-backup-log.sh
index 9c004c9727..cd4288d386 100755
--- a/t/t2080-backup-log.sh
+++ b/t/t2080-backup-log.sh
@@ -105,4 +105,29 @@ test_expect_success 'backup-log cat' '
test_cmp expected actual
'
+test_expect_success 'backup-log diff' '
+ echo first >initial.t &&
+ git add initial.t &&
+ echo second >initial.t &&
+ test_tick &&
+ git -c core.backupLog=true add initial.t &&
+ git backup-log --id=index diff $test_tick >actual &&
+ cat >expected <<-\EOF &&
+ diff --git a/initial.t b/initial.t
+ index 9c59e24..e019be0 100644
+ --- a/initial.t
+ +++ b/initial.t
+ @@ -1 +1 @@
+ -first
+ +second
+ EOF
+ test_cmp expected actual &&
+ git backup-log --id=index diff --stat $test_tick >stat.actual &&
+ cat >stat.expected <<-\EOF &&
+ initial.t | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+ EOF
+ test_cmp stat.expected stat.actual
+'
+
test_done
--
2.20.0.rc2.486.g9832c05c3d
next prev parent reply other threads:[~2018-12-09 10:45 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-09 10:43 [RFC PATCH 00/24] Add backup log Nguyễn Thái Ngọc Duy
2018-12-09 10:43 ` [PATCH 01/24] doc: introduce new "backup log" concept Nguyễn Thái Ngọc Duy
2018-12-09 10:43 ` [PATCH 02/24] backup-log: add "update" subcommand Nguyễn Thái Ngọc Duy
2018-12-09 10:43 ` [PATCH 03/24] read-cache.c: new flag for add_index_entry() to write to backup log Nguyễn Thái Ngọc Duy
2018-12-09 10:43 ` [PATCH 04/24] add: support " Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 05/24] update-index: support backup log with --keep-backup Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 06/24] commit: support backup log Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 07/24] apply: support backup log with --keep-backup Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 08/24] add--interactive: support backup log Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 09/24] backup-log.c: add API for walking " Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 10/24] backup-log: add cat command Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` Nguyễn Thái Ngọc Duy [this message]
2018-12-09 10:44 ` [PATCH 12/24] backup-log: add log command Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 13/24] backup-log: add prune command Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 14/24] gc: prune backup logs Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 15/24] backup-log: keep all blob references around Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 16/24] sha1-file.c: let index_path() accept NULL istate Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 17/24] config --edit: support backup log Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 18/24] refs: keep backup of deleted reflog Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 19/24] unpack-trees.c: keep backup of ignored files being overwritten Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 20/24] reset --hard: keep backup of overwritten files Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 21/24] checkout -f: " Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 22/24] am: keep backup of overwritten files on --skip or --abort Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 23/24] rebase: " Nguyễn Thái Ngọc Duy
2018-12-09 10:44 ` [PATCH 24/24] FIXME Nguyễn Thái Ngọc Duy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181209104419.12639-12-pclouds@gmail.com \
--to=pclouds@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).