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

📄 arcwriterpooltest.java

📁 一个基于lucene&heritrix的搜索引擎
💻 JAVA
字号:
/* ARCWriterPoolTest * * $Id: ARCWriterPoolTest.java,v 1.14 2006/07/21 21:18:29 stack-sf Exp $ * * Created on Jan 22, 2004 * * Copyright (C) 2004 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 */package org.archive.io.arc;import java.io.ByteArrayOutputStream;import java.io.File;import java.util.Arrays;import java.util.Date;import java.util.List;import java.util.NoSuchElementException;import org.archive.io.WriterPoolMember;import org.archive.io.WriterPool;import org.archive.io.WriterPoolSettings;import org.archive.util.TmpDirTestCase;/** * Test ARCWriterPool */public class ARCWriterPoolTest extends TmpDirTestCase {    private static final String PREFIX = "TEST";        public void testARCWriterPool()    throws Exception {        final int MAX_ACTIVE = 3;        final int MAX_WAIT_MILLISECONDS = 100;        cleanUpOldFiles(PREFIX);        WriterPool pool = new ARCWriterPool(getSettings(true),            MAX_ACTIVE, MAX_WAIT_MILLISECONDS);        WriterPoolMember [] writers = new WriterPoolMember[MAX_ACTIVE];        final String CONTENT = "Any old content";        ByteArrayOutputStream baos = new ByteArrayOutputStream();        baos.write(CONTENT.getBytes());        for (int i = 0; i < MAX_ACTIVE; i++) {            writers[i] = pool.borrowFile();            assertEquals("Number active", i + 1, pool.getNumActive());            ((ARCWriter)writers[i]).write("http://one.two.three", "no-type",            	"0.0.0.0", 1234567890, CONTENT.length(), baos);        }        // Pool is maxed out.  Try and get a new ARCWriter.  We'll block for        // MAX_WAIT_MILLISECONDS.  Should get exception.        long start = (new Date()).getTime();        boolean isException = false;        try {            pool.borrowFile();        } catch(NoSuchElementException e) {            isException = true;            long end = (new Date()).getTime();            // This test can fail on a loaded machine if the wait period is            // only MAX_WAIT_MILLISECONDS.  Up the time to wait.            final int WAIT = MAX_WAIT_MILLISECONDS * 100;            if ((end - start) > (WAIT)) {                fail("More than " + MAX_WAIT_MILLISECONDS + " elapsed: "                    + WAIT);            }        }        assertTrue("Did not get NoSuchElementException", isException);        for (int i = (MAX_ACTIVE - 1); i >= 0; i--) {            pool.returnFile(writers[i]);            assertEquals("Number active", i, pool.getNumActive());            assertEquals("Number idle", MAX_ACTIVE - pool.getNumActive(),                    pool.getNumIdle());        }        pool.close();    }        public void testInvalidate() throws Exception {        final int MAX_ACTIVE = 3;        final int MAX_WAIT_MILLISECONDS = 100;        cleanUpOldFiles(PREFIX);        WriterPool pool = new ARCWriterPool(getSettings(true),            MAX_ACTIVE, MAX_WAIT_MILLISECONDS);        WriterPoolMember [] writers = new WriterPoolMember[MAX_ACTIVE];        final String CONTENT = "Any old content";        ByteArrayOutputStream baos = new ByteArrayOutputStream();        baos.write(CONTENT.getBytes());        for (int i = 0; i < MAX_ACTIVE; i++) {            writers[i] = pool.borrowFile();            assertEquals("Number active", i + 1, pool.getNumActive());            ((ARCWriter)writers[i]).write("http://one.two.three", "no-type",            	"0.0.0.0", 1234567890, CONTENT.length(), baos);        }             WriterPoolMember writer2Invalidate = writers[pool.getNumActive() - 1];        writers[pool.getNumActive() - 1] = null;        pool.invalidateFile(writer2Invalidate);        for (int i = 0; i < (MAX_ACTIVE - 1); i++) {            if (writers[i] == null) {                continue;            }            pool.returnFile(writers[i]);        }                for (int i = 0; i < MAX_ACTIVE; i++) {            writers[i] = pool.borrowFile();            assertEquals("Number active", i + 1, pool.getNumActive());            ((ARCWriter)writers[i]).write("http://one.two.three", "no-type",            	"0.0.0.0", 1234567890, CONTENT.length(), baos);        }        for (int i = (MAX_ACTIVE - 1); i >= 0; i--) {            pool.returnFile(writers[i]);            assertEquals("Number active", i, pool.getNumActive());            assertEquals("Number idle", MAX_ACTIVE - pool.getNumActive(),                    pool.getNumIdle());        }        pool.close();    }        private WriterPoolSettings getSettings(final boolean isCompressed) {        return new WriterPoolSettings() {            public int getMaxSize() {                return ARCConstants.DEFAULT_MAX_ARC_FILE_SIZE;            }                        public String getPrefix() {                return PREFIX;            }                        public String getSuffix() {                return "";            }                        public List getOutputDirs() {                File [] files = {getTmpDir()};                return Arrays.asList(files);            }                        public boolean isCompressed() {                return isCompressed;            }                        public List getMetadata() {            	return null;            }        };    }}

⌨️ 快捷键说明

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