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

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

/*
* 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.net.MalformedURLException;

import org.apache.commons.lang3.StringUtils;
import org.apache.solr.client.solrj.SolrServer;
import org.apache.solr.client.solrj.impl.HttpSolrServer;
import org.apache.solr.client.solrj.impl.LBHttpSolrServer;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;

/**
* @author Christoph Strobl
*/
public class HttpSolrServerFactoryBean extends HttpSolrServerFactory implements FactoryBean<SolrServer>,
    InitializingBean, DisposableBean {

  private static final String SERVER_URL_SEPARATOR = ",";
  private String url;
  private Integer timeout;
  private Integer maxConnections;

  @Override
  public void afterPropertiesSet() throws Exception {
    Assert.hasText(url);
    initSolrServer();
  }

  private void initSolrServer() {
    if (this.url.contains(SERVER_URL_SEPARATOR)) {
      createLoadBalancedHttpSolrServer();
    } else {
      createHttpSolrServer();
    }
  }

  private void createHttpSolrServer() {
    HttpSolrServer httpSolrServer = new HttpSolrServer(this.url);
    if (timeout != null) {
      httpSolrServer.setConnectionTimeout(timeout.intValue());
    }
    if (maxConnections != null) {
      httpSolrServer.setMaxTotalConnections(maxConnections);
    }
    this.setSolrServer(httpSolrServer);
  }

  private void createLoadBalancedHttpSolrServer() {
    try {
      LBHttpSolrServer lbHttpSolrServer = new LBHttpSolrServer(StringUtils.split(this.url, SERVER_URL_SEPARATOR));
      if (timeout != null) {
        lbHttpSolrServer.setConnectionTimeout(timeout.intValue());
      }
      this.setSolrServer(lbHttpSolrServer);
    } catch (MalformedURLException e) {
      throw new IllegalArgumentException("Unable to create Load Balanced Http Solr Server", e);
    }
  }

  @Override
  public SolrServer getObject() throws Exception {
    return getSolrServer();
  }

  @Override
  public Class<?> getObjectType() {
    if (getSolrServer() == null) {
      return HttpSolrServer.class;
    }
    return getSolrServer().getClass();
  }

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

  public void setUrl(String url) {
    this.url = url;
  }

  public void setTimeout(Integer timeout) {
    this.timeout = timeout;
  }

  public void setMaxConnections(Integer maxConnections) {
    this.maxConnections = maxConnections;
  }

}
TOP

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

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.