mirror of
https://gitee.com/johng/gf
synced 2026-06-06 02:25:47 +08:00
fix: disable specific staticcheck rules and update lint config - Disabled staticcheck rules SA1029, SA1019, S1000, and related checks in `.golangci.yml` to filter out unwanted linter errors. - Updated staticcheck checks list for more precise linting control. - Clarified configuration for easier maintenance and future updates. --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: hailaz <739476267@qq.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
60 lines
1.4 KiB
Go
60 lines
1.4 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// Package gcompress provides kinds of compression algorithms for binary/bytes data.
|
|
package gcompress
|
|
|
|
import (
|
|
"bytes"
|
|
"compress/zlib"
|
|
"io"
|
|
|
|
"github.com/gogf/gf/v2/errors/gerror"
|
|
)
|
|
|
|
// Zlib compresses `data` with zlib algorithm.
|
|
func Zlib(data []byte) ([]byte, error) {
|
|
if len(data) < 13 {
|
|
return data, nil
|
|
}
|
|
var (
|
|
err error
|
|
in bytes.Buffer
|
|
writer = zlib.NewWriter(&in)
|
|
)
|
|
|
|
if _, err = writer.Write(data); err != nil {
|
|
err = gerror.Wrapf(err, `zlib.Writer.Write failed`)
|
|
return nil, err
|
|
}
|
|
if err = writer.Close(); err != nil {
|
|
err = gerror.Wrapf(err, `zlib.Writer.Close failed`)
|
|
return in.Bytes(), err
|
|
}
|
|
return in.Bytes(), nil
|
|
}
|
|
|
|
// UnZlib decompresses `data` with zlib algorithm.
|
|
func UnZlib(data []byte) ([]byte, error) {
|
|
if len(data) < 13 {
|
|
return data, nil
|
|
}
|
|
var (
|
|
out bytes.Buffer
|
|
bytesReader = bytes.NewReader(data)
|
|
zlibReader, err = zlib.NewReader(bytesReader)
|
|
)
|
|
if err != nil {
|
|
err = gerror.Wrapf(err, `zlib.NewReader failed`)
|
|
return nil, err
|
|
}
|
|
if _, err = io.Copy(&out, zlibReader); err != nil {
|
|
err = gerror.Wrapf(err, `io.Copy failed`)
|
|
return nil, err
|
|
}
|
|
return out.Bytes(), nil
|
|
}
|