1 Star 0 Fork 0

h79/goutils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tarxz.go 818 Bytes
一键复制 编辑 原始数据 按行查看 历史
huqiuyun 提交于 2023-09-03 16:54 . build
// Package tarxz implements the Archive interface providing tar.xz archiving
// and compression.
package tarxz
import (
"gitee.com/h79/goutils/common/archive/tar"
fileconfig "gitee.com/h79/goutils/common/file/config"
"io"
"github.com/ulikunitz/xz"
)
// Archive as tar.xz.
type Archive struct {
xzw *xz.Writer
tw *tar.Archive
}
// New tar.xz archive.
func New(target io.Writer) Archive {
xzw, _ := xz.WriterConfig{DictCap: 16 * 1024 * 1024}.NewWriter(target)
tw := tar.New(xzw)
return Archive{
xzw: xzw,
tw: &tw,
}
}
// Close all closeables.
func (a Archive) Close() error {
if err := a.tw.Close(); err != nil {
return err
}
return a.xzw.Close()
}
// Add file to the archive.
func (a Archive) Add(f fileconfig.File, stream ...fileconfig.ReaderStream) error {
return a.tw.Add(f, stream...)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/h79/goutils.git
git@gitee.com:h79/goutils.git
h79
goutils
goutils
v1.9.9

搜索帮助