blob: 273bb5c0409919e9c1adb48033e06660aef07684 [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.geode.internal.cache.backup;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
/**
* A BackupInspector for Unix platforms.
*/
class UnixBackupInspector extends BackupInspector {
/**
* Restore file for Unix platforms.
*/
private static final String RESTORE_FILE = "restore.sh";
UnixBackupInspector(final File backupDir) throws IOException {
super(backupDir);
}
@Override
public String getCopyFromForOplogFile(final String oplogFileName) {
String line = getOplogLineFromFilename(oplogFileName);
if (line == null) {
return null;
}
String[] parts = line.split("\\s");
return parts[2].substring(1, parts[2].length() - 1);
}
@Override
public String getCopyToForOplogFile(final String oplogFileName) {
String line = getOplogLineFromFilename(oplogFileName);
if (line == null) {
return null;
}
String[] parts = line.split("\\s");
return parts[3].substring(1, parts[3].length() - 1);
}
@Override
protected void parseOplogLines(final BufferedReader reader) throws IOException {
String line;
while (null != (line = reader.readLine())) {
if (line.startsWith("mkdir")) {
// ensure that statements creating directories is not interpreted as oplog files.
continue;
}
int beginIndex = line.lastIndexOf(File.separator) + 1;
int endIndex = line.length() - 1;
String oplogName = line.substring(beginIndex, endIndex);
addOplogLine(oplogName, line);
}
}
@Override
protected File getRestoreFile(final File backupDir) {
return new File(backupDir, RESTORE_FILE);
}
}