/* Copyright (c) 2013 Boundless and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Distribution License v1.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/org/documents/edl-v10.html * * Contributors: * Johnathan Garrett (LMN Solutions) - initial implementation */ package org.locationtech.geogig.remote; import org.locationtech.geogig.api.ObjectId; import com.google.common.base.Optional; import com.google.common.collect.ImmutableList; /** * Provides an interface to make basic queries to a repository. */ interface RepositoryWrapper { /** * Determines if the provided object exists in the repository. * * @param objectId the object to look for * @return true if the object existed, false otherwise */ public boolean objectExists(ObjectId objectId); /** * Gets the parents of the specified commit from the repository. * * @param commit the id of the commit whose parents to retrieve * @return a list of parent ids for the commit */ public ImmutableList<ObjectId> getParents(ObjectId commitId); /** * Gets the depth of the given commit. * * @param commitId the commit id * @return the depth, or 0 if the commit was not found */ public int getDepth(ObjectId commitId); /** * Gets the depth of the repository. * * @return the depth of the repository, or {@link Optional#absent()} if the repository is not * shallow */ public Optional<Integer> getRepoDepth(); }