Skip to content

Instantly share code, notes, and snippets.

@reasdom
Created March 21, 2019 03:12
Show Gist options
  • Save reasdom/2e113d8fc57d2288f1ee35b36bf5e79f to your computer and use it in GitHub Desktop.
Save reasdom/2e113d8fc57d2288f1ee35b36bf5e79f to your computer and use it in GitHub Desktop.
AccountBasedChaincode.java
package org.hyperledger.fabric.chaincode;
import java.util.List;
import org.hyperledger.fabric.chaincode.Models.Wallet;
import org.hyperledger.fabric.shim.ChaincodeBase;
import org.hyperledger.fabric.shim.ChaincodeStub;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.hyperledger.fabric.shim.ledger.KeyValue;
import org.hyperledger.fabric.shim.ledger.QueryResultsIterator;
public class AccountBasedChaincode extends ChaincodeBase {
private class ChaincodeResponse {
public String message;
public String code;
public boolean OK;
public ChaincodeResponse(String message, String code, boolean OK) {
this.code = code;
this.message = message;
this.OK = OK;
}
}
private String responseError(String errorMessage, String code) {
try {
return (new ObjectMapper()).writeValueAsString(new ChaincodeResponse(errorMessage, code, false));
} catch (Throwable e) {
return "{\"code\":'" + code + "', \"message\":'" + e.getMessage() + " AND " + errorMessage + "', \"OK\":" + false + "}";
}
}
private String responseSuccess(String successMessage) {
try {
return (new ObjectMapper()).writeValueAsString(new ChaincodeResponse(successMessage, "", true));
} catch (Throwable e) {
return "{\"message\":'" + e.getMessage() + " BUT " + successMessage + " (NO COMMIT)', \"OK\":" + false + "}";
}
}
private String responseSuccessObject(String object) {
return "{\"message\":" + object + ", \"OK\":" + true + "}";
}
private boolean checkString(String str) {
if (str.trim().length() <= 0 || str == null)
return false;
return true;
}
@Override
public Response init(ChaincodeStub stub) {
return newSuccessResponse(responseSuccess("Init"));
}
@Override
public Response invoke(ChaincodeStub stub) {
String func = stub.getFunction();
List<String> params = stub.getParameters();
if (func.equals("createWallet"))
return createWallet(stub, params);
else if (func.equals("getWallet"))
return getWallet(stub, params);
else if (func.equals("transfer"))
return transfer(stub, params);
else if (func.equals("getWalletsWithTokenAmountGreaterThan"))
return getWalletsWithTokenAmountGreaterThan(stub, params);
return newErrorResponse(responseError("Unsupported method", ""));
}
// new function in this tutorial
// it is to query the blockchain with a rich query
// and append the results one by one in an array
private String query(String queryString, ChaincodeStub stub) {
String result = "[";
QueryResultsIterator<KeyValue> rows = stub.getQueryResult(queryString);
while (rows.iterator().hasNext()) {
String v = rows.iterator().next().getStringValue();
if(v != null && v.trim().length() > 0) {
result = result.concat(v);
if (rows.iterator().hasNext())
result = result.concat(",");
}
}
return result.concat("]");
}
private Response createWallet(ChaincodeStub stub, List<String> args) {
if (args.size() != 2)
return newErrorResponse(responseError("Incorrect number of arguments, expecting 2", ""));
String walletId = args.get(0);
String tokenAmount = args.get(1);
if (!checkString(walletId) || !checkString(tokenAmount))
return newErrorResponse(responseError("Invalid argument(s)", ""));
double tokenAmountDouble = 0.0;
try {
tokenAmountDouble = Double.parseDouble(tokenAmount);
if(tokenAmountDouble < 0.0)
return newErrorResponse(responseError("Invalid token amount", ""));
} catch (NumberFormatException e) {
return newErrorResponse(responseError("parseInt error", ""));
}
Wallet wallet = new Wallet(walletId, tokenAmountDouble);
try {
if(checkString(stub.getStringState(walletId)))
return newErrorResponse(responseError("Existent wallet", ""));
stub.putState(walletId, (new ObjectMapper()).writeValueAsBytes(wallet));
return newSuccessResponse(responseSuccess("Wallet created"));
} catch (Throwable e) {
return newErrorResponse(responseError(e.getMessage(), ""));
}
}
// new function in this tutorial
// it is to accept a token amount
// and call the query() function to find all wallets with token amount > that amount above
private Response getWalletsWithTokenAmountGreaterThan(ChaincodeStub stub, List<String> args) {
if (args.size() != 1)
return newErrorResponse(responseError("Incorrect number of arguments, expecting 1", ""));
String tokenAmountStr = args.get(0);
if (!checkString(tokenAmountStr))
return newErrorResponse(responseError("Invalid argument", ""));
try {
double tokenAmount = Double.parseDouble(tokenAmountStr);
String queryStr = "{ \"selector\": { \"tokenAmount\": { \"$gt\": " + tokenAmount + " } } }";
String queryResult = query(queryStr, stub);
return newSuccessResponse((new ObjectMapper()).writeValueAsBytes(responseSuccessObject(queryResult)));
} catch(Throwable e){
return newErrorResponse(responseError(e.getMessage(), ""));
}
}
private Response getWallet(ChaincodeStub stub, List<String> args) {
if (args.size() != 1)
return newErrorResponse(responseError("Incorrect number of arguments, expecting 1", ""));
String walletId = args.get(0);
if (!checkString(walletId))
return newErrorResponse(responseError("Invalid argument", ""));
try {
String walletString = stub.getStringState(walletId);
if(!checkString(walletString))
return newErrorResponse(responseError("Nonexistent wallet", ""));
return newSuccessResponse((new ObjectMapper()).writeValueAsBytes(responseSuccessObject(walletString)));
} catch(Throwable e){
return newErrorResponse(responseError(e.getMessage(), ""));
}
}
private Response transfer(ChaincodeStub stub, List<String> args) {
if (args.size() != 3)
return newErrorResponse(responseError("Incorrect number of arguments, expecting 3", ""));
String fromWalletId = args.get(0);
String toWalletId = args.get(1);
String tokenAmount = args.get(2);
if (!checkString(fromWalletId) || !checkString(toWalletId) || !checkString(tokenAmount))
return newErrorResponse(responseError("Invalid argument(s)", ""));
if(fromWalletId.equals(toWalletId))
return newErrorResponse(responseError("From-wallet is same as to-wallet", ""));
double tokenAmountDouble = 0.0;
try {
tokenAmountDouble = Double.parseDouble(tokenAmount);
if(tokenAmountDouble < 0.0)
return newErrorResponse(responseError("Invalid token amount", ""));
} catch (NumberFormatException e) {
return newErrorResponse(responseError("parseDouble error", ""));
}
try {
String fromWalletString = stub.getStringState(fromWalletId);
if(!checkString(fromWalletString))
return newErrorResponse(responseError("Nonexistent from-wallet", ""));
String toWalletString = stub.getStringState(toWalletId);
if(!checkString(toWalletString))
return newErrorResponse(responseError("Nonexistent to-wallet", ""));
ObjectMapper objectMapper = new ObjectMapper();
Wallet fromWallet = objectMapper.readValue(fromWalletString, Wallet.class);
Wallet toWallet = objectMapper.readValue(toWalletString, Wallet.class);
if(fromWallet.getTokenAmount() < tokenAmountDouble)
return newErrorResponse(responseError("Token amount not enough", ""));
fromWallet.setTokenAmount(fromWallet.getTokenAmount() - tokenAmountDouble);
toWallet.setTokenAmount(toWallet.getTokenAmount() + tokenAmountDouble);
stub.putState(fromWalletId, objectMapper.writeValueAsBytes(fromWallet));
stub.putState(toWalletId, objectMapper.writeValueAsBytes(toWallet));
return newSuccessResponse(responseSuccess("Transferred"));
} catch(Throwable e){
return newErrorResponse(responseError(e.getMessage(), ""));
}
}
public static void main(String[] args) {
new AccountBasedChaincode().start(args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment