代码拉取完成,页面将自动刷新
// Copyright 2017 Baliance. All rights reserved.
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased by contacting sales@baliance.com.
package zippkg
import (
"bytes"
"io"
)
// SelfClosingWriter wraps a writer and replaces XML tags of the
// type <foo></foo> with <foo/>
type SelfClosingWriter struct {
W io.Writer
}
var closeTag = []byte{'/', '>'}
func (s SelfClosingWriter) Write(b []byte) (int, error) {
writeStart := 0
n := 0
for i := 0; i < len(b)-2; i++ {
// found an empty tag "></"
// find the previous tag 'FOO' of '<FOO></FOO>'
if b[i] == '>' && b[i+1] == '<' && b[i+2] == '/' {
prevTag := []byte{}
et := i
for j := i; j >= 0; j-- {
if b[j] == ' ' {
et = j
} else if b[j] == '<' {
prevTag = b[j+1 : et]
break
}
}
nextTag := []byte{}
for j := i + 3; j < len(b); j++ {
if b[j] == '>' {
nextTag = b[i+3 : j]
break
}
}
// if previous and next tag are equal which catches cases of
// <a><b>foo</b></a>
if !bytes.Equal(prevTag, nextTag) {
continue
}
// write up to the start of the tag
c, err := s.W.Write(b[writeStart:i])
if err != nil {
return n + c, err
}
n += c
_, err = s.W.Write(closeTag)
if err != nil {
return n, err
}
// pretend we wrote close tag
n += 3
// skip over the remaining close tag
for j := i + 2; j < len(b) && b[j] != '>'; j++ {
n++
writeStart = j + 2
i = writeStart
}
}
}
c, err := s.W.Write(b[writeStart:])
return c + n, err
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。