2019-07-01 06:07:58 +08:00
|
|
|
// Copyright 2015 Matthew Holt and The Caddy Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2019-06-14 01:20:43 +08:00
|
|
|
package caddyzstd
|
2019-06-11 00:21:25 +08:00
|
|
|
|
|
|
|
import (
|
2023-08-14 23:41:15 +08:00
|
|
|
"github.com/klauspost/compress/zstd"
|
|
|
|
|
2019-07-03 02:37:06 +08:00
|
|
|
"github.com/caddyserver/caddy/v2"
|
2019-08-22 00:46:35 +08:00
|
|
|
"github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
|
2019-07-03 02:37:06 +08:00
|
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp/encode"
|
2019-06-11 00:21:25 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-08-22 00:46:35 +08:00
|
|
|
caddy.RegisterModule(Zstd{})
|
2019-06-11 00:21:25 +08:00
|
|
|
}
|
|
|
|
|
2019-07-16 07:33:47 +08:00
|
|
|
// Zstd can create Zstandard encoders.
|
2019-06-11 00:21:25 +08:00
|
|
|
type Zstd struct{}
|
|
|
|
|
2019-08-22 00:46:35 +08:00
|
|
|
// CaddyModule returns the Caddy module information.
|
|
|
|
func (Zstd) CaddyModule() caddy.ModuleInfo {
|
|
|
|
return caddy.ModuleInfo{
|
2019-12-11 04:36:46 +08:00
|
|
|
ID: "http.encoders.zstd",
|
|
|
|
New: func() caddy.Module { return new(Zstd) },
|
2019-08-22 00:46:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-10 02:05:47 +08:00
|
|
|
// UnmarshalCaddyfile sets up the handler from Caddyfile tokens.
|
|
|
|
func (z *Zstd) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-30 06:57:55 +08:00
|
|
|
// AcceptEncoding returns the name of the encoding as
|
|
|
|
// used in the Accept-Encoding request headers.
|
|
|
|
func (Zstd) AcceptEncoding() string { return "zstd" }
|
|
|
|
|
2022-08-25 17:00:05 +08:00
|
|
|
// NewEncoder returns a new Zstandard writer.
|
2019-06-11 00:21:25 +08:00
|
|
|
func (z Zstd) NewEncoder() encode.Encoder {
|
2021-06-19 01:49:49 +08:00
|
|
|
// The default of 8MB for the window is
|
|
|
|
// too large for many clients, so we limit
|
|
|
|
// it to 128K to lighten their load.
|
|
|
|
writer, _ := zstd.NewWriter(nil, zstd.WithWindowSize(128<<10), zstd.WithEncoderConcurrency(1), zstd.WithZeroFrames(true))
|
2019-06-11 00:21:25 +08:00
|
|
|
return writer
|
|
|
|
}
|
2019-06-14 01:20:43 +08:00
|
|
|
|
2019-08-10 02:05:47 +08:00
|
|
|
// Interface guards
|
|
|
|
var (
|
|
|
|
_ encode.Encoding = (*Zstd)(nil)
|
|
|
|
_ caddyfile.Unmarshaler = (*Zstd)(nil)
|
|
|
|
)
|