Skip to content

Instantly share code, notes, and snippets.

@devhawk
Last active August 26, 2020 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devhawk/4394bb9be2af0b0ff54211b41574b65b to your computer and use it in GitHub Desktop.
Save devhawk/4394bb9be2af0b0ff54211b41574b65b to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
using Neo;
using Neo.Cryptography.ECC;
using Neo.IO;
using Neo.SmartContract;
using Neo.VM;
using Neo.Wallets;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace NeoExpress.Neo3
{
// https://gist.github.com/devhawk/4394bb9be2af0b0ff54211b41574b65b
public static class ContractParameterParser
{
public static async Task<Script> LoadInvocationScript(string invocationFilePath)
{
JToken invokeFileJson;
{
using var fileStream = File.OpenRead(invocationFilePath);
using var textReader = new StreamReader(fileStream);
using var jsonReader = new JsonTextReader(textReader);
invokeFileJson = await JToken.LoadAsync(jsonReader).ConfigureAwait(false);
}
using var sb = new ScriptBuilder();
switch (invokeFileJson.Type)
{
case JTokenType.Object:
EmitAppCall(sb, (JObject)invokeFileJson);
break;
case JTokenType.Array:
{
JArray array = (JArray)invokeFileJson;
for (int i = 0; i < array.Count; i++)
{
if (array[i].Type != JTokenType.Object)
{
throw new InvalidDataException("invalid invocation file");
}
EmitAppCall(sb, (JObject)array[i]);
}
}
break;
default:
throw new InvalidDataException("invalid invocation file");
}
return sb.ToArray();
void EmitAppCall(ScriptBuilder scriptBuilder, JObject json)
{
var scriptHash = GetScriptHash(json["contract"]);
var operation = json.Value<string>("operation");
var args = ContractParameterParser.ParseParams(json.GetValue("args")).ToArray();
scriptBuilder.EmitAppCall(scriptHash, operation, args);
}
UInt160 GetScriptHash(JToken? json)
{
if (json != null && json is JObject jObject)
{
if (jObject.TryGetValue("hash", out var jsonHash))
{
return UInt160.Parse(jsonHash.Value<string>());
}
if (jObject.TryGetValue("path", out var jsonPath))
{
var path = jsonPath.Value<string>();
path = Path.IsPathFullyQualified(path)
? path
: Path.Combine(Path.GetDirectoryName(invocationFilePath), path);
using var stream = File.OpenRead(path);
using var reader = new BinaryReader(stream, Encoding.UTF8, false);
return reader.ReadSerializable<NefFile>().ScriptHash;
}
}
throw new InvalidDataException("invalid contract property");
}
}
public static IEnumerable<ContractParameter> ParseParams(JToken? @params)
{
if (@params == null)
{
return Enumerable.Empty<ContractParameter>();
}
if (@params is JArray jArray)
{
return jArray.Select(ParseParam);
}
return Enumerable.Repeat(ParseParam(@params), 1);
}
private static ContractParameter ParseParam(JToken param)
{
return param.Type switch
{
JTokenType.String => ParseStringParam(param.Value<string>()),
JTokenType.Boolean => new ContractParameter()
{
Type = ContractParameterType.Boolean,
Value = param.Value<bool>()
},
JTokenType.Integer => new ContractParameter()
{
Type = ContractParameterType.Integer,
Value = new BigInteger(param.Value<int>())
},
JTokenType.Array => new ContractParameter()
{
Type = ContractParameterType.Array,
Value = ((JArray)param).Select(ParseParam).ToList(),
},
JTokenType.Object => ParseObjectParam((JObject)param),
_ => throw new ArgumentException(nameof(param))
};
}
private static ContractParameter ParseStringParam(string param)
{
if (TryParseScriptHash(out var scriptHash))
{
return new ContractParameter()
{
Type = ContractParameterType.Hash160,
Value = scriptHash
};
}
if (param[0] == '#'
&& UInt160.TryParse(param[1..], out var uint160))
{
return new ContractParameter()
{
Type = ContractParameterType.Hash160,
Value = uint160
};
}
if (param[0] == '#'
&& UInt256.TryParse(param[1..], out var uint256))
{
return new ContractParameter()
{
Type = ContractParameterType.Hash256,
Value = uint256
};
}
if (param.StartsWith("0x")
&& BigInteger.TryParse(param.AsSpan()[2..], NumberStyles.HexNumber, null, out var bigInteger))
{
return new ContractParameter()
{
Type = ContractParameterType.Integer,
Value = bigInteger
};
}
return new ContractParameter()
{
Type = ContractParameterType.String,
Value = param
};
bool TryParseScriptHash(out UInt160 value)
{
try
{
if (param[0] == '@')
{
value = param[1..].ToScriptHash();
return true;
}
}
catch
{
}
value = default!;
return false;
}
}
private static ContractParameter ParseObjectParam(JObject param)
{
var type = Enum.Parse<ContractParameterType>(param.Value<string>("type"));
var jValue = param["value"] ?? throw new InvalidOperationException();
object value = type switch
{
ContractParameterType.Array => jValue.Select(ParseParam).ToArray(),
ContractParameterType.Boolean => jValue.Value<bool>(),
ContractParameterType.ByteArray => ParseByteArray(jValue),
ContractParameterType.Hash160 => UInt160.Parse(jValue.Value<string>()),
ContractParameterType.Hash256 => UInt256.Parse(jValue.Value<string>()),
ContractParameterType.Integer => BigInteger.Parse(jValue.Value<string>()),
ContractParameterType.Map => jValue.Select(ParseMapElement).ToArray(),
ContractParameterType.PublicKey => ECPoint.Parse(jValue.Value<string>(), ECCurve.Secp256r1),
ContractParameterType.Signature => ParseByteArray(jValue),
ContractParameterType.String => jValue.Value<string>(),
_ => throw new ArgumentException(nameof(param) + $" {type}"),
};
return new ContractParameter()
{
Type = type,
Value = value,
};
static byte[] ParseByteArray(JToken json)
{
var value = json.Value<string>();
return value.StartsWith("0x")
? value[2..].HexToBytes()
: Convert.FromBase64String(value);
}
static KeyValuePair<ContractParameter, ContractParameter> ParseMapElement(JToken json) =>
KeyValuePair.Create(
ParseParam(json["key"] ?? throw new InvalidOperationException()),
ParseParam(json["value"] ?? throw new InvalidOperationException()));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment