~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2007-06-28 23:18:09 UTC
  • mfrom: (2562 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2566.
  • Revision ID: john@arbash-meinel.com-20070628231809-pqbt7puoqj8bl07b
[merge] bzr.dev 2562

Show diffs side-by-side

added added

removed removed

Lines of Context:
276
276
        """
277
277
        raise NotImplementedError(self.clone)
278
278
 
 
279
    def ensure_base(self):
 
280
        """Ensure that the directory this transport references exists.
 
281
 
 
282
        This will create a directory if it doesn't exist.
 
283
        :return: True if the directory was created, False otherwise.
 
284
        """
 
285
        # The default implementation just uses "Easier to ask for forgiveness
 
286
        # than permission". We attempt to create the directory, and just
 
287
        # suppress a FileExists exception.
 
288
        try:
 
289
            self.mkdir('.')
 
290
        except errors.FileExists:
 
291
            return False
 
292
        else:
 
293
            return True
 
294
 
279
295
    def should_cache(self):
280
296
        """Return True if the data pulled across should be cached locally.
281
297
        """
1185
1201
    def get_transport_test_permutations(self, module):
1186
1202
        """Get the permutations module wants to have tested."""
1187
1203
        if getattr(module, 'get_test_permutations', None) is None:
1188
 
            warning("transport module %s doesn't provide get_test_permutations()"
 
1204
            raise AssertionError("transport module %s doesn't provide get_test_permutations()"
1189
1205
                    % module.__name__)
 
1206
            ##warning("transport module %s doesn't provide get_test_permutations()"
 
1207
            ##       % module.__name__)
1190
1208
            return []
1191
1209
        return module.get_test_permutations()
1192
1210