|
@@ -28,10 +28,12 @@ import tempfile
|
|
|
import time
|
|
|
import types
|
|
|
|
|
|
+from dulwich.index import (
|
|
|
+ commit_tree,
|
|
|
+ )
|
|
|
from dulwich.objects import (
|
|
|
FixedSha,
|
|
|
Commit,
|
|
|
- Tree,
|
|
|
)
|
|
|
from dulwich.pack import (
|
|
|
OFS_DELTA,
|
|
@@ -236,7 +238,7 @@ def build_pack(f, objects_spec, store=None):
|
|
|
return expected
|
|
|
|
|
|
|
|
|
-def build_commit_graph(object_store, commit_spec):
|
|
|
+def build_commit_graph(object_store, commit_spec, trees=None):
|
|
|
"""Build a commit graph from a concise specification.
|
|
|
|
|
|
Sample usage:
|
|
@@ -256,9 +258,15 @@ def build_commit_graph(object_store, commit_spec):
|
|
|
remaining elements are its parents. The commit numbers are only
|
|
|
meaningful for the call to make_commits; since real commit objects are
|
|
|
created, they will get created with real, opaque SHAs.
|
|
|
+ :param trees: An optional dict of commit number -> tree spec for building
|
|
|
+ trees for commits. The tree spec is an iterable of (path, blob, mode) or
|
|
|
+ (path, blob) entries; if mode is omitted, it defaults to the normal file
|
|
|
+ mode (0100644).
|
|
|
:return: The list of commit objects created.
|
|
|
:raise ValueError: If an undefined commit identifier is listed as a parent.
|
|
|
"""
|
|
|
+ if trees is None:
|
|
|
+ trees = {}
|
|
|
commit_time = 0
|
|
|
nums = {}
|
|
|
commits = []
|
|
@@ -271,17 +279,25 @@ def build_commit_graph(object_store, commit_spec):
|
|
|
missing_parent, = e.args
|
|
|
raise ValueError('Unknown parent %i' % missing_parent)
|
|
|
|
|
|
- tree = Tree()
|
|
|
+ blobs = []
|
|
|
+ for entry in trees.get(commit_num, []):
|
|
|
+ if len(entry) == 2:
|
|
|
+ path, blob = entry
|
|
|
+ entry = (path, blob, F)
|
|
|
+ path, blob, mode = entry
|
|
|
+ blobs.append((path, blob.id, mode))
|
|
|
+ object_store.add_object(blob)
|
|
|
+ tree_id = commit_tree(object_store, blobs)
|
|
|
+
|
|
|
commit_obj = make_commit(
|
|
|
message=('Commit %i' % commit_num),
|
|
|
parents=parent_ids,
|
|
|
- tree=tree.id,
|
|
|
+ tree=tree_id,
|
|
|
commit_time=commit_time)
|
|
|
|
|
|
commit_time += 1
|
|
|
nums[commit_num] = commit_obj.id
|
|
|
object_store.add_object(commit_obj)
|
|
|
- object_store.add_object(tree)
|
|
|
commits.append(commit_obj)
|
|
|
|
|
|
return commits
|