Package org.elasticsearch.shell.client.builders.core

Source Code of org.elasticsearch.shell.client.builders.core.ExplainRequestBuilder

/*
* Licensed to Luca Cavanna (the "Author") under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Elastic Search licenses this
* file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*    http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.elasticsearch.shell.client.builders.core;

import org.apache.lucene.search.Explanation;
import org.elasticsearch.action.ActionFuture;
import org.elasticsearch.action.explain.ExplainRequest;
import org.elasticsearch.action.explain.ExplainResponse;
import org.elasticsearch.action.explain.ExplainSourceBuilder;
import org.elasticsearch.client.Client;
import org.elasticsearch.common.bytes.BytesArray;
import org.elasticsearch.common.xcontent.ToXContent;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.index.get.GetResult;
import org.elasticsearch.index.query.QueryBuilder;
import org.elasticsearch.shell.client.builders.AbstractRequestBuilderJsonOutput;
import org.elasticsearch.shell.json.JsonToString;
import org.elasticsearch.shell.json.StringToJson;

import java.io.IOException;

/**
* @author Luca Cavanna
*
* Request builder for explain API
*/
@SuppressWarnings("unused")
public class ExplainRequestBuilder<JsonInput, JsonOutput> extends AbstractRequestBuilderJsonOutput<ExplainRequest, ExplainResponse, JsonInput, JsonOutput> {

    public ExplainRequestBuilder(Client client, JsonToString<JsonInput> jsonToString, StringToJson<JsonOutput> stringToJson) {
        super(client, new ExplainRequest(null, null, null), jsonToString, stringToJson);
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> index(String index) {
        request.index(index);
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> type(String type) {
        request.type(type);
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> id(String id) {
        request.id(id);
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> routing(String routing) {
        request.routing(routing);
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> parent(String parent) {
        request.parent(parent);
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> preference(String preference) {
        request.preference(preference);
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> queryBuilder(QueryBuilder query) {
        request.source(new ExplainSourceBuilder().setQuery(query));
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> query(JsonInput query) {
        request.source(new ExplainSourceBuilder().setQuery(new BytesArray(jsonToString(query))));
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> source(JsonInput source) {
        request.source(new BytesArray(jsonToString(source)), false);
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> fields(String... fields) {
        request.fields(fields);
        return this;
    }

    public ExplainRequestBuilder<JsonInput, JsonOutput> filteringAlias(String... filteringAlias) {
        if (filteringAlias != null && filteringAlias.length>0) {
            request.filteringAlias(filteringAlias);
        }
        return this;
    }

    @Override
    protected ActionFuture<ExplainResponse> doExecute(ExplainRequest request) {
        return client.explain(request);
    }

    @Override
    protected XContentBuilder toXContent(ExplainRequest request, ExplainResponse response, XContentBuilder builder) throws IOException {
        builder.startObject();
        builder.field(Fields.OK, response.isExists())
                .field(Fields._INDEX, request.index())
                .field(Fields._TYPE, request.type())
                .field(Fields._ID, request.id())
                .field(Fields.MATCHED, response.isMatch());

        if (response.hasExplanation()) {
            builder.startObject(Fields.EXPLANATION);
            buildExplanation(builder, response.getExplanation());
            builder.endObject();
        }
        GetResult getResult = response.getGetResult();
        if (getResult != null) {
            builder.startObject(Fields.GET);
            getResult.toXContentEmbedded(builder, ToXContent.EMPTY_PARAMS);
            builder.endObject();
        }
        builder.endObject();
        return builder;
    }

    private void buildExplanation(XContentBuilder builder, Explanation explanation) throws IOException {
        builder.field(Fields.VALUE, explanation.getValue());
        builder.field(Fields.DESCRIPTION, explanation.getDescription());
        Explanation[] innerExps = explanation.getDetails();
        if (innerExps != null) {
            builder.startArray(Fields.DETAILS);
            for (Explanation exp : innerExps) {
                builder.startObject();
                buildExplanation(builder, exp);
                builder.endObject();
            }
            builder.endArray();
        }
    }
}
TOP

Related Classes of org.elasticsearch.shell.client.builders.core.ExplainRequestBuilder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.