Package org.hibernate.search.test.performance.reader

Source Code of org.hibernate.search.test.performance.reader.ReaderPerformanceTestCase$ReverseWork

/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.search.test.performance.reader;

import java.io.File;
import java.util.List;
import java.util.Random;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;

import org.apache.lucene.analysis.core.StopAnalyzer;
import org.apache.lucene.queryparser.classic.MultiFieldQueryParser;
import org.apache.lucene.queryparser.classic.ParseException;
import org.apache.lucene.queryparser.classic.QueryParser;
import org.apache.lucene.search.Query;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;

import org.hibernate.search.FullTextQuery;
import org.hibernate.search.Search;
import org.hibernate.search.cfg.Environment;
import org.hibernate.search.test.SearchTestBase;
import org.hibernate.search.testsupport.TestConstants;
import org.hibernate.search.util.impl.FileHelper;
import org.hibernate.search.util.logging.impl.Log;
import org.hibernate.search.util.logging.impl.LoggerFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import static org.junit.Assert.assertTrue;

/**
* @author Emmanuel Bernard
*/
public abstract class ReaderPerformanceTestCase extends SearchTestBase {

  private static final Log log = LoggerFactory.make();

  @Override
  @Before
  public void setUp() throws Exception {
    forceConfigurationRebuild();
    String indexBase = TestConstants.getIndexDirectory( ReaderPerformanceTestCase.class );
    File indexDir = new File(indexBase);
    indexDir.mkdir();
    File[] files = indexDir.listFiles();
    for ( File file : files ) {
      if ( file.isDirectory() ) {
        FileHelper.delete( file );
      }
    }
    super.setUp();
  }

  @Override
  @After
  public void tearDown() throws Exception {
    super.tearDown();
    String indexBase = TestConstants.getIndexDirectory( SearchTestBase.class );
    File indexDir = new File(indexBase);
    FileHelper.delete( indexDir );
  }

  @Override
  @SuppressWarnings("unchecked")
  protected Class<?>[] getAnnotatedClasses() {
    return new Class[] {
        Detective.class,
        Suspect.class
    };
  }

  public boolean insert = true;

  @Test
  public void testConcurrency() throws Exception {
    final int numberDetectives = PERFORMANCE_TESTS_ENABLED ? 5000 : 5;
    Session s = openSession();
    Transaction tx = s.beginTransaction();
    for ( int index = 0; index < numberDetectives; index++ ) {
      Detective detective = new Detective();
      detective.setName( "John Doe " + index );
      detective.setBadge( "123455" + index );
      detective.setPhysicalDescription( "Blond green eye etc etc" );
      s.persist( detective );
      Suspect suspect = new Suspect();
      suspect.setName( "Jane Doe " + index );
      suspect.setPhysicalDescription( "brunette, short, 30-ish" );
      if ( index % 20 == 0 ) {
        suspect.setSuspectCharge( "thief liar " );
      }
      else {
        suspect.setSuspectCharge(
            " It's 1875 in London. The police have captured career criminal Montmorency. In the process he has been grievously wounded and it is up to a young surgeon to treat his wounds. During his recovery Montmorency learns of the city's new sewer system and sees in it the perfect underground highway for his thievery.  Washington Post columnist John Kelly recommends this title for middle schoolers, especially to be read aloud."
        );
      }
      s.persist( suspect );
    }
    tx.commit();
    s.close();

    int nThreads = PERFORMANCE_TESTS_ENABLED ? 15 : 1;
    ExecutorService es = Executors.newFixedThreadPool( nThreads );
    Work work = new Work( getSessionFactory() );
    ReverseWork reverseWork = new ReverseWork( getSessionFactory() );
    long start = System.nanoTime();
    int iteration = PERFORMANCE_TESTS_ENABLED ? 100 : 1;
    log.info( "Starting worker threads." );
    for ( int i = 0; i < iteration; i++ ) {
      es.execute( work );
      es.execute( reverseWork );
    }
    while ( work.count.get() < iteration - 1 ) {
      Thread.sleep( 20 );
    }
    log.debug( iteration + " iterations in " + nThreads + " threads: "
        + TimeUnit.NANOSECONDS.toMillis( System.nanoTime() - start ) );
  }

  protected class Work implements Runnable {
    private Random random = new Random();
    private SessionFactory sf;
//    public volatile int count = 0;
    public AtomicInteger count = new AtomicInteger( 0 );

    public Work(SessionFactory sf) {
      this.sf = sf;
    }

    @Override
    public void run() {
      Session s = null;
      Transaction tx = null;
      try {
        s = sf.openSession();
        tx = s.beginTransaction();
        QueryParser parser = new MultiFieldQueryParser(
            TestConstants.getTargetLuceneVersion(),
            new String[] { "name", "physicalDescription", "suspectCharge" },
            TestConstants.standardAnalyzer
        );
        FullTextQuery query = getQuery( "John Doe", parser, s );
        assertTrue( query.getResultSize() != 0 );

        query = getQuery( "green", parser, s );
        random.nextInt( query.getResultSize() - 15 );
        query.setFirstResult( random.nextInt( query.getResultSize() - 15 ) );
        query.setMaxResults( 10 );
        query.list();
        tx.commit();
        s.close();

        s = sf.openSession();
        tx = s.beginTransaction();

        query = getQuery( "John Doe", parser, s );
        assertTrue( query.getResultSize() != 0 );

        query = getQuery( "thief", parser, s );
        int firstResult = random.nextInt( query.getResultSize() - 15 );
        query.setFirstResult( firstResult );
        query.setMaxResults( 10 );
        List result = query.list();
        Object object = result.get( 0 );
        if ( insert && object instanceof Detective ) {
          Detective detective = (Detective) object;
          detective.setPhysicalDescription(
              detective.getPhysicalDescription() + " Eye"
                  + firstResult
          );
        }
        else if ( insert && object instanceof Suspect ) {
          Suspect suspect = (Suspect) object;
          suspect.setPhysicalDescription(
              suspect.getPhysicalDescription() + " Eye"
                  + firstResult
          );
        }
        tx.commit();
        s.close();
        // count++;
      }
      catch (Throwable t) {
        t.printStackTrace();
      }
      finally {
        count.incrementAndGet();
        try {
          if ( tx != null && tx.isActive() ) {
            tx.rollback();
          }
          if ( s != null && s.isOpen() ) {
            s.close();
          }
        }
        catch (Throwable t) {
          t.printStackTrace();
        }
      }
    }

    private FullTextQuery getQuery(String queryString, QueryParser parser, Session s) {
      Query luceneQuery = null;
      try {
        luceneQuery = parser.parse( queryString );
      }
      catch (ParseException e) {
        e.printStackTrace();
      }
      return Search.getFullTextSession( s ).createFullTextQuery( luceneQuery );
    }
  }

  protected static class ReverseWork implements Runnable {
    private SessionFactory sf;
    private Random random = new Random();

    public ReverseWork(SessionFactory sf) {
      this.sf = sf;
    }

    @Override
    public void run() {
      Session s = sf.openSession();
      Transaction tx = s.beginTransaction();
      QueryParser parser = new MultiFieldQueryParser(
          TestConstants.getTargetLuceneVersion(),
          new String[] { "name", "physicalDescription", "suspectCharge" },
          TestConstants.standardAnalyzer
      );
      FullTextQuery query = getQuery( "John Doe", parser, s );
      assertTrue( query.getResultSize() != 0 );

      query = getQuery( "london", parser, s );
      random.nextInt( query.getResultSize() - 15 );
      query.setFirstResult( random.nextInt( query.getResultSize() - 15 ) );
      query.setMaxResults( 10 );
      query.list();
      tx.commit();
      s.close();

      s = sf.openSession();
      tx = s.beginTransaction();

      getQuery( "John Doe", parser, s );
      assertTrue( query.getResultSize() != 0 );

      query = getQuery( "green", parser, s );
      random.nextInt( query.getResultSize() - 15 );
      query.setFirstResult( random.nextInt( query.getResultSize() - 15 ) );
      query.setMaxResults( 10 );
      query.list();
      tx.commit();
      s.close();
    }

    private FullTextQuery getQuery(String queryString, QueryParser parser, Session s) {
      Query luceneQuery = null;
      try {
        luceneQuery = parser.parse( queryString );
      }
      catch (ParseException e) {
        e.printStackTrace();
      }
      return Search.getFullTextSession( s ).createFullTextQuery( luceneQuery );
    }
  }

  @Override
  protected void configure(org.hibernate.cfg.Configuration cfg) {
    super.configure( cfg );
    cfg.setProperty(
        "hibernate.search.default.indexBase",
        TestConstants.getIndexDirectory( ReaderPerformanceTestCase.class )
    );
    cfg.setProperty( "hibernate.search.default.directory_provider", "filesystem" );
    cfg.setProperty( Environment.ANALYZER_CLASS, StopAnalyzer.class.getName() );
  }

}
TOP

Related Classes of org.hibernate.search.test.performance.reader.ReaderPerformanceTestCase$ReverseWork

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.