buffer.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. // Copyright (c) 2016 Uber Technologies, Inc.
  2. //
  3. // Permission is hereby granted, free of charge, to any person obtaining a copy
  4. // of this software and associated documentation files (the "Software"), to deal
  5. // in the Software without restriction, including without limitation the rights
  6. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. // copies of the Software, and to permit persons to whom the Software is
  8. // furnished to do so, subject to the following conditions:
  9. //
  10. // The above copyright notice and this permission notice shall be included in
  11. // all copies or substantial portions of the Software.
  12. //
  13. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. // THE SOFTWARE.
  20. // Package buffer provides a thin wrapper around a byte slice. Unlike the
  21. // standard library's bytes.Buffer, it supports a portion of the strconv
  22. // package's zero-allocation formatters.
  23. package buffer // import "go.uber.org/zap/buffer"
  24. import "strconv"
  25. const _size = 1024 // by default, create 1 KiB buffers
  26. // Buffer is a thin wrapper around a byte slice. It's intended to be pooled, so
  27. // the only way to construct one is via a Pool.
  28. type Buffer struct {
  29. bs []byte
  30. pool Pool
  31. }
  32. // AppendByte writes a single byte to the Buffer.
  33. func (b *Buffer) AppendByte(v byte) {
  34. b.bs = append(b.bs, v)
  35. }
  36. // AppendString writes a string to the Buffer.
  37. func (b *Buffer) AppendString(s string) {
  38. b.bs = append(b.bs, s...)
  39. }
  40. // AppendInt appends an integer to the underlying buffer (assuming base 10).
  41. func (b *Buffer) AppendInt(i int64) {
  42. b.bs = strconv.AppendInt(b.bs, i, 10)
  43. }
  44. // AppendUint appends an unsigned integer to the underlying buffer (assuming
  45. // base 10).
  46. func (b *Buffer) AppendUint(i uint64) {
  47. b.bs = strconv.AppendUint(b.bs, i, 10)
  48. }
  49. // AppendBool appends a bool to the underlying buffer.
  50. func (b *Buffer) AppendBool(v bool) {
  51. b.bs = strconv.AppendBool(b.bs, v)
  52. }
  53. // AppendFloat appends a float to the underlying buffer. It doesn't quote NaN
  54. // or +/- Inf.
  55. func (b *Buffer) AppendFloat(f float64, bitSize int) {
  56. b.bs = strconv.AppendFloat(b.bs, f, 'f', -1, bitSize)
  57. }
  58. // Len returns the length of the underlying byte slice.
  59. func (b *Buffer) Len() int {
  60. return len(b.bs)
  61. }
  62. // Cap returns the capacity of the underlying byte slice.
  63. func (b *Buffer) Cap() int {
  64. return cap(b.bs)
  65. }
  66. // Bytes returns a mutable reference to the underlying byte slice.
  67. func (b *Buffer) Bytes() []byte {
  68. return b.bs
  69. }
  70. // String returns a string copy of the underlying byte slice.
  71. func (b *Buffer) String() string {
  72. return string(b.bs)
  73. }
  74. // Reset resets the underlying byte slice. Subsequent writes re-use the slice's
  75. // backing array.
  76. func (b *Buffer) Reset() {
  77. b.bs = b.bs[:0]
  78. }
  79. // Write implements io.Writer.
  80. func (b *Buffer) Write(bs []byte) (int, error) {
  81. b.bs = append(b.bs, bs...)
  82. return len(bs), nil
  83. }
  84. // TrimNewline trims any final "\n" byte from the end of the buffer.
  85. func (b *Buffer) TrimNewline() {
  86. if i := len(b.bs) - 1; i >= 0 {
  87. if b.bs[i] == '\n' {
  88. b.bs = b.bs[:i]
  89. }
  90. }
  91. }
  92. // Free returns the Buffer to its Pool.
  93. //
  94. // Callers must not retain references to the Buffer after calling Free.
  95. func (b *Buffer) Free() {
  96. b.pool.put(b)
  97. }