/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 dir.py

More work on roundtrip push support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# along with this program; if not, write to the Free Software
16
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
 
"""An adapter between a Git control dir and a Bazaar BzrDir."""
 
18
"""An adapter between a Git control dir and a Bazaar ControlDir."""
19
19
 
20
20
from bzrlib import (
21
 
    bzrdir,
22
21
    errors as bzr_errors,
23
22
    lockable_files,
24
23
    urlutils,
28
27
LockWarner = getattr(lockable_files, "_LockWarner", None)
29
28
 
30
29
from bzrlib.plugins.git import (
31
 
    LocalGitBzrDirFormat,
 
30
    BareLocalGitControlDirFormat,
 
31
    LocalGitControlDirFormat,
32
32
    )
 
33
try:
 
34
    from bzrlib.controldir import (
 
35
        ControlDir,
 
36
        format_registry,
 
37
        )
 
38
except ImportError:
 
39
    # bzr < 2.3
 
40
    from bzrlib.bzrdir import (
 
41
        BzrDir,
 
42
        format_registry,
 
43
        )
 
44
    ControlDir = BzrDir
33
45
 
34
46
 
35
47
class GitLock(object):
69
81
            self._lock_warner = LockWarner(repr(self))
70
82
 
71
83
 
72
 
class GitDir(bzrdir.BzrDir):
 
84
class GitDirConfig(object):
 
85
 
 
86
    def get_default_stack_on(self):
 
87
        return None
 
88
 
 
89
    def set_default_stack_on(self, value):
 
90
        raise bzr_errors.BzrError("Cannot set configuration")
 
91
 
 
92
 
 
93
class GitDir(ControlDir):
73
94
    """An adapter to the '.git' dir used by git."""
74
95
 
75
96
    def is_supported(self):
76
97
        return True
77
98
 
 
99
    def can_convert_format(self):
 
100
        return False
 
101
 
 
102
    def break_lock(self):
 
103
        pass
 
104
 
78
105
    def cloning_metadir(self, stacked=False):
79
 
        return bzrdir.format_registry.make_bzrdir("default")
 
106
        return format_registry.make_bzrdir("default")
80
107
 
81
108
    def _branch_name_to_ref(self, name):
82
109
        raise NotImplementedError(self._branch_name_to_ref)
83
110
 
84
111
    if bzrlib_version >= (2, 2):
85
 
        def open_branch(self, name=None, ignore_fallbacks=None,
86
 
            unsupported=False):
 
112
        def open_branch(self, name=None, unsupported=False, 
 
113
            ignore_fallbacks=None):
87
114
            return self._open_branch(name=name,
88
115
                ignore_fallbacks=ignore_fallbacks, unsupported=unsupported)
89
116
    else:
91
118
            return self._open_branch(name=None,
92
119
                ignore_fallbacks=ignore_fallbacks, unsupported=unsupported)
93
120
 
 
121
    def get_config(self):
 
122
        return GitDirConfig()
 
123
 
94
124
 
95
125
class LocalGitDir(GitDir):
96
126
    """An adapter to the '.git' dir used by git."""
101
131
 
102
132
    _gitrepository_class = property(_get_gitrepository_class)
103
133
 
 
134
    @property
 
135
    def user_transport(self):
 
136
        return self.root_transport
 
137
 
 
138
    @property
 
139
    def control_transport(self):
 
140
        return self.transport
 
141
 
104
142
    def __init__(self, transport, lockfiles, gitrepo, format):
105
143
        self._format = format
106
144
        self.root_transport = transport
 
145
        self._mode_check_done = False
107
146
        self._git = gitrepo
108
147
        if gitrepo.bare:
109
148
            self.transport = transport
125
164
    def is_control_filename(self, filename):
126
165
        return filename == '.git' or filename.startswith('.git/')
127
166
 
128
 
    def get_branch_transport(self, branch_format, name):
 
167
    def get_branch_transport(self, branch_format, name=None):
129
168
        if branch_format is None:
130
169
            return self.transport
131
 
        if isinstance(branch_format, LocalGitBzrDirFormat):
 
170
        if isinstance(branch_format, LocalGitControlDirFormat):
132
171
            return self.transport
133
172
        raise bzr_errors.IncompatibleFormat(branch_format, self._format)
134
173
 
135
174
    def get_repository_transport(self, format):
136
175
        if format is None:
137
176
            return self.transport
138
 
        if isinstance(format, LocalGitBzrDirFormat):
 
177
        if isinstance(format, LocalGitControlDirFormat):
139
178
            return self.transport
140
179
        raise bzr_errors.IncompatibleFormat(format, self._format)
141
180
 
142
181
    def get_workingtree_transport(self, format):
143
182
        if format is None:
144
183
            return self.transport
145
 
        if isinstance(format, LocalGitBzrDirFormat):
 
184
        if isinstance(format, LocalGitControlDirFormat):
146
185
            return self.transport
147
186
        raise bzr_errors.IncompatibleFormat(format, self._format)
148
187
 
154
193
            self._lockfiles)
155
194
 
156
195
    def destroy_branch(self, name=None):
157
 
        del self._git.refs[self._branch_name_to_ref(name)]
 
196
        refname = self._branch_name_to_ref(name)
 
197
        if not refname in self._git.refs:
 
198
            raise bzr_errors.NotBranchError(self.root_transport.base,
 
199
                    bzrdir=self)
 
200
        del self._git.refs[refname]
 
201
 
 
202
    def destroy_repository(self):
 
203
        raise bzr_errors.UnsupportedOperation(self.destroy_repository, self)
 
204
 
 
205
    def destroy_workingtree(self):
 
206
        raise bzr_errors.UnsupportedOperation(self.destroy_workingtree, self)
 
207
 
 
208
    def needs_format_conversion(self, format=None):
 
209
        return not isinstance(self._format, format.__class__)
158
210
 
159
211
    def list_branches(self):
160
212
        ret = []
216
268
        finally:
217
269
            f.close()
218
270
        return self.open_workingtree()
 
271
 
 
272
    def find_repository(self):
 
273
        """Find the repository that should be used.
 
274
 
 
275
        This does not require a branch as we use it to find the repo for
 
276
        new branches as well as to hook existing branches up to their
 
277
        repository.
 
278
        """
 
279
        return self.open_repository()
 
280
 
 
281
    def _find_creation_modes(self):
 
282
        """Determine the appropriate modes for files and directories.
 
283
 
 
284
        They're always set to be consistent with the base directory,
 
285
        assuming that this transport allows setting modes.
 
286
        """
 
287
        # TODO: Do we need or want an option (maybe a config setting) to turn
 
288
        # this off or override it for particular locations? -- mbp 20080512
 
289
        if self._mode_check_done:
 
290
            return
 
291
        self._mode_check_done = True
 
292
        try:
 
293
            st = self.transport.stat('.')
 
294
        except TransportNotPossible:
 
295
            self._dir_mode = None
 
296
            self._file_mode = None
 
297
        else:
 
298
            # Check the directory mode, but also make sure the created
 
299
            # directories and files are read-write for this user. This is
 
300
            # mostly a workaround for filesystems which lie about being able to
 
301
            # write to a directory (cygwin & win32)
 
302
            if (st.st_mode & 07777 == 00000):
 
303
                # FTP allows stat but does not return dir/file modes
 
304
                self._dir_mode = None
 
305
                self._file_mode = None
 
306
            else:
 
307
                self._dir_mode = (st.st_mode & 07777) | 00700
 
308
                # Remove the sticky and execute bits for files
 
309
                self._file_mode = self._dir_mode & ~07111
 
310
 
 
311
    def _get_file_mode(self):
 
312
        """Return Unix mode for newly created files, or None.
 
313
        """
 
314
        if not self._mode_check_done:
 
315
            self._find_creation_modes()
 
316
        return self._file_mode
 
317
 
 
318
    def _get_dir_mode(self):
 
319
        """Return Unix mode for newly created directories, or None.
 
320
        """
 
321
        if not self._mode_check_done:
 
322
            self._find_creation_modes()
 
323
        return self._dir_mode
 
324
 
 
325