view mercurial-server/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/MercurialVcsSupport.java @ 335:092373ee11e5

Merge branch Eluru-6.5.x
author Dmitry Neverov <dmitry.neverov@jetbrains.com>
date Thu, 01 Dec 2011 14:25:26 +0300
parents 692d253c78cf 01648f900892
children b799355b4016
line wrap: on
line source
/*
 * Copyright 2000-2011 JetBrains s.r.o.
 *
 * 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 jetbrains.buildServer.buildTriggers.vcs.mercurial;

import jetbrains.buildServer.BuildAgent;
import jetbrains.buildServer.Used;
import jetbrains.buildServer.buildTriggers.vcs.AbstractVcsPropertiesProcessor;
import jetbrains.buildServer.buildTriggers.vcs.mercurial.command.*;
import jetbrains.buildServer.log.Loggers;
import jetbrains.buildServer.serverSide.*;
import jetbrains.buildServer.util.EventDispatcher;
import jetbrains.buildServer.util.FileUtil;
import jetbrains.buildServer.util.StringUtil;
import jetbrains.buildServer.util.filters.Filter;
import jetbrains.buildServer.util.filters.FilterUtil;
import jetbrains.buildServer.vcs.*;
import jetbrains.buildServer.vcs.impl.VcsRootImpl;
import jetbrains.buildServer.vcs.patches.PatchBuilder;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

/**
 * Mercurial VCS plugin for TeamCity works as follows:
 * <ul>
 * <li>clones repository to internal storage
 * <li>before any operation with working copy of repository pulls changes from the original repository
 * <li>executes corresponding hg command
 * </ul>
 *
 * <p>Working copy of repository is created in the $TEAMCITY_DATA_PATH/system/caches/hg_&lt;hash code> folder.
 * <p>Personal builds (remote runs) are not yet supported, they require corresponding functionality from the IDE.
 */
public class MercurialVcsSupport extends ServerVcsSupport implements LabelingSupport, VcsFileContentProvider, BranchSupport,
        CollectChangesBetweenRoots {
  private ConcurrentMap<String, Lock> myWorkDirLocks= new ConcurrentHashMap<String, Lock>();
  private VcsManager myVcsManager;
  private File myDefaultWorkFolderParent;
  private MirrorManager myMirrorManager;
  private final ServerPluginConfig myConfig;
  private final HgPathProvider myHgPathProvider;
  private final CommandFactory myCommandFactory;

  public MercurialVcsSupport(@NotNull final VcsManager vcsManager,
                             @NotNull final SBuildServer server,
                             @NotNull final EventDispatcher<BuildServerListener> dispatcher,
                             @NotNull final ServerPluginConfig config,
                             @NotNull final HgPathProvider hgPathProvider,
                             @NotNull final CommandFactory commandFactory) {
    myVcsManager = vcsManager;
    myConfig = config;
    myDefaultWorkFolderParent = myConfig.getCachesDir();
    myMirrorManager = new MirrorManager(myDefaultWorkFolderParent);
    myHgPathProvider = hgPathProvider;
    myCommandFactory = commandFactory;
    dispatcher.addListener(new BuildServerAdapter() {
      @Override
      public void cleanupFinished() {
        super.cleanupFinished();
        server.getExecutor().submit(new Runnable() {
          public void run() {
            removeOldWorkFolders();
          }
        });
      }

      @Override
      public void sourcesVersionReleased(@NotNull final BuildAgent agent) {
        super.sourcesVersionReleased(agent);
        server.getExecutor().submit(new Runnable() {
          public void run() {
            deleteWithLocking(myMirrorManager.getMirrors());
          }
        });
      }
    });
    logUsedHg();
  }

  private void logUsedHg() {
    String hgPath = myConfig.getHgPath();
    if (hgPath != null)
      Loggers.VCS.info("Use server-wide hg path " + hgPath + ", path in the VCS root settings will be ignored");
    else
      Loggers.VCS.info("Server-wide hg path is not set, will use path from the VCS root settings");
  }

  private void deleteWithLocking(Collection<File> filesForDelete) {
    for (File f : filesForDelete) {
      lockWorkDir(f);
      try {
        FileUtil.delete(f);
      } finally {
        unlockWorkDir(f);
      }
    }
  }

  private List<VcsChange> toVcsChanges(final List<ModifiedFile> modifiedFiles, String prevVer, String curVer, CheckoutRules rules) {
    List<VcsChange> files = new ArrayList<VcsChange>();
    for (ModifiedFile mf: modifiedFiles) {
      final String path = rules.map(mf.getPath());
      if (shouldInclude(path))
        files.add(toVcsChange(mf, prevVer, curVer, path));
    }
    return files;
  }

  private boolean shouldInclude(String path) {
    return path != null;
  }

  private VcsChange toVcsChange(ModifiedFile mf, String prevVer, String curVer, String mappedPath) {
    String normalizedPath = PathUtil.normalizeSeparator(mf.getPath());
    VcsChangeInfo.Type changeType = getChangeType(mf.getStatus());
    if (changeType == null) {
      Loggers.VCS.warn("Unable to convert status: " + mf.getStatus() + " to VCS change type");
      changeType = VcsChangeInfo.Type.NOT_CHANGED;
    }
    return new VcsChange(changeType, mf.getStatus().getName(), normalizedPath, mappedPath, prevVer, curVer);
  }

  private VcsChangeInfo.Type getChangeType(final ModifiedFile.Status status) {
    switch (status) {
      case ADDED:return VcsChangeInfo.Type.ADDED;
      case MODIFIED:return VcsChangeInfo.Type.CHANGED;
      case REMOVED:return VcsChangeInfo.Type.REMOVED;
    }
    return null;
  }

  @NotNull
  public byte[] getContent(@NotNull final VcsModification vcsModification,
                           @NotNull final VcsChangeInfo change,
                           @NotNull final VcsChangeInfo.ContentType contentType,
                           @NotNull final VcsRoot vcsRoot) throws VcsException {
    String version = contentType == VcsChangeInfo.ContentType.AFTER_CHANGE ? change.getAfterChangeRevisionNumber() : change.getBeforeChangeRevisionNumber();
    return getContent(change.getRelativeFileName(), vcsRoot, version);
  }

  @NotNull
  public byte[] getContent(@NotNull final String filePath, @NotNull final VcsRoot vcsRoot, @NotNull final String version) throws VcsException {
    ChangeSet cset = new ChangeSet(version);
    Settings settings = createSettings(vcsRoot);
    syncRepository(settings, cset);
    File workingDir = getWorkingDir(settings);
    CatCommand cc = new CatCommand(settings, workingDir);
    cc.setRevId(cset.getId());
    File parentDir = cc.execute(Collections.singletonList(filePath));
    try {
      File file = new File(parentDir, filePath);
      if (file.isFile()) {
        try {
          return FileUtil.loadFileBytes(file);
        } catch (IOException e) {
          throw new VcsException("Failed to load content of file: " + file.getAbsolutePath(), e);
        }
      } else {
        Loggers.VCS.warn("Unable to obtain content of the file: " + filePath);
      }
    } finally {
      deleteTmpDir(parentDir);
    }
    return new byte[0];
  }

  @NotNull
  public String getName() {
    return Constants.VCS_NAME;
  }

  @NotNull
  @Used("jsp")
  public String getDisplayName() {
    return "Mercurial";
  }

  @Nullable
  public PropertiesProcessor getVcsPropertiesProcessor() {
    return new AbstractVcsPropertiesProcessor() {
      public Collection<InvalidProperty> process(final Map<String, String> properties) {
        List<InvalidProperty> result = new ArrayList<InvalidProperty>();
        if (isEmpty(properties.get(Constants.HG_COMMAND_PATH_PROP))) {
          result.add(new InvalidProperty(Constants.HG_COMMAND_PATH_PROP, "Path to 'hg' command must be specified"));
        }
        if (isEmpty(properties.get(Constants.REPOSITORY_PROP))) {
          result.add(new InvalidProperty(Constants.REPOSITORY_PROP, "Repository must be specified"));
        }
        return result;
      }
    };
  }

  @NotNull
  public String getVcsSettingsJspFilePath() {
    return "mercurialSettings.jsp";
  }

  @NotNull
  public String getCurrentVersion(@NotNull final VcsRoot root) throws VcsException {
    Settings settings = createSettings(root);
    syncRepository(settings);
    File workingDir = getWorkingDir(settings);
    BranchesCommand branches = new BranchesCommand(settings, workingDir);
    Map<String, ChangeSet> result = branches.execute();
    if (!result.containsKey(settings.getBranchName())) {
      throw new VcsException("Unable to find current version for the branch: " + settings.getBranchName());
    }

    return result.get(settings.getBranchName()).getFullVersion();
  }

  public boolean sourcesUpdatePossibleIfChangesNotFound(@NotNull final VcsRoot root) {
    return false;
  }

  @NotNull
  public String describeVcsRoot(final VcsRoot vcsRoot) {
    return "mercurial: " + vcsRoot.getProperty(Constants.REPOSITORY_PROP);
  }

  @Override
  public TestConnectionSupport getTestConnectionSupport() {
    return new TestConnectionSupport() {
      public String testConnection(@NotNull final VcsRoot vcsRoot) throws VcsException {
        Settings settings = createSettings(vcsRoot);
        File workingDir = getWorkingDir(settings);
        IdentifyCommand id = new IdentifyCommand(settings, workingDir);
        StringBuilder res = new StringBuilder();
        res.append(quoteIfNeeded(settings.getHgCommandPath()));
        res.append(" identify ");
        final String obfuscatedUrl = CommandUtil.removePrivateData(settings.getRepositoryUrl(), Collections.singleton(settings.getPassword()));
        res.append(quoteIfNeeded(obfuscatedUrl));
        res.append('\n').append(id.execute());
        return res.toString();
      }
    };
  }

  private String quoteIfNeeded(@NotNull String str) {
    if (str.indexOf(' ') != -1) {
      return "\"" + str + "\"";
    }

    return str;
  }

  @Nullable
  public Map<String, String> getDefaultVcsProperties() {
    Map<String, String> defaults = new HashMap<String, String>();
    defaults.put(Constants.HG_COMMAND_PATH_PROP, "hg");
    defaults.put(Constants.UNCOMPRESSED_TRANSFER, "false");
    return defaults;
  }

  public String getVersionDisplayName(@NotNull final String version, @NotNull final VcsRoot root) throws VcsException {
    return new ChangeSet(version).getId();
  }

  @NotNull
  public Comparator<String> getVersionComparator() {
    // comparator is called when TeamCity needs to sort modifications in the order of their appearance,
    // currently we sort changes by revision number, not sure however that this is a good idea,
    // probably it would be better to sort them by timestamp (and to add timestamp into the version).
    return new Comparator<String>() {
      public int compare(final String o1, final String o2) {
        try {
          return new ChangeSet(o1).getRevNumber() - new ChangeSet(o2).getRevNumber();
        } catch (Exception e) {
          return 1;
        }
      }
    };
  }

  // builds patch from version to version
  private void buildIncrementalPatch(final Settings settings, @NotNull final ChangeSet fromVer, @NotNull final ChangeSet toVer, final PatchBuilder builder, final CheckoutRules checkoutRules)
    throws VcsException, IOException {
    File workingDir = getWorkingDir(settings);
    StatusCommand st = new StatusCommand(settings, workingDir);
    st.setFromRevId(fromVer.getId());
    st.setToRevId(toVer.getId());
    List<ModifiedFile> modifiedFiles = st.execute();
    List<String> notDeletedFiles = new ArrayList<String>();
    for (ModifiedFile f: modifiedFiles) {
      if (f.getStatus() != ModifiedFile.Status.REMOVED) {
        notDeletedFiles.add(f.getPath());
      }
    }

    if (notDeletedFiles.isEmpty()) return;

    CatCommand cc = new CatCommand(settings, workingDir);
    cc.setRevId(toVer.getId());
    File parentDir = cc.execute(notDeletedFiles);

    try {
      for (ModifiedFile f: modifiedFiles) {
        String mappedPath = checkoutRules.map(f.getPath());
        if (mappedPath == null) continue; // skip
        final File virtualFile = new File(mappedPath);
        if (f.getStatus() == ModifiedFile.Status.REMOVED) {
          builder.deleteFile(virtualFile, true);
        } else {
          File realFile = new File(parentDir, f.getPath());
          FileInputStream is = new FileInputStream(realFile);
          try {
            builder.changeOrCreateBinaryFile(virtualFile, null, is, realFile.length());
          } finally {
            is.close();
          }
        }
      }
    } finally {
      deleteTmpDir(parentDir);
    }
  }

  private void deleteTmpDir(File parentDir) {
    boolean dirDeleted = FileUtil.delete(parentDir);
    if (!dirDeleted) {
      Loggers.VCS.warn("Can not delete directory \"" + parentDir.getAbsolutePath() + "\"");
    }
  }

  // builds patch by exporting files using specified version
  private void buildFullPatch(final Settings settings, @NotNull final ChangeSet toVer, final PatchBuilder builder, final CheckoutRules checkoutRules)
    throws IOException, VcsException {
    File tempDir = FileUtil.createTempDirectory("mercurial", toVer.getId());
    try {
      File mirrorDir = getWorkingDir(settings);
      ArchiveCommand archive = new ArchiveCommand(settings, mirrorDir);
      archive.setDestDir(tempDir);
      archive.setToId(toVer.getId());
      archive.execute();
      buildPatchFromDirectory(builder, tempDir, checkoutRules);
    } finally {
      FileUtil.delete(tempDir);
    }
  }

  private void buildPatchFromDirectory(final PatchBuilder builder, final File repRoot, final CheckoutRules checkoutRules) throws IOException {
    buildPatchFromDirectory(repRoot, builder, repRoot, checkoutRules);
  }

  private void buildPatchFromDirectory(File curDir, final PatchBuilder builder, final File repRoot, final CheckoutRules checkoutRules) throws IOException {
    File[] files = curDir.listFiles();
    if (files != null) {
      for (File realFile: files) {
        String relPath = realFile.getAbsolutePath().substring(repRoot.getAbsolutePath().length());
        String mappedPath = checkoutRules.map(relPath);
        if (mappedPath != null && mappedPath.length() > 0) {
          final File virtualFile = new File(mappedPath);
          if (realFile.isDirectory()) {
            builder.createDirectory(virtualFile);
            buildPatchFromDirectory(realFile, builder, repRoot, checkoutRules);
          } else {
            final FileInputStream is = new FileInputStream(realFile);
            try {
              builder.createBinaryFile(virtualFile, null, is, realFile.length());
            } finally {
              is.close();
            }
          }
        } else {
          if (realFile.isDirectory()) {
            buildPatchFromDirectory(realFile, builder, repRoot, checkoutRules);
          }
        }
      }
    }
  }

  /**
   * clone the repo if it doesn't exist, pull the repo if it doesn't contain specified changeSet
   */
  private void syncRepository(final Settings settings, final ChangeSet cset) throws VcsException {
    File workingDir = getWorkingDir(settings);
    lockWorkDir(workingDir);
    try {
      if (Settings.isValidRepository(workingDir)) {
        if (!isChangeSetExist(settings, workingDir, cset)) {
          PullCommand pull = new PullCommand(settings, workingDir);
          pull.execute(myConfig.getPullTimeout());
        }
      } else {
        CloneCommand cl = new CloneCommand(settings, workingDir);
        cl.setUpdateWorkingDir(false);
        cl.execute();
      }
    } finally {
      unlockWorkDir(workingDir);
    }
  }

  private void syncRepository(final Settings settings) throws VcsException {
    File workingDir = getWorkingDir(settings);
    lockWorkDir(workingDir);
    try {
      if (Settings.isValidRepository(workingDir)) {
        PullCommand pull = new PullCommand(settings, workingDir);
        pull.execute(myConfig.getPullTimeout());
      } else {
        CloneCommand cl = new CloneCommand(settings, workingDir);
        cl.setUpdateWorkingDir(false);
        cl.execute();
      }
    } finally {
      unlockWorkDir(workingDir);
    }
  }

  /**
   * Check if changeSet is present in local repository.
   * @param settings root settings
   * @param workDir where to run a command
   * @param cset change set of interest
   * @return true if changeSet is present in local repository
   */
  private boolean isChangeSetExist(Settings settings, File workDir, ChangeSet cset) {
    try {
      IdentifyCommand identify = new IdentifyCommand(settings, workDir);
      identify.setInLocalRepository(true);
      identify.setChangeSet(cset);
      identify.execute();
      return true;
    } catch (VcsException e) {
      return false;
    }
  }

  @Override
  public LabelingSupport getLabelingSupport() {
    return this;
  }

  @NotNull
  public VcsFileContentProvider getContentProvider() {
    return this;
  }

  @NotNull
  public String getRemoteRunOnBranchPattern() {
    return "remote-run/*";
  }

  @NotNull
  public RepositoryState getCurrentState(@NotNull VcsRoot root) throws VcsException {
    RepositoryState state = new RepositoryStateImpl();
    for (Map.Entry<String, String> entry : getBranchesRevisions(root).entrySet()) {
      state.setBranchRevision(entry.getKey(), entry.getValue());
    }
    return state;
  }

  @NotNull
  private Map<String, String> getBranchesRevisions(@NotNull VcsRoot root) throws VcsException {
    Settings settings = createSettings(root);
    syncRepository(settings);
    File workingDir = getWorkingDir(settings);
    BranchesCommand branches = new BranchesCommand(settings, workingDir);
    Map<String, String> result = new HashMap<String, String>();
    for (Map.Entry<String, ChangeSet> entry : branches.execute().entrySet()) {
      result.put(entry.getKey(), entry.getValue().getId());
    }
    return result;
  }

  @NotNull
  public Map<String, String> getBranchRootOptions(@NotNull VcsRoot root, @NotNull String branchName) {
    final Map<String, String> options = new HashMap<String, String>(root.getProperties());
    options.put(Constants.BRANCH_NAME_PROP, branchName);
    return options;
  }


  @Nullable
  public PersonalBranchDescription getPersonalBranchDescription(@NotNull VcsRoot root, @NotNull String branchName) throws VcsException {
    Settings settings = createSettings(root);
    VcsRoot branchRoot = createBranchRoot(root, branchName);
    String baseVersion = getCurrentVersion(root);
    String branchVersion = getCurrentVersion(branchRoot);
    String mergeBase = getMergeBase(settings, baseVersion, branchVersion);

    if (mergeBase == null)
      return null;

    LogCommand lc = myCommandFactory.createLog(settings, getWorkingDir(settings));
    lc.setFromRevId(new ChangeSetRevision(mergeBase).getId());
    lc.setToRevId(new ChangeSetRevision(branchVersion).getId());
    lc.showCommitsFromAllBranches();
    List<ChangeSet> changeSets = lc.execute();
    if (changeSets.size() > 1) {//when branch points to the commit in original branch we get 1 cset
      String branchId = changeSets.get(1).getId();
      String username = changeSets.get(changeSets.size() - 1).getUser();
      return new PersonalBranchDescription(branchId, username);
    } else {
      return null;
    }
  }


  private VcsRoot createBranchRoot(VcsRoot original, String branchName) {
    VcsRootImpl result = new VcsRootImpl(original.getId(), original.getProperties());
    result.addProperty(Constants.BRANCH_NAME_PROP, branchName);
    return result;
  }

  @NotNull
  public List<ModificationData> collectChanges(@NotNull VcsRoot fromRoot, @NotNull String fromRootRevision,
                                               @NotNull VcsRoot toRoot, @Nullable String toRootRevision,
                                               @NotNull CheckoutRules checkoutRules) throws VcsException {
    Settings settings = createSettings(toRoot);
    syncRepository(settings);
    String toRevision = toRootRevision != null ? toRootRevision : getCurrentVersion(toRoot);
    String mergeBase = getMergeBase(settings, fromRootRevision, toRevision);
    if (mergeBase == null)
      return Collections.emptyList();
    return collectChanges(toRoot, mergeBase, toRootRevision, checkoutRules);
  }


  @Nullable
  private String getMergeBase(@NotNull Settings settings, @NotNull String revision1, @NotNull String revision2) throws VcsException {
    String result = myCommandFactory.createMergeBase(settings, getWorkingDir(settings)).execute(revision1, revision2);
    if (result == null)
      result = getMinusNthCommit(settings, 10);
    return result;
  }


  @Nullable
  private String getMinusNthCommit(@NotNull Settings settings, int n) throws VcsException {
    LogCommand log = myCommandFactory.createLog(settings, getWorkingDir(settings));
    log.setToRevId(settings.getBranchName());
    if (n > 0)
      log.setLimit(n);
    List<ChangeSet> changeSets = log.execute();
    if (changeSets.isEmpty())
      return null;
    return changeSets.get(0).getId();
  }


  @NotNull
  public CollectChangesPolicy getCollectChangesPolicy() {
    return this;
  }

  public List<ModificationData> collectChanges(@NotNull VcsRoot root, @NotNull String fromVersion, @Nullable String currentVersion, @NotNull CheckoutRules checkoutRules) throws VcsException {
    Settings settings = createSettings(root);
    syncRepository(settings);
    List<ModificationData> result = new ArrayList<ModificationData>();
    for (ChangeSet cset : getChangesets(settings, fromVersion, currentVersion)) {
      result.add(createModificationData(cset, root, checkoutRules));
    }
    return result;
  }


  private ModificationData createModificationData(@NotNull final ChangeSet cset, @NotNull final VcsRoot root, @NotNull final CheckoutRules checkoutRules) {
    List<ChangeSetRevision> parents = cset.getParents();
    if (parents.isEmpty())
      throw new IllegalStateException("Commit " + cset.getId() + " has no parents");
    List<VcsChange> files = toVcsChanges(cset.getModifiedFiles(), parents.get(0).getFullVersion(), cset.getFullVersion(), checkoutRules);
    final ModificationData result = new ModificationData(cset.getTimestamp(), files, cset.getDescription(), cset.getUser(), root, cset.getFullVersion(), cset.getId());
    for (ChangeSetRevision parent : parents) {
      result.addParentRevision(parent.getFullVersion());
    }
    if (result.getParentRevisions().size() > 1)
      result.setCanBeIgnored(false);
    return result;
  }


  @NotNull
  private List<ChangeSet> getChangesets(@NotNull final Settings settings, @NotNull final String fromVersion, @Nullable final String toVersion) throws VcsException {
    if (toVersion == null)
      return Collections.emptyList();
    String fromCommit = new ChangeSetRevision(fromVersion).getId();
    String toCommit = new ChangeSetRevision(toVersion).getId();
    File workingDir = getWorkingDir(settings);
    CollectChangesCommand log = myCommandFactory.getCollectChangesCommand(settings, workingDir);
    List<ChangeSet> changesets = log.execute(fromCommit, toCommit);
    Iterator<ChangeSet> iter = changesets.iterator();
    while (iter.hasNext()) {
      ChangeSet cset = iter.next();
      if (cset.getId().equals(fromCommit))
        iter.remove();//skip already reported changes
    }
    return changesets;
  }



  @NotNull
  public BuildPatchPolicy getBuildPatchPolicy() {
    return new BuildPatchByCheckoutRules() {
      public void buildPatch(@NotNull final VcsRoot root,
                             @Nullable final String fromVersion,
                             @NotNull final String toVersion,
                             @NotNull final PatchBuilder builder,
                             @NotNull final CheckoutRules checkoutRules) throws IOException, VcsException {
        Settings settings = createSettings(root);
        syncRepository(settings);
        if (fromVersion == null) {
          buildFullPatch(settings, new ChangeSet(toVersion), builder, checkoutRules);
        } else {
          buildIncrementalPatch(settings, new ChangeSet(fromVersion), new ChangeSet(toVersion), builder, checkoutRules);
        }
      }
    };
  }

  private void lockWorkDir(@NotNull File workDir) {
    getWorkDirLock(workDir).lock();
  }

  private void unlockWorkDir(@NotNull File workDir) {
    getWorkDirLock(workDir).unlock();
  }

  @Override
  public boolean allowSourceCaching() {
    // since a copy of repository for each VCS root is already stored on disk
    // we do not need separate cache for our patches
    return false;
  }

  private Lock getWorkDirLock(final File workDir) {
    String path = workDir.getAbsolutePath();
    Lock lock = myWorkDirLocks.get(path);
    if (lock == null) {
      lock = new ReentrantLock();
      Lock curLock = myWorkDirLocks.putIfAbsent(path, lock);
      if (curLock != null) {
        lock = curLock;
      }
    }
    return lock;
  }

  private void removeOldWorkFolders() {
    Set<File> workDirs = new HashSet<File>(myMirrorManager.getMirrors());

    for (VcsRoot vcsRoot: getMercurialVcsRoots()) {
      try {
        Settings s = createSettings(vcsRoot);
        File workingDir = getWorkingDir(s);
        workDirs.remove(PathUtil.getCanonicalFile(workingDir));
      } catch (VcsException e) {
        Loggers.VCS.error(e);
      }
    }

    deleteWithLocking(workDirs);
  }

  private Collection<VcsRoot> getMercurialVcsRoots() {
    List<VcsRoot> res = new ArrayList<VcsRoot>(myVcsManager.getAllRegisteredVcsRoots());
    FilterUtil.filterCollection(res, new Filter<VcsRoot>() {
      public boolean accept(@NotNull final VcsRoot data) {
        return getName().equals(data.getVcsName());
      }
    });
    return res;
  }

  public String label(@NotNull String label, @NotNull String version, @NotNull VcsRoot root, @NotNull CheckoutRules checkoutRules) throws VcsException {
    File tmpDir = null;
    try {
      tmpDir = createLabelingTmpDir();
      Settings settings = createSettings(root, tmpDir);
      syncRepository(settings);
      File workingDir = getWorkingDir(settings);
      new UpdateCommand(settings, workingDir).execute();

      String fixedTagname = fixTagName(label);
      TagCommand tc = new TagCommand(settings, workingDir);
      tc.setRevId(new ChangeSet(version).getId());
      tc.setTag(fixedTagname);
      tc.execute();

      PushCommand pc = new PushCommand(settings, workingDir);
      pc.execute();
      return fixedTagname;
    } finally {
      if (tmpDir != null)
        FileUtil.delete(tmpDir);
    }
  }

  private String fixTagName(final String label) {
    // according to Mercurial documentation http://hgbook.red-bean.com/hgbookch8.html#x12-1570008
    // tag name must not contain:
    // Colon (ASCII 58, ':')
    // Carriage return (ASCII 13, '\r')
    // Newline (ASCII 10, '\n')
    // all these characters will be replaced with _ (underscore)
    return label.replace(':', '_').replace('\r', '_').replace('\n', '_');
  }

  private File getWorkingDir(Settings s) {
    File customDir = s.getCustomWorkingDir();
    return customDir != null ? customDir : myMirrorManager.getMirrorDir(s.getRepositoryUrl());
  }

  private Settings createSettings(final VcsRoot root) throws VcsException {
    Settings settings = new Settings(myHgPathProvider, root);
    String customClonePath = settings.getCustomClonePath();
    if (!StringUtil.isEmptyOrSpaces(customClonePath) && !myDefaultWorkFolderParent.equals(new File(customClonePath).getAbsoluteFile())) {
      File parentDir = new File(customClonePath);
      createClonedRepositoryParentDir(parentDir);

      // take last part of repository path
      String repPath = settings.getRepositoryUrl();
      String[] splitted = repPath.split("[/\\\\]");
      if (splitted.length > 0) {
        repPath = splitted[splitted.length-1];
      }

      File customWorkingDir = new File(parentDir, repPath);
      settings.setCustomWorkingDir(customWorkingDir);
    }
    return settings;
  }

  /* Creates settings for root and use specified customDir as clone path */
  private Settings createSettings(final VcsRoot root, final File customDir) throws VcsException {
    ((VcsRootImpl) root).addProperty(Constants.SERVER_CLONE_PATH_PROP, customDir.getAbsolutePath());
    return createSettings(root);
  }

  private void createClonedRepositoryParentDir(final File parentDir) throws VcsException {
    if (!parentDir.exists() && !parentDir.mkdirs()) {
      throw new VcsException("Failed to create parent directory for cloned repository: " + parentDir.getAbsolutePath());
    }
  }

  public boolean isAgentSideCheckoutAvailable() {
    return true;
  }


  private File createLabelingTmpDir() throws VcsException {
    try {
      return FileUtil.createTempDirectory("mercurial", "label");
    } catch (IOException e) {
      throw new VcsException("Unable to create temporary directory");
    }
  }


  /* for tests only */
  public MirrorManager getMirrorManager() {
    return myMirrorManager;
  }


  @Override
  public boolean isDAGBasedVcs() {
    return true;
  }
}