1 Star 0 Fork 0

风的旋轮/iploc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
resource.go 843 Bytes
一键复制 编辑 原始数据 按行查看 历史
风的旋轮 提交于 2024-02-22 16:04 . first commit
package iploc
import (
"fmt"
"io"
)
type resReadCloser interface {
Read(b []byte) (n int, err error)
ReadAt(b []byte, off int64) (n int, err error)
Close() error
}
type resource struct {
data []byte
seek int64
}
func (res *resource) Read(b []byte) (n int, err error) {
if len(b) == 0 {
return
}
if max := len(res.data); len(b) > max {
b = b[:max]
}
n, err = res.ReadAt(b, res.seek)
res.seek += int64(n)
return
}
func (res *resource) ReadAt(b []byte, off int64) (n int, err error) {
if off < 0 {
return 0, fmt.Errorf("negative offset: %d", off)
} else if len(b) == 0 || off >= int64(len(res.data)) {
return 0, nil
}
copy(b, res.data[off:])
if int64(len(b))+off > int64(len(res.data)) {
return int(int64(len(res.data)) - off), io.EOF
}
return len(b), nil
}
func (res *resource) Close() error {
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fengdexuanlun/iploc.git
[email protected]:fengdexuanlun/iploc.git
fengdexuanlun
iploc
iploc
main

搜索帮助