All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.rest.action.DispatchingRestToXContentListener Maven / Gradle / Ivy

There is a newer version: 8.14.0
Show newest version
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.rest.action;

import org.elasticsearch.action.ActionRunnable;
import org.elasticsearch.common.xcontent.StatusToXContentObject;
import org.elasticsearch.rest.BytesRestResponse;
import org.elasticsearch.rest.RestChannel;
import org.elasticsearch.rest.RestRequest;
import org.elasticsearch.rest.RestResponse;
import org.elasticsearch.xcontent.ToXContent;
import org.elasticsearch.xcontent.XContentBuilder;

import java.util.concurrent.ExecutorService;

/**
 * Response listener for REST requests which dispatches the serialization of the response off of the thread on which the response was
 * received, since that thread is often a transport thread and XContent serialization might be expensive.
 */
public class DispatchingRestToXContentListener extends RestActionListener {

    private final ExecutorService executor;
    private final RestRequest restRequest;

    public DispatchingRestToXContentListener(ExecutorService executor, RestChannel channel, RestRequest restRequest) {
        super(channel);
        this.executor = executor;
        this.restRequest = restRequest;
    }

    protected ToXContent.Params getParams() {
        return restRequest;
    }

    @Override
    protected void processResponse(Response response) {
        executor.execute(ActionRunnable.wrap(this, l -> new RestBuilderListener(channel) {
            @Override
            public RestResponse buildResponse(final Response response, final XContentBuilder builder) throws Exception {
                ensureOpen();
                response.toXContent(builder, getParams());
                return new BytesRestResponse(response.status(), builder);
            }
        }.onResponse(response)));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy