2015-12-10 17:19:38 -05:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2013-10-01 17:26:21 -04:00
|
|
|
package transform
|
|
|
|
|
|
|
|
import (
|
2015-03-17 19:36:48 -04:00
|
|
|
"bytes"
|
2015-01-30 14:39:06 -05:00
|
|
|
bp "github.com/spf13/hugo/bufferpool"
|
2015-03-17 19:36:48 -04:00
|
|
|
"io"
|
2013-10-01 17:26:21 -04:00
|
|
|
)
|
|
|
|
|
2015-03-18 20:55:49 -04:00
|
|
|
type trans func(rw contentTransformer)
|
2013-10-01 17:26:21 -04:00
|
|
|
|
2013-11-05 17:28:06 -05:00
|
|
|
type link trans
|
|
|
|
|
|
|
|
type chain []link
|
|
|
|
|
|
|
|
func NewChain(trs ...link) chain {
|
2013-11-01 01:14:11 -04:00
|
|
|
return trs
|
2013-10-01 17:26:21 -04:00
|
|
|
}
|
|
|
|
|
2014-01-03 18:36:53 -05:00
|
|
|
func NewEmptyTransforms() []link {
|
|
|
|
return make([]link, 0, 20)
|
|
|
|
}
|
|
|
|
|
2015-03-18 21:09:42 -04:00
|
|
|
// contentTransformer is an interface that enables rotation of pooled buffers
|
|
|
|
// in the transformer chain.
|
2015-03-18 20:55:49 -04:00
|
|
|
type contentTransformer interface {
|
2015-05-15 18:11:39 -04:00
|
|
|
Path() []byte
|
2015-03-17 19:36:48 -04:00
|
|
|
Content() []byte
|
|
|
|
io.Writer
|
|
|
|
}
|
|
|
|
|
2015-03-18 20:55:49 -04:00
|
|
|
// Implements contentTransformer
|
2015-03-18 21:09:42 -04:00
|
|
|
// Content is read from the from-buffer and rewritten to to the to-buffer.
|
2015-03-17 19:36:48 -04:00
|
|
|
type fromToBuffer struct {
|
2015-05-15 18:11:39 -04:00
|
|
|
path []byte
|
2015-03-17 19:36:48 -04:00
|
|
|
from *bytes.Buffer
|
|
|
|
to *bytes.Buffer
|
|
|
|
}
|
|
|
|
|
2015-05-15 18:11:39 -04:00
|
|
|
func (ft fromToBuffer) Path() []byte {
|
|
|
|
return ft.path
|
|
|
|
}
|
|
|
|
|
2015-03-17 19:36:48 -04:00
|
|
|
func (ft fromToBuffer) Write(p []byte) (n int, err error) {
|
|
|
|
return ft.to.Write(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ft fromToBuffer) Content() []byte {
|
|
|
|
return ft.from.Bytes()
|
|
|
|
}
|
2013-11-01 01:14:11 -04:00
|
|
|
|
2015-05-15 18:11:39 -04:00
|
|
|
func (c *chain) Apply(w io.Writer, r io.Reader, p []byte) error {
|
2015-03-17 19:36:48 -04:00
|
|
|
|
|
|
|
b1 := bp.GetBuffer()
|
|
|
|
defer bp.PutBuffer(b1)
|
|
|
|
|
|
|
|
b1.ReadFrom(r)
|
|
|
|
|
|
|
|
if len(*c) == 0 {
|
|
|
|
b1.WriteTo(w)
|
|
|
|
return nil
|
2013-10-01 17:26:21 -04:00
|
|
|
}
|
2015-03-17 19:36:48 -04:00
|
|
|
|
|
|
|
b2 := bp.GetBuffer()
|
|
|
|
defer bp.PutBuffer(b2)
|
|
|
|
|
2015-05-15 18:11:39 -04:00
|
|
|
fb := &fromToBuffer{path: p, from: b1, to: b2}
|
2015-03-17 19:36:48 -04:00
|
|
|
|
|
|
|
for i, tr := range *c {
|
|
|
|
if i > 0 {
|
|
|
|
if fb.from == b1 {
|
|
|
|
fb.from = b2
|
|
|
|
fb.to = b1
|
|
|
|
fb.to.Reset()
|
|
|
|
} else {
|
|
|
|
fb.from = b1
|
|
|
|
fb.to = b2
|
|
|
|
fb.to.Reset()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tr(fb)
|
|
|
|
}
|
|
|
|
|
|
|
|
fb.to.WriteTo(w)
|
|
|
|
return nil
|
2013-10-01 17:26:21 -04:00
|
|
|
}
|