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

lodsve.search.engine.AbstractSearchEngine Maven / Gradle / Ivy

There is a newer version: 2.7.5-RELEASE
Show newest version
/*
 * Copyright (C) 2018  Sun.Hao
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */

package lodsve.search.engine;

import lodsve.core.utils.StringUtils;
import lodsve.search.bean.BaseSearchBean;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeanUtils;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageImpl;
import org.springframework.data.domain.Pageable;

import java.util.Collections;
import java.util.List;

/**
 * 搜索引擎的公用方法.
 *
 * @author sunhao([email protected])
 * @version V1.0
 * @createTime 13-5-8 下午10:53
 */
public abstract class AbstractSearchEngine implements SearchEngine {
    private static final Logger logger = LoggerFactory.getLogger(AbstractSearchEngine.class);

    /**
     * 进行高亮处理时,html片段的前缀
     */
    private String htmlPrefix = "

"; /** * 进行高亮处理时,html片段的后缀 */ private String htmlSuffix = "

"; String getHtmlPrefix() { return htmlPrefix; } public void setHtmlPrefix(String htmlPrefix) { this.htmlPrefix = htmlPrefix; } String getHtmlSuffix() { return htmlSuffix; } public void setHtmlSuffix(String htmlSuffix) { this.htmlSuffix = htmlSuffix; } @Override public Page doSearch(BaseSearchBean bean, boolean isHighlighter, Pageable pageable) throws Exception { if (bean == null) { logger.debug("given search bean is empty!"); return new PageImpl<>(Collections.emptyList(), null, 0); } return doSearch(Collections.singletonList(bean), isHighlighter, pageable); } /** * 获取index类型 * * @param bean * @return */ String getIndexType(BaseSearchBean bean) { return StringUtils.isNotEmpty(bean.getIndexType()) ? bean.getIndexType() : bean.getClass().getSimpleName(); } /** * 根据indexType从BaseSearchBean的集合中获取对应的bean * * @param indexType * @param beans * @return */ BaseSearchBean getBaseSearchBean(String indexType, List beans) { if (StringUtils.isEmpty(indexType) || beans == null || beans.isEmpty()) { logger.debug("indexType is null or beans is null!"); return null; } BaseSearchBean result = null; for (BaseSearchBean b : beans) { if (indexType.equals(b.getIndexType())) { result = BeanUtils.instantiate(b.getClass()); break; } } return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy