-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcdns.go
124 lines (110 loc) · 2.95 KB
/
cdns.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// Copyright 2023 Blink Labs Software
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package models
import (
"fmt"
"github.com/blinklabs-io/gouroboros/cbor"
)
type CardanoDnsTtl uint
type CardanoDnsDomain struct {
// This allows the type to be used with cbor.DecodeGeneric
cbor.StructAsArray
Origin []byte
Records []CardanoDnsDomainRecord
AdditionalData CardanoDnsMaybe[any]
}
func (c CardanoDnsDomain) String() string {
ret := fmt.Sprintf(
"CardanoDnsDomain { Origin = %s, Records = [ ",
c.Origin,
)
for idx, record := range c.Records {
ret += record.String()
if idx == len(c.Records)-1 {
ret += " "
} else {
ret += ", "
}
}
ret += "] }"
return ret
}
func (c *CardanoDnsDomain) UnmarshalCBOR(cborData []byte) error {
var tmpData cbor.Constructor
if _, err := cbor.Decode(cborData, &tmpData); err != nil {
return err
}
if tmpData.Constructor() != 1 {
return fmt.Errorf("unexpected constructor index: %d", tmpData.Constructor())
}
return cbor.DecodeGeneric(tmpData.FieldsCbor(), c)
}
type CardanoDnsDomainRecord struct {
// This allows the type to be used with cbor.DecodeGeneric
cbor.StructAsArray
Lhs []byte
Ttl CardanoDnsMaybe[CardanoDnsTtl]
Type []byte
Rhs []byte
}
func (c *CardanoDnsDomainRecord) UnmarshalCBOR(data []byte) error {
var tmpConstr cbor.Constructor
if _, err := cbor.Decode(data, &tmpConstr); err != nil {
return err
}
if tmpConstr.Constructor() != 1 {
return fmt.Errorf("unexpected constructor index: %d", tmpConstr.Constructor())
}
return cbor.DecodeGeneric(tmpConstr.FieldsCbor(), c)
}
func (c CardanoDnsDomainRecord) String() string {
return fmt.Sprintf(
"CardanoDnsDomainRecord { Lhs = %s, Ttl = %d, Type = %s, Rhs = %s }",
c.Lhs,
c.Ttl.Value,
c.Type,
c.Rhs,
)
}
type CardanoDnsMaybe[T any] struct {
// This allows the type to be used with cbor.DecodeGeneric
cbor.StructAsArray
Value T
hasValue bool
}
func NewCardanoDnsMaybe[T any](v any) CardanoDnsMaybe[T] {
if v == nil {
return CardanoDnsMaybe[T]{}
}
return CardanoDnsMaybe[T]{
Value: v.(T),
hasValue: true,
}
}
func (c CardanoDnsMaybe[T]) HasValue() bool {
return c.hasValue
}
func (c *CardanoDnsMaybe[T]) UnmarshalCBOR(data []byte) error {
var tmpConstr cbor.Constructor
if _, err := cbor.Decode(data, &tmpConstr); err != nil {
return err
}
if tmpConstr.Constructor() == 0 {
if err := cbor.DecodeGeneric(tmpConstr.FieldsCbor(), c); err != nil {
return err
}
c.hasValue = true
}
return nil
}