Package org.springframework.data.solr.server.support

Source Code of org.springframework.data.solr.server.support.EmbeddedSolrServerFactory

/*
* Copyright 2012 - 2013 the original author or authors.
*
* 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.springframework.data.solr.server.support;

import java.io.File;
import java.io.IOException;
import java.lang.reflect.Constructor;
import java.net.URLDecoder;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import javax.xml.parsers.ParserConfigurationException;

import org.apache.commons.lang3.StringUtils;
import org.apache.solr.client.solrj.SolrServer;
import org.apache.solr.client.solrj.embedded.EmbeddedSolrServer;
import org.apache.solr.core.CoreContainer;
import org.springframework.beans.BeanInstantiationException;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.data.solr.server.SolrServerFactory;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
import org.springframework.util.ResourceUtils;
import org.xml.sax.SAXException;

/**
* The EmbeddedSolrServerFactory allows hosting of an SolrServer instance in embedded mode. Configuration files are
* loaded via {@link ResourceUtils}, therefore it is possible to place them in classpath. Use this class for Testing. It
* is not recommended for production.
*
* @author Christoph Strobl
*/
public class EmbeddedSolrServerFactory implements SolrServerFactory, DisposableBean {

  private static final String SOLR_HOME_SYSTEM_PROPERTY = "solr.solr.home";

  private String solrHome;
  private EmbeddedSolrServer solrServer;

  protected EmbeddedSolrServerFactory() {

  }

  /**
   * @param solrHome Any Path expression valid for use with {@link ResourceUtils} that points to the
   *          {@code solr.solr.home} directory
   * @throws ParserConfigurationException
   * @throws IOException
   * @throws SAXException
   */
  public EmbeddedSolrServerFactory(String solrHome) throws ParserConfigurationException, IOException, SAXException {
    Assert.hasText(solrHome);
    this.solrHome = solrHome;
  }

  @Override
  public EmbeddedSolrServer getSolrServer() {
    if (this.solrServer == null) {
      initSolrServer();
    }
    return this.solrServer;
  }

  protected void initSolrServer() {
    try {
      this.solrServer = createPathConfiguredSolrServer(this.solrHome);
    } catch (ParserConfigurationException e) {
      throw new BeanInstantiationException(EmbeddedSolrServer.class, e.getMessage(), e);
    } catch (IOException e) {
      throw new BeanInstantiationException(EmbeddedSolrServer.class, e.getMessage(), e);
    } catch (SAXException e) {
      throw new BeanInstantiationException(EmbeddedSolrServer.class, e.getMessage(), e);
    }
  }

  /**
   * @param path Any Path expression valid for use with {@link ResourceUtils}
   * @return new instance of {@link EmbeddedSolrServer}
   * @throws ParserConfigurationException
   * @throws IOException
   * @throws SAXException
   */
  public final EmbeddedSolrServer createPathConfiguredSolrServer(String path) throws ParserConfigurationException,
      IOException, SAXException {
    String solrHomeDirectory = System.getProperty(SOLR_HOME_SYSTEM_PROPERTY);

    if (StringUtils.isBlank(solrHomeDirectory)) {
      solrHomeDirectory = ResourceUtils.getURL(path).getPath();
    }

    solrHomeDirectory = URLDecoder.decode(solrHomeDirectory, "utf-8");
    return new EmbeddedSolrServer(createCoreContainer(solrHomeDirectory), null);
  }

  private CoreContainer createCoreContainer(String solrHomeDirectory) {
    File solrXmlFile = new File(solrHomeDirectory + "/solr.xml");
    if (ClassUtils.hasConstructor(CoreContainer.class, String.class, File.class)) {
      return createCoreContainerViaConstructor(solrHomeDirectory, solrXmlFile);
    }
    return createCoreContainer(solrHomeDirectory, solrXmlFile);
  }

  /**
   * Create {@link CoreContainer} via its constructor (Solr 3.6.0 - 4.3.1)
   *
   * @param solrHomeDirectory
   * @param solrXmlFile
   * @return
   */
  private CoreContainer createCoreContainerViaConstructor(String solrHomeDirectory, File solrXmlFile) {
    Constructor<CoreContainer> constructor = ClassUtils.getConstructorIfAvailable(CoreContainer.class, String.class,
        File.class);
    return BeanUtils.instantiateClass(constructor, solrHomeDirectory, solrXmlFile);
  }

  /**
   * Create {@link CoreContainer} for Solr version 4.4+
   *
   * @param solrHomeDirectory
   * @param solrXmlFile
   * @return
   */
  private CoreContainer createCoreContainer(String solrHomeDirectory, File solrXmlFile) {
    return CoreContainer.createAndLoad(solrHomeDirectory, solrXmlFile);
  }

  public void shutdownSolrServer() {
    if (this.solrServer != null && solrServer.getCoreContainer() != null) {
      solrServer.getCoreContainer().shutdown();
    }
  }

  @Override
  public List<String> getCores() {
    if (this.solrServer != null && solrServer.getCoreContainer() != null) {
      return new ArrayList<String>(this.solrServer.getCoreContainer().getCoreNames());
    }
    return Collections.emptyList();
  }

  public void setSolrHome(String solrHome) {
    Assert.hasText(solrHome);
    this.solrHome = solrHome;
  }

  @Override
  public void destroy() throws Exception {
    shutdownSolrServer();
  }

  @Override
  public SolrServer getSolrServer(String core) {
    return getSolrServer();
  }

}
TOP

Related Classes of org.springframework.data.solr.server.support.EmbeddedSolrServerFactory

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.