tendermint/client/local_client.go

229 lines
5.2 KiB
Go
Raw Normal View History

2017-01-12 12:47:55 -08:00
package abcicli
2016-03-24 10:19:48 -07:00
import (
"sync"
2017-01-12 12:47:55 -08:00
types "github.com/tendermint/abci/types"
2017-04-21 15:25:13 -07:00
cmn "github.com/tendermint/tmlibs/common"
2016-03-24 10:19:48 -07:00
)
type localClient struct {
2017-01-23 20:26:17 -08:00
cmn.BaseService
2016-03-24 10:19:48 -07:00
mtx *sync.Mutex
types.Application
Callback
}
func NewLocalClient(mtx *sync.Mutex, app types.Application) *localClient {
if mtx == nil {
mtx = new(sync.Mutex)
}
cli := &localClient{
2016-03-24 10:19:48 -07:00
mtx: mtx,
Application: app,
}
2017-01-23 20:26:17 -08:00
cli.BaseService = *cmn.NewBaseService(log, "localClient", cli)
return cli
2016-03-24 10:19:48 -07:00
}
func (app *localClient) SetResponseCallback(cb Callback) {
app.mtx.Lock()
defer app.mtx.Unlock()
app.Callback = cb
}
// TODO: change types.Application to include Error()?
func (app *localClient) Error() error {
return nil
}
func (app *localClient) FlushAsync() *ReqRes {
// Do nothing
2016-05-13 23:22:32 -07:00
return newLocalReqRes(types.ToRequestFlush(), nil)
2016-03-24 10:19:48 -07:00
}
func (app *localClient) EchoAsync(msg string) *ReqRes {
return app.callback(
2016-05-13 23:22:32 -07:00
types.ToRequestEcho(msg),
types.ToResponseEcho(msg),
2016-03-24 10:19:48 -07:00
)
}
func (app *localClient) InfoAsync() *ReqRes {
app.mtx.Lock()
2016-12-26 17:44:36 -08:00
resInfo := app.Application.Info()
2016-03-24 10:19:48 -07:00
app.mtx.Unlock()
return app.callback(
2016-05-13 23:22:32 -07:00
types.ToRequestInfo(),
2016-12-26 17:44:36 -08:00
types.ToResponseInfo(resInfo),
2016-03-24 10:19:48 -07:00
)
}
func (app *localClient) SetOptionAsync(key string, value string) *ReqRes {
app.mtx.Lock()
log := app.Application.SetOption(key, value)
app.mtx.Unlock()
return app.callback(
2016-05-13 23:22:32 -07:00
types.ToRequestSetOption(key, value),
types.ToResponseSetOption(log),
2016-03-24 10:19:48 -07:00
)
}
2017-01-12 12:27:08 -08:00
func (app *localClient) DeliverTxAsync(tx []byte) *ReqRes {
2016-03-24 10:19:48 -07:00
app.mtx.Lock()
2017-01-12 12:27:08 -08:00
res := app.Application.DeliverTx(tx)
2016-03-24 10:19:48 -07:00
app.mtx.Unlock()
return app.callback(
2017-01-12 12:27:08 -08:00
types.ToRequestDeliverTx(tx),
types.ToResponseDeliverTx(res.Code, res.Data, res.Log),
2016-03-24 10:19:48 -07:00
)
}
func (app *localClient) CheckTxAsync(tx []byte) *ReqRes {
app.mtx.Lock()
res := app.Application.CheckTx(tx)
app.mtx.Unlock()
return app.callback(
2016-05-13 23:22:32 -07:00
types.ToRequestCheckTx(tx),
types.ToResponseCheckTx(res.Code, res.Data, res.Log),
2016-03-24 10:19:48 -07:00
)
}
func (app *localClient) QueryAsync(reqQuery types.RequestQuery) *ReqRes {
2016-03-24 10:19:48 -07:00
app.mtx.Lock()
resQuery := app.Application.Query(reqQuery)
2016-03-24 10:19:48 -07:00
app.mtx.Unlock()
return app.callback(
types.ToRequestQuery(reqQuery),
types.ToResponseQuery(resQuery),
2016-03-24 10:19:48 -07:00
)
}
func (app *localClient) CommitAsync() *ReqRes {
app.mtx.Lock()
res := app.Application.Commit()
app.mtx.Unlock()
return app.callback(
2016-05-13 23:22:32 -07:00
types.ToRequestCommit(),
types.ToResponseCommit(res.Code, res.Data, res.Log),
2016-03-24 10:19:48 -07:00
)
}
2016-03-26 22:35:23 -07:00
func (app *localClient) InitChainAsync(validators []*types.Validator) *ReqRes {
app.mtx.Lock()
2017-02-06 16:08:37 -08:00
app.Application.InitChain(validators)
2016-03-26 22:35:23 -07:00
reqRes := app.callback(
2016-05-13 23:22:32 -07:00
types.ToRequestInitChain(validators),
types.ToResponseInitChain(),
2016-03-26 22:35:23 -07:00
)
app.mtx.Unlock()
return reqRes
}
2016-09-09 20:01:53 -07:00
func (app *localClient) BeginBlockAsync(hash []byte, header *types.Header) *ReqRes {
2016-03-26 22:35:23 -07:00
app.mtx.Lock()
2017-02-06 16:08:37 -08:00
app.Application.BeginBlock(hash, header)
2016-03-26 22:35:23 -07:00
app.mtx.Unlock()
return app.callback(
2016-09-09 20:01:53 -07:00
types.ToRequestBeginBlock(hash, header),
2016-05-13 23:22:32 -07:00
types.ToResponseBeginBlock(),
2016-03-26 22:35:23 -07:00
)
}
func (app *localClient) EndBlockAsync(height uint64) *ReqRes {
app.mtx.Lock()
2017-02-06 16:08:37 -08:00
resEndBlock := app.Application.EndBlock(height)
2016-03-26 22:35:23 -07:00
app.mtx.Unlock()
return app.callback(
2016-05-13 23:22:32 -07:00
types.ToRequestEndBlock(height),
2016-12-26 22:12:32 -08:00
types.ToResponseEndBlock(resEndBlock),
2016-03-26 22:35:23 -07:00
)
}
2016-03-24 10:19:48 -07:00
//-------------------------------------------------------
func (app *localClient) FlushSync() error {
return nil
}
func (app *localClient) EchoSync(msg string) (res types.Result) {
return types.OK.SetData([]byte(msg))
}
2016-12-26 17:44:36 -08:00
func (app *localClient) InfoSync() (resInfo types.ResponseInfo, err error) {
2016-03-24 10:19:48 -07:00
app.mtx.Lock()
defer app.mtx.Unlock()
2016-12-26 17:44:36 -08:00
resInfo = app.Application.Info()
return resInfo, nil
2016-03-24 10:19:48 -07:00
}
func (app *localClient) SetOptionSync(key string, value string) (res types.Result) {
app.mtx.Lock()
log := app.Application.SetOption(key, value)
app.mtx.Unlock()
return types.OK.SetLog(log)
}
2017-01-12 12:27:08 -08:00
func (app *localClient) DeliverTxSync(tx []byte) (res types.Result) {
2016-03-24 10:19:48 -07:00
app.mtx.Lock()
2017-01-12 12:27:08 -08:00
res = app.Application.DeliverTx(tx)
2016-03-24 10:19:48 -07:00
app.mtx.Unlock()
return res
}
func (app *localClient) CheckTxSync(tx []byte) (res types.Result) {
app.mtx.Lock()
res = app.Application.CheckTx(tx)
app.mtx.Unlock()
return res
}
func (app *localClient) QuerySync(reqQuery types.RequestQuery) (resQuery types.ResponseQuery, err error) {
2016-03-24 10:19:48 -07:00
app.mtx.Lock()
resQuery = app.Application.Query(reqQuery)
2016-03-24 10:19:48 -07:00
app.mtx.Unlock()
return resQuery, nil
2016-03-24 10:19:48 -07:00
}
func (app *localClient) CommitSync() (res types.Result) {
app.mtx.Lock()
res = app.Application.Commit()
app.mtx.Unlock()
return res
}
func (app *localClient) InitChainSync(validators []*types.Validator) (err error) {
app.mtx.Lock()
2017-02-06 16:08:37 -08:00
app.Application.InitChain(validators)
2016-03-24 10:19:48 -07:00
app.mtx.Unlock()
return nil
}
2016-09-09 20:01:53 -07:00
func (app *localClient) BeginBlockSync(hash []byte, header *types.Header) (err error) {
2016-03-26 22:35:23 -07:00
app.mtx.Lock()
2017-02-06 16:08:37 -08:00
app.Application.BeginBlock(hash, header)
2016-03-26 22:35:23 -07:00
app.mtx.Unlock()
return nil
}
2016-12-26 22:12:32 -08:00
func (app *localClient) EndBlockSync(height uint64) (resEndBlock types.ResponseEndBlock, err error) {
2016-03-24 10:19:48 -07:00
app.mtx.Lock()
2017-02-06 16:08:37 -08:00
resEndBlock = app.Application.EndBlock(height)
2016-03-24 10:19:48 -07:00
app.mtx.Unlock()
2016-12-26 22:12:32 -08:00
return resEndBlock, nil
2016-03-24 10:19:48 -07:00
}
//-------------------------------------------------------
func (app *localClient) callback(req *types.Request, res *types.Response) *ReqRes {
app.Callback(req, res)
return newLocalReqRes(req, res)
}
func newLocalReqRes(req *types.Request, res *types.Response) *ReqRes {
reqRes := NewReqRes(req)
reqRes.Response = res
reqRes.SetDone()
return reqRes
}