-
Notifications
You must be signed in to change notification settings - Fork 0
/
blockheader.go
273 lines (216 loc) · 5.58 KB
/
blockheader.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
package ergo
/*
#include "ergo.h"
*/
import "C"
import (
"iter"
"runtime"
"unsafe"
)
// BlockHeader represents data of the block header available in Sigma proposition
type BlockHeader interface {
// BlockId returns the BlockId of the BlockHeader
BlockId() BlockId
// Equals checks if provided BlockHeader is same
Equals(blockHeader BlockHeader) bool
pointer() C.BlockHeaderPtr
}
type blockHeader struct {
p C.BlockHeaderPtr
}
func newBlockHeader(b *blockHeader) BlockHeader {
runtime.SetFinalizer(b, finalizeBlockHeader)
return b
}
// NewBlockHeader creates a new BlockHeader from block header array JSON (Node API)
func NewBlockHeader(json string) (BlockHeader, error) {
blockHeaderJson := C.CString(json)
defer C.free(unsafe.Pointer(blockHeaderJson))
var p C.BlockHeaderPtr
errPtr := C.ergo_lib_block_header_from_json(blockHeaderJson, &p)
err := newError(errPtr)
if err.isError() {
return nil, err.error()
}
b := &blockHeader{p: p}
return newBlockHeader(b), nil
}
func (b *blockHeader) BlockId() BlockId {
var p C.BlockIdPtr
C.ergo_lib_block_header_id(b.p, &p)
bi := &blockId{p: p}
return newBlockId(bi)
}
func (b *blockHeader) Equals(blockHeader BlockHeader) bool {
res := C.ergo_lib_block_header_eq(b.p, blockHeader.pointer())
return bool(res)
}
func (b *blockHeader) pointer() C.BlockHeaderPtr {
return b.p
}
func finalizeBlockHeader(b *blockHeader) {
C.ergo_lib_block_header_delete(b.p)
}
// BlockId represents the id of a BlockHeader
type BlockId interface {
// Equals checks if provided BlockId is same
Equals(blockId BlockId) bool
pointer() C.BlockIdPtr
}
type blockId struct {
p C.BlockIdPtr
}
func newBlockId(b *blockId) BlockId {
runtime.SetFinalizer(b, finalizeBlockId)
return b
}
// NewBlockId creates a new BlockId from hex-encoded string
func NewBlockId(s string) (BlockId, error) {
blockIdStr := C.CString(s)
defer C.free(unsafe.Pointer(blockIdStr))
var p C.BlockIdPtr
errPtr := C.ergo_lib_block_id_from_str(blockIdStr, &p)
err := newError(errPtr)
if err.isError() {
return nil, err.error()
}
b := &blockId{p: p}
return newBlockId(b), nil
}
func (b *blockId) Equals(blockId BlockId) bool {
res := C.ergo_lib_block_id_eq(b.p, blockId.pointer())
return bool(res)
}
func (b *blockId) pointer() C.BlockIdPtr {
return b.p
}
func finalizeBlockId(b *blockId) {
C.ergo_lib_block_id_delete(b.p)
}
// BlockHeaders an ordered collection of BlockHeader
type BlockHeaders interface {
// Len returns the length of the collection
Len() int
// Get returns the BlockHeader at the provided index if it exists
Get(index int) (BlockHeader, error)
// Add adds provided BlockHeader to the end of the collection
Add(blockHeader BlockHeader)
// All returns an iterator over all BlockHeader inside the collection
All() iter.Seq2[int, BlockHeader]
pointer() C.BlockHeadersPtr
}
type blockHeaders struct {
p C.BlockHeadersPtr
}
func newBlockHeaders(b *blockHeaders) BlockHeaders {
runtime.SetFinalizer(b, finalizeBlockHeaders)
return b
}
// NewBlockHeaders creates an empty BlockHeaders collection
func NewBlockHeaders() BlockHeaders {
var p C.BlockHeadersPtr
C.ergo_lib_block_headers_new(&p)
b := &blockHeaders{p: p}
return newBlockHeaders(b)
}
func (b *blockHeaders) Len() int {
res := C.ergo_lib_block_headers_len(b.p)
return int(res)
}
func (b *blockHeaders) Get(index int) (BlockHeader, error) {
var p C.BlockHeaderPtr
res := C.ergo_lib_block_headers_get(b.p, C.uintptr_t(index), &p)
err := newError(res.error)
if err.isError() {
return nil, err.error()
}
if res.is_some {
bh := &blockHeader{p: p}
return newBlockHeader(bh), nil
}
return nil, nil
}
func (b *blockHeaders) Add(blockHeader BlockHeader) {
C.ergo_lib_block_headers_add(blockHeader.pointer(), b.p)
}
func (b *blockHeaders) All() iter.Seq2[int, BlockHeader] {
return func(yield func(int, BlockHeader) bool) {
for i := 0; i < b.Len(); i++ {
tk, err := b.Get(i)
if err != nil {
return
}
if !yield(i, tk) {
return
}
}
}
}
func (b *blockHeaders) pointer() C.BlockHeadersPtr {
return b.p
}
func finalizeBlockHeaders(b *blockHeaders) {
C.ergo_lib_block_headers_delete(b.p)
}
// BlockIds an ordered collection of BlockId
type BlockIds interface {
// Len returns the length of the collection
Len() int
// Get returns the BlockId at the provided index if it exists
Get(index int) (BlockId, error)
// Add adds provided BlockId to the end of the collection
Add(blockId BlockId)
// All returns an iterator over all BlockId inside the collection
All() iter.Seq2[int, BlockId]
}
type blockIds struct {
p C.BlockIdsPtr
}
func newBlockIds(b *blockIds) BlockIds {
runtime.SetFinalizer(b, finalizeBlockIds)
return b
}
// NewBlockIds creates an empty BlockIds collection
func NewBlockIds() BlockIds {
var p C.BlockIdsPtr
C.ergo_lib_block_ids_new(&p)
b := &blockIds{p: p}
return newBlockIds(b)
}
func (b *blockIds) Len() int {
res := C.ergo_lib_block_ids_len(b.p)
return int(res)
}
func (b *blockIds) Get(index int) (BlockId, error) {
var p C.BlockIdPtr
res := C.ergo_lib_block_ids_get(b.p, C.uintptr_t(index), &p)
err := newError(res.error)
if err.isError() {
return nil, err.error()
}
if res.is_some {
bi := &blockId{p: p}
return newBlockId(bi), nil
}
return nil, nil
}
func (b *blockIds) Add(blockId BlockId) {
C.ergo_lib_block_ids_add(blockId.pointer(), b.p)
}
func (b *blockIds) All() iter.Seq2[int, BlockId] {
return func(yield func(int, BlockId) bool) {
for i := 0; i < b.Len(); i++ {
tk, err := b.Get(i)
if err != nil {
return
}
if !yield(i, tk) {
return
}
}
}
}
func finalizeBlockIds(b *blockIds) {
C.ergo_lib_block_ids_delete(b.p)
}