good morning!!!!

Skip to content
Snippets Groups Projects
util.go 2.96 KiB
Newer Older
  • Learn to ignore specific revisions
  • Taylor Gerring's avatar
    Taylor Gerring committed
    /*
    	This file is part of go-ethereum
    
    	go-ethereum is free software: you can redistribute it and/or modify
    	it under the terms of the GNU General Public License as published by
    	the Free Software Foundation, either version 3 of the License, or
    	(at your option) any later version.
    
    	go-ethereum 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 General Public License for more details.
    
    	You should have received a copy of the GNU General Public License
    	along with go-ethereum.  If not, see <http://www.gnu.org/licenses/>.
    */
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    package rpc
    
    import (
    	"encoding/json"
    	"io"
    
    	"net/http"
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    
    
    Taylor Gerring's avatar
    Taylor Gerring committed
    	"github.com/ethereum/go-ethereum/ethutil"
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    	"github.com/ethereum/go-ethereum/logger"
    
    Taylor Gerring's avatar
    Taylor Gerring committed
    	"github.com/ethereum/go-ethereum/state"
    
    	"github.com/ethereum/go-ethereum/xeth"
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    )
    
    
    var rpclogger = logger.NewLogger("RPC")
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    
    
    type JsonWrapper struct{}
    
    func (self JsonWrapper) Send(writer io.Writer, v interface{}) (n int, err error) {
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    	var payload []byte
    	payload, err = json.Marshal(v)
    	if err != nil {
    
    		rpclogger.Fatalln("Error marshalling JSON", err)
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    		return 0, err
    	}
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    	rpclogger.DebugDetailf("Sending payload: %s", payload)
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    
    	return writer.Write(payload)
    }
    
    
    func (self JsonWrapper) ParseRequestBody(req *http.Request) (RpcRequest, error) {
    
    	var reqParsed RpcRequest
    
    	// Convert JSON to native types
    	d := json.NewDecoder(req.Body)
    	defer req.Body.Close()
    	err := d.Decode(&reqParsed)
    
    	if err != nil {
    
    		rpclogger.Errorln("Error decoding JSON: ", err)
    
    		return reqParsed, err
    	}
    
    	rpclogger.DebugDetailf("Parsed request: %s", reqParsed)
    
    
    	return reqParsed, nil
    }
    
    Taylor Gerring's avatar
    Taylor Gerring committed
    
    func toHex(b []byte) string {
    	return "0x" + ethutil.Bytes2Hex(b)
    }
    func fromHex(s string) []byte {
    	if len(s) > 1 {
    		if s[0:2] == "0x" {
    			s = s[2:]
    		}
    		return ethutil.Hex2Bytes(s)
    	}
    	return nil
    }
    
    type RpcServer interface {
    	Start()
    	Stop()
    }
    
    type Log struct {
    	Address string   `json:"address"`
    
    Fabian Vogelsteller's avatar
    Fabian Vogelsteller committed
    	Topic   []string `json:"topic"`
    
    Taylor Gerring's avatar
    Taylor Gerring committed
    	Data    string   `json:"data"`
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    	Number  uint64   `json:"number"`
    
    Taylor Gerring's avatar
    Taylor Gerring committed
    }
    
    func toLogs(logs state.Logs) (ls []Log) {
    	ls = make([]Log, len(logs))
    
    	for i, log := range logs {
    		var l Log
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    		l.Topic = make([]string, len(log.Topics()))
    
    Taylor Gerring's avatar
    Taylor Gerring committed
    		l.Address = toHex(log.Address())
    		l.Data = toHex(log.Data())
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    		l.Number = log.Number()
    
    Taylor Gerring's avatar
    Taylor Gerring committed
    		for j, topic := range log.Topics() {
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    			l.Topic[j] = toHex(topic)
    
    Taylor Gerring's avatar
    Taylor Gerring committed
    		}
    		ls[i] = l
    	}
    
    	return
    }
    
    
    type whisperFilter struct {
    	messages []xeth.WhisperMessage
    	timeout  time.Time
    
    }
    
    func (w *whisperFilter) add(msgs ...xeth.WhisperMessage) {
    	w.messages = append(w.messages, msgs...)
    }
    func (w *whisperFilter) get() []xeth.WhisperMessage {
    	w.timeout = time.Now()
    	tmp := w.messages
    	w.messages = nil
    	return tmp
    }
    
    type logFilter struct {
    	logs    state.Logs
    	timeout time.Time
    
    }
    
    func (l *logFilter) add(logs ...state.Log) {
    	l.logs = append(l.logs, logs...)
    }
    
    func (l *logFilter) get() state.Logs {
    	l.timeout = time.Now()
    	tmp := l.logs
    	l.logs = nil
    	return tmp
    }