mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-22 04:08:49 +02:00
69c8a502db
* chore(deps): bump github.com/golangci/golangci-lint from 1.23.7 to 1.27.0 Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: tests Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
53 lines
1004 B
Go
53 lines
1004 B
Go
// Package gzip implements the Archive interface providing gz archiving
|
|
// and compression.
|
|
package gzip
|
|
|
|
import (
|
|
"compress/gzip"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
// Archive as gz.
|
|
type Archive struct {
|
|
gw *gzip.Writer
|
|
}
|
|
|
|
// Close all closeables.
|
|
func (a Archive) Close() error {
|
|
return a.gw.Close()
|
|
}
|
|
|
|
// New 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)
|
|
return Archive{
|
|
gw: gw,
|
|
}
|
|
}
|
|
|
|
// Add file to the archive.
|
|
func (a Archive) Add(name, path string) error {
|
|
if a.gw.Header.Name != "" {
|
|
return fmt.Errorf("gzip: failed to add %s, only one file can be archived in gz format", name)
|
|
}
|
|
file, err := os.Open(path) // #nosec
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
info, err := file.Stat()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if info.IsDir() {
|
|
return nil
|
|
}
|
|
a.gw.Header.Name = name
|
|
a.gw.Header.ModTime = info.ModTime()
|
|
_, err = io.Copy(a.gw, file)
|
|
return err
|
|
}
|