/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the "Elastic License
 * 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
 * Public License v 1"; you may not use this file except in compliance with, at
 * your election, the "Elastic License 2.0", the "GNU Affero General Public
 * License v3.0 only", or the "Server Side Public License, v 1".
 */

package org.elasticsearch.indices.recovery;

import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.index.shard.ShardId;
import org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot;
import org.elasticsearch.repositories.IndexId;

import java.io.IOException;

public class RecoverySnapshotFileRequest extends RecoveryTransportRequest {
    private final String repository;
    private final IndexId indexId;
    private final BlobStoreIndexShardSnapshot.FileInfo fileInfo;

    public RecoverySnapshotFileRequest(
        long recoveryId,
        long requestSeqNo,
        ShardId shardId,
        String repository,
        IndexId indexId,
        BlobStoreIndexShardSnapshot.FileInfo fileInfo
    ) {
        super(requestSeqNo, recoveryId, shardId);
        this.repository = repository;
        this.indexId = indexId;
        this.fileInfo = fileInfo;
    }

    public RecoverySnapshotFileRequest(StreamInput in) throws IOException {
        super(in);
        this.repository = in.readString();
        this.indexId = new IndexId(in);
        this.fileInfo = new BlobStoreIndexShardSnapshot.FileInfo(in);
    }

    @Override
    public void writeTo(StreamOutput out) throws IOException {
        super.writeTo(out);
        out.writeString(repository);
        indexId.writeTo(out);
        fileInfo.writeTo(out);
    }

    public String getRepository() {
        return repository;
    }

    public IndexId getIndexId() {
        return indexId;
    }

    public BlobStoreIndexShardSnapshot.FileInfo getFileInfo() {
        return fileInfo;
    }
}
