encoding/base64 和 encoding/hex 都支持几乎相同的函数集,但base64
使用基于类的编码器,而 hex 导出顶层的方法。有没有一种简单的方法可以围绕十六进制创建一个包装器,以便您可以使用抽象的编码接口?更一般地说,有没有办法相当于将方法绑定到结构?(例如,SomeStruct.Encode = hex.Encode)
到目前为止,我必须在hexEncoder
结构上定义与函数具有相同签名的hex
函数。我创建了一个这样的界面:
type Encoding interface {
Decode(dst, src []byte) (n int, err error)
DecodedLen(n int) int
Encode(dst, src []byte) // base64 returns nothing, hex returns int
EncodedLen(n int) int
}
与 完美配合base64.StdEncoding
,但我不清楚如何包装十六进制方法。我为十六进制创建了一个空结构:
// wrap hex encoding/decoding so that it can be used interchangeably with base64 encoding
type hexEncoder struct {}
func (h hexEncoder) Decode(dst, src []byte) (n int, err error) {
return hex.Decode(dst, src)
}
func (h hexEncoder) DecodedLen(n int) int {
return hex.DecodedLen(n)
}
func (h hexEncoder) Encode(dst, src []byte) {
hex.Encode(dst, src) // don't return the int to match Encoding
}
func (h hexEncoder) EncodedLen(n int) int {
return hex.EncodedLen(n)
}
这行得通,但它是一堆额外的样板(真正需要包装的是hex.Encode
)。有一个更好的方法吗?最终,目标是能够将 hex 和 base64 与编码/解码互换使用,就像这样:
func convert(src []byte, decoder Encoding, encoder Encoding) ([]byte, error) {
temp := make([]byte, decoder.DecodedLen(len(src)))
n, err := decoder.Decode(temp, src)
if err != nil {
return temp, err
}
dst := make([]byte, encoder.EncodedLen(len(src)))
encoder.Encode(dst, temp[:n])
return dst, nil
}