org.hyperledger.fabric.contract.execution.impl.ContractInvocationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-chaincode-shim Show documentation
Show all versions of fabric-chaincode-shim Show documentation
Hyperledger Fabric Java Chaincode Shim
/*
* Copyright 2019 IBM DTCC All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.fabric.contract.execution.impl;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hyperledger.fabric.contract.execution.InvocationRequest;
import org.hyperledger.fabric.shim.ChaincodeStub;
public class ContractInvocationRequest implements InvocationRequest {
private String namespace;
private String method;
private List args = Collections.emptyList();
private static Log logger = LogFactory.getLog(ContractInvocationRequest.class);
/**
* @param context
*/
public ContractInvocationRequest(final ChaincodeStub context) {
final String func = context.getStringArgs().size() > 0 ? context.getStringArgs().get(0) : null;
final String[] funcParts = func.split(":");
logger.debug(func);
if (funcParts.length == 2) {
namespace = funcParts[0];
method = funcParts[1];
} else {
namespace = DEFAULT_NAMESPACE;
method = funcParts[0];
}
args = context.getArgs().stream().skip(1).collect(Collectors.toList());
logger.debug(namespace + " " + method + " " + args);
}
/**
*
*/
@Override
public String getNamespace() {
return namespace;
}
/**
*
*/
@Override
public String getMethod() {
return method;
}
/**
*
*/
@Override
public List getArgs() {
return args;
}
/**
*
*/
@Override
public String getRequestName() {
return namespace + ":" + method;
}
/**
*
*/
@Override
public String toString() {
return namespace + ":" + method + " @" + Integer.toHexString(System.identityHashCode(this));
}
}