-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson.go
80 lines (76 loc) · 1.61 KB
/
json.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package gosl
import jsoniter "github.com/json-iterator/go"
// Marshal converts struct *T to JSON data (byte slice) using jsoniter.Marshal
// with a default configuration. A 100% compatible drop-in replacement of
// "encoding/json" standard lib.
//
// If err != nil returns zero-value for a byte slice and error.
//
// Example:
//
// package main
//
// import (
// "fmt"
// "log"
//
// "github.com/koddr/gosl"
// )
//
// type user struct {
// ID int `json:"id"`
// Name string `json:"name"`
// }
//
// func main() {
// u := &user{ID: 1, Name: "Viktor"}
//
// json, err := gosl.Marshal(u)
// if err != nil {
// log.Fatal(err)
// }
//
// fmt.Println(string(json))
// }
func Marshal[T any](model *T) ([]byte, error) {
return jsoniter.ConfigCompatibleWithStandardLibrary.Marshal(&model)
}
// Unmarshal converts JSON data (byte slice) to struct *T using
// jsoniter.Unmarshal with a default configuration. A 100% compatible drop-in
// replacement of "encoding/json" standard lib.
//
// If err != nil returns zero-value for a struct and error.
//
// Example:
//
// package main
//
// import (
// "fmt"
// "log"
//
// "github.com/koddr/gosl"
// )
//
// type user struct {
// ID int `json:"id"`
// Name string `json:"name"`
// }
//
// func main() {
// json := []byte(`{"id":1,"name":"Viktor"}`)
// model := &user{}
//
// u, err := gosl.Unmarshal(json, model)
// if err != nil {
// log.Fatal(err)
// }
//
// fmt.Println(u)
// }
func Unmarshal[T any](data []byte, model *T) (*T, error) {
if err := jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal(data, &model); err != nil {
return nil, err
}
return model, nil
}