comparison mercurial/wireprotov2server.py @ 37725:3ea8323d6f95

wireprotov2: change command response protocol to include a leading map The error handling mechanism for the new wire protocol isn't very well-defined. This commit takes us a step in the right direction by introducing a leading CBOR map for command responses. This map will contain an overall result of the command. Currently, the map indicates whether the command was overall successful or if an error occurred. And if an error occurred, that error is present in the map. There is still a dedicated error frame. My intent is to use that for protocol-level errors and for errors that are encountered after the initial response frame has been sent. This will be clarified in a later commit. Differential Revision: https://phab.mercurial-scm.org/D3385
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 14 Apr 2018 15:19:36 -0700
parents deff7cf7eefd
children 0c184ca594bb
comparison
equal deleted inserted replaced
37724:deff7cf7eefd 37725:3ea8323d6f95
24 wireproto, 24 wireproto,
25 wireprotoframing, 25 wireprotoframing,
26 wireprototypes, 26 wireprototypes,
27 ) 27 )
28 28
29 FRAMINGTYPE = b'application/mercurial-exp-framing-0004' 29 FRAMINGTYPE = b'application/mercurial-exp-framing-0005'
30 30
31 HTTP_WIREPROTO_V2 = wireprototypes.HTTP_WIREPROTO_V2 31 HTTP_WIREPROTO_V2 = wireprototypes.HTTP_WIREPROTO_V2
32 32
33 def handlehttpv2request(rctx, req, res, checkperm, urlparts): 33 def handlehttpv2request(rctx, req, res, checkperm, urlparts):
34 from .hgweb import common as hgwebcommon 34 from .hgweb import common as hgwebcommon