Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 42b58e19dcc3855dc3fd9025c1f9c0cdf696ea3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*******************************************************************************
 * Copyright (c) 2000, 2006 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.tags;

import java.util.HashSet;
import java.util.Set;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.team.core.TeamException;
import org.eclipse.team.internal.ccvs.core.*;
import org.eclipse.team.internal.ccvs.ui.CVSUIPlugin;
import org.eclipse.team.internal.ccvs.ui.repo.RepositoryManager;

/**
 * A tag source for a single ICVSFile
 */
public class SingleFileTagSource extends TagSource {
    
	public static CVSTag[] fetchTagsFor(ICVSFile file, IProgressMonitor monitor) throws TeamException {
		Set<CVSTag> tagSet = new HashSet<>();
		ILogEntry[] entries = file.getLogEntries(monitor);
		for (int j = 0; j < entries.length; j++) {
			CVSTag[] tags = entries[j].getTags();
			for (int k = 0; k < tags.length; k++) {
				tagSet.add(tags[k]);
			}
		}
		return tagSet.toArray(new CVSTag[tagSet.size()]);
	}
	
    private ICVSFile file;
    private TagSource parentFolderTagSource;
    
    /* package */ /**
     * 
     */
    public SingleFileTagSource(ICVSFile file) {
        this.file = file;
        parentFolderTagSource = TagSource.create(new ICVSResource[] { file.getParent() });
    }

    @Override
	public CVSTag[] getTags(int type) {
        return parentFolderTagSource.getTags(type);
    }

    @Override
	public CVSTag[] refresh(boolean bestEffort, IProgressMonitor monitor) throws TeamException {
        CVSTag[] tags = fetchTagsFor(file, monitor); 
        commit(tags, false, monitor);
        fireChange();
        return tags;
    }

    @Override
	public ICVSRepositoryLocation getLocation() {
		RepositoryManager mgr = CVSUIPlugin.getPlugin().getRepositoryManager();
		ICVSRepositoryLocation location = mgr.getRepositoryLocationFor(file);
		return location;
    }

    @Override
	public String getShortDescription() {
        return file.getName();
    }

    @Override
	public void commit(CVSTag[] tags, boolean replace, IProgressMonitor monitor) throws CVSException {
        parentFolderTagSource.commit(tags, replace, monitor);
        fireChange();
    }

    @Override
	public ICVSResource[] getCVSResources() {
        return new ICVSResource[] { file };
    }

}

Back to the top