~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/request.py

Add a NEWS entry and prepare submission.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 Canonical Ltd
 
1
# Copyright (C) 2006, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
31
31
# of a SmartServerRequest subclass.
32
32
 
33
33
 
 
34
import tempfile
34
35
import threading
35
36
 
36
37
from bzrlib import (
46
47
from bzrlib.lazy_import import lazy_import
47
48
lazy_import(globals(), """
48
49
from bzrlib.bundle import serializer
49
 
 
50
 
import tempfile
51
 
import thread
52
50
""")
53
51
 
54
52
 
135
133
        It will return a SmartServerResponse if the command does not expect a
136
134
        body.
137
135
 
138
 
        :param args: the arguments of the request.
 
136
        :param *args: the arguments of the request.
139
137
        """
140
138
        self._check_enabled()
141
139
        return self.do(*args)
293
291
        self._command = None
294
292
        if 'hpss' in debug.debug_flags:
295
293
            self._request_start_time = osutils.timer_func()
296
 
            self._thread_id = thread.get_ident()
 
294
            self._thread_id = threading.currentThread().get_ident()
297
295
 
298
296
    def _trace(self, action, message, extra_bytes=None, include_time=False):
299
297
        # It is a bit of a shame that this functionality overlaps with that of 
447
445
        return ('TokenMismatch', err.given_token, err.lock_token)
448
446
    elif isinstance(err, errors.LockContention):
449
447
        return ('LockContention',)
450
 
    elif isinstance(err, MemoryError):
451
 
        # GZ 2011-02-24: Copy bzrlib.trace -Dmem_dump functionality here?
452
 
        return ('MemoryError',)
453
448
    # Unserialisable error.  Log it, and return a generic error
454
449
    trace.log_exception_quietly()
455
 
    return ('error', trace._qualified_exception_name(err.__class__, True),
456
 
        str(err))
 
450
    return ('error', str(err))
457
451
 
458
452
 
459
453
class HelloRequest(SmartServerRequest):
506
500
    'Branch.set_tags_bytes', 'bzrlib.smart.branch',
507
501
    'SmartServerBranchSetTagsBytes')
508
502
request_handlers.register_lazy(
509
 
    'Branch.heads_to_fetch', 'bzrlib.smart.branch',
510
 
    'SmartServerBranchHeadsToFetch')
511
 
request_handlers.register_lazy(
512
503
    'Branch.get_stacked_on_url', 'bzrlib.smart.branch', 'SmartServerBranchRequestGetStackedOnURL')
513
504
request_handlers.register_lazy(
514
505
    'Branch.last_revision_info', 'bzrlib.smart.branch', 'SmartServerBranchRequestLastRevisionInfo')
518
509
    'bzrlib.smart.branch', 'SmartServerRequestRevisionHistory')
519
510
request_handlers.register_lazy( 'Branch.set_config_option',
520
511
    'bzrlib.smart.branch', 'SmartServerBranchRequestSetConfigOption')
521
 
request_handlers.register_lazy( 'Branch.set_config_option_dict',
522
 
    'bzrlib.smart.branch', 'SmartServerBranchRequestSetConfigOptionDict')
523
512
request_handlers.register_lazy( 'Branch.set_last_revision',
524
513
    'bzrlib.smart.branch', 'SmartServerBranchRequestSetLastRevision')
525
514
request_handlers.register_lazy(
571
560
    'BzrDir.open_branchV2', 'bzrlib.smart.bzrdir',
572
561
    'SmartServerRequestOpenBranchV2')
573
562
request_handlers.register_lazy(
574
 
    'BzrDir.open_branchV3', 'bzrlib.smart.bzrdir',
575
 
    'SmartServerRequestOpenBranchV3')
576
 
request_handlers.register_lazy(
577
563
    'delete', 'bzrlib.smart.vfs', 'DeleteRequest')
578
564
request_handlers.register_lazy(
579
565
    'get', 'bzrlib.smart.vfs', 'GetRequest')