blob: b7f018ad40e803111f33bd972d89b046e0ca2a00 [file] [log] [blame]
/*
* 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.iotdb.tsfile.read;
import org.apache.iotdb.tsfile.fileSystem.FSFactoryProducer;
import org.apache.iotdb.tsfile.write.TsFileWriter;
import org.apache.iotdb.tsfile.write.writer.RestorableTsFileIOWriter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
public class TsFileRestorableReader extends TsFileSequenceReader {
private static final Logger logger = LoggerFactory.getLogger(TsFileRestorableReader.class);
public TsFileRestorableReader(String file) throws IOException {
this(file, true);
}
public TsFileRestorableReader(String file, boolean autoRepair) throws IOException {
// if autoRepair == true, then it means the file is likely broken, so we can not
// read metadata
// otherwise, the user may consider that either the file is complete, or the
// user can accept an
// Exception when reading broken data. Therefore, we set loadMetadata as true in
// this case.
super(file, !autoRepair);
if (autoRepair) {
try {
checkAndRepair();
} catch (Throwable e) {
close();
throw e;
}
loadMetadataSize();
}
}
/** Checks if the file is incomplete, and if so, tries to repair it. */
private void checkAndRepair() throws IOException {
// Check if file is damaged
if (!isComplete()) {
// Try to close it
logger.info("File {} has no correct tail magic, try to repair...", file);
try (RestorableTsFileIOWriter rWriter =
new RestorableTsFileIOWriter(FSFactoryProducer.getFSFactory().getFile(file));
TsFileWriter writer = new TsFileWriter(rWriter)) {
// This writes the right magic string
}
}
}
}