Package org.sindice.siren.demo.movie

Source Code of org.sindice.siren.demo.movie.MovieDemo

/**
* Copyright 2014 National University of Ireland, Galway.
*
* This file is part of the SIREn project. Project and contact information:
*
*  https://github.com/rdelbru/SIREn
*
* Licensed 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.sindice.siren.demo.movie;

import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.Iterator;

import org.apache.commons.io.FileUtils;
import org.apache.lucene.queryparser.flexible.core.QueryNodeException;
import org.apache.lucene.search.Query;
import org.sindice.siren.demo.SimpleIndexer;
import org.sindice.siren.demo.SimpleSearcher;
import org.sindice.siren.qparser.json.JsonQueryParser;
import org.sindice.siren.qparser.json.dsl.QueryBuilder;
import org.sindice.siren.qparser.keyword.KeywordQueryParser;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Index a set of movies encoded in JSON and execute various search queries over
* the JSON data structure.
* <p>
* Each search query is written using both the keyword query syntax and the
* JSON query syntax.
*/
public class MovieDemo {

  private final File indexDir;

  private static final File MOVIE_PATH = new File("./src/main/resources/movies");

  private static final Logger logger = LoggerFactory.getLogger(MovieDemo.class);

  public MovieDemo(final File indexDir) {
    this.indexDir = indexDir;
    if (indexDir.exists()) {
      logger.error("Existing directory {} - aborting", indexDir);
      System.exit(1);
    }
    logger.info("Creating index directory {}", indexDir);
    indexDir.mkdirs();
  }

  public void index() throws IOException {
    final SimpleIndexer indexer = new SimpleIndexer(indexDir);
    try {
      final Iterator<File> it = FileUtils.iterateFiles(MOVIE_PATH, null, false);
      while (it.hasNext()) {
        final File file = it.next();
        final String id = file.getName().toString();
        final String content = FileUtils.readFileToString(file);
        logger.info("Indexing document {}", id);
        indexer.addDocument(id, content);
      }
      logger.info("Commiting all pending documents");
      indexer.commit();
    }
    finally {
      logger.info("Closing index");
      indexer.close();
    }
  }

  public void search() throws QueryNodeException, IOException {
    final SimpleSearcher searcher = new SimpleSearcher(indexDir);
    final String[] keywordQueries = this.getKeywordQueries();
    final String[] jsonQueries = this.getJsonQueries();

    assert keywordQueries.length == jsonQueries.length;

    for (int i = 0; i < keywordQueries.length; i++) {
      Query q = searcher.parseKeywordQuery(keywordQueries[i]);
      logger.info("Executing keyword query: '{}'", keywordQueries[i]);
      String[] results = searcher.search(q, 1000);
      logger.info("Keyword query returned {} results: {}", results.length, Arrays.toString(results));

      q = searcher.parseJsonQuery(jsonQueries[i]);
      logger.info("Executing json query: '{}'", jsonQueries[i]);
      results = searcher.search(q, 1000);
      logger.info("Json query returned {} results: {}", results.length, Arrays.toString(results));
    }

  }

  /**
   * Get a list of queries that are based on the keyword query syntax
   *
   * @see KeywordQueryParser
   */
  private String[] getKeywordQueries() {
    final String[] queries = {
      "\"Marie Antoinette\"",
      "genre : Drama",
      "(genre : Drama) AND (year : 2010)",
      "director : { last_name : Eastwood, first_name : Clint }",
      "actors : [ { * : Timberlake }, { * : Eisenberg } ]"
    };
    return queries;
  }

  /**
   * Get a list of queries that are based on the JSON query syntax
   *
   * @see JsonQueryParser
   */
  private String[] getJsonQueries() throws QueryNodeException {
    final QueryBuilder b = new QueryBuilder();
    final String[] queries = {
      b.newNode("\"Marie Antoinette\"").toString(),
      b.newTwig("genre").with(b.newNode("Drama")).toString(),
      b.newBoolean().with(b.newTwig("genre").with(b.newNode("Drama")))
                    .with(b.newTwig("year").with(b.newNode("2010"))).toString(),
      b.newTwig("director").with(
        // here, twig with empty root node to represent first nested entity node
        b.newTwig().with(b.newTwig("last_name").with(b.newNode("Eastwood")))
                   .with(b.newTwig("first_name").with(b.newNode("Clint")))
      ).toString(),
      b.newTwig("actors").with(
        // here, twig with empty root node to represent first nested entity node
        b.newTwig().with(
          // here, twig with empty root to represent the wildcard on the field name
          b.newTwig().with(b.newNode("Timberlake"))
        )
      )
                         .with(
        // here, twig with empty root node to represent first nested entity node
        b.newTwig().with(
          // here, twig with empty root to represent the wildcard on the field name
          b.newTwig().with(b.newNode("Eisenberg"))
        )
      ).toString()
    };
    return queries;
  }

  public static void main(final String[] args) throws IOException {
    final File indexDir = new File("./target/demo/movie/");
    final MovieDemo demo = new MovieDemo(indexDir);
    try {
      demo.index();
      demo.search();
    }
    catch (final Throwable e) {
      logger.error("Unexpected error during demo", e);
    }
    finally {
      logger.info("Deleting index directory {}", indexDir);
      FileUtils.deleteQuietly(indexDir);
    }
  }

}
TOP

Related Classes of org.sindice.siren.demo.movie.MovieDemo

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.