/* * Copyright 2000-2009 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.clearcase.versionTree; import com.intellij.openapi.util.Pair; import com.intellij.util.PatternUtil; import java.io.File; import java.util.*; import java.util.concurrent.LinkedBlockingQueue; import jetbrains.buildServer.vcs.VcsException; import org.jetbrains.annotations.Nullable; public class VersionTree { private final List myTopBranches = new ArrayList(); //private final List myLeaves = new ArrayList(); public List getTopBranches() { return myTopBranches; } public void addVersion(String version) throws VcsException { if (version.contains("CHECKEDOUT view ")) return; List branches = new ArrayList(); int intVersion = -1; final String[] versions = version.split(PatternUtil.convertToRegex(File.separator)); if (versions.length == 0) return; String lastVers = versions[versions.length - 1]; if (lastVers.startsWith("CHECKEDOUT view ")) { return; } for (int i = 0; i < versions.length - 1; i++) { String s = versions[i]; branches.add(s); } final List comments = new ArrayList(); if (lastVers.contains("(")) { final int commentBegin = lastVers.indexOf('('); final int commentEnd = lastVers.indexOf(')'); if (commentEnd >= 0) { String[] strings = lastVers.substring(commentBegin + 1, commentEnd).split(","); for (String comment : strings) { if (comment.length() > 0) { comments.add(comment.trim()); } } } lastVers = lastVers.substring(0, commentBegin).trim(); } try { intVersion = Integer.parseInt(lastVers); } catch (NumberFormatException e) { branches.add(lastVers); } Branch currentBranch = null; for (String branch : branches) { currentBranch = addBranchToLevel(currentBranch, branch); } if (currentBranch != null && intVersion != -1) { currentBranch.addVersion(intVersion, comments); } } private Branch addBranchToLevel(final Branch currentBranch, final String branchName) throws VcsException { if (currentBranch == null) { for (Branch branch : myTopBranches) { if (branch.getName().equals(branchName)) { return branch; } } final Branch result = new Branch(null, branchName); myTopBranches.add(result); return result; } else { Version version = currentBranch.getFirstVersion(); Version last = null; while (version != null) { last = version; final List inhBranches = version.getInheritedBranches(); for (Branch branch : inhBranches) { if (branch.getName().equals(branchName)) { return branch; } } version = version.getNextVersion(); } if (last != null) { final Branch result = new Branch(last, branchName); last.addInheritedBranch(result); return result; } else { throw new VcsException("Cannot add branch " + branchName + " to level " + currentBranch); } } } public void pruneBranch(final String objectVersion) { Version versionToPruneFrom = findVersionByPath(objectVersion); if (versionToPruneFrom != null) { if (versionToPruneFrom.getVersion() == 0) { final Branch parentBranch = versionToPruneFrom.getParentBranch(); parentBranch.getParentVersion().pruneInheritedBranch(parentBranch); } else { versionToPruneFrom.getPrevVersion().setNextVersion(null); } } } public void pruneBranchAfter(final String objectVersion) { Version versionToPruneFrom = findVersionByPath(objectVersion); if (versionToPruneFrom != null) { pruneBranchAfter(versionToPruneFrom, true); } } public void pruneBranchAfter(final Version version, boolean includeSubBranches) { version.setNextVersion(null); if (includeSubBranches) { version.removeAllInheritedBranches(); } } public Version findVersionByPath(final String version) { List branches = new ArrayList(); int intVersion; final String[] versions = version.split(PatternUtil.convertToRegex(File.separator)); for (int i = 0; i < versions.length - 1; i++) { String s = versions[i]; if (s.length() > 0) { branches.add(s); } } String lastVers = versions[versions.length - 1]; if (lastVers.contains("(")) { lastVers = lastVers.substring(0, lastVers.indexOf('(')).trim(); } try { intVersion = Integer.parseInt(lastVers); } catch (NumberFormatException e) { return null; } Branch currentBranch = null; for (String branch : branches) { if (currentBranch == null) { currentBranch = findRootByName(branch); } else { currentBranch = currentBranch.findSubBranchByName(branch); } if (currentBranch == null) return null; } return currentBranch.findVersionByNum(intVersion); } @Nullable private Branch findRootByName(final String branch) { for (Branch topBranch : myTopBranches) { if (branch.equals(topBranch.getName())) return topBranch; } return null; } @Nullable public Version findVersionWithComment(final String comment) { for (Branch branch : myTopBranches) { Version found = branch.findVersionWithComment(comment); if (found != null) return found; } return null; } public List getAllLastVersions() { final ArrayList result = new ArrayList(); for (Branch topBranch : myTopBranches) { topBranch.addAllLastVersions(result); } return result; } public Map getAllBranchesWithFullNames() { Map branches = new HashMap(); Queue> queue = new LinkedBlockingQueue>(); for (Branch topBranch : myTopBranches) { queue.add(Pair.create("", topBranch)); } while (!queue.isEmpty()) { final Pair pair = queue.poll(); final Branch branch = pair.getSecond(); final String branchFullName = pair.getFirst() + File.separatorChar + branch.getName(); branches.put(branchFullName, branch); Collection inheritedBranches = collectInheritedBranches(branch); for (Branch inheritedBranch : inheritedBranches) { queue.add(Pair.create(branchFullName, inheritedBranch)); } } return branches; } private Collection collectInheritedBranches(final Branch branch) { Collection inheritedBranches = new ArrayList(); Version version = branch.getFirstVersion(); while (version != null) { inheritedBranches.addAll(version.getInheritedBranches()); version = version.getNextVersion(); } return inheritedBranches; } }