2021-03-03 15:59:10 +00:00
|
|
|
package native
|
|
|
|
|
|
|
|
import (
|
2021-04-30 12:02:44 +00:00
|
|
|
"bytes"
|
2021-03-03 15:59:10 +00:00
|
|
|
"encoding/base64"
|
|
|
|
"encoding/hex"
|
|
|
|
"errors"
|
|
|
|
"math/big"
|
|
|
|
"strings"
|
2023-11-20 16:23:33 +00:00
|
|
|
"unicode/utf8"
|
2021-03-03 15:59:10 +00:00
|
|
|
|
|
|
|
"github.com/mr-tron/base58"
|
2023-08-08 15:52:14 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/config"
|
2023-04-26 09:52:59 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/dao"
|
2021-03-03 15:59:10 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/native/nativenames"
|
2021-05-25 14:31:57 +00:00
|
|
|
base58neogo "github.com/nspcc-dev/neo-go/pkg/encoding/base58"
|
2021-03-03 15:59:10 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/bigint"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/callflag"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest"
|
2021-07-18 13:08:23 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util/slice"
|
2021-03-03 15:59:10 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
|
|
)
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// Std represents an StdLib contract.
|
2021-03-03 15:59:10 +00:00
|
|
|
type Std struct {
|
|
|
|
interop.ContractMD
|
|
|
|
}
|
|
|
|
|
2021-04-30 08:44:06 +00:00
|
|
|
const (
|
|
|
|
stdContractID = -2
|
|
|
|
|
|
|
|
// stdMaxInputLength is the maximum input length for string-related methods.
|
|
|
|
stdMaxInputLength = 1024
|
|
|
|
)
|
2021-03-03 15:59:10 +00:00
|
|
|
|
|
|
|
var (
|
2022-04-20 18:30:09 +00:00
|
|
|
// ErrInvalidBase is returned when the base is invalid.
|
2021-03-03 15:59:10 +00:00
|
|
|
ErrInvalidBase = errors.New("invalid base")
|
2022-04-20 18:30:09 +00:00
|
|
|
// ErrInvalidFormat is returned when the string is not a number.
|
2021-03-03 15:59:10 +00:00
|
|
|
ErrInvalidFormat = errors.New("invalid format")
|
2022-04-20 18:30:09 +00:00
|
|
|
// ErrTooBigInput is returned when the input exceeds the size limit.
|
2021-04-30 08:44:06 +00:00
|
|
|
ErrTooBigInput = errors.New("input is too big")
|
2021-03-03 15:59:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func newStd() *Std {
|
|
|
|
s := &Std{ContractMD: *interop.NewContractMD(nativenames.StdLib, stdContractID)}
|
|
|
|
defer s.UpdateHash()
|
|
|
|
|
|
|
|
desc := newDescriptor("serialize", smartcontract.ByteArrayType,
|
|
|
|
manifest.NewParameter("item", smartcontract.AnyType))
|
|
|
|
md := newMethodAndPrice(s.serialize, 1<<12, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("deserialize", smartcontract.AnyType,
|
|
|
|
manifest.NewParameter("data", smartcontract.ByteArrayType))
|
|
|
|
md = newMethodAndPrice(s.deserialize, 1<<14, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("jsonSerialize", smartcontract.ByteArrayType,
|
|
|
|
manifest.NewParameter("item", smartcontract.AnyType))
|
|
|
|
md = newMethodAndPrice(s.jsonSerialize, 1<<12, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("jsonDeserialize", smartcontract.AnyType,
|
|
|
|
manifest.NewParameter("json", smartcontract.ByteArrayType))
|
|
|
|
md = newMethodAndPrice(s.jsonDeserialize, 1<<14, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("itoa", smartcontract.StringType,
|
|
|
|
manifest.NewParameter("value", smartcontract.IntegerType),
|
|
|
|
manifest.NewParameter("base", smartcontract.IntegerType))
|
|
|
|
md = newMethodAndPrice(s.itoa, 1<<12, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2021-04-30 08:22:00 +00:00
|
|
|
desc = newDescriptor("itoa", smartcontract.StringType,
|
|
|
|
manifest.NewParameter("value", smartcontract.IntegerType))
|
|
|
|
md = newMethodAndPrice(s.itoa10, 1<<12, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2021-03-03 15:59:10 +00:00
|
|
|
desc = newDescriptor("atoi", smartcontract.IntegerType,
|
|
|
|
manifest.NewParameter("value", smartcontract.StringType),
|
|
|
|
manifest.NewParameter("base", smartcontract.IntegerType))
|
2021-04-30 08:44:06 +00:00
|
|
|
md = newMethodAndPrice(s.atoi, 1<<6, callflag.NoneFlag)
|
2021-03-03 15:59:10 +00:00
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2021-04-30 08:22:00 +00:00
|
|
|
desc = newDescriptor("atoi", smartcontract.IntegerType,
|
|
|
|
manifest.NewParameter("value", smartcontract.StringType))
|
2021-04-30 08:44:06 +00:00
|
|
|
md = newMethodAndPrice(s.atoi10, 1<<6, callflag.NoneFlag)
|
2021-04-30 08:22:00 +00:00
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2021-03-03 15:59:10 +00:00
|
|
|
desc = newDescriptor("base64Encode", smartcontract.StringType,
|
|
|
|
manifest.NewParameter("data", smartcontract.ByteArrayType))
|
2021-04-30 08:44:06 +00:00
|
|
|
md = newMethodAndPrice(s.base64Encode, 1<<5, callflag.NoneFlag)
|
2021-03-03 15:59:10 +00:00
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("base64Decode", smartcontract.ByteArrayType,
|
|
|
|
manifest.NewParameter("s", smartcontract.StringType))
|
2021-04-30 08:44:06 +00:00
|
|
|
md = newMethodAndPrice(s.base64Decode, 1<<5, callflag.NoneFlag)
|
2021-03-03 15:59:10 +00:00
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("base58Encode", smartcontract.StringType,
|
|
|
|
manifest.NewParameter("data", smartcontract.ByteArrayType))
|
2021-04-30 08:44:06 +00:00
|
|
|
md = newMethodAndPrice(s.base58Encode, 1<<13, callflag.NoneFlag)
|
2021-03-03 15:59:10 +00:00
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("base58Decode", smartcontract.ByteArrayType,
|
|
|
|
manifest.NewParameter("s", smartcontract.StringType))
|
2021-04-30 08:44:06 +00:00
|
|
|
md = newMethodAndPrice(s.base58Decode, 1<<10, callflag.NoneFlag)
|
2021-03-03 15:59:10 +00:00
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2021-05-25 14:31:57 +00:00
|
|
|
desc = newDescriptor("base58CheckEncode", smartcontract.StringType,
|
|
|
|
manifest.NewParameter("data", smartcontract.ByteArrayType))
|
|
|
|
md = newMethodAndPrice(s.base58CheckEncode, 1<<16, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("base58CheckDecode", smartcontract.ByteArrayType,
|
|
|
|
manifest.NewParameter("s", smartcontract.StringType))
|
|
|
|
md = newMethodAndPrice(s.base58CheckDecode, 1<<16, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2021-04-30 12:02:44 +00:00
|
|
|
desc = newDescriptor("memoryCompare", smartcontract.IntegerType,
|
|
|
|
manifest.NewParameter("str1", smartcontract.ByteArrayType),
|
|
|
|
manifest.NewParameter("str2", smartcontract.ByteArrayType))
|
|
|
|
md = newMethodAndPrice(s.memoryCompare, 1<<5, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2021-04-30 12:33:07 +00:00
|
|
|
desc = newDescriptor("memorySearch", smartcontract.IntegerType,
|
|
|
|
manifest.NewParameter("mem", smartcontract.ByteArrayType),
|
|
|
|
manifest.NewParameter("value", smartcontract.ByteArrayType))
|
|
|
|
md = newMethodAndPrice(s.memorySearch2, 1<<6, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("memorySearch", smartcontract.IntegerType,
|
|
|
|
manifest.NewParameter("mem", smartcontract.ByteArrayType),
|
|
|
|
manifest.NewParameter("value", smartcontract.ByteArrayType),
|
|
|
|
manifest.NewParameter("start", smartcontract.IntegerType))
|
|
|
|
md = newMethodAndPrice(s.memorySearch3, 1<<6, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("memorySearch", smartcontract.IntegerType,
|
|
|
|
manifest.NewParameter("mem", smartcontract.ByteArrayType),
|
|
|
|
manifest.NewParameter("value", smartcontract.ByteArrayType),
|
|
|
|
manifest.NewParameter("start", smartcontract.IntegerType),
|
|
|
|
manifest.NewParameter("backward", smartcontract.BoolType))
|
|
|
|
md = newMethodAndPrice(s.memorySearch4, 1<<6, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2021-04-30 14:00:29 +00:00
|
|
|
desc = newDescriptor("stringSplit", smartcontract.ArrayType,
|
|
|
|
manifest.NewParameter("str", smartcontract.StringType),
|
|
|
|
manifest.NewParameter("separator", smartcontract.StringType))
|
|
|
|
md = newMethodAndPrice(s.stringSplit2, 1<<8, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("stringSplit", smartcontract.ArrayType,
|
|
|
|
manifest.NewParameter("str", smartcontract.StringType),
|
|
|
|
manifest.NewParameter("separator", smartcontract.StringType),
|
|
|
|
manifest.NewParameter("removeEmptyEntries", smartcontract.BoolType))
|
|
|
|
md = newMethodAndPrice(s.stringSplit3, 1<<8, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2023-11-20 16:23:33 +00:00
|
|
|
desc = newDescriptor("strLen", smartcontract.IntegerType,
|
|
|
|
manifest.NewParameter("str", smartcontract.StringType))
|
|
|
|
md = newMethodAndPrice(s.strLen, 1<<8, callflag.NoneFlag)
|
|
|
|
s.AddMethod(md, desc)
|
|
|
|
|
2021-03-03 15:59:10 +00:00
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2022-05-31 17:10:20 +00:00
|
|
|
func (s *Std) serialize(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
data, err := ic.DAO.GetItemCtx().Serialize(args[0], false)
|
2021-03-03 15:59:10 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if len(data) > stackitem.MaxSize {
|
|
|
|
panic(errors.New("too big item"))
|
|
|
|
}
|
|
|
|
|
2024-03-04 18:09:36 +00:00
|
|
|
return stackitem.NewByteArray(bytes.Clone(data)) // Serialization context can be reused.
|
2021-03-03 15:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) deserialize(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
data, err := args[0].TryBytes()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2021-07-06 16:56:23 +00:00
|
|
|
item, err := stackitem.Deserialize(data)
|
2021-03-03 15:59:10 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return item
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) jsonSerialize(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
data, err := stackitem.ToJSON(args[0])
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if len(data) > stackitem.MaxSize {
|
|
|
|
panic(errors.New("too big item"))
|
|
|
|
}
|
|
|
|
|
|
|
|
return stackitem.NewByteArray(data)
|
|
|
|
}
|
|
|
|
|
2023-08-08 15:52:14 +00:00
|
|
|
func (s *Std) jsonDeserialize(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
2021-03-03 15:59:10 +00:00
|
|
|
data, err := args[0].TryBytes()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2023-08-08 15:52:14 +00:00
|
|
|
item, err := stackitem.FromJSON(data, stackitem.MaxDeserialized, ic.IsHardforkEnabled(config.HFBasilisk))
|
2021-03-03 15:59:10 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return item
|
|
|
|
}
|
|
|
|
|
2021-04-30 08:22:00 +00:00
|
|
|
func (s *Std) itoa10(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
num := toBigInt(args[0])
|
|
|
|
return stackitem.NewByteArray([]byte(num.Text(10)))
|
|
|
|
}
|
|
|
|
|
2021-03-03 15:59:10 +00:00
|
|
|
func (s *Std) itoa(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
num := toBigInt(args[0])
|
|
|
|
base := toBigInt(args[1])
|
|
|
|
if !base.IsInt64() {
|
|
|
|
panic(ErrInvalidBase)
|
|
|
|
}
|
|
|
|
var str string
|
|
|
|
switch b := base.Int64(); b {
|
|
|
|
case 10:
|
|
|
|
str = num.Text(10)
|
|
|
|
case 16:
|
|
|
|
if num.Sign() == 0 {
|
|
|
|
str = "0"
|
|
|
|
break
|
|
|
|
}
|
|
|
|
bs := bigint.ToBytes(num)
|
2021-07-18 13:08:23 +00:00
|
|
|
slice.Reverse(bs)
|
2021-03-03 15:59:10 +00:00
|
|
|
str = hex.EncodeToString(bs)
|
|
|
|
if pad := bs[0] & 0xF8; pad == 0 || pad == 0xF8 {
|
|
|
|
str = str[1:]
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
panic(ErrInvalidBase)
|
|
|
|
}
|
|
|
|
return stackitem.NewByteArray([]byte(str))
|
|
|
|
}
|
|
|
|
|
2021-04-30 08:22:00 +00:00
|
|
|
func (s *Std) atoi10(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
2021-04-30 08:44:06 +00:00
|
|
|
num := s.toLimitedString(args[0])
|
2021-04-30 08:22:00 +00:00
|
|
|
res := s.atoi10Aux(num)
|
|
|
|
return stackitem.NewBigInteger(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) atoi10Aux(num string) *big.Int {
|
|
|
|
bi, ok := new(big.Int).SetString(num, 10)
|
|
|
|
if !ok {
|
|
|
|
panic(ErrInvalidFormat)
|
|
|
|
}
|
|
|
|
return bi
|
|
|
|
}
|
|
|
|
|
2021-03-03 15:59:10 +00:00
|
|
|
func (s *Std) atoi(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
2021-04-30 08:44:06 +00:00
|
|
|
num := s.toLimitedString(args[0])
|
2021-03-03 15:59:10 +00:00
|
|
|
base := toBigInt(args[1])
|
|
|
|
if !base.IsInt64() {
|
|
|
|
panic(ErrInvalidBase)
|
|
|
|
}
|
|
|
|
var bi *big.Int
|
|
|
|
switch b := base.Int64(); b {
|
|
|
|
case 10:
|
2021-04-30 08:22:00 +00:00
|
|
|
bi = s.atoi10Aux(num)
|
2021-03-03 15:59:10 +00:00
|
|
|
case 16:
|
|
|
|
changed := len(num)%2 != 0
|
|
|
|
if changed {
|
|
|
|
num = "0" + num
|
|
|
|
}
|
|
|
|
bs, err := hex.DecodeString(num)
|
|
|
|
if err != nil {
|
|
|
|
panic(ErrInvalidFormat)
|
|
|
|
}
|
|
|
|
if changed && bs[0]&0x8 != 0 {
|
|
|
|
bs[0] |= 0xF0
|
|
|
|
}
|
2021-07-18 13:08:23 +00:00
|
|
|
slice.Reverse(bs)
|
2021-03-03 15:59:10 +00:00
|
|
|
bi = bigint.FromBytes(bs)
|
|
|
|
default:
|
|
|
|
panic(ErrInvalidBase)
|
|
|
|
}
|
|
|
|
|
|
|
|
return stackitem.NewBigInteger(bi)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) base64Encode(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
2021-04-30 08:44:06 +00:00
|
|
|
src := s.toLimitedBytes(args[0])
|
2021-03-03 15:59:10 +00:00
|
|
|
result := base64.StdEncoding.EncodeToString(src)
|
|
|
|
|
|
|
|
return stackitem.NewByteArray([]byte(result))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) base64Decode(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
2021-04-30 08:44:06 +00:00
|
|
|
src := s.toLimitedString(args[0])
|
2021-03-03 15:59:10 +00:00
|
|
|
result, err := base64.StdEncoding.DecodeString(src)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return stackitem.NewByteArray(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) base58Encode(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
2021-04-30 08:44:06 +00:00
|
|
|
src := s.toLimitedBytes(args[0])
|
2021-03-03 15:59:10 +00:00
|
|
|
result := base58.Encode(src)
|
|
|
|
|
|
|
|
return stackitem.NewByteArray([]byte(result))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) base58Decode(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
2021-04-30 08:44:06 +00:00
|
|
|
src := s.toLimitedString(args[0])
|
2021-03-03 15:59:10 +00:00
|
|
|
result, err := base58.Decode(src)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return stackitem.NewByteArray(result)
|
|
|
|
}
|
|
|
|
|
2021-05-25 14:31:57 +00:00
|
|
|
func (s *Std) base58CheckEncode(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
src := s.toLimitedBytes(args[0])
|
|
|
|
result := base58neogo.CheckEncode(src)
|
|
|
|
|
|
|
|
return stackitem.NewByteArray([]byte(result))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) base58CheckDecode(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
src := s.toLimitedString(args[0])
|
|
|
|
result, err := base58neogo.CheckDecode(src)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return stackitem.NewByteArray(result)
|
|
|
|
}
|
|
|
|
|
2021-04-30 12:02:44 +00:00
|
|
|
func (s *Std) memoryCompare(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
s1 := s.toLimitedBytes(args[0])
|
|
|
|
s2 := s.toLimitedBytes(args[1])
|
|
|
|
return stackitem.NewBigInteger(big.NewInt(int64(bytes.Compare(s1, s2))))
|
|
|
|
}
|
|
|
|
|
2021-04-30 12:33:07 +00:00
|
|
|
func (s *Std) memorySearch2(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
mem := s.toLimitedBytes(args[0])
|
|
|
|
val := s.toLimitedBytes(args[1])
|
|
|
|
index := s.memorySearchAux(mem, val, 0, false)
|
|
|
|
return stackitem.NewBigInteger(big.NewInt(int64(index)))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) memorySearch3(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
mem := s.toLimitedBytes(args[0])
|
|
|
|
val := s.toLimitedBytes(args[1])
|
|
|
|
start := toUint32(args[2])
|
|
|
|
index := s.memorySearchAux(mem, val, int(start), false)
|
|
|
|
return stackitem.NewBigInteger(big.NewInt(int64(index)))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) memorySearch4(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
mem := s.toLimitedBytes(args[0])
|
|
|
|
val := s.toLimitedBytes(args[1])
|
|
|
|
start := toUint32(args[2])
|
|
|
|
backward, err := args[3].TryBool()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
index := s.memorySearchAux(mem, val, int(start), backward)
|
|
|
|
return stackitem.NewBigInteger(big.NewInt(int64(index)))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) memorySearchAux(mem, val []byte, start int, backward bool) int {
|
|
|
|
if backward {
|
|
|
|
if start > len(mem) { // panic in case if cap(mem) > len(mem) for some reasons
|
|
|
|
panic("invalid start index")
|
|
|
|
}
|
|
|
|
return bytes.LastIndex(mem[:start], val)
|
|
|
|
}
|
|
|
|
|
|
|
|
index := bytes.Index(mem[start:], val)
|
|
|
|
if index < 0 {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
return index + start
|
|
|
|
}
|
|
|
|
|
2021-04-30 14:00:29 +00:00
|
|
|
func (s *Std) stringSplit2(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
str := s.toLimitedString(args[0])
|
|
|
|
sep := toString(args[1])
|
|
|
|
return stackitem.NewArray(s.stringSplitAux(str, sep, false))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) stringSplit3(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
str := s.toLimitedString(args[0])
|
|
|
|
sep := toString(args[1])
|
|
|
|
removeEmpty, err := args[2].TryBool()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return stackitem.NewArray(s.stringSplitAux(str, sep, removeEmpty))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) stringSplitAux(str, sep string, removeEmpty bool) []stackitem.Item {
|
|
|
|
var result []stackitem.Item
|
|
|
|
|
|
|
|
arr := strings.Split(str, sep)
|
|
|
|
for i := range arr {
|
|
|
|
if !removeEmpty || len(arr[i]) != 0 {
|
|
|
|
result = append(result, stackitem.Make(arr[i]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2023-11-20 16:23:33 +00:00
|
|
|
func (s *Std) strLen(_ *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
str := s.toLimitedString(args[0])
|
|
|
|
|
|
|
|
return stackitem.NewBigInteger(big.NewInt(int64(utf8.RuneCountInString(str))))
|
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// Metadata implements the Contract interface.
|
2021-03-03 15:59:10 +00:00
|
|
|
func (s *Std) Metadata() *interop.ContractMD {
|
|
|
|
return &s.ContractMD
|
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// Initialize implements the Contract interface.
|
2021-03-03 15:59:10 +00:00
|
|
|
func (s *Std) Initialize(ic *interop.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-04-26 09:52:59 +00:00
|
|
|
// InitializeCache implements the Contract interface.
|
|
|
|
func (s *Std) InitializeCache(blockHeight uint32, d *dao.Simple) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// OnPersist implements the Contract interface.
|
2021-03-03 15:59:10 +00:00
|
|
|
func (s *Std) OnPersist(ic *interop.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// PostPersist implements the Contract interface.
|
2021-03-03 15:59:10 +00:00
|
|
|
func (s *Std) PostPersist(ic *interop.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|
2021-04-30 08:44:06 +00:00
|
|
|
|
2023-11-21 09:35:18 +00:00
|
|
|
// ActiveIn implements the Contract interface.
|
|
|
|
func (s *Std) ActiveIn() *config.Hardfork {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-30 08:44:06 +00:00
|
|
|
func (s *Std) toLimitedBytes(item stackitem.Item) []byte {
|
|
|
|
src, err := item.TryBytes()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if len(src) > stdMaxInputLength {
|
|
|
|
panic(ErrTooBigInput)
|
|
|
|
}
|
|
|
|
return src
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Std) toLimitedString(item stackitem.Item) string {
|
|
|
|
src := toString(item)
|
|
|
|
if len(src) > stdMaxInputLength {
|
|
|
|
panic(ErrTooBigInput)
|
|
|
|
}
|
|
|
|
return src
|
|
|
|
}
|