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

📄 mockramdirectory.java

📁 一套java版本的搜索引擎源码
💻 JAVA
字号:
package org.apache.lucene.store;/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements.  See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License.  You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */import java.io.IOException;import java.io.File;import java.util.Iterator;import java.util.Random;/** * This is a subclass of RAMDirectory that adds methods * intented to be used only by unit tests. * @version $Id: RAMDirectory.java 437897 2006-08-29 01:13:10Z yonik $ */public class MockRAMDirectory extends RAMDirectory {  long maxSize;  // Max actual bytes used. This is set by MockRAMOutputStream:  long maxUsedSize;  double randomIOExceptionRate;  Random randomState;  public MockRAMDirectory() throws IOException {    super();  }  public MockRAMDirectory(String dir) throws IOException {    super(dir);  }  public MockRAMDirectory(Directory dir) throws IOException {    super(dir);  }  public MockRAMDirectory(File dir) throws IOException {    super(dir);  }  public void setMaxSizeInBytes(long maxSize) {    this.maxSize = maxSize;  }  public long getMaxSizeInBytes() {    return this.maxSize;  }  /**   * Returns the peek actual storage used (bytes) in this   * directory.   */  public long getMaxUsedSizeInBytes() {    return this.maxUsedSize;  }  public void resetMaxUsedSizeInBytes() {    this.maxUsedSize = getRecomputedActualSizeInBytes();  }  /**   * If 0.0, no exceptions will be thrown.  Else this should   * be a double 0.0 - 1.0.  We will randomly throw an   * IOException on the first write to an OutputStream based   * on this probability.   */  public void setRandomIOExceptionRate(double rate, long seed) {    randomIOExceptionRate = rate;    // seed so we have deterministic behaviour:    randomState = new Random(seed);  }  public double getRandomIOExceptionRate() {    return randomIOExceptionRate;  }  void maybeThrowIOException() throws IOException {    if (randomIOExceptionRate > 0.0) {      int number = Math.abs(randomState.nextInt() % 1000);      if (number < randomIOExceptionRate*1000) {        throw new IOException("a random IOException");      }    }  }  public IndexOutput createOutput(String name) {    RAMFile file = new RAMFile(this);    synchronized (this) {      RAMFile existing = (RAMFile)fileMap.get(name);      if (existing!=null) {        sizeInBytes -= existing.sizeInBytes;        existing.directory = null;      }      fileMap.put(name, file);    }    return new MockRAMOutputStream(this, file);  }  /** Provided for testing purposes.  Use sizeInBytes() instead. */  public synchronized final long getRecomputedSizeInBytes() {    long size = 0;    Iterator it = fileMap.values().iterator();    while (it.hasNext())      size += ((RAMFile) it.next()).getSizeInBytes();    return size;  }  /** Like getRecomputedSizeInBytes(), but, uses actual file   * lengths rather than buffer allocations (which are   * quantized up to nearest   * BufferedIndexOutput.BUFFER_SIZE (now 1024) bytes.   */  final long getRecomputedActualSizeInBytes() {    long size = 0;    Iterator it = fileMap.values().iterator();    while (it.hasNext())      size += ((RAMFile) it.next()).length;    return size;  }}

⌨️ 快捷键说明

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