blob: bd3c32427b058cb4e0ff9846cbc4a45a8d4af691 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.internal.core.index.impl;
import org.eclipse.cdt.internal.core.CharOperation;
/**
* An indexBlock stores wordEntries.
*/
public abstract class IndexBlock extends Block {
public IndexBlock(int blockSize) {
super(blockSize);
}
/**
* Adds the given wordEntry to the indexBlock.
*/
public abstract boolean addEntry(WordEntry entry);
/**
* Adds the given wordEntry to the indexBlock.
*/
public abstract boolean addIncludeEntry(IncludeEntry entry);
/**
* @see Block#clear()
*/
public void clear() {
reset();
super.clear();
}
public WordEntry findEntryMatching(char[] pattern, boolean isCaseSensitive) {
reset();
WordEntry entry= new WordEntry();
while (nextEntry(entry)) {
if (CharOperation.match(pattern, entry.getWord(), isCaseSensitive)) {
return entry;
}
}
return null;
}
public WordEntry findEntryPrefixedBy(char[] word, boolean isCaseSensitive) {
reset();
WordEntry entry= new WordEntry();
while (nextEntry(entry)) {
if (CharOperation.prefixEquals(entry.getWord(), word, isCaseSensitive)) {
return entry;
}
}
return null;
}
public WordEntry findExactEntry(char[] word) {
reset();
WordEntry entry= new WordEntry();
while (nextEntry(entry)) {
if (CharOperation.equals(entry.getWord(), word)) {
return entry;
}
}
return null;
}
/**
* Returns whether the block is empty or not (if it doesn't contain any wordEntry).
*/
public abstract boolean isEmpty();
/**
* Finds the next wordEntry and stores it in the given entry.
*/
public abstract boolean nextEntry(WordEntry entry);
public abstract boolean nextEntry(IncludeEntry entry);
public void reset() {
}
}