plugeth/ethutil
zelig 63157c798d refactor config (transitional). Details:
- ReadConfig initialiser sets up global ethutil.Config via config file passed from wrappers
- does not write out adhoc default (not meant to) but creates empty config file if it does not exist so that globalconf does not complain if persists a flag
- default datadir and default config file set together with other flag defaults in wrappers
- default assetpath set together with other command line flags defaults in gui wrapper (not in ethutil.Config or ui/ui_lib)
- add EnvPrefix, to handle environment variable options too via globalconf
- this is still transitional: global Config should just be a wrapper around globalconfig config handler and should be moved to go-ethereum
- actual eth stack config should not be global instead config handled properly with explicit dependency injectioninto eth stack component instances
2014-06-23 12:55:38 +01:00
..
.gitignore The great merge 2014-02-14 23:56:09 +01:00
.travis.yml Rename .travil.yml to .travis.yml 2014-03-03 18:13:08 +01:00
big.go Fix BigMax to return the biggest number, not the smallest 2014-06-10 17:15:18 +02:00
bytes.go Proper checks for multiple data items. Fixes #80 2014-06-18 11:55:05 +02:00
common_test.go Change shorthands 2014-05-20 14:53:34 +02:00
common.go Moving a head closer to interop 2014-06-13 16:06:27 +02:00
config.go refactor config (transitional). Details: 2014-06-23 12:55:38 +01:00
db.go Moved keyring to ethutil & removed old methods. Implements #20 2014-05-14 13:54:40 +02:00
encoding_test.go adding compact decode tests 2014-02-17 15:46:16 -08:00
encoding.go New Trie iterator 2014-05-27 01:08:51 +02:00
helpers.go Added new address 2014-02-18 12:10:21 +01:00
keypair.go Method for creating a new key from scratch 2014-06-16 00:51:55 +02:00
mnemonic_test.go Added support for mneomnic privkeys 2014-04-07 14:00:02 +02:00
mnemonic.go Small tweaks to mnemonic 2014-04-09 11:06:30 -04:00
package.go Implemented ethereum package reader 2014-04-23 11:50:17 +02:00
rand.go The great merge 2014-02-14 23:56:09 +01:00
reactor_test.go Reactor implemented 2014-03-02 02:22:20 +01:00
reactor.go Removed old tx pool notification system. Fixes #19 2014-05-15 14:05:15 +02:00
README.md Updated readme#trie 2014-02-28 12:19:01 +01:00
rlp_test.go Fixed some tests 2014-05-10 02:01:09 +02:00
rlp.go Changed RlpEncodable 2014-06-16 00:52:10 +02:00
script.go Upgraded to new mutan 2014-05-10 16:23:07 +02:00
trie_test.go Updated test 2014-06-18 13:48:29 +02:00
trie.go New Trie iterator 2014-05-27 01:08:51 +02:00
value_test.go Partially refactored server/txpool/block manager/block chain 2014-03-05 10:42:51 +01:00
value.go Return a single byte if byte get called 2014-06-18 13:47:40 +02:00

ethutil

Build
Status

The ethutil package contains the ethereum utility library.

Installation

go get github.com/ethereum/ethutil-go

Usage

RLP (Recursive Linear Prefix) Encoding

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

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

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

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

Patricia Trie

Patricie Tree is a merkle trie utilized 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 ethutil/db.go.

db := NewDatabase()

// db, root
trie := ethutil.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 := ethutil.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 := ethutil.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 := ethutil.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 := ethutil.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 := ethutil.NewValue([]interface{}{1,"2",[]interface{}{3}})
rlp := val.Encode()
// Store the rlp data
Store(rlp)