mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
Revert "THRIFT-3746 JSON protocol left in incorrect state on read errors"
This reverts commit 51850abb7e
.
This commit is contained in:
parent
8b0b7e5eb4
commit
3aa461b97b
@ -60,8 +60,7 @@ func NewTJSONProtocolFactory() *TJSONProtocolFactory {
|
||||
}
|
||||
|
||||
func (p *TJSONProtocol) WriteMessageBegin(name string, typeId TMessageType, seqId int32) error {
|
||||
p.resetContextStack()
|
||||
p.writer.Reset(p.trans)
|
||||
p.resetContextStack() // THRIFT-3735
|
||||
if e := p.OutputListBegin(); e != nil {
|
||||
return e
|
||||
}
|
||||
@ -204,17 +203,18 @@ func (p *TJSONProtocol) WriteBinary(v []byte) error {
|
||||
if e := p.OutputPreValue(); e != nil {
|
||||
return e
|
||||
}
|
||||
if _, e := p.writer.Write(JSON_QUOTE_BYTES); e != nil {
|
||||
if _, e := p.write(JSON_QUOTE_BYTES); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
writer := base64.NewEncoder(base64.StdEncoding, p.writer)
|
||||
if _, e := writer.Write(v); e != nil {
|
||||
p.writer.Reset(p.trans) // THRIFT-3735
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
if e := writer.Close(); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
if _, e := p.writer.Write(JSON_QUOTE_BYTES); e != nil {
|
||||
if _, e := p.write(JSON_QUOTE_BYTES); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
return p.OutputPostValue()
|
||||
@ -222,8 +222,7 @@ func (p *TJSONProtocol) WriteBinary(v []byte) error {
|
||||
|
||||
// Reading methods.
|
||||
func (p *TJSONProtocol) ReadMessageBegin() (name string, typeId TMessageType, seqId int32, err error) {
|
||||
p.resetContextStack()
|
||||
p.reader.Reset(p.trans)
|
||||
p.resetContextStack() // THRIFT-3735
|
||||
if isNull, err := p.ParseListBegin(); isNull || err != nil {
|
||||
return name, typeId, seqId, err
|
||||
}
|
||||
|
@ -156,8 +156,7 @@ func mismatch(expected, actual string) error {
|
||||
}
|
||||
|
||||
func (p *TSimpleJSONProtocol) WriteMessageBegin(name string, typeId TMessageType, seqId int32) error {
|
||||
p.resetContextStack()
|
||||
p.writer.Reset(p.trans)
|
||||
p.resetContextStack() // THRIFT-3735
|
||||
if e := p.OutputListBegin(); e != nil {
|
||||
return e
|
||||
}
|
||||
@ -271,17 +270,18 @@ func (p *TSimpleJSONProtocol) WriteBinary(v []byte) error {
|
||||
if e := p.OutputPreValue(); e != nil {
|
||||
return e
|
||||
}
|
||||
if _, e := p.writer.Write(JSON_QUOTE_BYTES); e != nil {
|
||||
if _, e := p.write(JSON_QUOTE_BYTES); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
writer := base64.NewEncoder(base64.StdEncoding, p.writer)
|
||||
if _, e := writer.Write(v); e != nil {
|
||||
p.writer.Reset(p.trans) // THRIFT-3735
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
if e := writer.Close(); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
if _, e := p.writer.Write(JSON_QUOTE_BYTES); e != nil {
|
||||
if _, e := p.write(JSON_QUOTE_BYTES); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
return p.OutputPostValue()
|
||||
@ -289,8 +289,7 @@ func (p *TSimpleJSONProtocol) WriteBinary(v []byte) error {
|
||||
|
||||
// Reading methods.
|
||||
func (p *TSimpleJSONProtocol) ReadMessageBegin() (name string, typeId TMessageType, seqId int32, err error) {
|
||||
p.resetContextStack()
|
||||
p.reader.Reset(p.trans)
|
||||
p.resetContextStack() // THRIFT-3735
|
||||
if isNull, err := p.ParseListBegin(); isNull || err != nil {
|
||||
return name, typeId, seqId, err
|
||||
}
|
||||
@ -569,12 +568,12 @@ func (p *TSimpleJSONProtocol) OutputPreValue() error {
|
||||
cxt := _ParseContext(p.dumpContext[len(p.dumpContext)-1])
|
||||
switch cxt {
|
||||
case _CONTEXT_IN_LIST, _CONTEXT_IN_OBJECT_NEXT_KEY:
|
||||
if _, e := p.writer.Write(JSON_COMMA); e != nil {
|
||||
if _, e := p.write(JSON_COMMA); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
break
|
||||
case _CONTEXT_IN_OBJECT_NEXT_VALUE:
|
||||
if _, e := p.writer.Write(JSON_COLON); e != nil {
|
||||
if _, e := p.write(JSON_COLON); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
break
|
||||
@ -630,7 +629,7 @@ func (p *TSimpleJSONProtocol) OutputNull() error {
|
||||
if e := p.OutputPreValue(); e != nil {
|
||||
return e
|
||||
}
|
||||
if _, e := p.writer.Write(JSON_NULL); e != nil {
|
||||
if _, e := p.write(JSON_NULL); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
return p.OutputPostValue()
|
||||
@ -688,7 +687,7 @@ func (p *TSimpleJSONProtocol) OutputString(s string) error {
|
||||
}
|
||||
|
||||
func (p *TSimpleJSONProtocol) OutputStringData(s string) error {
|
||||
_, e := p.writer.Write([]byte(s))
|
||||
_, e := p.write([]byte(s))
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
|
||||
@ -696,7 +695,7 @@ func (p *TSimpleJSONProtocol) OutputObjectBegin() error {
|
||||
if e := p.OutputPreValue(); e != nil {
|
||||
return e
|
||||
}
|
||||
if _, e := p.writer.Write(JSON_LBRACE); e != nil {
|
||||
if _, e := p.write(JSON_LBRACE); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
p.dumpContext = append(p.dumpContext, int(_CONTEXT_IN_OBJECT_FIRST))
|
||||
@ -704,7 +703,7 @@ func (p *TSimpleJSONProtocol) OutputObjectBegin() error {
|
||||
}
|
||||
|
||||
func (p *TSimpleJSONProtocol) OutputObjectEnd() error {
|
||||
if _, e := p.writer.Write(JSON_RBRACE); e != nil {
|
||||
if _, e := p.write(JSON_RBRACE); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
p.dumpContext = p.dumpContext[:len(p.dumpContext)-1]
|
||||
@ -718,7 +717,7 @@ func (p *TSimpleJSONProtocol) OutputListBegin() error {
|
||||
if e := p.OutputPreValue(); e != nil {
|
||||
return e
|
||||
}
|
||||
if _, e := p.writer.Write(JSON_LBRACKET); e != nil {
|
||||
if _, e := p.write(JSON_LBRACKET); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
p.dumpContext = append(p.dumpContext, int(_CONTEXT_IN_LIST_FIRST))
|
||||
@ -726,7 +725,7 @@ func (p *TSimpleJSONProtocol) OutputListBegin() error {
|
||||
}
|
||||
|
||||
func (p *TSimpleJSONProtocol) OutputListEnd() error {
|
||||
if _, e := p.writer.Write(JSON_RBRACKET); e != nil {
|
||||
if _, e := p.write(JSON_RBRACKET); e != nil {
|
||||
return NewTProtocolException(e)
|
||||
}
|
||||
p.dumpContext = p.dumpContext[:len(p.dumpContext)-1]
|
||||
@ -1328,3 +1327,11 @@ func (p *TSimpleJSONProtocol) resetContextStack() {
|
||||
p.parseContextStack = []int{int(_CONTEXT_IN_TOPLEVEL)}
|
||||
p.dumpContext = []int{int(_CONTEXT_IN_TOPLEVEL)}
|
||||
}
|
||||
|
||||
func (p *TSimpleJSONProtocol) write(b []byte) (int, error) {
|
||||
n, err := p.writer.Write(b)
|
||||
if err != nil {
|
||||
p.writer.Reset(p.trans) // THRIFT-3735
|
||||
}
|
||||
return n, err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user