package com.perforce.common.process; import java.util.HashMap; import java.util.List; import java.util.Map; import com.perforce.common.depot.DepotInterface; import com.perforce.common.label.LabelInterface; import com.perforce.common.label.TagConvert; import com.perforce.cvs.RevisionEntry; import com.perforce.svn.history.ChangeAction; import com.perforce.svn.query.QueryInterface; import com.perforce.svn.tag.TagEntry; import com.perforce.svn.tag.TagType; public class ProcessLabel { private QueryInterface query; private DepotInterface depot; private HashMap<String, LabelInterface> labelMap = new HashMap<String, LabelInterface>(); public ProcessLabel(DepotInterface depot) throws Exception { this.depot = depot; this.query = ProcessFactory.getQuery(depot); } protected QueryInterface getQuery() { return query; } public DepotInterface getDepot() { return depot; } /** * Add SVN directory to an AUTOMATIC label or each file revision to a STATIC * label. * * @param tag * @param changeInfo * @throws Exception */ public void labelChange(TagEntry tagEntry, ChangeInfo changeInfo) throws Exception { LabelInterface label; String id = tagEntry.getId(); if (labelMap.containsKey(id)) { label = labelMap.get(id); } else { label = ProcessFactory.getLabel(id, changeInfo, depot); } String fromPath = tagEntry.getFromPath(); long fromRev = tagEntry.getFromChange(); label.setFrom(fromPath, fromRev); if (tagEntry.getType() == TagType.AUTOMATIC) { label.setAutomatic(true); // Add branch source to Label view StringBuffer sb = new StringBuffer(); sb.append("//"); sb.append(depot.getName()); sb.append("/"); sb.append(tagEntry.getFromPath()); sb.append("/..."); label.addView(sb.toString()); } else { List<ChangeAction> list = query.listLastActions(fromPath, fromRev); for (ChangeAction a : list) { TagConvert tag = new TagConvert(a.getPath(), a.getEndRev()); label.add(tag); } } labelMap.put(id, label); } /** * Add SVN file revisions to a STATIC label * * @param tagEntry * @param change * @throws Exception */ public void labelRev(TagEntry tagEntry, ChangeInfo change) throws Exception { LabelInterface label; String id = tagEntry.getId(); if (labelMap.containsKey(id)) { label = labelMap.get(id); } else { label = ProcessFactory.getLabel(id, change, depot); } String fromPath = tagEntry.getFromPath(); long fromChange = tagEntry.getFromChange(); int revision = query.findHeadRevision(fromPath, fromChange); TagConvert tag = new TagConvert(fromPath, revision); label.add(tag); labelMap.put(id, label); } /** * Add CVS revisions to a STATIC label * * @param entry * @param change * @throws Exception */ public void labelRev(RevisionEntry entry, long change) throws Exception { for (String labelName : entry.getLabels()) { LabelInterface label; if (labelMap.containsKey(labelName)) { label = labelMap.get(labelName); } else { ChangeInfo changeInfo = new ChangeInfo(entry, change); label = ProcessFactory.getLabel(labelName, changeInfo, depot); } String path = entry.getPath(); int revision = query.findHeadRevision(path, change); TagConvert tag = new TagConvert(path, revision); label.add(tag); labelMap.put(labelName, label); } } public String toString() { StringBuffer sb = new StringBuffer(); for (Map.Entry<String, LabelInterface> entry : labelMap.entrySet()) { sb.append(entry.getValue()); } return sb.toString(); } public void submit() throws Exception { for (Map.Entry<String, LabelInterface> entry : labelMap.entrySet()) { entry.getValue().submit(); } } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 13876 | Paul Allen | Rename/move file(s) | ||
//guest/paul_allen/p4convert-maven/src/com/perforce/common/process/ProcessLabel.java | |||||
#1 | 13873 | Paul Allen | Branching using p4convert-maven | ||
//guest/perforce_software/p4convert/src/com/perforce/common/process/ProcessLabel.java | |||||
#6 | 11294 | Paul Allen |
SVN: Improved label support for Subversion tag of another tag, when one or both get converted to a Perforce label. TODO: add aditional unit tests. |
||
#5 | 11043 | Paul Allen |
SVN: Added View support for Automatic labels (Convert and Import mode) - Update view metadata in test case 118 |
||
#4 | 11041 | Paul Allen | SVN: Fixes to support changelist numbering and AUTOMATIC labels in Import mode (front door). | ||
#3 | 11040 | Paul Allen |
SVN: Static label support - Push up shared label code for CVS/SVN - Update label description base for CVS test case 030 |
||
#2 | 11018 | Paul Allen | SVN: Support automatic labels for IMPORT and CONVERT modes. | ||
#1 | 9807 | Paul Allen | Initial import of p4-convert (from change 894340) |