Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit dfddf9e

Browse files
committed
populate request transport headers
1 parent c558d66 commit dfddf9e

File tree

7 files changed

+110
-40
lines changed

7 files changed

+110
-40
lines changed

tchannel/request.py

+51
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,61 @@
22
absolute_import, division, print_function, unicode_literals
33
)
44

5+
from . import schemes
6+
7+
__all__ = ['Request']
8+
59

610
class Request(object):
11+
"""TChannel Request"""
12+
13+
# TODO move over other props from tchannel.tornado.request
14+
15+
__slots__ = (
16+
'body',
17+
'headers',
18+
'transport'
19+
)
720

821
def __init__(self, body=None, headers=None, transport=None):
922
self.body = body
1023
self.headers = headers
1124
self.transport = transport
25+
26+
27+
class TransportHeaders(object):
28+
"""Request Transport Headers"""
29+
30+
# TODO implement __repr__
31+
# TODO retry_flags should be woke up past a string
32+
33+
__slots__ = (
34+
'caller_name',
35+
'claim_at_start',
36+
'claim_at_finish',
37+
'failure_domain',
38+
'retry_flags',
39+
'scheme',
40+
'speculative_exe',
41+
)
42+
43+
def __init__(self,
44+
caller_name=None,
45+
claim_at_start=None,
46+
claim_at_finish=None,
47+
failure_domain=None,
48+
retry_flags=None,
49+
scheme=None,
50+
speculative_exe=None,
51+
**kwargs):
52+
53+
if scheme is None:
54+
scheme = schemes.RAW
55+
56+
self.caller_name = caller_name
57+
self.claim_at_start = claim_at_start
58+
self.claim_at_finish = claim_at_finish
59+
self.failure_domain = failure_domain
60+
self.retry_flags = retry_flags
61+
self.scheme = scheme
62+
self.speculative_exe = speculative_exe

tchannel/response.py

+40-6
Original file line numberDiff line numberDiff line change
@@ -22,26 +22,60 @@
2222
absolute_import, division, print_function, unicode_literals
2323
)
2424

25-
from . import transport
25+
from . import schemes
2626

2727
__all__ = ['Response']
2828

2929

3030
class Response(object):
31+
"""TChannel Response"""
3132

32-
# TODO add __slots__
3333
# TODO implement __repr__
3434

35+
__slots__ = (
36+
'body',
37+
'headers',
38+
'transport',
39+
)
40+
3541
def __init__(self, body=None, headers=None, transport=None):
3642
self.body = body
3743
self.headers = headers
3844
self.transport = transport
3945

4046

41-
class ResponseTransportHeaders(transport.TransportHeaders):
47+
class ResponseTransportHeaders(object):
48+
"""Response-specific Transport Headers"""
4249

43-
# TODO add __slots__
4450
# TODO implement __repr__
4551

46-
"""Response-specific Transport Headers"""
47-
pass
52+
__slots__ = (
53+
'failure_domain',
54+
'scheme',
55+
)
56+
57+
def __init__(self,
58+
failure_domain=None,
59+
scheme=None,
60+
**kwargs):
61+
62+
if scheme is None:
63+
scheme = schemes.RAW
64+
65+
self.failure_domain = failure_domain
66+
self.scheme = scheme
67+
68+
69+
def response_from_mixed(mixed):
70+
"""Create Response from mixed input."""
71+
72+
# if none then give empty Response
73+
if mixed is None:
74+
return Response()
75+
76+
# if not Response, then treat like body
77+
if not isinstance(mixed, Response):
78+
return Response(mixed)
79+
80+
# it's already a Response
81+
return mixed

tchannel/thrift/server.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
from tornado import gen
2727

28-
from tchannel import Response
28+
from tchannel.response import Response, response_from_mixed
2929
from tchannel.tornado.request import TransportMetadata
3030
from tchannel.tornado.response import StatusCode
3131

@@ -113,15 +113,7 @@ def handler(request):
113113
except Exception:
114114
result.write_exc_info(sys.exc_info())
115115
else:
116-
# TODO dont duplicate in dispatcher
117-
# if no return then use empty response
118-
if response is None:
119-
response = Response()
120-
121-
# if not a response, then it's just the body, create resp
122-
if not isinstance(response, Response):
123-
response = Response(response)
124-
116+
response = response_from_mixed(response)
125117
result.write_result(response.body)
126118

127119
response.body = result.result

tchannel/tornado/dispatch.py

+13-10
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
import tornado.gen
2929
from tornado import gen
3030

31-
from tchannel import Request, Response
31+
from tchannel import transport
32+
from tchannel.request import Request, TransportHeaders
33+
from tchannel.response import response_from_mixed
3234
from ..errors import InvalidEndpointError
3335
from ..errors import TChannelError
3436
from ..event import EventType
@@ -164,27 +166,28 @@ def handle_call(self, request, connection):
164166
connection.post_response(response)
165167

166168
try:
167-
168169
# New impl - the handler takes a request and returns a response
169170
if self._handler_returns_response:
170171

171172
# convert deprecated req to new top-level req
172173
b = yield request.get_body()
173174
he = yield request.get_header()
174-
new_req = Request(b, he)
175+
t = request.headers
176+
t = transport.to_kwargs(t)
177+
t = TransportHeaders(**t)
178+
new_req = Request(
179+
body=b,
180+
headers=he,
181+
transport=t,
182+
)
175183

176184
# get new top-level resp from controller
177185
new_resp = yield gen.maybe_future(
178186
handler.endpoint(new_req)
179187
)
180188

181-
# if no return then use empty response
182-
if new_resp is None:
183-
new_resp = Response()
184-
185-
# if not a response, then it's just the body, create resp
186-
if not isinstance(new_resp, Response):
187-
new_resp = Response(new_resp)
189+
# instantiate a tchannel.Response
190+
new_resp = response_from_mixed(new_resp)
188191

189192
# assign resp values to dep response
190193
response.write_header(new_resp.headers)

tchannel/tornado/request.py

+2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ class Request(object):
4444
This is going to hide the protocol level message information.
4545
"""
4646

47+
# TODO deprecate in favor of top-level tchannel.Request
4748
# TODO decide which elements inside "message" object to expose to user.
49+
4850
def __init__(
4951
self,
5052
id=None,

tchannel/tornado/tchannel.py

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@
6060
class TChannel(object):
6161
"""Manages inbound and outbound connections to various hosts."""
6262

63+
# TODO deprecate in favor of top-level tchannel.TChannel
64+
6365
FALLBACK = RequestDispatcher.FALLBACK
6466

6567
def __init__(self, name, hostport=None, process_name=None,

tchannel/transport.py

-14
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
absolute_import, division, print_function, unicode_literals
2323
)
2424

25-
from . import schemes
26-
2725
CALLER_NAME = "cn"
2826
CLAIM_AT_START = "cas"
2927
CLAIM_AT_FINISH = "caf"
@@ -47,15 +45,3 @@ def to_kwargs(data):
4745
args['speculative_exe'] = data.get(SPECULATIVE_EXE)
4846

4947
return args
50-
51-
52-
class TransportHeaders(object):
53-
"""Transport Headers common between Request & Response"""
54-
55-
def __init__(self, scheme=None, failure_domain=None, **kwargs):
56-
57-
if scheme is None:
58-
scheme = schemes.DEFAULT
59-
60-
self.scheme = scheme
61-
self.failure_domain = failure_domain

0 commit comments

Comments
 (0)