quorum/common
Jeffrey Wilcke 8b57c49490 params: core, core/vm, miner: 64bit gas instructions (#3514)
Reworked the EVM gas instructions to use 64bit integers rather than
arbitrary size big ints. All gas operations, be it additions,
multiplications or divisions, are checked and guarded against 64 bit
integer overflows.

In additon, most of the protocol paramaters in the params package have
been converted to uint64 and are now constants rather than variables.

* common/math: added overflow check ops
* core: vmenv, env renamed to evm
* eth, internal/ethapi, les: unmetered eth_call and cancel methods
* core/vm: implemented big.Int pool for evm instructions
* core/vm: unexported intPool methods & verification methods
* core/vm: added memoryGasCost overflow check and test
2017-02-02 15:25:42 +01:00
..
compiler cmd,eth,les,internal: remove natspec support 2017-01-17 12:13:50 +01:00
hexutil common/hexutil: fix EncodeBig, Big.MarshalJSON 2017-01-16 10:32:40 +01:00
math params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
mclock les: light client protocol and API 2016-11-09 02:12:53 +01:00
number all: fix license headers one more time 2015-07-23 18:35:11 +02:00
.gitignore Moved ethutil => common 2015-03-16 11:27:38 +01:00
.travis.yml Moved ethutil => common 2015-03-16 11:27:38 +01:00
README.md common: Update README.md for the current package name 2015-09-10 23:59:38 +06:00
big.go common, crypto: add ICAP functions 2015-10-13 17:44:14 +02:00
big_test.go all: fix issues reported by honnef.co/go/simple/cmd/gosimple 2017-01-06 18:18:07 +01:00
bytes.go all: gofmt -w -s 2017-01-06 15:52:03 +01:00
bytes_test.go all: fix issues reported by honnef.co/go/simple/cmd/gosimple 2017-01-06 18:18:07 +01:00
debug.go core: added basic chain configuration 2016-04-01 01:01:10 +02:00
format.go all: fix issues reported by honnef.co/go/simple/cmd/gosimple 2017-01-06 18:18:07 +01:00
icap.go common, crypto: add ICAP functions 2015-10-13 17:44:14 +02:00
icap_test.go common, crypto: add ICAP functions 2015-10-13 17:44:14 +02:00
list.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
main_test.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
path.go common, node: move datadir defaults into package node 2016-09-16 15:24:31 +02:00
size.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
size_test.go common: remove windows path functions 2015-08-06 16:43:43 +02:00
test_utils.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
types.go common: use package hexutil for fixed size type encoding 2016-11-28 11:37:13 +01:00
types_template.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
types_test.go common: use package hexutil for fixed size type encoding 2016-11-28 11:37:13 +01:00

README.md

common

BuildStatus

The common package contains the ethereum utility library.

Installation

As a subdirectory the main go-ethereum repository, you get it with go get github.com/ethereum/go-ethereum.

Usage

RLP (Recursive Linear Prefix) Encoding

RLP Encoding is an encoding scheme used by the Ethereum project. It encodes any native value or list to a string.

More in depth information about the encoding scheme see the Wiki article.

rlp := common.Encode("doge")
fmt.Printf("%q\n", rlp) // => "\0x83dog"

rlp = common.Encode([]interface{}{"dog", "cat"})
fmt.Printf("%q\n", rlp) // => "\0xc8\0x83dog\0x83cat"
decoded := common.Decode(rlp)
fmt.Println(decoded) // => ["dog" "cat"]

Patricia Trie

Patricie Tree is a merkle trie used by the Ethereum project.

More in depth information about the (modified) Patricia Trie can be found on the Wiki.

The patricia trie uses a db as backend and could be anything as long as it satisfies the Database interface found in common/db.go.

db := NewDatabase()

// db, root
trie := common.NewTrie(db, "")

trie.Put("puppy", "dog")
trie.Put("horse", "stallion")
trie.Put("do", "verb")
trie.Put("doge", "coin")

// Look up the key "do" in the trie
out := trie.Get("do")
fmt.Println(out) // => verb

trie.Delete("puppy")

The patricia trie, in combination with RLP, provides a robust, cryptographically authenticated data structure that can be used to store all (key, value) bindings.

// ... Create db/trie

// Note that RLP uses interface slices as list
value := common.Encode([]interface{}{"one", 2, "three", []interface{}{42}})
// Store the RLP encoded value of the list
trie.Put("mykey", value)

Value

Value is a Generic Value which is used in combination with RLP data or ([])interface{} structures. It may serve as a bridge between RLP data and actual real values and takes care of all the type checking and casting. Unlike Go's reflect.Value it does not panic if it's unable to cast to the requested value. It simple returns the base value of that type (e.g. Slice() returns []interface{}, Uint() return 0, etc).

Creating a new Value

NewEmptyValue() returns a new *Value with it's initial value set to a []interface{}

AppendList() appends a list to the current value.

Append(v) appends the value (v) to the current value/list.

val := common.NewEmptyValue().Append(1).Append("2")
val.AppendList().Append(3)

Retrieving values

Get(i) returns the i item in the list.

Uint() returns the value as an unsigned int64.

Slice() returns the value as a interface slice.

Str() returns the value as a string.

Bytes() returns the value as a byte slice.

Len() assumes current to be a slice and returns its length.

Byte() returns the value as a single byte.

val := common.NewValue([]interface{}{1,"2",[]interface{}{3}})
val.Get(0).Uint() // => 1
val.Get(1).Str()  // => "2"
s := val.Get(2)   // => Value([]interface{}{3})
s.Get(0).Uint()   // => 3

Decoding

Decoding streams of RLP data is simplified

val := common.NewValueFromBytes(rlpData)
val.Get(0).Uint()

Encoding

Encoding from Value to RLP is done with the Encode method. The underlying value can be anything RLP can encode (int, str, lists, bytes)

val := common.NewValue([]interface{}{1,"2",[]interface{}{3}})
rlp := val.Encode()
// Store the rlp data
Store(rlp)