2
0

2-object-store.txt 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. The object store
  2. ================
  3. The objects are stored in the ``object store`` of the repository.
  4. >>> from dulwich.repo import Repo
  5. >>> repo = Repo.init("myrepo", mkdir=True)
  6. Initial commit
  7. --------------
  8. When you use Git, you generally add or modify content. As our repository is
  9. empty for now, we'll start by adding a new file::
  10. >>> from dulwich.objects import Blob
  11. >>> blob = Blob.from_string("My file content\n")
  12. >>> blob.id
  13. 'c55063a4d5d37aa1af2b2dad3a70aa34dae54dc6'
  14. Of course you could create a blob from an existing file using ``from_file``
  15. instead.
  16. As said in the introduction, file content is separed from file name. Let's
  17. give this content a name::
  18. >>> from dulwich.objects import Tree
  19. >>> tree = Tree()
  20. >>> tree.add(0100644, "spam", blob.id)
  21. Note that "0100644" is the octal form for a regular file with common
  22. permissions. You can hardcode them or you can use the ``stat`` module.
  23. The tree state of our repository still needs to be placed in time. That's the
  24. job of the commit::
  25. >>> from dulwich.objects import Commit, parse_timezone
  26. >>> from time import time
  27. >>> commit = Commit()
  28. >>> commit.tree = tree.id
  29. >>> author = "Your Name <your.email@example.com>"
  30. >>> commit.author = commit.committer = author
  31. >>> commit.commit_time = commit.author_time = int(time())
  32. >>> tz = parse_timezone('-0200')[0]
  33. >>> commit.commit_timezone = commit.author_timezone = tz
  34. >>> commit.encoding = "UTF-8"
  35. >>> commit.message = "Initial commit"
  36. Note that the initial commit has no parents.
  37. At this point, the repository is still empty because all operations happen in
  38. memory. Let's "commit" it.
  39. >>> object_store = repo.object_store
  40. >>> object_store.add_object(blob)
  41. Now the ".git/objects" folder contains a first SHA-1 file. Let's continue
  42. saving the changes::
  43. >>> object_store.add_object(tree)
  44. >>> object_store.add_object(commit)
  45. Now the physical repository contains three objects but still has no branch.
  46. Let's create the master branch like Git would::
  47. >>> repo.refs['refs/heads/master'] = commit.id
  48. The master branch now has a commit where to start. When we commit to master, we
  49. are also moving HEAD, which is Git's currently checked out branch:
  50. >>> head = repo.refs['HEAD']
  51. >>> head == commit.id
  52. True
  53. >>> head == repo.refs['refs/heads/master']
  54. True
  55. How did that work? As it turns out, HEAD is a special kind of ref called a
  56. symbolic ref, and it points at master. Most functions on the refs container
  57. work transparently with symbolic refs, but we can also take a peek inside HEAD:
  58. >>> repo.refs.read_ref('HEAD')
  59. 'ref: refs/heads/master'
  60. Normally, you won't need to use read_ref. If you want to change what ref HEAD
  61. points to, in order to check out another branch, just use set_symbolic_ref.
  62. Now our repository is officially tracking a branch named "master" referring to a
  63. single commit.
  64. Playing again with Git
  65. ----------------------
  66. At this point you can come back to the shell, go into the "myrepo" folder and
  67. type ``git status`` to let Git confirm that this is a regular repository on
  68. branch "master".
  69. Git will tell you that the file "spam" is deleted, which is normal because
  70. Git is comparing the repository state with the current working copy. And we
  71. have absolutely no working copy using Dulwich because we don't need it at
  72. all!
  73. You can checkout the last state using ``git checkout -f``. The force flag
  74. will prevent Git from complaining that there are uncommitted changes in the
  75. working copy.
  76. The file ``spam`` appears and with no surprise contains the same bytes as the
  77. blob::
  78. $ cat spam
  79. My file content
  80. Changing a File and Committing it
  81. ---------------------------------
  82. Now we have a first commit, the next one will show a difference.
  83. As seen in the introduction, it's about making a path in a tree point to a
  84. new blob. The old blob will remain to compute the diff. The tree is altered
  85. and the new commit'task is to point to this new version.
  86. Let's first build the blob::
  87. >>> from dulwich.objects import Blob
  88. >>> spam = Blob.from_string("My new file content\n")
  89. >>> spam.id
  90. '16ee2682887a962f854ebd25a61db16ef4efe49f'
  91. An alternative is to alter the previously constructed blob object::
  92. >>> blob.data = "My new file content\n"
  93. >>> blob.id
  94. '16ee2682887a962f854ebd25a61db16ef4efe49f'
  95. In any case, update the blob id known as "spam". You also have the
  96. opportunity of changing its mode::
  97. >>> tree["spam"] = (0100644, spam.id)
  98. Now let's record the change::
  99. >>> from dulwich.objects import Commit
  100. >>> from time import time
  101. >>> c2 = Commit()
  102. >>> c2.tree = tree.id
  103. >>> c2.parents = [commit.id]
  104. >>> c2.author = c2.committer = "John Doe <john@example.com>"
  105. >>> c2.commit_time = c2.author_time = int(time())
  106. >>> c2.commit_timezone = c2.author_timezone = 0
  107. >>> c2.encoding = "UTF-8"
  108. >>> c2.message = 'Changing "spam"'
  109. In this new commit we record the changed tree id, and most important, the
  110. previous commit as the parent. Parents are actually a list because a commit
  111. may happen to have several parents after merging branches.
  112. Let's put the objects in the object store::
  113. >>> repo.object_store.add_object(spam)
  114. >>> repo.object_store.add_object(tree)
  115. >>> repo.object_store.add_object(c2)
  116. You can already ask git to introspect this commit using ``git show`` and the
  117. value of ``c2.id`` as an argument. You'll see the difference will the
  118. previous blob recorded as "spam".
  119. The diff between the previous head and the new one can be printed using
  120. write_tree_diff::
  121. >>> from dulwich.patch import write_tree_diff
  122. >>> import sys
  123. >>> write_tree_diff(sys.stdout, repo.object_store, commit.tree, tree.id)
  124. diff --git a/spam b/spam
  125. index c55063a..16ee268 100644
  126. --- a/spam
  127. +++ b/spam
  128. @@ -1,1 +1,1 @@
  129. -My file content
  130. +My new file content
  131. You won't see it using git log because the head is still the previous
  132. commit. It's easy to remedy::
  133. >>> repo.refs['refs/heads/master'] = c2.id
  134. Now all git tools will work as expected.