aboutsummaryrefslogtreecommitdiffstats
path: root/ethpub/types.go
blob: 159f7d9a7cb43acecd7075736cc7b084f33feaa6 (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
package ethpub

import (
    "encoding/json"
    "fmt"
    "strings"

    "github.com/ethereum/eth-go/ethchain"
    "github.com/ethereum/eth-go/ethcrypto"
    "github.com/ethereum/eth-go/ethstate"
    "github.com/ethereum/eth-go/ethtrie"
    "github.com/ethereum/eth-go/ethutil"
)

// Peer interface exposed to QML

type PPeer struct {
    ref          *ethchain.Peer
    Inbound      bool   `json:"isInbound"`
    LastSend     int64  `json:"lastSend"`
    LastPong     int64  `json:"lastPong"`
    Ip           string `json:"ip"`
    Port         int    `json:"port"`
    Version      string `json:"version"`
    LastResponse string `json:"lastResponse"`
    Latency      string `json:"latency"`
}

func NewPPeer(peer ethchain.Peer) *PPeer {
    if peer == nil {
        return nil
    }

    // TODO: There must be something build in to do this?
    var ip []string
    for _, i := range peer.Host() {
        ip = append(ip, fmt.Sprintf("%d", i))
    }
    ipAddress := strings.Join(ip, ".")

    return &PPeer{ref: &peer, Inbound: peer.Inbound(), LastSend: peer.LastSend().Unix(), LastPong: peer.LastPong(), Version: peer.Version(), Ip: ipAddress, Port: int(peer.Port()), Latency: peer.PingTime()}
}

// Block interface exposed to QML
type PBlock struct {
    ref          *ethchain.Block
    Number       int    `json:"number"`
    Hash         string `json:"hash"`
    Transactions string `json:"transactions"`
    Time         int64  `json:"time"`
    Coinbase     string `json:"coinbase"`
    Name         string `json:"name"`
    GasLimit     string `json:"gasLimit"`
    GasUsed      string `json:"gasUsed"`
}

// Creates a new QML Block from a chain block
func NewPBlock(block *ethchain.Block) *PBlock {
    if block == nil {
        return nil
    }

    var ptxs []PTx
    for _, tx := range block.Transactions() {
        ptxs = append(ptxs, *NewPTx(tx))
    }

    txJson, err := json.Marshal(ptxs)
    if err != nil {
        return nil
    }

    return &PBlock{ref: block, Number: int(block.Number.Uint64()), GasUsed: block.GasUsed.String(), GasLimit: block.GasLimit.String(), Hash: ethutil.Bytes2Hex(block.Hash()), Transactions: string(txJson), Time: block.Time, Coinbase: ethutil.Bytes2Hex(block.Coinbase)}
}

func (self *PBlock) ToString() string {
    if self.ref != nil {
        return self.ref.String()
    }

    return ""
}

func (self *PBlock) GetTransaction(hash string) *PTx {
    tx := self.ref.GetTransaction(ethutil.Hex2Bytes(hash))
    if tx == nil {
        return nil
    }

    return NewPTx(tx)
}

type PTx struct {
    ref *ethchain.Transaction

    Value           string `json:"value"`
    Gas             string `json:"gas"`
    GasPrice        string `json:"gasPrice"`
    Hash            string `json:"hash"`
    Address         string `json:"address"`
    Sender          string `json:"sender"`
    RawData         string `json:"rawData"`
    Data            string `json:"data"`
    Contract        bool   `json:"isContract"`
    CreatesContract bool   `json:"createsContract"`
    Confirmations   int    `json:"confirmations"`
}

func NewPTx(tx *ethchain.Transaction) *PTx {
    hash := ethutil.Bytes2Hex(tx.Hash())
    receiver := ethutil.Bytes2Hex(tx.Recipient)
    if receiver == "0000000000000000000000000000000000000000" {
        receiver = ethutil.Bytes2Hex(tx.CreationAddress())
    }
    sender := ethutil.Bytes2Hex(tx.Sender())
    createsContract := tx.CreatesContract()

    var data string
    if tx.CreatesContract() {
        data = strings.Join(ethchain.Disassemble(tx.Data), "\n")
    } else {
        data = ethutil.Bytes2Hex(tx.Data)
    }

    return &PTx{ref: tx, Hash: hash, Value: ethutil.CurrencyToString(tx.Value), Address: receiver, Contract: tx.CreatesContract(), Gas: tx.Gas.String(), GasPrice: tx.GasPrice.String(), Data: data, Sender: sender, CreatesContract: createsContract, RawData: ethutil.Bytes2Hex(tx.Data)}
}

func (self *PTx) ToString() string {
    return self.ref.String()
}

type PKey struct {
    Address    string `json:"address"`
    PrivateKey string `json:"privateKey"`
    PublicKey  string `json:"publicKey"`
}

func NewPKey(key *ethcrypto.KeyPair) *PKey {
    return &PKey{ethutil.Bytes2Hex(key.Address()), ethutil.Bytes2Hex(key.PrivateKey), ethutil.Bytes2Hex(key.PublicKey)}
}

type PReceipt struct {
    CreatedContract bool   `json:"createdContract"`
    Address         string `json:"address"`
    Hash            string `json:"hash"`
    Sender          string `json:"sender"`
}

func NewPReciept(contractCreation bool, creationAddress, hash, address []byte) *PReceipt {
    return &PReceipt{
        contractCreation,
        ethutil.Bytes2Hex(creationAddress),
        ethutil.Bytes2Hex(hash),
        ethutil.Bytes2Hex(address),
    }
}

type PStateObject struct {
    object *ethstate.StateObject
}

func NewPStateObject(object *ethstate.StateObject) *PStateObject {
    return &PStateObject{object: object}
}

func (c *PStateObject) GetStorage(address string) string {
    // Because somehow, even if you return nil to QML it
    // still has some magical object so we can't rely on
    // undefined or null at the QML side
    if c.object != nil {
        val := c.object.GetStorage(ethutil.Big("0x" + address))

        return val.BigInt().String()
    }

    return ""
}

func (c *PStateObject) Balance() string {
    if c.object != nil {
        return c.object.Balance.String()
    }

    return ""
}

func (c *PStateObject) Address() string {
    if c.object != nil {
        return ethutil.Bytes2Hex(c.object.Address())
    }

    return ""
}

func (c *PStateObject) Nonce() int {
    if c.object != nil {
        return int(c.object.Nonce)
    }

    return 0
}

func (c *PStateObject) Root() string {
    if c.object != nil {
        return ethutil.Bytes2Hex(ethutil.NewValue(c.object.State.Root()).Bytes())
    }

    return "<err>"
}

func (c *PStateObject) IsContract() bool {
    if c.object != nil {
        return len(c.object.Code) > 0
    }

    return false
}

func (self *PStateObject) EachStorage(cb ethtrie.EachCallback) {
    self.object.EachStorage(cb)
}

type KeyVal struct {
    Key   string `json:"key"`
    Value string `json:"value"`
}

func (c *PStateObject) StateKeyVal(asJson bool) interface{} {
    var values []KeyVal
    if c.object != nil {
        c.object.EachStorage(func(name string, value *ethutil.Value) {
            value.Decode()
            values = append(values, KeyVal{ethutil.Bytes2Hex([]byte(name)), ethutil.Bytes2Hex(value.Bytes())})
        })
    }

    if asJson {
        valuesJson, err := json.Marshal(values)
        if err != nil {
            return nil
        }

        return string(valuesJson)
    }

    return values
}

func (c *PStateObject) Script() string {
    if c.object != nil {
        return strings.Join(ethchain.Disassemble(c.object.Code), " ")
    }

    return ""
}

func (c *PStateObject) HexScript() string {
    if c.object != nil {
        return ethutil.Bytes2Hex(c.object.Code)
    }

    return ""
}

type PStorageState struct {
    StateAddress string
    Address      string
    Value        string
}

func NewPStorageState(storageObject *ethstate.StorageState) *PStorageState {
    return &PStorageState{ethutil.Bytes2Hex(storageObject.StateAddress), ethutil.Bytes2Hex(storageObject.Address), storageObject.Value.String()}
}