~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/client.py

  • Committer: Matt Nordhoff
  • Date: 2009-04-04 02:50:01 UTC
  • mfrom: (4253 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4256.
  • Revision ID: mnordhoff@mattnordhoff.com-20090404025001-z1403k0tatmc8l91
Merge bzr.dev, fixing conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
import bzrlib
18
18
from bzrlib.smart import message, protocol
66
66
        params = CallHookParams(method, args, body, readv_body, self._medium)
67
67
        for hook in _SmartClient.hooks['call']:
68
68
            hook(params)
69
 
            
 
69
 
70
70
    def _call_and_read_response(self, method, args, body=None, readv_body=None,
71
71
            body_stream=None, expect_response_body=True):
72
72
        self._run_call_hooks(method, args, body, readv_body)
132
132
 
133
133
    def call_expecting_body(self, method, *args):
134
134
        """Call a method and return the result and the protocol object.
135
 
        
 
135
 
136
136
        The body can be read like so::
137
137
 
138
138
            result, smart_protocol = smart_client.call_expecting_body(...)
180
180
 
181
181
    def remote_path_from_transport(self, transport):
182
182
        """Convert transport into a path suitable for using in a request.
183
 
        
 
183
 
184
184
        Note that the resulting remote path doesn't encode the host name or
185
185
        anything but path, so it is only safe to use it in requests sent over
186
186
        the medium from the matching transport.
192
192
 
193
193
    def __init__(self):
194
194
        hooks.Hooks.__init__(self)
195
 
        self['call'] = []
196
 
 
197
 
        
 
195
        self.create_hook(hooks.HookPoint('call',
 
196
            "Called when the smart client is submitting a request to the "
 
197
            "smart server. Called with a bzrlib.smart.client.CallHookParams "
 
198
            "object. Streaming request bodies, and responses, are not "
 
199
            "accessible.", None, None))
 
200
 
 
201
 
198
202
_SmartClient.hooks = SmartClientHooks()
199
203
 
200
204
 
201
205
class CallHookParams(object):
202
 
    
 
206
 
203
207
    def __init__(self, method, args, body, readv_body, medium):
204
208
        self.method = method
205
209
        self.args = args