aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/block.go
blob: 116acbf79231c293b37c11f69c06cf09820230bd (plain) (blame)
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
package types

import (
    "encoding/binary"
    "fmt"
    "io"
    "math/big"
    "sort"
    "time"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/crypto/sha3"
    "github.com/ethereum/go-ethereum/rlp"
)

type Header struct {
    // Hash to the previous block
    ParentHash common.Hash
    // Uncles of this block
    UncleHash common.Hash
    // The coin base address
    Coinbase common.Address
    // Block Trie state
    Root common.Hash
    // Tx sha
    TxHash common.Hash
    // Receipt sha
    ReceiptHash common.Hash
    // Bloom
    Bloom Bloom
    // Difficulty for the current block
    Difficulty *big.Int
    // The block number
    Number *big.Int
    // Gas limit
    GasLimit *big.Int
    // Gas used
    GasUsed *big.Int
    // Creation time
    Time uint64
    // Extra data
    Extra []byte
    // Mix digest for quick checking to prevent DOS
    MixDigest common.Hash
    // Nonce
    Nonce [8]byte
}

func (self *Header) Hash() common.Hash {
    return rlpHash(self.rlpData(true))
}

func (self *Header) HashNoNonce() common.Hash {
    return rlpHash(self.rlpData(false))
}

func (self *Header) rlpData(withNonce bool) []interface{} {
    fields := []interface{}{
        self.ParentHash,
        self.UncleHash,
        self.Coinbase,
        self.Root,
        self.TxHash,
        self.ReceiptHash,
        self.Bloom,
        self.Difficulty,
        self.Number,
        self.GasLimit,
        self.GasUsed,
        self.Time,
        self.Extra,
    }
    if withNonce {
        fields = append(fields, self.MixDigest, self.Nonce)
    }
    return fields
}

func (self *Header) RlpData() interface{} {
    return self.rlpData(true)
}

func rlpHash(x interface{}) (h common.Hash) {
    hw := sha3.NewKeccak256()
    rlp.Encode(hw, x)
    hw.Sum(h[:0])
    return h
}

type Block struct {
    // Preset Hash for mock (Tests)
    HeaderHash       common.Hash
    ParentHeaderHash common.Hash
    // ^^^^ ignore ^^^^

    header       *Header
    uncles       []*Header
    transactions Transactions
    Td           *big.Int

    receipts Receipts
}

// StorageBlock defines the RLP encoding of a Block stored in the
// state database. The StorageBlock encoding contains fields that
// would otherwise need to be recomputed.
type StorageBlock Block

// "external" block encoding. used for eth protocol, etc.
type extblock struct {
    Header *Header
    Txs    []*Transaction
    Uncles []*Header
}

// "storage" block encoding. used for database.
type storageblock struct {
    Header *Header
    Txs    []*Transaction
    Uncles []*Header
    TD     *big.Int
}

func NewBlock(parentHash common.Hash, coinbase common.Address, root common.Hash, difficulty *big.Int, nonce uint64, extra []byte) *Block {
    header := &Header{
        Root:       root,
        ParentHash: parentHash,
        Coinbase:   coinbase,
        Difficulty: difficulty,
        Time:       uint64(time.Now().Unix()),
        Extra:      extra,
        GasUsed:    new(big.Int),
        GasLimit:   new(big.Int),
        Number:     new(big.Int),
    }
    header.SetNonce(nonce)
    block := &Block{header: header}
    block.Td = new(big.Int)

    return block
}

func (self *Header) SetNonce(nonce uint64) {
    binary.BigEndian.PutUint64(self.Nonce[:], nonce)
}

func NewBlockWithHeader(header *Header) *Block {
    return &Block{header: header}
}

func (self *Block) ValidateFields() error {
    if self.header == nil {
        return fmt.Errorf("header is nil")
    }
    for i, transaction := range self.transactions {
        if transaction == nil {
            return fmt.Errorf("transaction %d is nil", i)
        }
    }
    for i, uncle := range self.uncles {
        if uncle == nil {
            return fmt.Errorf("uncle %d is nil", i)
        }
    }
    return nil
}

func (self *Block) DecodeRLP(s *rlp.Stream) error {
    var eb extblock
    if err := s.Decode(&eb); err != nil {
        return err
    }
    self.header, self.uncles, self.transactions = eb.Header, eb.Uncles, eb.Txs
    return nil
}

func (self Block) EncodeRLP(w io.Writer) error {
    return rlp.Encode(w, extblock{
        Header: self.header,
        Txs:    self.transactions,
        Uncles: self.uncles,
    })
}

func (self *StorageBlock) DecodeRLP(s *rlp.Stream) error {
    var sb storageblock
    if err := s.Decode(&sb); err != nil {
        return err
    }
    self.header, self.uncles, self.transactions, self.Td = sb.Header, sb.Uncles, sb.Txs, sb.TD
    return nil
}

func (self StorageBlock) EncodeRLP(w io.Writer) error {
    return rlp.Encode(w, storageblock{
        Header: self.header,
        Txs:    self.transactions,
        Uncles: self.uncles,
        TD:     self.Td,
    })
}

func (self *Block) Header() *Header {
    return self.header
}

func (self *Block) Uncles() []*Header {
    return self.uncles
}

func (self *Block) SetUncles(uncleHeaders []*Header) {
    self.uncles = uncleHeaders
    self.header.UncleHash = rlpHash(uncleHeaders)
}

func (self *Block) Transactions() Transactions {
    return self.transactions
}

func (self *Block) Transaction(hash common.Hash) *Transaction {
    for _, transaction := range self.transactions {
        if transaction.Hash() == hash {
            return transaction
        }
    }
    return nil
}

func (self *Block) SetTransactions(transactions Transactions) {
    self.transactions = transactions
    self.header.TxHash = DeriveSha(transactions)
}
func (self *Block) AddTransaction(transaction *Transaction) {
    self.transactions = append(self.transactions, transaction)
    self.SetTransactions(self.transactions)
}

func (self *Block) Receipts() Receipts {
    return self.receipts
}

func (self *Block) SetReceipts(receipts Receipts) {
    self.receipts = receipts
    self.header.ReceiptHash = DeriveSha(receipts)
    self.header.Bloom = CreateBloom(receipts)
}
func (self *Block) AddReceipt(receipt *Receipt) {
    self.receipts = append(self.receipts, receipt)
    self.SetReceipts(self.receipts)
}

func (self *Block) RlpData() interface{} {
    return []interface{}{self.header, self.transactions, self.uncles}
}

func (self *Block) RlpDataForStorage() interface{} {
    return []interface{}{self.header, self.transactions, self.uncles, self.Td /* TODO receipts */}
}

// Header accessors (add as you need them)
func (self *Block) Number() *big.Int       { return self.header.Number }
func (self *Block) NumberU64() uint64      { return self.header.Number.Uint64() }
func (self *Block) MixDigest() common.Hash { return self.header.MixDigest }
func (self *Block) Nonce() uint64 {
    return binary.BigEndian.Uint64(self.header.Nonce[:])
}
func (self *Block) SetNonce(nonce uint64) {
    self.header.SetNonce(nonce)
}

func (self *Block) Bloom() Bloom             { return self.header.Bloom }
func (self *Block) Coinbase() common.Address { return self.header.Coinbase }
func (self *Block) Time() int64              { return int64(self.header.Time) }
func (self *Block) GasLimit() *big.Int       { return self.header.GasLimit }
func (self *Block) GasUsed() *big.Int        { return self.header.GasUsed }
func (self *Block) Root() common.Hash        { return self.header.Root }
func (self *Block) SetRoot(root common.Hash) { self.header.Root = root }
func (self *Block) GetTransaction(i int) *Transaction {
    if len(self.transactions) > i {
        return self.transactions[i]
    }
    return nil
}
func (self *Block) GetUncle(i int) *Header {
    if len(self.uncles) > i {
        return self.uncles[i]
    }
    return nil
}

func (self *Block) Size() common.StorageSize {
    c := writeCounter(0)
    rlp.Encode(&c, self)
    return common.StorageSize(c)
}

type writeCounter common.StorageSize

func (c *writeCounter) Write(b []byte) (int, error) {
    *c += writeCounter(len(b))
    return len(b), nil
}

// Implement pow.Block
func (self *Block) Difficulty() *big.Int     { return self.header.Difficulty }
func (self *Block) HashNoNonce() common.Hash { return self.header.HashNoNonce() }

func (self *Block) Hash() common.Hash {
    if (self.HeaderHash != common.Hash{}) {
        return self.HeaderHash
    } else {
        return self.header.Hash()
    }
}

func (self *Block) ParentHash() common.Hash {
    if (self.ParentHeaderHash != common.Hash{}) {
        return self.ParentHeaderHash
    } else {
        return self.header.ParentHash
    }
}

func (self *Block) Copy() *Block {
    block := NewBlock(self.header.ParentHash, self.Coinbase(), self.Root(), new(big.Int), self.Nonce(), self.header.Extra)
    block.header.Bloom = self.header.Bloom
    block.header.TxHash = self.header.TxHash
    block.transactions = self.transactions
    block.header.UncleHash = self.header.UncleHash
    block.uncles = self.uncles
    block.header.GasLimit.Set(self.header.GasLimit)
    block.header.GasUsed.Set(self.header.GasUsed)
    block.header.ReceiptHash = self.header.ReceiptHash
    block.header.Difficulty.Set(self.header.Difficulty)
    block.header.Number.Set(self.header.Number)
    block.header.Time = self.header.Time
    block.header.MixDigest = self.header.MixDigest
    if self.Td != nil {
        block.Td.Set(self.Td)
    }

    return block
}

func (self *Block) String() string {
    return fmt.Sprintf(`BLOCK(%x): Size: %v TD: %v {
NoNonce: %x
Header:
[
%v
]
Transactions:
%v
Uncles:
%v
}
`, self.header.Hash(), self.Size(), self.Td, self.header.HashNoNonce(), self.header, self.transactions, self.uncles)
}

func (self *Header) String() string {
    return fmt.Sprintf(`
    ParentHash:     %x
    UncleHash:      %x
    Coinbase:       %x
    Root:           %x
    TxSha           %x
    ReceiptSha:     %x
    Bloom:          %x
    Difficulty:     %v
    Number:         %v
    GasLimit:       %v
    GasUsed:        %v
    Time:           %v
    Extra:          %s
    MixDigest:          %x
    Nonce:          %x`,
        self.ParentHash, self.UncleHash, self.Coinbase, self.Root, self.TxHash, self.ReceiptHash, self.Bloom, self.Difficulty, self.Number, self.GasLimit, self.GasUsed, self.Time, self.Extra, self.MixDigest, self.Nonce)
}

type Blocks []*Block

type BlockBy func(b1, b2 *Block) bool

func (self BlockBy) Sort(blocks Blocks) {
    bs := blockSorter{
        blocks: blocks,
        by:     self,
    }
    sort.Sort(bs)
}

type blockSorter struct {
    blocks Blocks
    by     func(b1, b2 *Block) bool
}

func (self blockSorter) Len() int { return len(self.blocks) }
func (self blockSorter) Swap(i, j int) {
    self.blocks[i], self.blocks[j] = self.blocks[j], self.blocks[i]
}
func (self blockSorter) Less(i, j int) bool { return self.by(self.blocks[i], self.blocks[j]) }

func Number(b1, b2 *Block) bool { return b1.Header().Number.Cmp(b2.Header().Number) < 0 }