/* * 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. */ package org.apache.cassandra.io.sstable; import java.io.File; import java.util.EnumSet; import com.google.common.base.Objects; import org.apache.cassandra.utils.Pair; /** * SSTables are made up of multiple components in separate files. Components are * identified by a type and an id, but required unique components (such as the Data * and Index files) may have implicit ids assigned to them. */ public class Component { public static final char separator = '-'; final static EnumSet<Type> TYPES = EnumSet.allOf(Type.class); public enum Type { // the base data for an sstable: the remaining components can be regenerated // based on the data component DATA("Data.db"), // index of the row keys with pointers to their positions in the data file PRIMARY_INDEX("Index.db"), // serialized bloom filter for the row keys in the sstable FILTER("Filter.db"), // file to hold information about uncompressed data length, chunk offsets etc. COMPRESSION_INFO("CompressionInfo.db"), // statistical metadata about the content of the sstable STATS("Statistics.db"), // holds sha1 sum of the data file (to be checked by sha1sum) DIGEST("Digest.sha1"), // holds the CRC32 for chunks in an a uncompressed file. CRC("CRC.db"), // holds SSTable Index Summary (sampling of Index component) SUMMARY("Summary.db"), // table of contents, stores the list of all components for the sstable TOC("TOC.txt"), // custom component, used by e.g. custom compaction strategy CUSTOM(null); final String repr; Type(String repr) { this.repr = repr; } static Type fromRepresentation(String repr) { for (Type type : TYPES) if (repr.equals(type.repr)) return type; return CUSTOM; } } // singleton components for types that don't need ids public final static Component DATA = new Component(Type.DATA); public final static Component PRIMARY_INDEX = new Component(Type.PRIMARY_INDEX); public final static Component FILTER = new Component(Type.FILTER); public final static Component COMPRESSION_INFO = new Component(Type.COMPRESSION_INFO); public final static Component STATS = new Component(Type.STATS); public final static Component DIGEST = new Component(Type.DIGEST); public final static Component CRC = new Component(Type.CRC); public final static Component SUMMARY = new Component(Type.SUMMARY); public final static Component TOC = new Component(Type.TOC); public final Type type; public final String name; public final int hashCode; public Component(Type type) { this(type, type.repr); assert type != Type.CUSTOM; } public Component(Type type, String name) { assert name != null : "Component name cannot be null"; this.type = type; this.name = name; this.hashCode = Objects.hashCode(type, name); } /** * @return The unique (within an sstable) name for this component. */ public String name() { return name; } /** * Filename of the form "<ksname>/<cfname>-[tmp-][<version>-]<gen>-<component>", * @return A Descriptor for the SSTable, and a Component for this particular file. * TODO move descriptor into Component field */ public static Pair<Descriptor,Component> fromFilename(File directory, String name) { Pair<Descriptor,String> path = Descriptor.fromFilename(directory, name); // parse the component suffix Type type = Type.fromRepresentation(path.right); // build (or retrieve singleton for) the component object Component component; switch(type) { case DATA: component = Component.DATA; break; case PRIMARY_INDEX: component = Component.PRIMARY_INDEX; break; case FILTER: component = Component.FILTER; break; case COMPRESSION_INFO: component = Component.COMPRESSION_INFO; break; case STATS: component = Component.STATS; break; case DIGEST: component = Component.DIGEST; break; case CRC: component = Component.CRC; break; case SUMMARY: component = Component.SUMMARY; break; case TOC: component = Component.TOC; break; case CUSTOM: component = new Component(Type.CUSTOM, path.right); break; default: throw new IllegalStateException(); } return Pair.create(path.left, component); } @Override public String toString() { return this.name(); } @Override public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Component)) return false; Component that = (Component)o; return this.type == that.type && this.name.equals(that.name); } @Override public int hashCode() { return hashCode; } }