首页>代码>Java开源社区论坛系统Symphony>/symphony-master/src/main/java/org/b3log/symphony/cache/DomainCache.java
/*
 * Symphony - A modern community (forum/SNS/blog) platform written in Java.
 * Copyright (C) 2012-2018, b3log.org & hacpai.com
 *
 * 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 <http://www.gnu.org/licenses/>.
 */
package org.b3log.symphony.cache;

import org.b3log.latke.ioc.inject.Inject;
import org.b3log.latke.ioc.inject.Named;
import org.b3log.latke.ioc.inject.Singleton;
import org.b3log.latke.logging.Logger;
import org.b3log.symphony.service.DomainQueryService;
import org.json.JSONObject;

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

/**
 * Domain cache.
 *
 * @author <a href="http://88250.b3log.org">Liang Ding</a>
 * @version 1.0.2.1, Apr 26, 2017
 * @since 1.4.0
 */
@Named
@Singleton
public class DomainCache {

    /**
     * Logger.
     */
    private static final Logger LOGGER = Logger.getLogger(DomainCache.class);

    /**
     * Domains.
     */
    private static final List<JSONObject> DOMAINS = new ArrayList<>();

    /**
     * Domain query service.
     */
    @Inject
    private DomainQueryService domainQueryService;

    /**
     * Gets domains with the specified fetch size.
     *
     * @param fetchSize the specified fetch size
     * @return domains
     */
    public List<JSONObject> getDomains(final int fetchSize) {
        if (DOMAINS.isEmpty()) {
            return Collections.emptyList();
        }

        final int end = fetchSize >= DOMAINS.size() ? DOMAINS.size() : fetchSize;

        return new ArrayList<>(DOMAINS.subList(0, end));
    }

    /**
     * Loads domains.
     */
    public void loadDomains() {
        DOMAINS.clear();
        DOMAINS.addAll(domainQueryService.getMostTagDomain(Integer.MAX_VALUE));
    }
}
最近下载更多
zsflucky  LV6 2023年7月10日
wzy1111  LV1 2023年6月29日
三十一  LV2 2023年6月28日
hhr1101  LV2 2023年5月20日
yidaaaaaa  LV1 2023年5月10日
小菜鸟6745  LV1 2022年12月8日
WEIdong123  LV2 2022年11月22日
molu123456 2022年11月7日
暂无贡献等级
拂袖云中  LV4 2022年6月17日
shen14755  LV3 2022年6月7日
最近浏览更多
Gin19960217  LV4 3月15日
XiaoSong888  LV2 1月11日
eqeqleqeqn  LV1 2023年12月22日
卢本伟不开挂  LV4 2023年10月22日
zj20020510  LV5 2023年9月18日
你爹正在加载中  LV4 2023年7月19日
zsflucky  LV6 2023年7月10日
ling7314  LV4 2023年7月6日
wzy1111  LV1 2023年6月29日
三十一  LV2 2023年6月28日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友