Search in sources :

Example 1 with NodeExecuteResponse

use of com.alipay.sofa.jraft.rhea.cmd.store.NodeExecuteResponse in project sofa-jraft by sofastack.

the class DefaultRegionKVService method handleNodeExecuteRequest.

@Override
public void handleNodeExecuteRequest(final NodeExecuteRequest request, final RequestProcessClosure<BaseRequest, BaseResponse<?>> closure) {
    final NodeExecuteResponse response = new NodeExecuteResponse();
    response.setRegionId(getRegionId());
    response.setRegionEpoch(getRegionEpoch());
    try {
        KVParameterRequires.requireSameEpoch(request, getRegionEpoch());
        final NodeExecutor executor = KVParameterRequires.requireNonNull(request.getNodeExecutor(), "node.executor");
        this.rawKVStore.execute(executor, true, new BaseKVStoreClosure() {

            @Override
            public void run(final Status status) {
                if (status.isOk()) {
                    response.setValue((Boolean) getData());
                } else {
                    setFailure(request, response, status, getError());
                }
                closure.sendResponse(response);
            }
        });
    } catch (final Throwable t) {
        LOG.error("Failed to handle: {}, {}.", request, StackTraceUtil.stackTrace(t));
        response.setError(Errors.forException(t));
        closure.sendResponse(response);
    }
}
Also used : Status(com.alipay.sofa.jraft.Status) BaseKVStoreClosure(com.alipay.sofa.jraft.rhea.storage.BaseKVStoreClosure) NodeExecuteResponse(com.alipay.sofa.jraft.rhea.cmd.store.NodeExecuteResponse) NodeExecutor(com.alipay.sofa.jraft.rhea.storage.NodeExecutor)

Aggregations

Status (com.alipay.sofa.jraft.Status)1 NodeExecuteResponse (com.alipay.sofa.jraft.rhea.cmd.store.NodeExecuteResponse)1 BaseKVStoreClosure (com.alipay.sofa.jraft.rhea.storage.BaseKVStoreClosure)1 NodeExecutor (com.alipay.sofa.jraft.rhea.storage.NodeExecutor)1