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

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

/*
* 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.elasticsearch.action.ActionFuture;
import org.elasticsearch.action.WriteConsistencyLevel;
import org.elasticsearch.action.index.IndexRequest;
import org.elasticsearch.action.support.replication.ReplicationType;
import org.elasticsearch.action.update.UpdateRequest;
import org.elasticsearch.action.update.UpdateResponse;
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.shell.client.builders.AbstractRequestBuilderJsonOutput;
import org.elasticsearch.shell.json.JsonToString;
import org.elasticsearch.shell.json.StringToJson;

import java.io.IOException;
import java.util.Map;

/**
* @author Luca Cavanna
*
* Request builder for update API
*/
@SuppressWarnings("unused")
public class UpdateRequestBuilder<JsonInput, JsonOutput> extends AbstractRequestBuilderJsonOutput<UpdateRequest, UpdateResponse, JsonInput, JsonOutput> {

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

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

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

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

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

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

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

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

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

    public UpdateRequestBuilder<JsonInput, JsonOutput> scriptParams(Map<String, Object> scriptParams) {
        request.scriptParams(scriptParams);
        return this;
    }

    public UpdateRequestBuilder<JsonInput, JsonOutput> addScriptParam(String name, Object value) {
        request.addScriptParam(name, value);
        return this;
    }

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

    public UpdateRequestBuilder<JsonInput, JsonOutput> retryOnConflict(int retryOnConflict) {
        request.retryOnConflict(retryOnConflict);
        return this;
    }

    public UpdateRequestBuilder<JsonInput, JsonOutput> refresh(boolean refresh) {
        request.refresh(refresh);
        return this;
    }

    public UpdateRequestBuilder<JsonInput, JsonOutput> replicationType(String replicationType) {
        request.replicationType(ReplicationType.fromString(replicationType));
        return this;
    }

    public UpdateRequestBuilder<JsonInput, JsonOutput> consistencyLevel(String consistencyLevel) {
        request.consistencyLevel(WriteConsistencyLevel.fromString(consistencyLevel));
        return this;
    }

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

    public UpdateRequestBuilder<JsonInput, JsonOutput> doc(IndexRequest indexRequest) {
        request.doc(indexRequest);
        return this;
    }

    public UpdateRequestBuilder<JsonInput, JsonOutput> doc(JsonInput source) {
        request.doc(jsonToString(source));
        return this;
    }

    public UpdateRequestBuilder<JsonInput, JsonOutput> upsert(IndexRequest indexRequest) {
        request.upsert(indexRequest);
        return this;
    }

    public UpdateRequestBuilder<JsonInput, JsonOutput> upsert(JsonInput source) {
        request.upsert(jsonToString(source));
        return this;
    }

    public UpdateRequestBuilder<JsonInput, JsonOutput> source(JsonInput source) throws Exception {
        request.source(new BytesArray(jsonToString(source)));
        return this;
    }

    @Override
    protected ActionFuture<UpdateResponse> doExecute(UpdateRequest request) {
        return client.update(request);
    }

    @Override
    protected XContentBuilder toXContent(UpdateRequest request, UpdateResponse response, XContentBuilder builder) throws IOException {
        builder.startObject()
                .field(Fields.OK, true)
                .field(Fields._INDEX, response.getIndex())
                .field(Fields._TYPE, response.getType())
                .field(Fields._ID, response.getId())
                .field(Fields._VERSION, response.getVersion());

        if (response.getGetResult() != null) {
            builder.startObject(Fields.GET);
            response.getGetResult().toXContentEmbedded(builder, ToXContent.EMPTY_PARAMS);
            builder.endObject();
        }

        if (response.getMatches() != null) {
            builder.startArray(Fields.MATCHES);
            for (String match : response.getMatches()) {
                builder.value(match);
            }
            builder.endArray();
        }
        builder.endObject();
        return builder;
    }
}
TOP

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

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.