org.apache.lucene.server.handlers.BulkAddDocumentsHandler.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.lucene.server.handlers.BulkAddDocumentsHandler.java

Source

package org.apache.lucene.server.handlers;

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF 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.
 */

import java.io.Reader;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.apache.lucene.document.Document;
import org.apache.lucene.server.FinishRequest;
import org.apache.lucene.server.GlobalState;
import org.apache.lucene.server.IndexState;
import org.apache.lucene.server.ShardState;
import org.apache.lucene.server.params.*;
import org.apache.lucene.util.IOUtils;
import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;

import net.minidev.json.JSONObject;

import static org.apache.lucene.server.ShardState.IndexingContext;

/** Reads more than one { ... } request in a single
 *  connection, but each request must be separated by at
 *  least one whitespace char. */

public class BulkAddDocumentsHandler extends Handler {

    private StructType TYPE = new StructType(new Param("indexName", "Index name", new StringType()),
            new Param("documents", "List of documents", new ListType(new StructType(new Param("parent",
                    "The (one) parent document for this block.  The value of this key is a single document that @addDocument expects.  Be sure to add an indexed field to only the parent document so that you can subsequently provide the filter that identifies only parent documents.",
                    AddDocumentHandler.DOCUMENT_TYPE),
                    new Param("children", "List of child documents.",
                            new ListType(AddDocumentHandler.DOCUMENT_TYPE))))));

    /** Sole constructor. */
    public BulkAddDocumentsHandler(GlobalState state) {
        super(state);
    }

    @Override
    public StructType getType() {
        return TYPE;
    }

    @Override
    public boolean doStream() {
        return true;
    }

    @Override
    public String getTopDoc() {
        return "Add more than one document block in a single connection.  Each document should be its own JSON struct, matching @addDocuments, and then there must one whitespace character separating each document.  Returns the index generation (indexGen) that contains all added document blocks.";
    }

    @Override
    public FinishRequest handle(IndexState state, Request r, Map<String, List<String>> params) {
        throw new UnsupportedOperationException();
    }

    @Override
    public String handleStreamed(Reader reader, Map<String, List<String>> params) throws Exception {

        JsonFactory jfactory = new JsonFactory();

        JsonParser parser = jfactory.createJsonParser(reader);

        if (parser.nextToken() != JsonToken.START_OBJECT) {
            throw new IllegalArgumentException("expected JSON object");
        }
        if (parser.nextToken() != JsonToken.FIELD_NAME) {
            throw new IllegalArgumentException("expected indexName first");
        }
        if (!parser.getText().equals("indexName")) {
            throw new IllegalArgumentException("expected indexName first");
        }
        if (parser.nextToken() != JsonToken.VALUE_STRING) {
            throw new IllegalArgumentException("indexName should be string");
        }

        IndexState indexState = globalState.get(parser.getText());
        indexState.verifyStarted(null);
        if (parser.nextToken() != JsonToken.FIELD_NAME) {
            throw new IllegalArgumentException("expected documents next");
        }
        if (!parser.getText().equals("documents")) {
            throw new IllegalArgumentException("expected documents after indexName");
        }

        ShardState shardState = indexState.getShard(0);

        if (parser.nextToken() != JsonToken.START_ARRAY) {
            throw new IllegalArgumentException("documents should be a list");
        }

        int count = 0;
        IndexingContext ctx = new IndexingContext();

        AddDocumentHandler addDocHandler = (AddDocumentHandler) globalState.getHandler("addDocument");

        // Parse as many doc blocks as there are:
        while (true) {

            List<Document> children = null;
            Document parent = null;

            JsonToken token = parser.nextToken();
            if (token == JsonToken.END_ARRAY) {
                break;
            }
            if (token != JsonToken.START_OBJECT) {
                throw new IllegalArgumentException("expected object");
            }

            // Parse parent + children for this one doc block:
            while (true) {
                token = parser.nextToken();
                if (token == JsonToken.END_OBJECT) {
                    // Done with parent + child in this block
                    break;
                }
                if (token != JsonToken.FIELD_NAME) {
                    throw new IllegalArgumentException("missing field name: " + token);
                }
                String f = parser.getText();
                if (f.equals("children")) {
                    token = parser.nextToken();
                    if (token != JsonToken.START_ARRAY) {
                        throw new IllegalArgumentException("expected array for children");
                    }

                    children = new ArrayList<Document>();

                    // Parse each child:
                    while (true) {
                        Document doc = addDocHandler.parseDocument(indexState, parser);
                        if (doc == null) {
                            break;
                        }
                        children.add(doc);
                    }
                } else if (f.equals("parent")) {
                    parent = addDocHandler.parseDocument(indexState, parser);
                } else {
                    throw new IllegalArgumentException("unrecognized field name \"" + f + "\"");
                }
            }

            if (parent == null) {
                throw new IllegalArgumentException("missing parent");
            }
            if (children == null) {
                throw new IllegalArgumentException("missing children");
            }

            // Parent is last:
            children.add(parent);

            globalState.submitIndexingTask(shardState.getAddDocumentsJob(count, null, children, ctx));
            count++;
        }

        // nocommit this is ... lameish:
        while (true) {
            if (ctx.addCount.get() == count) {
                break;
            }
            Thread.sleep(1);
        }

        Throwable t = ctx.getError();
        if (t != null) {
            IOUtils.reThrow(t);
        }

        JSONObject o = new JSONObject();
        o.put("indexGen", shardState.writer.getMaxCompletedSequenceNumber());
        o.put("indexedDocumentBlockCount", count);
        return o.toString();
    }
}