Search in sources :

Example 1 with GetResponse

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

the class DefaultRegionKVService method handleGetRequest.

@Override
public void handleGetRequest(final GetRequest request, final RequestProcessClosure<BaseRequest, BaseResponse<?>> closure) {
    final GetResponse response = new GetResponse();
    response.setRegionId(getRegionId());
    response.setRegionEpoch(getRegionEpoch());
    try {
        KVParameterRequires.requireSameEpoch(request, getRegionEpoch());
        final byte[] key = KVParameterRequires.requireNonNull(request.getKey(), "get.key");
        this.rawKVStore.get(key, request.isReadOnlySafe(), new BaseKVStoreClosure() {

            @Override
            public void run(final Status status) {
                if (status.isOk()) {
                    response.setValue((byte[]) 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) GetResponse(com.alipay.sofa.jraft.rhea.cmd.store.GetResponse) MultiGetResponse(com.alipay.sofa.jraft.rhea.cmd.store.MultiGetResponse)

Aggregations

Status (com.alipay.sofa.jraft.Status)1 GetResponse (com.alipay.sofa.jraft.rhea.cmd.store.GetResponse)1 MultiGetResponse (com.alipay.sofa.jraft.rhea.cmd.store.MultiGetResponse)1 BaseKVStoreClosure (com.alipay.sofa.jraft.rhea.storage.BaseKVStoreClosure)1