org.hyperledger.fabric.contract.ContractInterface Maven / Gradle / Ivy
Show all versions of fabric-chaincode-shim Show documentation
/*
* Copyright 2019 IBM All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.fabric.contract;
import org.hyperledger.fabric.shim.ChaincodeException;
import org.hyperledger.fabric.shim.ChaincodeStub;
/**
* All Contracts should implement this interface, in addition to the
* {@linkplain org.hyperledger.fabric.contract.annotation.Contract} annotation.
*
* All methods on this interface have default implementations; for
* many contracts it may not be needed to sub-class these.
*
* Each method on the Contract that is marked with the {@link org.hyperledger.fabric.contract.annotation.Transaction}
* annotation is considered a Transaction Function. This is eligible for
* calling. Each transaction function is supplied with its first parameter
* being a {@link org.hyperledger.fabric.contract.Context}. The other parameters
* are supplied at the developer's discretion.
*
* The sequence of calls is
*
*
* createContext() -> beforeTransaction() -> the transaction function -> afterTransaction()
*
*
* If any of these functions throws an exception it is considered an error case
* and the whole transaction is failed. The
* {@link org.hyperledger.fabric.contract.Context} is a very important object as
* it provides transactional context for access to current transaction id,
* ledger state, etc.
*
* Note on Threading
*
* All code should be 'Thread Friendly'. Each method must not rely on instance
* fields or class side variables for storage. Nor should they use any
* ThreadLocal Storage. Ledger data is stored via the ledger api available via
* the {@link Context}.
*
* If information needs to be passed from
* {@link #beforeTransaction(Context)} to
* {@link #afterTransaction(Context, Object)} or between separate transaction
* functions when called directly then a subclass of the {@link Context}
* should be provided.
*/
public interface ContractInterface {
/**
* Create context from {@link ChaincodeStub}.
*
* Default impl provided, but can be
* overwritten by contract
*
* @param stub Instance of the ChaincodeStub to use for this transaction
* @return instance of the context to use for the current transaction being
* executed
*/
default Context createContext(final ChaincodeStub stub) {
return ContextFactory.getInstance().createContext(stub);
}
/**
* Invoked for any transaction that does not exist.
*
* This will throw an exception. If you wish to alter the exception thrown or if
* you wish to consider requests for transactions that don't exist as not an
* error, subclass this method.
*
* @param ctx the context as created by {@link #createContext(ChaincodeStub)}.
*/
default void unknownTransaction(final Context ctx) {
throw new ChaincodeException("Undefined contract method called");
}
/**
* Invoked once before each transaction.
*
* Any exceptions thrown will fail the transaction, and neither the required
* transaction or the {@link #afterTransaction(Context, Object)} will be called
*
* @param ctx the context as created by {@link #createContext(ChaincodeStub)}.
*/
default void beforeTransaction(final Context ctx) {
}
/**
* Invoked once after each transaction.
*
* Any exceptions thrown will fail the transaction.
*
* @param ctx the context as created by
* {@link #createContext(ChaincodeStub)}.
* @param result The object returned from the transaction function if any. As
* this is a Java object and therefore pass-by-reference it is
* possible to modify this object.
*/
default void afterTransaction(final Context ctx, final Object result) {
}
}