2
0

2-object-store.txt 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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, but Git itself would not
  49. known what is the current branch. That's another reference::
  50. >>> repo.refs['HEAD'] = 'ref: refs/heads/master'
  51. Now our repository is officialy tracking a branch named "master" refering to a
  52. single commit.
  53. Playing again with Git
  54. ----------------------
  55. At this point you can come back to the shell, go into the "myrepo" folder and
  56. type ``git status`` to let Git confirm that this is a regular repository on
  57. branch "master".
  58. Git will tell you that the file "spam" is deleted, which is normal because
  59. Git is comparing the repository state with the current working copy. And we
  60. have absolutely no working copy using Dulwich because we don't need it at
  61. all!
  62. You can checkout the last state using ``git checkout -f``. The force flag
  63. will prevent Git from complaining that there are uncommitted changes in the
  64. working copy.
  65. The file ``spam`` appears and with no surprise contains the same bytes as the
  66. blob::
  67. $ cat spam
  68. My file content
  69. Changing a File and Committing it
  70. ---------------------------------
  71. Now we have a first commit, the next one will show a difference.
  72. As seen in the introduction, it's about making a path in a tree point to a
  73. new blob. The old blob will remain to compute the diff. The tree is altered
  74. and the new commit'task is to point to this new version.
  75. Let's first build the blob::
  76. >>> from dulwich.objects import Blob
  77. >>> spam = Blob.from_string("My new file content\n")
  78. >>> spam.id
  79. '16ee2682887a962f854ebd25a61db16ef4efe49f'
  80. An alternative is to alter the previously constructed blob object::
  81. >>> blob.data = "My new file content\n"
  82. >>> blob.id
  83. '16ee2682887a962f854ebd25a61db16ef4efe49f'
  84. In any case, update the blob id known as "spam". You also have the
  85. opportunity of changing its mode::
  86. >>> tree["spam"] = (0100644, spam.id)
  87. Now let's record the change::
  88. >>> from dulwich.objects import Commit
  89. >>> from time import time
  90. >>> c2 = Commit()
  91. >>> c2.tree = tree.id
  92. >>> c2.parents = [commit.id]
  93. >>> c2.author = c2.committer = "John Doe <john@example.com>"
  94. >>> c2.commit_time = c2.author_time = int(time())
  95. >>> c2.commit_timezone = c2.author_timezone = 0
  96. >>> c2.encoding = "UTF-8"
  97. >>> c2.message = 'Changing "spam"'
  98. In this new commit we record the changed tree id, and most important, the
  99. previous commit as the parent. Parents are actually a list because a commit
  100. may happen to have several parents after merging branches.
  101. Let's put the objects in the object store::
  102. >>> repo.object_store.add_object(spam)
  103. >>> repo.object_store.add_object(tree)
  104. >>> repo.object_store.add_object(c2)
  105. You can already ask git to introspect this commit using ``git show`` and the
  106. value of ``c2.id`` as an argument. You'll see the difference will the
  107. previous blob recorded as "spam".
  108. The diff between the previous head and the new one can be printed using
  109. write_tree_diff::
  110. >>> from dulwich.patch import write_tree_diff
  111. >>> import sys
  112. >>> write_tree_diff(sys.stdout, repo.object_store, commit.tree, tree.id)
  113. diff --git a/spam b/spam
  114. index c55063a..16ee268 100644
  115. --- a/spam
  116. +++ b/spam
  117. @@ -1,1 +1,1 @@
  118. -My file content
  119. +My new file content
  120. You won't see it using git log because the head is still the previous
  121. commit. It's easy to remedy::
  122. >>> repo.refs['refs/heads/master'] = c2.id
  123. Now all git tools will work as expected.