This repository has been archived by the owner on Dec 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from maralla/develop
json protocol
- Loading branch information
Showing
3 changed files
with
306 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
from thriftpy.transport import TMemoryBuffer | ||
from thriftpy.thrift import TPayload, TType | ||
|
||
from thriftpy.protocol import TJSONProtocol | ||
|
||
import thriftpy.protocol.json_protocol as proto | ||
|
||
|
||
class TItem(TPayload): | ||
thrift_spec = { | ||
1: (TType.I32, "id"), | ||
2: (TType.LIST, "phones", (TType.STRING)), | ||
} | ||
default_spec = [("id", None), ("phones", None)] | ||
|
||
|
||
def test_map_to_obj(): | ||
val = [{"key": "ratio", "value": "0.618"}] | ||
spec = [TType.STRING, TType.DOUBLE] | ||
obj = proto.map_to_obj(val, spec) | ||
|
||
assert {"ratio": 0.618} == obj | ||
|
||
|
||
def test_map_to_json(): | ||
obj = {"ratio": 0.618} | ||
spec = [TType.STRING, TType.DOUBLE] | ||
json = proto.map_to_json(obj, spec) | ||
|
||
assert [{"key": "ratio", "value": "0.618"}] == json | ||
|
||
|
||
def test_list_to_obj(): | ||
val = [4, 8, 4, 12, 67] | ||
spec = TType.I32 | ||
obj = proto.list_to_obj(val, spec) | ||
|
||
assert [4, 8, 4, 12, 67] == obj | ||
|
||
|
||
def test_list_to_json(): | ||
val = [4, 8, 4, 12, 67] | ||
spec = TType.I32 | ||
json = proto.list_to_json(val, spec) | ||
|
||
assert [4, 8, 4, 12, 67] == json | ||
|
||
|
||
def test_struct_to_json(): | ||
obj = TItem(id=13, phones=["5234", "12346456"]) | ||
json = proto.struct_to_json(obj) | ||
|
||
assert {"id": 13, "phones": ["5234", "12346456"]} == json | ||
|
||
|
||
def test_struct_to_obj(): | ||
json = {"id": 13, "phones": ["5234", "12346456"]} | ||
obj = TItem() | ||
|
||
obj = proto.struct_to_obj(json, obj) | ||
|
||
assert obj.id == 13 and obj.phones == ["5234", "12346456"] | ||
|
||
|
||
def test_json_proto_api_write(): | ||
obj = TItem(id=13, phones=["5234", "12346456"]) | ||
trans = TMemoryBuffer() | ||
|
||
p = TJSONProtocol(trans) | ||
p.write_struct(obj) | ||
|
||
data = trans.getvalue().decode("utf-8") | ||
length = data[0:4] | ||
|
||
import json | ||
data = json.loads(data[4:]) | ||
|
||
assert length == "\x00\x00\x00S" and data == { | ||
"metadata": {"version": 1}, | ||
"payload": {"phones": ["5234", "12346456"], "id": 13}} | ||
|
||
|
||
def test_json_proto_api_read(): | ||
obj = TItem(id=13, phones=["5234", "12346456"]) | ||
trans = TMemoryBuffer() | ||
|
||
p = TJSONProtocol(trans) | ||
p.write_struct(obj) | ||
|
||
obj2 = TItem() | ||
obj2 = p.read_struct(obj2) | ||
|
||
assert obj.id == 13 and obj.phones == ["5234", "12346456"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
__all__ = ['TBinaryProtocol', 'TBinaryProtocolFactory', | ||
'TCyBinaryProtocol', 'TCyBinaryProtocolFactory'] | ||
'TCyBinaryProtocol', 'TCyBinaryProtocolFactory', | ||
'TJSONProtocol', 'TJSONProtocolFactory'] | ||
|
||
|
||
from .binary import TBinaryProtocol, TBinaryProtocolFactory | ||
from .cybin import TCyBinaryProtocol, TCyBinaryProtocolFactory | ||
from .json_protocol import TJSONProtocol, TJSONProtocolFactory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,210 @@ | ||
import json | ||
import struct | ||
from thriftpy.thrift import TType | ||
|
||
from .exc import TProtocolException | ||
|
||
INTEGER = (TType.BYTE, TType.I16, TType.I32, TType.I64) | ||
FLOAT = (TType.DOUBLE,) | ||
|
||
VERSION = 1 | ||
|
||
|
||
def json_value(ttype, val, spec=None): | ||
if ttype in INTEGER: | ||
return int(val) | ||
|
||
if ttype in FLOAT or ttype == TType.STRING: | ||
return str(val) | ||
|
||
if ttype == TType.BOOL: | ||
return True if val else False | ||
|
||
if ttype == TType.STRUCT: | ||
return struct_to_json(val) | ||
|
||
if ttype in (TType.SET, TType.LIST): | ||
return list_to_json(val, spec) | ||
|
||
if ttype == TType.MAP: | ||
return map_to_json(val, spec) | ||
|
||
|
||
def obj_value(ttype, val, spec=None): | ||
if ttype in INTEGER: | ||
return int(val) | ||
|
||
if ttype in FLOAT: | ||
return float(val) | ||
|
||
if ttype in (TType.STRING, TType.BOOL): | ||
return val | ||
|
||
if ttype == TType.STRUCT: | ||
return struct_to_obj(val, spec()) | ||
|
||
if ttype in (TType.SET, TType.LIST): | ||
return list_to_obj(val, spec) | ||
|
||
if ttype == TType.MAP: | ||
return map_to_obj(val, spec) | ||
|
||
|
||
def map_to_obj(val, spec): | ||
res = {} | ||
if isinstance(spec[0], int): | ||
key_type, key_spec = spec[0], None | ||
else: | ||
key_type, key_spec = spec[0] | ||
|
||
if isinstance(spec[1], int): | ||
value_type, value_spec = spec[1], None | ||
else: | ||
value_type, value_spec = spec[1] | ||
|
||
for v in val: | ||
res[obj_value(key_type, v["key"], key_spec)] = obj_value( | ||
value_type, v["value"], value_spec) | ||
|
||
return res | ||
|
||
|
||
def map_to_json(val, spec): | ||
res = [] | ||
if isinstance(spec[0], int): | ||
key_type = spec[0] | ||
key_spec = None | ||
else: | ||
key_type, key_spec = spec[0] | ||
|
||
if isinstance(spec[1], int): | ||
value_type = spec[1] | ||
value_spec = None | ||
else: | ||
value_type, value_spec = spec[1] | ||
|
||
for k, v in val.items(): | ||
res.append({"key": json_value(key_type, k, key_spec), | ||
"value": json_value(value_type, v, value_spec)}) | ||
|
||
return res | ||
|
||
|
||
def list_to_obj(val, spec): | ||
if isinstance(spec, tuple): | ||
elem_type, type_spec = spec | ||
else: | ||
elem_type, type_spec = spec, None | ||
|
||
return [obj_value(elem_type, i, type_spec) for i in val] | ||
|
||
|
||
def list_to_json(val, spec): | ||
if isinstance(spec, tuple): | ||
elem_type, type_spec = spec | ||
else: | ||
elem_type, type_spec = spec, None | ||
|
||
return [json_value(elem_type, i, type_spec) for i in val] | ||
|
||
|
||
def struct_to_json(val): | ||
outobj = {} | ||
for fid, field_spec in val.thrift_spec.items(): | ||
if len(field_spec) == 2: | ||
field_type, field_name = field_spec | ||
field_type_spec = None | ||
else: | ||
field_type, field_name, field_type_spec = field_spec | ||
|
||
v = getattr(val, field_name) | ||
if v is None: | ||
continue | ||
|
||
outobj[field_name] = json_value(field_type, v, field_type_spec) | ||
|
||
return outobj | ||
|
||
|
||
def struct_to_obj(val, obj): | ||
for fid, field_spec in obj.thrift_spec.items(): | ||
if len(field_spec) == 2: | ||
field_type, field_name = field_spec | ||
field_type_spec = None | ||
else: | ||
field_type, field_name, field_type_spec = field_spec | ||
|
||
if field_name in val: | ||
setattr(obj, field_name, | ||
obj_value(field_type, val[field_name], field_type_spec)) | ||
|
||
return obj | ||
|
||
|
||
class TJSONProtocol(object): | ||
"""A JSON protocol. | ||
The message in the transport are encoded as this: 4 bytes represents | ||
the length of the json object and immediately followed by the json object. | ||
'\x00\x00\x00+' '{"payload": {}, "metadata": {"version": 1}}' | ||
the 4 bytes are the bytes representation of an integer and is encoded in | ||
big-endian. | ||
""" | ||
def __init__(self, trans): | ||
self.trans = trans | ||
self._meta = {"version": VERSION} | ||
self._data = None | ||
|
||
def _write_len(self, x): | ||
self.trans.write(struct.pack('!I', int(x))) | ||
|
||
def _read_len(self): | ||
l = self.trans.read(4) | ||
return struct.unpack('!I', l)[0] | ||
|
||
def read_message_begin(self): | ||
size = self._read_len() | ||
self._data = json.loads(self.trans.read(size).decode("utf-8")) | ||
metadata = self._data["metadata"] | ||
|
||
version = int(metadata["version"]) | ||
if version != VERSION: | ||
raise TProtocolException( | ||
type=TProtocolException.BAD_VERSION, | ||
message="Bad version in read_message_begin:{}".format(version)) | ||
|
||
return metadata["name"], metadata["ttype"], metadata["seqid"] | ||
|
||
def read_message_end(self): | ||
pass | ||
|
||
def write_message_begin(self, name, ttype, seqid): | ||
self._meta.update({"name": name, "ttype": ttype, "seqid": seqid}) | ||
|
||
def write_message_end(self): | ||
pass | ||
|
||
def read_struct(self, obj): | ||
if not self._data: | ||
size = self._read_len() | ||
self._data = json.loads(self.trans.read(size).decode("utf-8")) | ||
|
||
res = struct_to_obj(self._data["payload"], obj) | ||
self._data = None | ||
return res | ||
|
||
def write_struct(self, obj): | ||
data = json.dumps({ | ||
"metadata": self._meta, | ||
"payload": struct_to_json(obj) | ||
}) | ||
|
||
self._write_len(len(data)) | ||
self.trans.write(data.encode("utf-8")) | ||
|
||
|
||
class TJSONProtocolFactory(object): | ||
def get_protocol(self, trans): | ||
return TJSONProtocol(trans) |