~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/request.py

  • Committer: Matt Nordhoff
  • Date: 2009-06-23 05:12:07 UTC
  • mto: This revision was merged to the branch mainline in revision 4474.
  • Revision ID: mnordhoff@mattnordhoff.com-20090623051207-fksdtbzkwtnrw9dd
Update _add_text docstrings that still referred to add_text.

Show diffs side-by-side

added added

removed removed

Lines of Context:
281
281
 
282
282
    def accept_body(self, bytes):
283
283
        """Accept body data."""
284
 
        if self._command is None:
285
 
            # no active command object, so ignore the event.
286
 
            return
287
284
        self._run_handler_code(self._command.do_chunk, (bytes,), {})
288
285
 
289
286
    def end_of_body(self):
347
344
        self._run_handler_code(self._command.execute, args, {})
348
345
 
349
346
    def end_received(self):
350
 
        if self._command is None:
351
 
            # no active command object, so ignore the event.
352
 
            return
353
347
        self._run_handler_code(self._command.do_end, (), {})
354
348
 
355
349
    def post_body_error_received(self, error_args):
364
358
        return ('FileExists', err.path)
365
359
    elif isinstance(err, errors.DirectoryNotEmpty):
366
360
        return ('DirectoryNotEmpty', err.path)
367
 
    elif isinstance(err, errors.IncompatibleRepositories):
368
 
        return ('IncompatibleRepositories', str(err.source), str(err.target),
369
 
            str(err.details))
370
361
    elif isinstance(err, errors.ShortReadvError):
371
362
        return ('ShortReadvError', err.path, str(err.offset), str(err.length),
372
363
                str(err.actual))
401
392
    elif isinstance(err, errors.TokenMismatch):
402
393
        return ('TokenMismatch', err.given_token, err.lock_token)
403
394
    elif isinstance(err, errors.LockContention):
404
 
        return ('LockContention',)
 
395
        return ('LockContention', err.lock, err.msg)
405
396
    # Unserialisable error.  Log it, and return a generic error
406
397
    trace.log_exception_quietly()
407
398
    return ('error', str(err))
454
445
    'Branch.get_tags_bytes', 'bzrlib.smart.branch',
455
446
    'SmartServerBranchGetTagsBytes')
456
447
request_handlers.register_lazy(
457
 
    'Branch.set_tags_bytes', 'bzrlib.smart.branch',
458
 
    'SmartServerBranchSetTagsBytes')
459
 
request_handlers.register_lazy(
460
448
    'Branch.get_stacked_on_url', 'bzrlib.smart.branch', 'SmartServerBranchRequestGetStackedOnURL')
461
449
request_handlers.register_lazy(
462
450
    'Branch.last_revision_info', 'bzrlib.smart.branch', 'SmartServerBranchRequestLastRevisionInfo')
504
492
    'BzrDirFormat.initialize', 'bzrlib.smart.bzrdir',
505
493
    'SmartServerRequestInitializeBzrDir')
506
494
request_handlers.register_lazy(
507
 
    'BzrDirFormat.initialize_ex_1.16', 'bzrlib.smart.bzrdir',
 
495
    'BzrDirFormat.initialize_ex', 'bzrlib.smart.bzrdir',
508
496
    'SmartServerRequestBzrDirInitializeEx')
509
497
request_handlers.register_lazy(
510
498
    'BzrDir.open', 'bzrlib.smart.bzrdir', 'SmartServerRequestOpenBzrDir')
556
544
request_handlers.register_lazy(
557
545
    'Repository.insert_stream', 'bzrlib.smart.repository', 'SmartServerRepositoryInsertStream')
558
546
request_handlers.register_lazy(
559
 
    'Repository.insert_stream_1.19', 'bzrlib.smart.repository', 'SmartServerRepositoryInsertStream_1_19')
560
 
request_handlers.register_lazy(
561
547
    'Repository.insert_stream_locked', 'bzrlib.smart.repository', 'SmartServerRepositoryInsertStreamLocked')
562
548
request_handlers.register_lazy(
563
549
    'Repository.is_shared', 'bzrlib.smart.repository', 'SmartServerRepositoryIsShared')
569
555
request_handlers.register_lazy(
570
556
    'Repository.unlock', 'bzrlib.smart.repository', 'SmartServerRepositoryUnlock')
571
557
request_handlers.register_lazy(
572
 
    'Repository.get_rev_id_for_revno', 'bzrlib.smart.repository',
573
 
    'SmartServerRepositoryGetRevIdForRevno')
574
 
request_handlers.register_lazy(
575
558
    'Repository.get_stream', 'bzrlib.smart.repository',
576
559
    'SmartServerRepositoryGetStream')
577
560
request_handlers.register_lazy(
578
 
    'Repository.get_stream_1.19', 'bzrlib.smart.repository',
579
 
    'SmartServerRepositoryGetStream_1_19')
580
 
request_handlers.register_lazy(
581
561
    'Repository.tarball', 'bzrlib.smart.repository',
582
562
    'SmartServerRepositoryTarball')
583
563
request_handlers.register_lazy(