5 Star 11 Fork 7

Gitee 极速下载/go-git

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/src-d/go-git
克隆/下载
encoder.go 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
package pktline
import (
"errors"
"fmt"
"strings"
)
var (
ErrOverflow = errors.New("unexpected string length (overflow)")
)
// Encoder implements a pkt-line format encoder
type Encoder struct {
lines []string
}
// NewEncoder returns a new Encoder
func NewEncoder() *Encoder {
return &Encoder{make([]string, 0)}
}
// AddLine encode and adds a line to the encoder
func (e *Encoder) AddLine(line string) error {
le, err := EncodeFromString(line + "\n")
if err != nil {
return err
}
e.lines = append(e.lines, le)
return nil
}
// AddFlush adds a flush-pkt to the encoder
func (e *Encoder) AddFlush() {
e.lines = append(e.lines, "0000")
}
// Reader returns a string.Reader over the encoder
func (e *Encoder) Reader() *strings.Reader {
data := strings.Join(e.lines, "")
return strings.NewReader(data)
}
// EncodeFromString encodes a string to pkt-line format
func EncodeFromString(line string) (string, error) {
return Encode([]byte(line))
}
// Encode encodes a byte slice to pkt-line format
func Encode(line []byte) (string, error) {
if line == nil {
return "0000", nil
}
l := len(line) + HeaderLength
if l > MaxLength {
return "", ErrOverflow
}
return fmt.Sprintf("%04x%s", l, line), nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/go-git.git
git@gitee.com:mirrors/go-git.git
mirrors
go-git
go-git
v3.0.1

搜索帮助

0d507c66 1850385 C8b1a773 1850385