⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seedcachingscope.java

📁 Heritrix是一个开源,可扩展的web爬虫项目。Heritrix设计成严格按照robots.txt文件的排除指示和META robots标签。
💻 JAVA
字号:
/* Copyright (C) 2003 Internet Archive. * * This file is part of the Heritrix web crawler (crawler.archive.org). * * Heritrix is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * any later version. * * Heritrix 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 Lesser Public License for more details. * * You should have received a copy of the GNU Lesser Public License * along with Heritrix; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * * SeedCachingScope.java * Created on Mar 25, 2005 * * $Header$ */package org.archive.crawler.scope;import java.util.ArrayList;import java.util.Iterator;import java.util.List;import org.archive.crawler.datamodel.CrawlURI;import org.archive.net.UURI;/** * A CrawlScope that caches its seed list for the * convenience of scope-tests that are based on the  * seeds.  * * @author gojomo * */public class SeedCachingScope extends ClassicScope {    private static final long serialVersionUID = 300230673616424926L;    //private static final Logger logger =    //    Logger.getLogger(SeedCachingScope.class.getName());    List<UURI> seeds;    public SeedCachingScope(String name) {        super(name);    }    /* (non-Javadoc)     * @see org.archive.crawler.framework.CrawlScope#addSeed(org.archive.crawler.datamodel.UURI)     */    public boolean addSeed(CrawlURI curi) {        if (super.addSeed(curi) == false) {            // failed            return false;        }        // FIXME: This is not thread-safe.        List<UURI> newSeeds = new ArrayList<UURI>(seeds);        newSeeds.add(curi.getUURI());        seeds = newSeeds;        return true;    }        /* (non-Javadoc)     * @see org.archive.crawler.framework.CrawlScope#refreshSeeds()     */    public synchronized void refreshSeeds() {        super.refreshSeeds();        seeds = null;        fillSeedsCache();    }        /* (non-Javadoc)     * @see org.archive.crawler.framework.CrawlScope#seedsIterator()     */    public Iterator<UURI> seedsIterator() {        fillSeedsCache();        return seeds.iterator();    }    /**     * Ensure seeds cache is created/filled     */    protected synchronized void fillSeedsCache() {        if (seeds==null) {            seeds = new ArrayList<UURI>();            Iterator<UURI> iter = super.seedsIterator();            while(iter.hasNext()) {                seeds.add(iter.next());            }        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -