From: "Karl Hasselström" <kha@treskal.com>
To: Catalin Marinas <catalin.marinas@gmail.com>
Cc: git@vger.kernel.org
Subject: [StGIT PATCH 4/4] Find uninteresting commits faster for special cases
Date: Mon, 13 Aug 2007 23:01:42 +0200 [thread overview]
Message-ID: <20070813210142.25929.66904.stgit@yoghurt> (raw)
In-Reply-To: <20070813205801.25929.34925.stgit@yoghurt>
For the special cases of zero or one patch, the set of uninteresting
commits is very cheap to find.
Signed-off-by: Karl Hasselström <kha@treskal.com>
---
stgit/stack.py | 28 +++++++++++++++++++++++-----
1 files changed, 23 insertions(+), 5 deletions(-)
diff --git a/stgit/stack.py b/stgit/stack.py
index dbb27eb..b00a024 100644
--- a/stgit/stack.py
+++ b/stgit/stack.py
@@ -449,15 +449,27 @@ class UninterestingCache:
self.__compute_uninteresting()
self.__write_file()
def __compute_uninteresting(self):
- """Compute a reasonable set of uninteresting commits from
- scratch. This is expensive."""
- out.start('Finding uninteresting commits')
+ """Compute the set of uninteresting commits from scratch. This
+ is expensive in the general case; therefore, we print a
+ message to the user."""
ref2hash = read_refs(self.__series.get_name())
patches = Set([sha1 for ref, sha1 in ref2hash.iteritems() if ref])
- interesting, uninteresting = Set(), Set()
+
+ # Optimize some important special cases.
+ if len(patches) == 0:
+ self.__uninteresting = Set()
+ return
+ elif len(patches) == 1:
+ patch = iter(patches).next()
+ commit, parent = git._output_one_line(
+ 'git-rev-list --parents %s' % patch).split()
+ self.__uninteresting = Set([parent])
+ return
# Iterate over all commits. We are guaranteed to see each
# commit before any of its children.
+ out.start('Finding uninteresting commits')
+ interesting, uninteresting = Set(), Set()
for line in git._output_lines(
'git-rev-list --topo-order --reverse --parents --stdin',
['%s\n' % p for p in patches]):
@@ -483,7 +495,6 @@ class UninterestingCache:
# Commits with interesting parents are interesting.
elif interesting.intersection(parents):
interesting.add(commit)
-
self.__uninteresting = uninteresting
out.done()
def create_patch(self, name, top, bottom, new_commit):
@@ -496,6 +507,13 @@ class UninterestingCache:
if not self.__cache_file():
return # not cached
+ # If there are no existing uninteresting commits, this is the
+ # first patch, so its bottom has to be uninteresting.
+ if not self.__uninteresting:
+ self.__uninteresting.add(bottom)
+ self.__write_file()
+ return
+
# New patch inserted just below an existing bottommost patch:
# need to move the uninteresting commit down one step.
if top in self.__uninteresting:
prev parent reply other threads:[~2007-08-13 21:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-13 21:01 [StGIT PATCH 0/4] Optimizations for the DAG appliedness stuff Karl Hasselström
2007-08-13 21:01 ` [StGIT PATCH 1/4] Speed up the discovery of uninteresting commits Karl Hasselström
2007-08-13 21:01 ` [StGIT PATCH 2/4] Speed up appliedness check during patch creation Karl Hasselström
2007-08-13 21:01 ` [StGIT PATCH 3/4] Don't traverse the whole DAG when looking for uninteresting commits Karl Hasselström
2007-08-13 21:01 ` Karl Hasselström [this message]
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=20070813210142.25929.66904.stgit@yoghurt \
--to=kha@treskal.com \
--cc=catalin.marinas@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).