package org.infinispan.lucene; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Collections; import java.util.Set; import org.infinispan.commons.io.UnsignedNumeric; import org.infinispan.commons.marshall.AbstractExternalizer; /** * Cache key for a list with current files in cache * * @since 4.0 * @author Lukasz Moren * @author Sanne Grinovero */ public final class FileListCacheKey implements IndexScopedKey { private final String indexName; private final int affinitySegmentId; private final int hashCode; public FileListCacheKey(String indexName, final int affinitySegmentId) { this.indexName = indexName; this.affinitySegmentId = affinitySegmentId; this.hashCode = generatedHashCode(); } /** * Get the indexName. * * @return the indexName. */ @Override public String getIndexName() { return indexName; } @Override public int getAffinitySegmentId() { return affinitySegmentId; } @Override public Object accept(KeyVisitor visitor) throws Exception { return visitor.visit(this); } @Override public int hashCode() { return hashCode; } private int generatedHashCode() { return 31 + indexName.hashCode(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (FileListCacheKey.class != obj.getClass()) return false; FileListCacheKey other = (FileListCacheKey) obj; return indexName.equals(other.indexName); } /** * Changing the encoding could break backwards compatibility * @see LuceneKey2StringMapper#getKeyMapping(String) */ @Override public String toString() { return "*|" + indexName + "|" + affinitySegmentId; } public static final class Externalizer extends AbstractExternalizer<FileListCacheKey> { @Override public void writeObject(final ObjectOutput output, final FileListCacheKey key) throws IOException { output.writeUTF(key.indexName); UnsignedNumeric.writeUnsignedInt(output, key.affinitySegmentId); } @Override public FileListCacheKey readObject(final ObjectInput input) throws IOException { final String indexName = input.readUTF(); final int affinitySegmentId = UnsignedNumeric.readUnsignedInt(input); return new FileListCacheKey(indexName, affinitySegmentId); } @Override public Integer getId() { return ExternalizerIds.FILE_LIST_CACHE_KEY; } @Override public Set<Class<? extends FileListCacheKey>> getTypeClasses() { return Collections.singleton(FileListCacheKey.class); } } }