From: "Karl Hasselström" <kha@treskal.com>
To: Catalin Marinas <catalin.marinas@gmail.com>
Cc: git@vger.kernel.org
Subject: [StGit PATCH 2/5] Write metadata files used by the old infrastructure
Date: Mon, 05 Nov 2007 04:14:42 +0100 [thread overview]
Message-ID: <20071105031442.6108.19781.stgit@yoghurt> (raw)
In-Reply-To: <20071105030847.6108.44653.stgit@yoghurt>
The new infrastructure doesn't use them, but they're needed to support
the old infrastructure during the transition when both of them are in
use.
Signed-off-by: Karl Hasselström <kha@treskal.com>
---
stgit/lib/stack.py | 35 +++++++++++++++++++++++++++++++++++
1 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/stgit/lib/stack.py b/stgit/lib/stack.py
index b4d99ba..ce514d6 100644
--- a/stgit/lib/stack.py
+++ b/stgit/lib/stack.py
@@ -9,10 +9,45 @@ class Patch(object):
name = property(lambda self: self.__name)
def __ref(self):
return 'refs/patches/%s/%s' % (self.__stack.name, self.__name)
+ def __log_ref(self):
+ return self.__ref() + '.log'
@property
def commit(self):
return self.__stack.repository.refs.get(self.__ref())
+ def __write_compat_files(self, new_commit, msg):
+ """Write files used by the old infrastructure."""
+ fdir = os.path.join(self.__stack.directory, 'patches', self.__name)
+ def write(name, val, multiline = False):
+ fn = os.path.join(fdir, name)
+ if val:
+ utils.write_string(fn, val, multiline)
+ elif os.path.isfile(fn):
+ os.remove(fn)
+ def write_patchlog():
+ try:
+ old_log = [self.__stack.repository.refs.get(self.__log_ref())]
+ except KeyError:
+ old_log = []
+ cd = git.Commitdata(tree = new_commit.data.tree, parents = old_log,
+ message = '%s\t%s' % (msg, new_commit.sha1))
+ c = self.__stack.repository.commit(cd)
+ self.__stack.repository.refs.set(self.__log_ref(), c, msg)
+ return c
+ d = new_commit.data
+ write('authname', d.author.name)
+ write('authemail', d.author.email)
+ write('authdate', d.author.date)
+ write('commname', d.committer.name)
+ write('commemail', d.committer.email)
+ write('description', d.message)
+ write('log', write_patchlog().sha1)
+ try:
+ old_commit_sha1 = self.commit
+ except KeyError:
+ old_commit_sha1 = None
+ write('top.old', old_commit_sha1)
def set_commit(self, commit, msg):
+ self.__write_compat_files(commit, msg)
self.__stack.repository.refs.set(self.__ref(), commit, msg)
def delete(self):
self.__stack.repository.refs.delete(self.__ref())
next prev parent reply other threads:[~2007-11-05 3:15 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-05 3:14 [StGit PATCH 0/5] Start the refactoring Karl Hasselström
2007-11-05 3:14 ` [StGit PATCH 1/5] New StGit core infrastructure: repository operations Karl Hasselström
2007-11-05 3:14 ` Karl Hasselström [this message]
2007-11-05 3:14 ` [StGit PATCH 3/5] Simple test for "stg clean" Karl Hasselström
2007-11-05 3:14 ` [StGit PATCH 4/5] Let "stg clean" use the new infrastructure Karl Hasselström
2007-11-05 3:15 ` [StGit PATCH 5/5] Add "stg coalesce" Karl Hasselström
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=20071105031442.6108.19781.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).