支持序列化 xml 文件
This commit is contained in:
parent
77f0930081
commit
bfa244f97d
65
xml.go
Normal file
65
xml.go
Normal file
@ -0,0 +1,65 @@
|
||||
// Package serialize ...
|
||||
//
|
||||
// Description : serialize ...
|
||||
//
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 2024-10-23 17:51
|
||||
package serialize
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/xml"
|
||||
"io"
|
||||
)
|
||||
|
||||
type ownXml struct{}
|
||||
|
||||
func (o *ownXml) UnmarshalWithNumber(byteData []byte, receiver any) error {
|
||||
return xml.NewDecoder(bytes.NewReader(byteData)).Decode(receiver)
|
||||
}
|
||||
|
||||
func (o *ownXml) UnmarshalWithNumberIgnoreError(byteData []byte, receiver any) {
|
||||
_ = o.UnmarshalWithNumber(byteData, receiver)
|
||||
return
|
||||
}
|
||||
|
||||
func (o *ownXml) UnmarshalWithNumberForIOReader(ioReader io.ReadCloser, receiver any) error {
|
||||
return xml.NewDecoder(ioReader).Decode(receiver)
|
||||
}
|
||||
|
||||
func (o *ownXml) UnmarshalWithNumberForIOReaderIgnoreError(ioReader io.ReadCloser, receiver any) {
|
||||
_ = o.UnmarshalWithNumberForIOReader(ioReader, receiver)
|
||||
return
|
||||
}
|
||||
|
||||
func (o *ownXml) UnmarshalWithNumberForString(input string, receiver any) error {
|
||||
return o.UnmarshalWithNumber([]byte(input), receiver)
|
||||
}
|
||||
|
||||
func (o *ownXml) UnmarshalWithNumberForStringIgnoreError(input string, receiver any) {
|
||||
_ = o.UnmarshalWithNumberForString(input, receiver)
|
||||
return
|
||||
}
|
||||
|
||||
func (o *ownXml) MarshalForByte(input any) ([]byte, error) {
|
||||
return xml.Marshal(input)
|
||||
}
|
||||
|
||||
func (o *ownXml) MarshalForByteIgnoreError(input any) []byte {
|
||||
byteData, _ := o.MarshalForByte(input)
|
||||
return byteData
|
||||
}
|
||||
|
||||
func (o *ownXml) MarshalForString(input any) (string, error) {
|
||||
byteData, err := o.MarshalForByte(input)
|
||||
if nil != err {
|
||||
return "", err
|
||||
}
|
||||
return string(byteData), nil
|
||||
}
|
||||
|
||||
func (o *ownXml) MarshalForStringIgnoreError(input any) string {
|
||||
str, _ := o.MarshalForString(input)
|
||||
return str
|
||||
}
|
Loading…
Reference in New Issue
Block a user