1 Star 2 Fork 1

wx-fork/unioffice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
selfclosingwriter.go 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
Todd 提交于 2017-08-29 16:55 . schema: rework xsd:any handling
// 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
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wx-fork/unioffice.git
git@gitee.com:wx-fork/unioffice.git
wx-fork
unioffice
unioffice
v0.6.0

搜索帮助