mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-28 04:44:34 +02:00
ec2db4a727
<!-- Hi, thanks for contributing! Please make sure you read our CONTRIBUTING guide. Also, add tests and the respective documentation changes as well. --> <!-- If applied, this commit will... --> ... <!-- Why is this change being made? --> ... <!-- # Provide links to any relevant tickets, URLs or other resources --> ... --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
// Package targz implements the Archive interface providing tar.gz archiving
|
|
// and compression.
|
|
package targz
|
|
|
|
import (
|
|
"compress/gzip"
|
|
"io"
|
|
|
|
"github.com/goreleaser/goreleaser/v2/pkg/archive/tar"
|
|
"github.com/goreleaser/goreleaser/v2/pkg/config"
|
|
)
|
|
|
|
// Archive as tar.gz.
|
|
type Archive struct {
|
|
gw *gzip.Writer
|
|
tw *tar.Archive
|
|
}
|
|
|
|
// New tar.gz archive.
|
|
func New(target io.Writer) Archive {
|
|
// the error will be nil since the compression level is valid
|
|
gw, _ := gzip.NewWriterLevel(target, gzip.BestCompression)
|
|
tw := tar.New(gw)
|
|
return Archive{
|
|
gw: gw,
|
|
tw: &tw,
|
|
}
|
|
}
|
|
|
|
func Copying(source io.Reader, target io.Writer) (Archive, error) {
|
|
// the error will be nil since the compression level is valid
|
|
gw, _ := gzip.NewWriterLevel(target, gzip.BestCompression)
|
|
srcgz, err := gzip.NewReader(source)
|
|
if err != nil {
|
|
return Archive{}, err
|
|
}
|
|
tw, err := tar.Copying(srcgz, gw)
|
|
return Archive{
|
|
gw: gw,
|
|
tw: &tw,
|
|
}, err
|
|
}
|
|
|
|
// Close all closeables.
|
|
func (a Archive) Close() error {
|
|
if err := a.tw.Close(); err != nil {
|
|
return err
|
|
}
|
|
return a.gw.Close()
|
|
}
|
|
|
|
// Add file to the archive.
|
|
func (a Archive) Add(f config.File) error {
|
|
return a.tw.Add(f)
|
|
}
|