Skip to content

Latest commit

 

History

History
203 lines (142 loc) · 2.99 KB

README.zh_CN.md

File metadata and controls

203 lines (142 loc) · 2.99 KB

English | 中文

gamf

最好用的、基于Go实现的、AMF序列化/反序列化开源库。

特性

  • 用法与json标准库类似
  • 灵活的自定义选项
  • 更好的兼容性,同时支持AMF0和AMF3

安装

go get github.com/gnolizuh/gamf

用法

Integer

AMF0

in := 1
bs, _ := Marshal(&in)

var out int
Unmarshal(bs, &out)

AMF3

var bs []byte
buf := bytes.NewBuffer(bs)

in := 1
NewEncoder().WithWriter(buf).Encode(&in)

var out int
NewDecoder().WithReader(buf).Decode(&out)

Float

AMF0

in := 1.0
bs, _ := Marshal(&in)

var out float64
Unmarshal(bs, &out)

AMF3

var bs []byte
buf := bytes.NewBuffer(bs)

in := 1
NewEncoder().WithWriter(buf).WithVersion(Version3).Encode(&in)

var out int
NewDecoder().WithReader(buf).WithVersion(Version3).Decode(&out)

String

AMF0

in := "1"
bs, _ := Marshal(&in)

var out string
Unmarshal(bs, &out)

AMF3

var bs []byte
buf := bytes.NewBuffer(bs)

in := "1"
NewEncoder().WithWriter(buf).WithVersion(Version3).Encode(&in)

var out string
NewDecoder().WithReader(buf).WithVersion(Version3).Decode(&out)

Bool

AMF0

in := "1"
bs, _ := Marshal(&in)

var out string
Unmarshal(bs, &out)

AMF3

var bs []byte
buf := bytes.NewBuffer(bs)

in := true
NewEncoder().WithWriter(buf).WithVersion(Version3).Encode(&in)

out := false
NewDecoder().WithReader(buf).WithVersion(Version3).Decode(&out)

Slice

AMF0

in := []int{1, 2, 3}
bs, _ := Marshal(&in)

var out []int
Unmarshal(bs, &out)

AMF3

var bs []byte
buf := bytes.NewBuffer(bs)

in := []any{1.0, "1", true, map[string]any{"Int": 1.0, "String": "1", "Bool": true}}
NewEncoder().WithWriter(buf).WithVersion(Version3).Encode(&in)

out := []any{0.0, "0", false, map[string]any{}}
NewDecoder().WithReader(buf).WithVersion(Version3).Decode(&out)

Struct

Struct to Struct

type Struct struct {
    Int    int    `amf:"tag_int"`
    String string `amf:"tag_string"`
    Bool   bool   `amf:"tag_bool"`
    Object struct {
        Int    int    `amf:"tag_int"`
        String string `amf:"tag_string"`
        Bool   bool   `amf:"tag_bool"`
    } `amf:"tag_object"`
}

in := Struct{} // with value be initialized
bs, _ := Marshal(&in)

out := Struct{}
Unmarshal(bs, &out)

Struct to Map

type Struct struct {
    Int    int    `amf:"tag_int"`
    String string `amf:"tag_string"`
    Bool   bool   `amf:"tag_bool"`
    Object struct {
        Int    int    `amf:"tag_int"`
        String string `amf:"tag_string"`
        Bool   bool   `amf:"tag_bool"`
    } `amf:"tag_object"`
}

in := Struct{} // with value be initialized
bs, _ := Marshal(&in)

out := make(map[string]any)
Unmarshal(bs, &out)

Map

in := map[string]any{"Int": 1.0, "String": "1", "Bool": true}
bs, _ := Marshal(&in)

out := make(map[string]any)
Unmarshal(bs, &out)

引用