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 2014-2020 [fisco-dev]
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*
*/
package org.fisco.bcos.sdk.v3.model;
import java.lang.reflect.Field;
import java.util.HashMap;
import java.util.Map;
public class PrecompiledRetCode {
// FileSystemPrecompiled -53099 ~ -53000
public static final RetCode CODE_ADDRESS_OR_VERSION_ERROR =
new RetCode(-51202, "The contract address or version is invalid");
public static final RetCode CODE_VERSION_LENGTH_OVERFLOW =
new RetCode(-51201, "The version string length exceeds the maximum limit");
public static final RetCode CODE_FILE_INVALID_PATH = new RetCode(-53005, "Invalid path");
public static final RetCode CODE_FILE_SET_WASM_FAILED =
new RetCode(-53004, "Deploy WASM contract failed");
public static final RetCode CODE_FILE_BUILD_DIR_FAILED =
new RetCode(-53003, "Make directory failed");
public static final RetCode CODE_FILE_ALREADY_EXIST =
new RetCode(-53002, "File already existed");
public static final RetCode CODE_FILE_NOT_EXIST = new RetCode(-53001, "Path of file not exist");
// ChainGovernancePrecompiled -52099 ~ -52000
public static final RetCode CODE_CURRENT_VALUE_IS_EXPECTED_VALUE =
new RetCode(-52012, "The current value is expected");
public static final RetCode CODE_ACCOUNT_FROZEN = new RetCode(-52011, "The account is frozen");
public static final RetCode CODE_ACCOUNT_ALREADY_AVAILABLE =
new RetCode(-52010, "The account is already available");
public static final RetCode CODE_INVALID_ACCOUNT_ADDRESS =
new RetCode(-52009, "Invalid account address");
public static final RetCode CODE_ACCOUNT_NOT_EXIST =
new RetCode(
-52008,
"Account not exist, you can create a blockchain account by using this account to deploy contracts on the chain");
public static final RetCode CODE_OPERATOR_NOT_EXIST =
new RetCode(-52007, "The operator not exist");
public static final RetCode CODE_OPERATOR_EXIST =
new RetCode(-52006, "The operator already exist");
public static final RetCode CODE_COMMITTEE_MEMBER_CANNOT_BE_OPERATOR =
new RetCode(-52005, "The committee member cannot be operator");
public static final RetCode CODE_OPERATOR_CANNOT_BE_COMMITTEE_MEMBER =
new RetCode(-52004, "The operator cannot be committee member");
public static final RetCode CODE_INVALID_THRESHOLD =
new RetCode(-52003, "Invalid threshold, threshold should from 0 to 99");
public static final RetCode CODE_INVALID_REQUEST_PERMISSION_DENIED =
new RetCode(-52002, "Invalid request for permission deny");
public static final RetCode CODE_COMMITTEE_MEMBER_NOT_EXIST =
new RetCode(-52001, "The committee member not exist");
public static final RetCode CODE_COMMITTEE_MEMBER_EXIST =
new RetCode(-52000, "The committee member already exist");
// ContractLifeCyclePrecompiled -51999 ~ -51900
public static final RetCode CODE_INVALID_REVOKE_LAST_AUTHORIZATION =
new RetCode(
-51907, "The permission of the last contract status manager can't be revoked");
public static final RetCode CODE_INVALID_NON_EXIST_AUTHORIZATION =
new RetCode(-51906, "The contract status manager doesn't exist");
public static final RetCode CODE_INVALID_NO_AUTHORIZED =
new RetCode(-51905, "Have no permission to access the contract table");
public static final RetCode CODE_INVALID_TABLE_NOT_EXIST =
new RetCode(-51904, "The queried contract address doesn't exist");
public static final RetCode CODE_INVALID_CONTRACT_ADDRESS =
new RetCode(-51903, "The contract address is invalid");
public static final RetCode CODE_INVALID_CONTRACT_REPEAT_AUTHORIZATION =
new RetCode(-51902, "The contract has been granted authorization with same user");
public static final RetCode CODE_INVALID_CONTRACT_AVAILABLE =
new RetCode(-51901, "The contract is available");
public static final RetCode CODE_ACCOUNT_ALREADY_EXIST =
new RetCode(-51900, "The account is not a valid account");
// RingSigPrecompiled -51899 ~ -51800
public static final RetCode VERIFY_RING_SIG_FAILED =
new RetCode(-51800, "Verify ring signature failed");
// GroupSigPrecompiled -51799 ~ -51700
public static final RetCode VERIFY_GROUP_SIG_FAILED =
new RetCode(-51700, "Verify group signature failed");
// PaillierPrecompiled -51699 ~ -51600
public static final RetCode CODE_INVALID_CIPHERS =
new RetCode(-51600, "Execute PaillierAdd failed");
// CRUDPrecompiled -51599 ~ -51500
public static final RetCode CODE_REMOVE_KEY_NOT_EXIST =
new RetCode(-51508, "Key not exist in table, please check again");
public static final RetCode CODE_UPDATE_KEY_NOT_EXIST =
new RetCode(-51507, "Key not exist in table, use insert method");
public static final RetCode CODE_INSERT_KEY_EXIST =
new RetCode(-51506, "Don't insert the key already existed");
public static final RetCode CODE_KEY_NOT_EXIST_IN_COND =
new RetCode(-51505, "Add specific table key EQ syntax in condition");
public static final RetCode CODE_KEY_NOT_EXIST_IN_ENTRY =
new RetCode(-51504, "Add specific table key in entry");
public static final RetCode CODE_INVALID_UPDATE_TABLE_KEY =
new RetCode(-51503, "Don't update the table key");
public static final RetCode CODE_CONDITION_OPERATION_UNDEFINED =
new RetCode(-51502, "Undefined function of Condition Precompiled");
public static final RetCode CODE_PARSE_CONDITION_ERROR =
new RetCode(-51501, "Parse the input of Condition Precompiled failed");
public static final RetCode CODE_PARSE_ENTRY_ERROR =
new RetCode(-51500, "Parse the input of the Entry Precompiled failed");
// SystemConfigPrecompiled -51399 ~ -51300
public static final RetCode CODE_INVALID_CONFIGURATION_VALUES =
new RetCode(-51300, "Invalid configuration value");
// ConsensusPrecompiled -51199 ~ -51100
public static final RetCode CODE_ADD_SEALER_SHOULD_IN_OBSERVER =
new RetCode(-51104, "Only observer can be set in sealer");
public static final RetCode CODE_NODE_NOT_EXIST = new RetCode(-51103, "The node is not exist");
public static final RetCode CODE_INVALID_WEIGHT = new RetCode(-51102, "The weight is invalid");
public static final RetCode CODE_LAST_SEALER =
new RetCode(-51101, "The last sealer cannot be removed");
public static final RetCode CODE_INVALID_NODEID = new RetCode(-51100, "Invalid node ID");
// PermissionPrecompiled -51099 ~ -51000
public static final RetCode CODE_TABLE_AUTH_TYPE_DECODE_ERROR =
new RetCode(-51004, "Auth map decode error.");
public static final RetCode CODE_TABLE_ERROR_AUTH_TYPE =
new RetCode(-51003, "Error auth type input.");
public static final RetCode CODE_TABLE_AUTH_TYPE_NOT_EXIST =
new RetCode(
-51002,
"The contract method auth type not set, please set method auth type first.");
public static final RetCode CODE_TABLE_AUTH_ROW_NOT_EXIST =
new RetCode(-51001, "The contract method auth not exist");
public static final RetCode CODE_TABLE_AGENT_ROW_NOT_EXIST =
new RetCode(-51000, "The contract admin not exist");
// Common error code among all precompiled contracts -50199 ~ -50100
public static final RetCode CODE_TABLE_OPEN_ERROR = new RetCode(-50105, "Open table error");
public static final RetCode CODE_TABLE_CREATE_ERROR = new RetCode(-50104, "Create table error");
public static final RetCode CODE_TABLE_SET_ROW_ERROR =
new RetCode(-50103, "Table set row error");
public static final RetCode CODE_ADDRESS_INVALID =
new RetCode(-50102, "Invalid address format");
public static final RetCode CODE_UNKNOWN_FUNCTION_CALL =
new RetCode(-50101, "Undefined function");
public static final RetCode CODE_TABLE_NOT_EXIST =
new RetCode(-50100, "Open table failed, please check the existence of the table");
// correct return code great or equal 0
public static final RetCode CODE_SUCCESS = new RetCode(0, "Success");
public static final RetCode CODE_UNKNOWN_FAILED = new RetCode(-1, "Unknown failed");
public static final RetCode CODE_NO_AUTHORIZED = new RetCode(-50000, "Permission denied");
public static final RetCode CODE_TABLE_NAME_ALREADY_EXIST =
new RetCode(-50001, "The table already exist");
public static final RetCode CODE_TABLE_NAME_LENGTH_OVERFLOW =
new RetCode(
-50002,
"The table name length exceeds the limit "
+ PrecompiledConstant.USER_TABLE_NAME_MAX_LENGTH);
public static final RetCode CODE_TABLE_FILED_LENGTH_OVERFLOW =
new RetCode(
-50003,
"The table field name exceeds the limit "
+ PrecompiledConstant.TABLE_FIELD_NAME_MAX_LENGTH);
public static final RetCode CODE_TABLE_FILED_TOTALLENGTH_OVERFLOW =
new RetCode(
-50004,
"The length of all the fields name exceeds the limit "
+ PrecompiledConstant.TABLE_VALUE_FIELD_MAX_LENGTH);
public static final RetCode CODE_TABLE_KEYVALUE_LENGTH_OVERFLOW =
new RetCode(
-50005,
"The value exceeds the limit, key max length is "
+ PrecompiledConstant.TABLE_KEY_VALUE_MAX_LENGTH
+ ", field value max length is "
+ PrecompiledConstant.TABLE_VALUE_FIELD_MAX_LENGTH);
public static final RetCode CODE_TABLE_FIELDVALUE_LENGTH_OVERFLOW =
new RetCode(
-50006,
"The field value exceeds the limit "
+ PrecompiledConstant.TABLE_VALUE_FIELD_MAX_LENGTH);
public static final RetCode CODE_TABLE_DUMPLICATE_FIELD =
new RetCode(-50007, "The table contains duplicated field");
public static final RetCode CODE_TABLE_INVALIDATE_FIELD =
new RetCode(-50008, "Invalid table name or field name");
public static final RetCode CODE_REGISTER_CALLER_FAILED =
new RetCode(-50009, "Register caller failed");
public static final RetCode CODE_UNREGISTER_CALLER_FAILED =
new RetCode(-50010, "Unregister caller failed");
public static final RetCode CODE_ADD_BALANCE_FAILED = new RetCode(-50011, "Add balance failed");
public static final RetCode CODE_SUB_BALANCE_FAILED = new RetCode(-50012, "Sub balance failed");
public static final RetCode CODE_TRANSFER_FAILED = new RetCode(-50013, "Transfer failed");
// internal error(for example: params check failed, etc.): -29999~-20000
public static final String MUST_EXIST_IN_NODE_LIST =
"The operated node must be in the list returned by getGroupPeers";
public static final String ALREADY_EXISTS_IN_SEALER_LIST =
"The node already exists in the sealerList";
public static final String ALREADY_EXISTS_IN_OBSERVER_LIST =
"The node already exists in the observerList";
public static final String ALREADY_REMOVED_FROM_THE_GROUP =
"The node already has been removed from the group";
public static final String OVER_TABLE_KEY_LENGTH_LIMIT =
"The length of the table key exceeds the maximum limit "
+ PrecompiledConstant.TABLE_KEY_MAX_LENGTH;
protected static Map codeToMessage = new HashMap<>();
static {
Field[] fields = PrecompiledRetCode.class.getDeclaredFields();
for (Field field : fields) {
if (field.getType().equals(RetCode.class)) {
try {
RetCode constantRetCode = (RetCode) field.get(null);
codeToMessage.put(constantRetCode.getCode(), constantRetCode);
} catch (IllegalAccessException e) {
continue;
}
}
}
}
private PrecompiledRetCode() {}
public static RetCode getPrecompiledResponse(Integer responseCode, String message) {
if (codeToMessage.containsKey(responseCode)) {
return codeToMessage.get(responseCode);
}
return new RetCode(responseCode, message);
}
}