Files
LocalAI/pkg/xio/copy.go
T
mudler's LocalAI [bot]andEttore Di Giacinto 5072219829 feat(xio): make copy buffer size configurable (#11660)
* docs: design configurable copy buffering

Document the context-aware copy buffer option and its validation plan.

Assisted-by: Codex:gpt-5

* feat(xio): configure context copy buffer size

---------

Co-authored-by: Ettore Di Giacinto <mudler@localai.io>
2026-08-21 16:14:26 +02:00

44 lines
827 B
Go

package xio
import (
"context"
"io"
)
const defaultBufferSize = 1 << 20
type options struct {
bufferSize int
}
type Option func(*options)
func WithBufferSize(size int) Option {
return func(options *options) {
if size > 0 {
options.bufferSize = size
}
}
}
type readerFunc func(p []byte) (n int, err error)
func (rf readerFunc) Read(p []byte) (n int, err error) { return rf(p) }
func Copy(ctx context.Context, dst io.Writer, src io.Reader, opts ...Option) (int64, error) {
copyOptions := options{bufferSize: defaultBufferSize}
for _, option := range opts {
option(&copyOptions)
}
buffer := make([]byte, copyOptions.bufferSize)
return io.CopyBuffer(dst, readerFunc(func(p []byte) (int, error) {
select {
case <-ctx.Done():
return 0, ctx.Err()
default:
return src.Read(p)
}
}), buffer)
}