jpountz commented on a change in pull request #2268: URL: https://github.com/apache/lucene-solr/pull/2268#discussion_r572048722
########## File path: lucene/core/src/java/org/apache/lucene/codecs/lucene90/Lucene90CompoundFormat.java ########## @@ -0,0 +1,140 @@ +/* + * 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.lucene.codecs.lucene90; + +import java.io.IOException; +import org.apache.lucene.codecs.CodecUtil; +import org.apache.lucene.codecs.CompoundDirectory; +import org.apache.lucene.codecs.CompoundFormat; +import org.apache.lucene.index.IndexFileNames; +import org.apache.lucene.index.SegmentInfo; +import org.apache.lucene.store.ChecksumIndexInput; +import org.apache.lucene.store.DataOutput; +import org.apache.lucene.store.Directory; +import org.apache.lucene.store.IOContext; +import org.apache.lucene.store.IndexOutput; + +/** + * Lucene 9.0 compound file format + * + * <p>Files: + * + * <ul> + * <li><code>.cfs</code>: An optional "virtual" file consisting of all the other index files for + * systems that frequently run out of file handles. + * <li><code>.cfe</code>: The "virtual" compound file's entry table holding all entries in the + * corresponding .cfs file. + * </ul> + * + * <p>Description: + * + * <ul> + * <li>Compound (.cfs) --> Header, FileData <sup>FileCount</sup>, Footer + * <li>Compound Entry Table (.cfe) --> Header, FileCount, <FileName, DataOffset, + * DataLength> <sup>FileCount</sup> + * <li>Header --> {@link CodecUtil#writeIndexHeader IndexHeader} + * <li>FileCount --> {@link DataOutput#writeVInt VInt} + * <li>DataOffset,DataLength,Checksum --> {@link DataOutput#writeLong UInt64} + * <li>FileName --> {@link DataOutput#writeString String} + * <li>FileData --> raw file data + * <li>Footer --> {@link CodecUtil#writeFooter CodecFooter} + * </ul> + * + * <p>Notes: + * + * <ul> + * <li>FileCount indicates how many files are contained in this compound file. The entry table + * that follows has that many entries. + * <li>Each directory entry contains a long pointer to the start of this file's data section, the + * files length, and a String with that file's name. + * </ul> + */ +public final class Lucene90CompoundFormat extends CompoundFormat { + + /** Extension of compound file */ + static final String DATA_EXTENSION = "cfs"; + /** Extension of compound file entries */ + static final String ENTRIES_EXTENSION = "cfe"; + Review comment: We would like to avoid sharing file extensions across file formats, e.g. given that `.liv` is used by live docs today, it could be confusing to use it for stored fields in the future. However I don't feel the need to change extensions as we iterate on a given file format, even if we changed completely the way it works. This is something we did in Lucene 5.x for postings, moving from `.frq`/`.prox` to `.doc`/`.pos` but this is not a requirement at all, by the way we changed stored fields in Lucene 4.x and kept the same `.fdt` extension even though the new file format had very little in common with the previous one. I think we can keep the same file extensions here. It's easy enough to read the first bytes of a `cfs`/`cfe` file in case of doubt to check out the name in the codec header. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org