blob: 6300ea483ce9b24a26eb6f576923ce3b8b496aae [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.ratis.server.leader;
import org.apache.ratis.proto.RaftProtos.FileChunkProto;
import org.apache.ratis.proto.RaftProtos.InstallSnapshotRequestProto;
import org.apache.ratis.proto.RaftProtos.InstallSnapshotRequestProto.SnapshotChunkProto;
import org.apache.ratis.protocol.RaftPeerId;
import org.apache.ratis.server.RaftServer;
import org.apache.ratis.server.storage.FileChunkReader;
import org.apache.ratis.server.storage.FileInfo;
import org.apache.ratis.server.storage.RaftStorageDirectory;
import org.apache.ratis.statemachine.SnapshotInfo;
import org.apache.ratis.util.JavaUtils;
import java.io.File;
import java.io.IOException;
import java.nio.file.Path;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.Optional;
import java.util.function.Function;
/**
* An {@link Iterable} of {@link InstallSnapshotRequestProto} for sending a snapshot.
* <p>
* The snapshot is sent by one or more requests, where
* a snapshot has one or more files, and
* a file is sent by one or more chunks.
* The number of requests is equal to the sum of the numbers of chunks of each file.
*/
class InstallSnapshotRequests implements Iterable<InstallSnapshotRequestProto> {
private final RaftServer.Division server;
private final RaftPeerId followerId;
private final Function<FileInfo, Path> getRelativePath;
/** The snapshot to be sent. */
private final SnapshotInfo snapshot;
/** A fixed id for all the requests. */
private final String requestId;
/** Maximum chunk size. */
private final int snapshotChunkMaxSize;
/** The total size of snapshot files. */
private final long totalSize;
/** The total number of snapshot files. */
private final int numFiles;
InstallSnapshotRequests(RaftServer.Division server, RaftPeerId followerId,
String requestId, SnapshotInfo snapshot, int snapshotChunkMaxSize) {
this.server = server;
this.followerId = followerId;
this.requestId = requestId;
this.snapshot = snapshot;
this.snapshotChunkMaxSize = snapshotChunkMaxSize;
final List<FileInfo> files = snapshot.getFiles();
this.totalSize = files.stream().mapToLong(FileInfo::getFileSize).reduce(Long::sum).orElseThrow(
() -> new IllegalStateException("Failed to compute total size for snapshot " + snapshot));
this.numFiles = files.size();
final File snapshotDir = server.getStateMachine().getStateMachineStorage().getSnapshotDir();
final Function<Path, Path> relativize;
if (snapshotDir != null) {
final Path dir = snapshotDir.toPath();
// add STATE_MACHINE_DIR_NAME for compatibility.
relativize = p -> new File(RaftStorageDirectory.STATE_MACHINE_DIR_NAME, dir.relativize(p).toString()).toPath();
} else {
final Path dir = server.getRaftStorage().getStorageDir().getRoot().toPath();
relativize = dir::relativize;
}
this.getRelativePath = info -> Optional.of(info.getPath())
.filter(Path::isAbsolute)
.map(relativize)
.orElseGet(info::getPath);
}
@Override
public Iterator<InstallSnapshotRequestProto> iterator() {
return new Iter();
}
private class Iter implements Iterator<InstallSnapshotRequestProto> {
/** The index of the current request. */
private int requestIndex = 0;
/** The index of the current file. */
private int fileIndex = 0;
/** The current file. */
private FileChunkReader current;
@Override
public boolean hasNext() {
return fileIndex < numFiles;
}
@Override
public InstallSnapshotRequestProto next() {
if (!hasNext()) {
throw new NoSuchElementException("fileIndex = " + fileIndex + " >= numFiles = " + numFiles);
}
final FileInfo info = snapshot.getFiles().get(fileIndex);
try {
if (current == null) {
current = new FileChunkReader(info, getRelativePath.apply(info));
}
final FileChunkProto chunk = current.readFileChunk(snapshotChunkMaxSize);
if (chunk.getDone()) {
current.close();
current = null;
fileIndex++;
}
final boolean done = fileIndex == numFiles && chunk.getDone();
return newInstallSnapshotRequest(chunk, done);
} catch (IOException e) {
if (current != null) {
try {
current.close();
current = null;
} catch (IOException ignored) {
}
}
throw new IllegalStateException("Failed to iterate installSnapshot requests: " + this, e);
}
}
private InstallSnapshotRequestProto newInstallSnapshotRequest(FileChunkProto chunk, boolean done) {
synchronized (server) {
final SnapshotChunkProto.Builder b = LeaderProtoUtils.toSnapshotChunkProtoBuilder(
requestId, requestIndex++, snapshot.getTermIndex(), chunk, totalSize, done);
return LeaderProtoUtils.toInstallSnapshotRequestProto(server, followerId, b);
}
}
}
@Override
public String toString() {
return server.getId() + "->" + followerId + JavaUtils.getClassSimpleName(getClass())
+ ": requestId=" + requestId
+ ", snapshot=" + snapshot;
}
}