/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/git/commit.py

  • Committer: Jelmer Vernooij
  • Date: 2020-04-05 19:11:34 UTC
  • mto: (7490.7.16 work)
  • mto: This revision was merged to the branch mainline in revision 7501.
  • Revision ID: jelmer@jelmer.uk-20200405191134-0aebh8ikiwygxma5
Populate the .gitignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2009-2018 Jelmer Vernooij <jelmer@jelmer.uk>
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
 
 
18
"""Support for committing in native Git working trees."""
 
19
 
 
20
from __future__ import absolute_import
 
21
 
 
22
from dulwich.index import (
 
23
    commit_tree,
 
24
    )
 
25
import stat
 
26
 
 
27
from .. import (
 
28
    bugtracker,
 
29
    config as _mod_config,
 
30
    gpg,
 
31
    osutils,
 
32
    revision as _mod_revision,
 
33
    )
 
34
from ..errors import (
 
35
    BzrError,
 
36
    RootMissing,
 
37
    UnsupportedOperation,
 
38
    )
 
39
from ..repository import (
 
40
    CommitBuilder,
 
41
    )
 
42
from ..sixish import (
 
43
    viewitems,
 
44
    )
 
45
 
 
46
from dulwich.objects import (
 
47
    Blob,
 
48
    Commit,
 
49
    )
 
50
from dulwich.index import read_submodule_head
 
51
 
 
52
 
 
53
from .mapping import (
 
54
    object_mode,
 
55
    fix_person_identifier,
 
56
    )
 
57
from .tree import entry_factory
 
58
 
 
59
 
 
60
class GitCommitBuilder(CommitBuilder):
 
61
    """Commit builder for Git repositories."""
 
62
 
 
63
    supports_record_entry_contents = False
 
64
 
 
65
    def __init__(self, *args, **kwargs):
 
66
        super(GitCommitBuilder, self).__init__(*args, **kwargs)
 
67
        self.random_revid = True
 
68
        self._validate_revprops(self._revprops)
 
69
        self.store = self.repository._git.object_store
 
70
        self._blobs = {}
 
71
        self._inv_delta = []
 
72
        self._any_changes = False
 
73
        self._mapping = self.repository.get_mapping()
 
74
 
 
75
    def any_changes(self):
 
76
        return self._any_changes
 
77
 
 
78
    def record_iter_changes(self, workingtree, basis_revid, iter_changes):
 
79
        seen_root = False
 
80
        for change in iter_changes:
 
81
            if change.kind[1] in ("directory",):
 
82
                self._inv_delta.append(
 
83
                    (change.path[0], change.path[1], change.file_id,
 
84
                     entry_factory[change.kind[1]](
 
85
                         change.file_id, change.name[1], change.parent_id[1])))
 
86
                if change.kind[0] in ("file", "symlink"):
 
87
                    self._blobs[change.path[0].encode("utf-8")] = None
 
88
                    self._any_changes = True
 
89
                if change.path[1] == "":
 
90
                    seen_root = True
 
91
                continue
 
92
            self._any_changes = True
 
93
            if change.path[1] is None:
 
94
                self._inv_delta.append((change.path[0], change.path[1], change.file_id, None))
 
95
                self._blobs[change.path[0].encode("utf-8")] = None
 
96
                continue
 
97
            try:
 
98
                entry_kls = entry_factory[change.kind[1]]
 
99
            except KeyError:
 
100
                raise KeyError("unknown kind %s" % change.kind[1])
 
101
            entry = entry_kls(change.file_id, change.name[1], change.parent_id[1])
 
102
            if change.kind[1] == "file":
 
103
                entry.executable = change.executable[1]
 
104
                blob = Blob()
 
105
                f, st = workingtree.get_file_with_stat(change.path[1])
 
106
                try:
 
107
                    blob.data = f.read()
 
108
                finally:
 
109
                    f.close()
 
110
                entry.text_size = len(blob.data)
 
111
                entry.text_sha1 = osutils.sha_string(blob.data)
 
112
                self.store.add_object(blob)
 
113
                sha = blob.id
 
114
            elif change.kind[1] == "symlink":
 
115
                symlink_target = workingtree.get_symlink_target(change.path[1])
 
116
                blob = Blob()
 
117
                blob.data = symlink_target.encode("utf-8")
 
118
                self.store.add_object(blob)
 
119
                sha = blob.id
 
120
                entry.symlink_target = symlink_target
 
121
                st = None
 
122
            elif change.kind[1] == "tree-reference":
 
123
                sha = read_submodule_head(workingtree.abspath(change.path[1]))
 
124
                reference_revision = workingtree.get_reference_revision(change.path[1])
 
125
                entry.reference_revision = reference_revision
 
126
                st = None
 
127
            else:
 
128
                raise AssertionError("Unknown kind %r" % change.kind[1])
 
129
            mode = object_mode(change.kind[1], change.executable[1])
 
130
            self._inv_delta.append((change.path[0], change.path[1], change.file_id, entry))
 
131
            encoded_new_path = change.path[1].encode("utf-8")
 
132
            self._blobs[encoded_new_path] = (mode, sha)
 
133
            if st is not None:
 
134
                yield change.path[1], (entry.text_sha1, st)
 
135
        if not seen_root and len(self.parents) == 0:
 
136
            raise RootMissing()
 
137
        if getattr(workingtree, "basis_tree", False):
 
138
            basis_tree = workingtree.basis_tree()
 
139
        else:
 
140
            if len(self.parents) == 0:
 
141
                basis_revid = _mod_revision.NULL_REVISION
 
142
            else:
 
143
                basis_revid = self.parents[0]
 
144
            basis_tree = self.repository.revision_tree(basis_revid)
 
145
        # Fill in entries that were not changed
 
146
        for entry in basis_tree._iter_tree_contents(include_trees=False):
 
147
            if entry.path in self._blobs:
 
148
                continue
 
149
            self._blobs[entry.path] = (entry.mode, entry.sha)
 
150
        self.new_inventory = None
 
151
 
 
152
    def update_basis(self, tree):
 
153
        # Nothing to do here
 
154
        pass
 
155
 
 
156
    def finish_inventory(self):
 
157
        # eliminate blobs that were removed
 
158
        self._blobs = {k: v for (k, v) in viewitems(
 
159
            self._blobs) if v is not None}
 
160
 
 
161
    def _iterblobs(self):
 
162
        return ((path, sha, mode) for (path, (mode, sha))
 
163
                in viewitems(self._blobs))
 
164
 
 
165
    def commit(self, message):
 
166
        self._validate_unicode_text(message, 'commit message')
 
167
        c = Commit()
 
168
        c.parents = [self.repository.lookup_bzr_revision_id(
 
169
            revid)[0] for revid in self.parents]
 
170
        c.tree = commit_tree(self.store, self._iterblobs())
 
171
        encoding = self._revprops.pop(u'git-explicit-encoding', 'utf-8')
 
172
        c.encoding = encoding.encode('ascii')
 
173
        c.committer = fix_person_identifier(self._committer.encode(encoding))
 
174
        try:
 
175
            author = self._revprops.pop('author')
 
176
        except KeyError:
 
177
            try:
 
178
                authors = self._revprops.pop('authors').splitlines()
 
179
            except KeyError:
 
180
                author = self._committer
 
181
            else:
 
182
                if len(authors) > 1:
 
183
                    raise Exception("Unable to convert multiple authors")
 
184
                elif len(authors) == 0:
 
185
                    author = self._committer
 
186
                else:
 
187
                    author = authors[0]
 
188
        c.author = fix_person_identifier(author.encode(encoding))
 
189
        bugstext = self._revprops.pop('bugs', None)
 
190
        if bugstext is not None:
 
191
            message += "\n"
 
192
            for url, status in bugtracker.decode_bug_urls(bugstext):
 
193
                if status == bugtracker.FIXED:
 
194
                    message += "Fixes: %s\n" % url
 
195
                elif status == bugtracker.RELATED:
 
196
                    message += "Bug: %s\n" % url
 
197
                else:
 
198
                    raise bugtracker.InvalidBugStatus(status)
 
199
        if self._revprops:
 
200
            raise NotImplementedError(self._revprops)
 
201
        c.commit_time = int(self._timestamp)
 
202
        c.author_time = int(self._timestamp)
 
203
        c.commit_timezone = self._timezone
 
204
        c.author_timezone = self._timezone
 
205
        c.message = message.encode(encoding)
 
206
        if (self._config_stack.get('create_signatures') ==
 
207
                _mod_config.SIGN_ALWAYS):
 
208
            strategy = gpg.GPGStrategy(self._config_stack)
 
209
            c.gpgsig = strategy.sign(c.as_raw_string(), gpg.MODE_DETACH)
 
210
        self.store.add_object(c)
 
211
        self.repository.commit_write_group()
 
212
        self._new_revision_id = self._mapping.revision_id_foreign_to_bzr(c.id)
 
213
        return self._new_revision_id
 
214
 
 
215
    def abort(self):
 
216
        if self.repository.is_in_write_group():
 
217
            self.repository.abort_write_group()
 
218
 
 
219
    def revision_tree(self):
 
220
        return self.repository.revision_tree(self._new_revision_id)
 
221
 
 
222
    def get_basis_delta(self):
 
223
        return self._inv_delta
 
224
 
 
225
    def update_basis_by_delta(self, revid, delta):
 
226
        pass