view mercurial-common/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/MirrorManager.java @ 587:e77ef6cd4ddb

Incremental patch for VCS root with subrepos
author Dmitry Neverov <dmitry.neverov@jetbrains.com>
date Tue, 16 Apr 2013 16:20:30 +0400
parents 3239780e4e8f
children 31a1aca3305c
line wrap: on
line source
package jetbrains.buildServer.buildTriggers.vcs.mercurial;

import org.jetbrains.annotations.NotNull;

import java.io.File;
import java.util.List;
import java.util.Map;

/**
 * @author dmitry.neverov
 */
public interface MirrorManager {

  /**
   * Get directory of local mirror repository for specified url, if directory is not exists it is created
   * @param url url of interest
   * @return see above
   */
  @NotNull
  public File getMirrorDir(@NotNull final String url);

  /**
   * Get all local mirror repository dirs
   * @return see above
   */
  @NotNull
  public List<File> getMirrors();

  public long getLastUsedTime(@NotNull final File mirrorDir);

  /**
   * Forget specified dir. After call to this method with non-empty dir,
   * all urls which were mapped to this dir will be mapped to another.
   * If dir is empty, subsequent call getMirrorDir(dir) will return the
   * same dir.
   *
   * @param dir dir of interest
   */
  public void forgetDir(@NotNull final File dir);

  @NotNull
  public Map<String, File> getMappings();

  public void lockDir(@NotNull File dir);

  public void unlockDir(@NotNull File dir);
}