Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) [2016] [ ]
* This file is part of the ethereumJ library.
*
* The ethereumJ library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The ethereumJ library 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the ethereumJ library. If not, see .
*/
package org.fisco.bcos.web3j.solidity;
import static com.fasterxml.jackson.annotation.JsonInclude.Include;
import static java.lang.String.format;
import static org.apache.commons.collections4.ListUtils.select;
import static org.apache.commons.lang3.ArrayUtils.subarray;
import static org.apache.commons.lang3.StringUtils.join;
import static org.apache.commons.lang3.StringUtils.stripEnd;
import static org.fisco.bcos.web3j.crypto.Hash.sha3;
import static org.fisco.bcos.web3j.solidity.SolidityType.IntType.decodeInt;
import static org.fisco.bcos.web3j.solidity.SolidityType.IntType.encodeInt;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.collections4.Predicate;
import org.fisco.bcos.web3j.utils.ByteUtil;
public class Abi extends ArrayList {
private static final ObjectMapper DEFAULT_MAPPER =
new ObjectMapper()
.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES)
.enable(DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_AS_NULL);
public static Abi fromJson(String json) {
try {
return DEFAULT_MAPPER.readValue(json, Abi.class);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public String toJson() {
try {
return new ObjectMapper().writeValueAsString(this);
} catch (JsonProcessingException e) {
throw new RuntimeException(e);
}
}
private T find(
Class resultClass, final Entry.Type type, final Predicate searchPredicate) {
return (T)
CollectionUtils.find(
this, entry -> entry.type == type && searchPredicate.evaluate((T) entry));
}
public Function findFunction(Predicate searchPredicate) {
return find(Function.class, Entry.Type.function, searchPredicate);
}
public Event findEvent(Predicate searchPredicate) {
return find(Event.class, Entry.Type.event, searchPredicate);
}
public Constructor findConstructor() {
return find(Constructor.class, Entry.Type.constructor, object -> true);
}
@Override
public String toString() {
return toJson();
}
@JsonInclude(Include.NON_NULL)
public abstract static class Entry {
public enum Type {
constructor,
function,
event,
fallback
}
@JsonInclude(Include.NON_NULL)
public static class Param {
public Boolean indexed;
public String name;
public SolidityType type;
public static List> decodeList(List params, byte[] encoded) {
List