- package types
-
- import (
- "bytes"
- "encoding/json"
-
- "github.com/gogo/protobuf/jsonpb"
-
- types "github.com/tendermint/tendermint/proto/tendermint/types"
- )
-
- const (
- CodeTypeOK uint32 = 0
- )
-
- // IsOK returns true if Code is OK.
- func (r ResponseCheckTx) IsOK() bool {
- return r.Code == CodeTypeOK
- }
-
- // IsErr returns true if Code is something other than OK.
- func (r ResponseCheckTx) IsErr() bool {
- return r.Code != CodeTypeOK
- }
-
- // IsOK returns true if Code is OK.
- func (r ResponseDeliverTx) IsOK() bool {
- return r.Code == CodeTypeOK
- }
-
- // IsErr returns true if Code is something other than OK.
- func (r ResponseDeliverTx) IsErr() bool {
- return r.Code != CodeTypeOK
- }
-
- // IsOK returns true if Code is OK.
- func (r ExecTxResult) IsOK() bool {
- return r.Code == CodeTypeOK
- }
-
- // IsErr returns true if Code is something other than OK.
- func (r ExecTxResult) IsErr() bool {
- return r.Code != CodeTypeOK
- }
-
- // IsOK returns true if Code is OK.
- func (r ResponseQuery) IsOK() bool {
- return r.Code == CodeTypeOK
- }
-
- // IsErr returns true if Code is something other than OK.
- func (r ResponseQuery) IsErr() bool {
- return r.Code != CodeTypeOK
- }
-
- // IsUnknown returns true if Code is Unknown
- func (r ResponseVerifyVoteExtension) IsUnknown() bool {
- return r.Result == ResponseVerifyVoteExtension_UNKNOWN
- }
-
- // IsOK returns true if Code is OK
- func (r ResponseVerifyVoteExtension) IsOK() bool {
- return r.Result == ResponseVerifyVoteExtension_ACCEPT
- }
-
- // IsErr returns true if Code is something other than OK.
- func (r ResponseVerifyVoteExtension) IsErr() bool {
- return r.Result != ResponseVerifyVoteExtension_ACCEPT
- }
-
- //---------------------------------------------------------------------------
- // override JSON marshaling so we emit defaults (ie. disable omitempty)
-
- var (
- jsonpbMarshaller = jsonpb.Marshaler{
- EnumsAsInts: true,
- EmitDefaults: true,
- }
- jsonpbUnmarshaller = jsonpb.Unmarshaler{}
- )
-
- func (r *ResponseCheckTx) MarshalJSON() ([]byte, error) {
- s, err := jsonpbMarshaller.MarshalToString(r)
- return []byte(s), err
- }
-
- func (r *ResponseCheckTx) UnmarshalJSON(b []byte) error {
- reader := bytes.NewBuffer(b)
- return jsonpbUnmarshaller.Unmarshal(reader, r)
- }
-
- func (r *ResponseDeliverTx) MarshalJSON() ([]byte, error) {
- s, err := jsonpbMarshaller.MarshalToString(r)
- return []byte(s), err
- }
-
- func (r *ResponseDeliverTx) UnmarshalJSON(b []byte) error {
- reader := bytes.NewBuffer(b)
- return jsonpbUnmarshaller.Unmarshal(reader, r)
- }
-
- func (r *ResponseQuery) MarshalJSON() ([]byte, error) {
- s, err := jsonpbMarshaller.MarshalToString(r)
- return []byte(s), err
- }
-
- func (r *ResponseQuery) UnmarshalJSON(b []byte) error {
- reader := bytes.NewBuffer(b)
- return jsonpbUnmarshaller.Unmarshal(reader, r)
- }
-
- func (r *ResponseCommit) MarshalJSON() ([]byte, error) {
- s, err := jsonpbMarshaller.MarshalToString(r)
- return []byte(s), err
- }
-
- func (r *ResponseCommit) UnmarshalJSON(b []byte) error {
- reader := bytes.NewBuffer(b)
- return jsonpbUnmarshaller.Unmarshal(reader, r)
- }
-
- func (r *EventAttribute) MarshalJSON() ([]byte, error) {
- s, err := jsonpbMarshaller.MarshalToString(r)
- return []byte(s), err
- }
-
- func (r *EventAttribute) UnmarshalJSON(b []byte) error {
- reader := bytes.NewBuffer(b)
- return jsonpbUnmarshaller.Unmarshal(reader, r)
- }
-
- // Some compile time assertions to ensure we don't
- // have accidental runtime surprises later on.
-
- // jsonEncodingRoundTripper ensures that asserted
- // interfaces implement both MarshalJSON and UnmarshalJSON
- type jsonRoundTripper interface {
- json.Marshaler
- json.Unmarshaler
- }
-
- var _ jsonRoundTripper = (*ResponseCommit)(nil)
- var _ jsonRoundTripper = (*ResponseQuery)(nil)
- var _ jsonRoundTripper = (*ResponseDeliverTx)(nil)
- var _ jsonRoundTripper = (*ResponseCheckTx)(nil)
-
- var _ jsonRoundTripper = (*EventAttribute)(nil)
-
- // -----------------------------------------------
- // construct Result data
-
- func RespondExtendVote(appDataToSign, appDataSelfAuthenticating []byte) ResponseExtendVote {
- return ResponseExtendVote{
- VoteExtension: &types.VoteExtension{
- AppDataToSign: appDataToSign,
- AppDataSelfAuthenticating: appDataSelfAuthenticating,
- },
- }
- }
-
- func RespondVerifyVoteExtension(ok bool) ResponseVerifyVoteExtension {
- result := ResponseVerifyVoteExtension_REJECT
- if ok {
- result = ResponseVerifyVoteExtension_ACCEPT
- }
- return ResponseVerifyVoteExtension{
- Result: result,
- }
- }
|