rich_transport.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 "io"
  21. type RichTransport struct {
  22. TTransport
  23. }
  24. // Wraps Transport to provide TRichTransport interface
  25. func NewTRichTransport(trans TTransport) *RichTransport {
  26. return &RichTransport{trans}
  27. }
  28. func (r *RichTransport) ReadByte() (c byte, err error) {
  29. return readByte(r.TTransport)
  30. }
  31. func (r *RichTransport) WriteByte(c byte) error {
  32. return writeByte(r.TTransport, c)
  33. }
  34. func (r *RichTransport) WriteString(s string) (n int, err error) {
  35. return r.Write([]byte(s))
  36. }
  37. func (r *RichTransport) RemainingBytes() (num_bytes uint64) {
  38. return r.TTransport.RemainingBytes()
  39. }
  40. func readByte(r io.Reader) (c byte, err error) {
  41. v := [1]byte{0}
  42. n, err := r.Read(v[0:1])
  43. if n > 0 && (err == nil || err == io.EOF) {
  44. return v[0], nil
  45. }
  46. if n > 0 && err != nil {
  47. return v[0], err
  48. }
  49. if err != nil {
  50. return 0, err
  51. }
  52. return v[0], nil
  53. }
  54. func writeByte(w io.Writer, c byte) error {
  55. v := [1]byte{c}
  56. _, err := w.Write(v[0:1])
  57. return err
  58. }