2014-01-01 12:36:48 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-01-11 14:27:08 +00:00
|
|
|
"bufio"
|
|
|
|
"encoding/hex"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2014-01-23 19:16:52 +00:00
|
|
|
"github.com/ethereum/eth-go"
|
|
|
|
"github.com/ethereum/ethchain-go"
|
2014-01-11 14:27:08 +00:00
|
|
|
"github.com/ethereum/ethdb-go"
|
|
|
|
"github.com/ethereum/ethutil-go"
|
2014-01-27 14:34:10 +00:00
|
|
|
"github.com/ethereum/ethwire-go"
|
2014-01-24 19:16:48 +00:00
|
|
|
_ "math/big"
|
2014-01-11 14:27:08 +00:00
|
|
|
"os"
|
|
|
|
"strings"
|
2014-01-01 12:36:48 +00:00
|
|
|
)
|
|
|
|
|
2014-01-09 15:19:44 +00:00
|
|
|
type Console struct {
|
2014-01-23 19:16:52 +00:00
|
|
|
db *ethdb.MemDatabase
|
|
|
|
trie *ethutil.Trie
|
|
|
|
ethereum *eth.Ethereum
|
2014-01-01 12:36:48 +00:00
|
|
|
}
|
|
|
|
|
2014-01-23 19:16:52 +00:00
|
|
|
func NewConsole(s *eth.Ethereum) *Console {
|
2014-01-11 14:27:08 +00:00
|
|
|
db, _ := ethdb.NewMemDatabase()
|
|
|
|
trie := ethutil.NewTrie(db, "")
|
2014-01-01 12:36:48 +00:00
|
|
|
|
2014-01-23 19:16:52 +00:00
|
|
|
return &Console{db: db, trie: trie, ethereum: s}
|
2014-01-01 12:36:48 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:19:44 +00:00
|
|
|
func (i *Console) ValidateInput(action string, argumentLength int) error {
|
2014-01-11 14:27:08 +00:00
|
|
|
err := false
|
|
|
|
var expArgCount int
|
2014-01-01 12:36:48 +00:00
|
|
|
|
2014-01-11 14:27:08 +00:00
|
|
|
switch {
|
|
|
|
case action == "update" && argumentLength != 2:
|
|
|
|
err = true
|
|
|
|
expArgCount = 2
|
|
|
|
case action == "get" && argumentLength != 1:
|
|
|
|
err = true
|
|
|
|
expArgCount = 1
|
|
|
|
case action == "dag" && argumentLength != 2:
|
|
|
|
err = true
|
|
|
|
expArgCount = 2
|
2014-01-14 20:48:16 +00:00
|
|
|
case action == "decode" && argumentLength != 1:
|
|
|
|
err = true
|
|
|
|
expArgCount = 1
|
|
|
|
case action == "encode" && argumentLength != 1:
|
|
|
|
err = true
|
|
|
|
expArgCount = 1
|
2014-01-24 19:16:48 +00:00
|
|
|
case action == "gettx" && argumentLength != 1:
|
|
|
|
err = true
|
|
|
|
expArgCount = 1
|
2014-01-21 22:27:08 +00:00
|
|
|
case action == "tx" && argumentLength != 2:
|
|
|
|
err = true
|
|
|
|
expArgCount = 2
|
2014-01-24 16:51:35 +00:00
|
|
|
case action == "getaddr" && argumentLength != 1:
|
|
|
|
err = true
|
|
|
|
expArgCount = 1
|
2014-01-25 14:19:29 +00:00
|
|
|
case action == "contract" && argumentLength != 1:
|
|
|
|
err = true
|
|
|
|
expArgCount = 1
|
2014-01-27 14:34:10 +00:00
|
|
|
case action == "say" && argumentLength != 1:
|
|
|
|
err = true
|
|
|
|
expArgCount = 1
|
|
|
|
case action == "addp" && argumentLength != 1:
|
|
|
|
err = true
|
|
|
|
expArgCount = 1
|
2014-01-11 14:27:08 +00:00
|
|
|
}
|
2014-01-01 12:36:48 +00:00
|
|
|
|
2014-01-11 14:27:08 +00:00
|
|
|
if err {
|
|
|
|
return errors.New(fmt.Sprintf("'%s' requires %d args, got %d", action, expArgCount, argumentLength))
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
2014-01-01 12:36:48 +00:00
|
|
|
}
|
|
|
|
|
2014-01-14 20:48:16 +00:00
|
|
|
func (i *Console) PrintRoot() {
|
|
|
|
root := ethutil.Conv(i.trie.RootT)
|
|
|
|
if len(root.AsBytes()) != 0 {
|
|
|
|
fmt.Println(hex.EncodeToString(root.AsBytes()))
|
|
|
|
} else {
|
|
|
|
fmt.Println(i.trie.RootT)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 15:19:44 +00:00
|
|
|
func (i *Console) ParseInput(input string) bool {
|
2014-01-11 14:27:08 +00:00
|
|
|
scanner := bufio.NewScanner(strings.NewReader(input))
|
|
|
|
scanner.Split(bufio.ScanWords)
|
2014-01-01 12:36:48 +00:00
|
|
|
|
2014-01-11 14:27:08 +00:00
|
|
|
count := 0
|
|
|
|
var tokens []string
|
|
|
|
for scanner.Scan() {
|
|
|
|
count++
|
|
|
|
tokens = append(tokens, scanner.Text())
|
|
|
|
}
|
|
|
|
if err := scanner.Err(); err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, "reading input:", err)
|
|
|
|
}
|
2014-01-01 12:36:48 +00:00
|
|
|
|
2014-01-11 14:27:08 +00:00
|
|
|
if len(tokens) == 0 {
|
|
|
|
return true
|
|
|
|
}
|
2014-01-01 12:36:48 +00:00
|
|
|
|
2014-01-11 14:27:08 +00:00
|
|
|
err := i.ValidateInput(tokens[0], count-1)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
} else {
|
|
|
|
switch tokens[0] {
|
|
|
|
case "update":
|
2014-01-14 20:48:16 +00:00
|
|
|
i.trie.UpdateT(tokens[1], tokens[2])
|
2014-01-01 12:36:48 +00:00
|
|
|
|
2014-01-14 20:48:16 +00:00
|
|
|
i.PrintRoot()
|
2014-01-11 14:27:08 +00:00
|
|
|
case "get":
|
2014-01-14 20:48:16 +00:00
|
|
|
fmt.Println(i.trie.GetT(tokens[1]))
|
2014-01-11 14:27:08 +00:00
|
|
|
case "root":
|
2014-01-14 20:48:16 +00:00
|
|
|
i.PrintRoot()
|
2014-01-11 14:27:08 +00:00
|
|
|
case "rawroot":
|
2014-01-14 20:48:16 +00:00
|
|
|
fmt.Println(i.trie.RootT)
|
2014-01-11 14:27:08 +00:00
|
|
|
case "print":
|
|
|
|
i.db.Print()
|
|
|
|
case "dag":
|
2014-01-23 19:16:52 +00:00
|
|
|
fmt.Println(ethchain.DaggerVerify(ethutil.Big(tokens[1]), // hash
|
2014-01-11 14:27:08 +00:00
|
|
|
ethutil.BigPow(2, 36), // diff
|
|
|
|
ethutil.Big(tokens[2]))) // nonce
|
2014-01-14 20:48:16 +00:00
|
|
|
case "decode":
|
|
|
|
d, _ := ethutil.Decode([]byte(tokens[1]), 0)
|
|
|
|
fmt.Printf("%q\n", d)
|
2014-01-24 16:51:35 +00:00
|
|
|
case "getaddr":
|
|
|
|
encoded, _ := hex.DecodeString(tokens[1])
|
2014-01-25 14:57:35 +00:00
|
|
|
d := i.ethereum.BlockManager.CurrentBlock.State().Get(string(encoded))
|
2014-01-24 16:51:35 +00:00
|
|
|
if d != "" {
|
|
|
|
decoder := ethutil.NewRlpDecoder([]byte(d))
|
|
|
|
fmt.Println(decoder)
|
|
|
|
} else {
|
|
|
|
fmt.Println("getaddr: address unknown")
|
|
|
|
}
|
2014-01-27 14:34:10 +00:00
|
|
|
case "say":
|
|
|
|
i.ethereum.Broadcast(ethwire.MsgTalkTy, tokens[1])
|
|
|
|
case "addp":
|
|
|
|
i.ethereum.ConnectToPeer(tokens[1])
|
2014-01-14 20:48:16 +00:00
|
|
|
case "encode":
|
|
|
|
fmt.Printf("%q\n", ethutil.Encode(tokens[1]))
|
2014-01-24 19:16:48 +00:00
|
|
|
/*
|
|
|
|
case "newblk":
|
|
|
|
block := ethchain.CreateBlock(
|
|
|
|
i.ethereum.BlockManager.BlockChain().LastBlock.State().Root,
|
|
|
|
i.ethereum.BlockManager.LastBlockHash,
|
|
|
|
"123",
|
|
|
|
big.NewInt(1),
|
|
|
|
big.NewInt(1),
|
|
|
|
"",
|
|
|
|
i.ethereum.TxPool.Flush(),
|
|
|
|
)
|
|
|
|
err := i.ethereum.BlockManager.ProcessBlock(block)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
} else {
|
|
|
|
i.ethereum.Broadcast(ethwire.MsgBlockTy, block.RlpData())
|
|
|
|
}
|
|
|
|
//fmt.Println(ethutil.NewRlpValue(block.RlpData()).Get(0))
|
|
|
|
*/
|
2014-01-21 22:27:08 +00:00
|
|
|
case "tx":
|
2014-01-23 21:33:51 +00:00
|
|
|
tx := ethchain.NewTransaction(tokens[1], ethutil.Big(tokens[2]), []string{""})
|
2014-01-25 14:19:29 +00:00
|
|
|
fmt.Printf("%x\n", tx.Hash())
|
2014-01-21 22:27:08 +00:00
|
|
|
|
2014-01-23 19:16:52 +00:00
|
|
|
i.ethereum.TxPool.QueueTransaction(tx)
|
2014-01-24 19:16:48 +00:00
|
|
|
case "gettx":
|
|
|
|
addr, _ := hex.DecodeString(tokens[1])
|
|
|
|
data, _ := ethutil.Config.Db.Get(addr)
|
|
|
|
if len(data) != 0 {
|
|
|
|
decoder := ethutil.NewRlpDecoder(data)
|
|
|
|
fmt.Println(decoder)
|
|
|
|
} else {
|
|
|
|
fmt.Println("gettx: tx not found")
|
|
|
|
}
|
2014-01-25 14:19:29 +00:00
|
|
|
case "contract":
|
|
|
|
contract := ethchain.NewTransaction("", ethutil.Big(tokens[1]), []string{"PUSH", "1234"})
|
|
|
|
fmt.Printf("%x\n", contract.Hash())
|
|
|
|
|
|
|
|
i.ethereum.TxPool.QueueTransaction(contract)
|
2014-01-11 14:27:08 +00:00
|
|
|
case "exit", "quit", "q":
|
|
|
|
return false
|
|
|
|
case "help":
|
|
|
|
fmt.Printf("COMMANDS:\n" +
|
|
|
|
"\033[1m= DB =\033[0m\n" +
|
|
|
|
"update KEY VALUE - Updates/Creates a new value for the given key\n" +
|
|
|
|
"get KEY - Retrieves the given key\n" +
|
|
|
|
"root - Prints the hex encoded merkle root\n" +
|
|
|
|
"rawroot - Prints the raw merkle root\n" +
|
|
|
|
"\033[1m= Dagger =\033[0m\n" +
|
2014-01-14 20:48:16 +00:00
|
|
|
"dag HASH NONCE - Verifies a nonce with the given hash with dagger\n" +
|
2014-01-15 17:40:35 +00:00
|
|
|
"\033[1m= Encoding =\033[0m\n" +
|
2014-01-14 20:48:16 +00:00
|
|
|
"decode STR\n" +
|
|
|
|
"encode STR\n")
|
|
|
|
|
2014-01-11 14:27:08 +00:00
|
|
|
default:
|
|
|
|
fmt.Println("Unknown command:", tokens[0])
|
|
|
|
}
|
|
|
|
}
|
2014-01-01 12:36:48 +00:00
|
|
|
|
2014-01-11 14:27:08 +00:00
|
|
|
return true
|
2014-01-01 12:36:48 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 15:19:44 +00:00
|
|
|
func (i *Console) Start() {
|
2014-01-11 14:27:08 +00:00
|
|
|
fmt.Printf("Eth Console. Type (help) for help\n")
|
|
|
|
reader := bufio.NewReader(os.Stdin)
|
|
|
|
for {
|
|
|
|
fmt.Printf("eth >>> ")
|
|
|
|
str, _, err := reader.ReadLine()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error reading input", err)
|
|
|
|
} else {
|
|
|
|
if !i.ParseInput(string(str)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-01 12:36:48 +00:00
|
|
|
}
|