All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dspace.statistics.SolrStatisticsCore Maven / Gradle / Ivy

The newest version!
/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.dspace.statistics;

import static org.apache.logging.log4j.LogManager.getLogger;

import jakarta.inject.Named;
import org.apache.logging.log4j.Logger;
import org.apache.solr.client.solrj.SolrClient;
import org.apache.solr.client.solrj.impl.HttpSolrClient;
import org.dspace.service.impl.HttpConnectionPoolService;
import org.dspace.services.ConfigurationService;
import org.springframework.beans.factory.annotation.Autowired;

/**
 * Bean containing the {@link SolrClient} for the statistics core
 */
public class SolrStatisticsCore {

    private static final Logger log = getLogger();

    protected SolrClient solr = null;

    @Autowired
    protected ConfigurationService configurationService;

    @Autowired @Named("solrHttpConnectionPoolService")
    protected HttpConnectionPoolService httpConnectionPoolService;

    /**
     * Returns the {@link SolrClient} for the Statistics core.
     * Initializes it if needed.
     * @return The {@link SolrClient} for the Statistics core
     */
    public SolrClient getSolr() {
        if (solr == null) {
            initSolr();
        }
        return solr;
    }

    /**
     * Initializes the statistics {@link SolrClient}.
     */
    protected void initSolr() {

        String solrService = configurationService.getProperty("solr-statistics.server");

        log.info("solr-statistics.server:  {}", solrService);
        log.info("usage-statistics.dbfile:  {}", configurationService.getProperty("usage-statistics.dbfile"));

        try {
            solr = new HttpSolrClient.Builder(solrService)
                    .withHttpClient(httpConnectionPoolService.getClient())
                    .build();
        } catch (Exception e) {
            log.error("Error accessing Solr server configured in 'solr-statistics.server'", e);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy