blob: a9bcf0396ab790b05cc5b74cf0a192d6112ef30b [file] [log] [blame]
// Copyright (C) 2020 The Android Open Source Project
//
// Licensed 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 com.google.gerrit.server.patch.filediff;
import com.google.common.collect.ImmutableMap;
import com.google.gerrit.server.patch.DiffNotAvailableException;
/**
* This cache computes the git diff for a single file path and adds some extra logic, e.g. for
* identifying edits that are due to rebase.
*/
public interface FileDiffCache {
/**
* Returns the file diff for a single file path identified by its key.
*
* @param key identifies two git commits, a specific file path and other diff parameters.
* @return the file diff for a single file path identified by its key.
* @throws DiffNotAvailableException if the commit IDs of the key are invalid for this project or
* if file contents could not be read.
*/
FileDiffOutput get(FileDiffCacheKey key) throws DiffNotAvailableException;
/**
* Returns the file diff for a collection of file paths identified by their keys.
*
* @param keys identifying different file paths of different projects.
* @return a map of the input keys to their corresponding git file diffs.
* @throws DiffNotAvailableException if the diff failed to be evaluated for one or more of the
* input keys due to invalid commit IDs or if file contents could not be read.
*/
ImmutableMap<FileDiffCacheKey, FileDiffOutput> getAll(Iterable<FileDiffCacheKey> keys)
throws DiffNotAvailableException;
}