rich_transport.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package thrift
  20. import (
  21. "errors"
  22. "io"
  23. )
  24. type RichTransport struct {
  25. TTransport
  26. }
  27. // Wraps Transport to provide TRichTransport interface
  28. func NewTRichTransport(trans TTransport) *RichTransport {
  29. return &RichTransport{trans}
  30. }
  31. func (r *RichTransport) ReadByte() (c byte, err error) {
  32. return readByte(r.TTransport)
  33. }
  34. func (r *RichTransport) WriteByte(c byte) error {
  35. return writeByte(r.TTransport, c)
  36. }
  37. func (r *RichTransport) WriteString(s string) (n int, err error) {
  38. return r.Write([]byte(s))
  39. }
  40. func (r *RichTransport) RemainingBytes() (num_bytes uint64) {
  41. return r.TTransport.RemainingBytes()
  42. }
  43. func readByte(r io.Reader) (c byte, err error) {
  44. v := [1]byte{0}
  45. n, err := r.Read(v[0:1])
  46. if n > 0 && (err == nil || errors.Is(err, io.EOF)) {
  47. return v[0], nil
  48. }
  49. if n > 0 && err != nil {
  50. return v[0], err
  51. }
  52. if err != nil {
  53. return 0, err
  54. }
  55. return v[0], nil
  56. }
  57. func writeByte(w io.Writer, c byte) error {
  58. v := [1]byte{c}
  59. _, err := w.Write(v[0:1])
  60. return err
  61. }