2015-12-02 21:27:29 +08:00
|
|
|
package operation
|
2012-07-30 08:36:25 +00:00
|
|
|
|
|
|
|
import (
|
2012-12-22 13:15:09 -08:00
|
|
|
"bytes"
|
|
|
|
"compress/flate"
|
|
|
|
"compress/gzip"
|
|
|
|
"io/ioutil"
|
|
|
|
"strings"
|
2014-10-26 11:34:55 -07:00
|
|
|
|
2016-06-02 18:09:14 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2012-07-30 08:36:25 +00:00
|
|
|
)
|
|
|
|
|
2012-12-22 13:15:09 -08:00
|
|
|
/*
|
|
|
|
* Default more not to gzip since gzip can be done on client side.
|
2013-02-26 22:54:22 -08:00
|
|
|
*/
|
2012-10-23 10:59:40 -07:00
|
|
|
func IsGzippable(ext, mtype string) bool {
|
2013-01-17 00:56:56 -08:00
|
|
|
if strings.HasPrefix(mtype, "text/") {
|
2013-01-17 00:15:09 -08:00
|
|
|
return true
|
|
|
|
}
|
2013-01-17 00:56:56 -08:00
|
|
|
switch ext {
|
|
|
|
case ".zip", ".rar", ".gz", ".bz2", ".xz":
|
|
|
|
return false
|
2014-07-08 09:32:55 -07:00
|
|
|
case ".pdf", ".txt", ".html", ".htm", ".css", ".js", ".json":
|
2012-12-22 13:15:09 -08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(mtype, "application/") {
|
2013-01-17 00:15:09 -08:00
|
|
|
if strings.HasSuffix(mtype, "xml") {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if strings.HasSuffix(mtype, "script") {
|
2012-12-22 13:15:09 -08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
2012-07-30 08:36:25 +00:00
|
|
|
}
|
2013-01-17 00:56:56 -08:00
|
|
|
|
|
|
|
func GzipData(input []byte) ([]byte, error) {
|
2012-12-22 13:15:09 -08:00
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
w, _ := gzip.NewWriterLevel(buf, flate.BestCompression)
|
|
|
|
if _, err := w.Write(input); err != nil {
|
2013-08-11 11:38:55 -07:00
|
|
|
glog.V(2).Infoln("error compressing data:", err)
|
2013-01-17 00:56:56 -08:00
|
|
|
return nil, err
|
2012-12-22 13:15:09 -08:00
|
|
|
}
|
|
|
|
if err := w.Close(); err != nil {
|
2013-08-11 11:38:55 -07:00
|
|
|
glog.V(2).Infoln("error closing compressed data:", err)
|
2013-01-17 00:56:56 -08:00
|
|
|
return nil, err
|
2012-12-22 13:15:09 -08:00
|
|
|
}
|
2013-01-17 00:56:56 -08:00
|
|
|
return buf.Bytes(), nil
|
2012-07-30 08:36:25 +00:00
|
|
|
}
|
2013-01-17 00:56:56 -08:00
|
|
|
func UnGzipData(input []byte) ([]byte, error) {
|
2012-12-22 13:15:09 -08:00
|
|
|
buf := bytes.NewBuffer(input)
|
|
|
|
r, _ := gzip.NewReader(buf)
|
|
|
|
defer r.Close()
|
|
|
|
output, err := ioutil.ReadAll(r)
|
|
|
|
if err != nil {
|
2013-08-11 11:38:55 -07:00
|
|
|
glog.V(2).Infoln("error uncompressing data:", err)
|
2012-12-22 13:15:09 -08:00
|
|
|
}
|
2013-01-17 00:56:56 -08:00
|
|
|
return output, err
|
2012-07-30 08:52:11 +00:00
|
|
|
}
|