mirror of
https://github.com/nabbar/golib.git
synced 2025-09-27 04:06:05 +08:00

- refactor package to allow closer for bytes.Buffer, bufio.Reader, bufio.Writer, bufio.ReadWriter - implement ReadFrom, WriterTo, StringWriter, ReadRune, ReadByte, WriteByte - allow specify a custom close function, called in close statement - add NewBuffer (New declare as deprecated), NewReader, NewWriter, NewReadWriter to each types bytes / bufio - remove call of Reset in close for ReadWriter: ambigous function (ambigous in bufio struct) Package Static: - replace BufferReadCloser New function to NewBuffer Other: - bump dependencies
79 lines
1.9 KiB
Go
79 lines
1.9 KiB
Go
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2020 Nicolas JUHEL
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
package bufferReadCloser
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
)
|
|
|
|
type buf struct {
|
|
b *bytes.Buffer
|
|
f FuncClose
|
|
}
|
|
|
|
func (b *buf) Read(p []byte) (n int, err error) {
|
|
return b.b.Read(p)
|
|
}
|
|
|
|
func (b *buf) ReadFrom(r io.Reader) (n int64, err error) {
|
|
return b.b.ReadFrom(r)
|
|
}
|
|
|
|
func (b *buf) ReadByte() (byte, error) {
|
|
return b.b.ReadByte()
|
|
}
|
|
|
|
func (b *buf) ReadRune() (r rune, size int, err error) {
|
|
return b.b.ReadRune()
|
|
}
|
|
|
|
func (b *buf) Write(p []byte) (n int, err error) {
|
|
return b.b.Write(p)
|
|
}
|
|
|
|
func (b *buf) WriteString(s string) (n int, err error) {
|
|
return b.b.WriteString(s)
|
|
}
|
|
|
|
func (b *buf) WriteTo(w io.Writer) (n int64, err error) {
|
|
return b.b.WriteTo(w)
|
|
}
|
|
|
|
func (b *buf) WriteByte(c byte) error {
|
|
return b.b.WriteByte(c)
|
|
}
|
|
|
|
func (b *buf) Close() error {
|
|
b.b.Reset()
|
|
|
|
if b.f != nil {
|
|
return b.f()
|
|
}
|
|
|
|
return nil
|
|
}
|