aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/storage/mru/id.go
blob: dcc88ac2ad958403d662187f712f48d480f1e04d (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
// Copyright 2018 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package mru

import (
    "fmt"
    "hash"
    "strconv"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/swarm/storage/mru/lookup"

    "github.com/ethereum/go-ethereum/swarm/storage"
)

// ID uniquely identifies an update on the network.
type ID struct {
    Feed         `json:"feed"`
    lookup.Epoch `json:"epoch"`
}

// ID layout:
// Feed feedLength bytes
// Epoch EpochLength
const idLength = feedLength + lookup.EpochLength

// Addr calculates the feed update chunk address corresponding to this ID
func (u *ID) Addr() (updateAddr storage.Address) {
    serializedData := make([]byte, idLength)
    var cursor int
    u.Feed.binaryPut(serializedData[cursor : cursor+feedLength])
    cursor += feedLength

    eid := u.Epoch.ID()
    copy(serializedData[cursor:cursor+lookup.EpochLength], eid[:])

    hasher := hashPool.Get().(hash.Hash)
    defer hashPool.Put(hasher)
    hasher.Reset()
    hasher.Write(serializedData)
    return hasher.Sum(nil)
}

// binaryPut serializes this instance into the provided slice
func (u *ID) binaryPut(serializedData []byte) error {
    if len(serializedData) != idLength {
        return NewErrorf(ErrInvalidValue, "Incorrect slice size to serialize ID. Expected %d, got %d", idLength, len(serializedData))
    }
    var cursor int
    if err := u.Feed.binaryPut(serializedData[cursor : cursor+feedLength]); err != nil {
        return err
    }
    cursor += feedLength

    epochBytes, err := u.Epoch.MarshalBinary()
    if err != nil {
        return err
    }
    copy(serializedData[cursor:cursor+lookup.EpochLength], epochBytes[:])
    cursor += lookup.EpochLength

    return nil
}

// binaryLength returns the expected size of this structure when serialized
func (u *ID) binaryLength() int {
    return idLength
}

// binaryGet restores the current instance from the information contained in the passed slice
func (u *ID) binaryGet(serializedData []byte) error {
    if len(serializedData) != idLength {
        return NewErrorf(ErrInvalidValue, "Incorrect slice size to read ID. Expected %d, got %d", idLength, len(serializedData))
    }

    var cursor int
    if err := u.Feed.binaryGet(serializedData[cursor : cursor+feedLength]); err != nil {
        return err
    }
    cursor += feedLength

    if err := u.Epoch.UnmarshalBinary(serializedData[cursor : cursor+lookup.EpochLength]); err != nil {
        return err
    }
    cursor += lookup.EpochLength

    return nil
}

// FromValues deserializes this instance from a string key-value store
// useful to parse query strings
func (u *ID) FromValues(values Values) error {
    level, _ := strconv.ParseUint(values.Get("level"), 10, 32)
    u.Epoch.Level = uint8(level)
    u.Epoch.Time, _ = strconv.ParseUint(values.Get("time"), 10, 64)

    if u.Feed.User == (common.Address{}) {
        return u.Feed.FromValues(values)
    }
    return nil
}

// AppendValues serializes this structure into the provided string key-value store
// useful to build query strings
func (u *ID) AppendValues(values Values) {
    values.Set("level", fmt.Sprintf("%d", u.Epoch.Level))
    values.Set("time", fmt.Sprintf("%d", u.Epoch.Time))
    u.Feed.AppendValues(values)
}