~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to versioncontrol/mercurial/src/org/netbeans/modules/mercurial/ui/update/RevertModificationsAction.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
 
 
42
package org.netbeans.modules.mercurial.ui.update;
 
43
 
 
44
import java.io.File;
 
45
import java.util.*;
 
46
import javax.swing.*;
 
47
import java.awt.event.ActionEvent;
 
48
import org.netbeans.modules.versioning.spi.VCSContext;
 
49
import org.netbeans.modules.mercurial.Mercurial;
 
50
import org.netbeans.modules.mercurial.FileStatusCache;
 
51
import org.netbeans.modules.mercurial.FileInformation;
 
52
import org.netbeans.modules.mercurial.util.HgUtils;
 
53
import org.netbeans.modules.mercurial.HgProgressSupport;
 
54
import org.netbeans.modules.mercurial.HgException;
 
55
import org.openide.DialogDisplayer;
 
56
import org.openide.NotifyDescriptor;
 
57
import org.openide.util.RequestProcessor;
 
58
import org.openide.util.NbBundle;
 
59
import org.netbeans.modules.mercurial.util.HgCommand;
 
60
import org.openide.filesystems.FileObject;
 
61
import org.openide.filesystems.FileUtil;
 
62
import javax.swing.AbstractAction;
 
63
import org.netbeans.modules.mercurial.util.HgRepositoryContextCache;
 
64
 
 
65
/**
 
66
 * Reverts local changes.
 
67
 *
 
68
 * @author Padraig O'Briain
 
69
 */
 
70
public class RevertModificationsAction extends AbstractAction {
 
71
    
 
72
    private final VCSContext context;
 
73
 
 
74
    public RevertModificationsAction(String name, VCSContext context) {        
 
75
        this.context =  context;
 
76
        putValue(Action.NAME, name);
 
77
    }
 
78
 
 
79
    public void actionPerformed(ActionEvent e) {
 
80
        revert(context);
 
81
    }
 
82
 
 
83
    public static void revert(final VCSContext ctx) {
 
84
        final File[] files = ctx.getRootFiles().toArray(new File[ctx.getRootFiles().size()]);
 
85
        final File repository  = HgUtils.getRootFile(ctx);
 
86
        if (repository == null) return;
 
87
        String rev = null;
 
88
 
 
89
        final RevertModifications revertModifications = new RevertModifications(repository, files);
 
90
        if (!revertModifications.showDialog()) {
 
91
            return;
 
92
        }
 
93
        rev = revertModifications.getSelectionRevision();
 
94
        final String revStr = rev;
 
95
 
 
96
        RequestProcessor rp = Mercurial.getInstance().getRequestProcessor(repository);
 
97
        HgProgressSupport support = new HgProgressSupport() {
 
98
            public void perform() {
 
99
                performRevert(repository, revStr, files);
 
100
            }
 
101
        };
 
102
        support.start(rp, repository.getAbsolutePath(), org.openide.util.NbBundle.getMessage(UpdateAction.class, "MSG_Revert_Progress")); // NOI18N
 
103
 
 
104
        return;
 
105
    }
 
106
 
 
107
    public static void performRevert(File repository, String revStr, File file) {
 
108
        File[] files = new File[1];
 
109
        files[0] = file;
 
110
 
 
111
        performRevert(repository, revStr, files);
 
112
    }
 
113
 
 
114
    public static void performRevert(File repository, String revStr, File[] files) {
 
115
        try {
 
116
            List<File> revertFiles = new ArrayList<File>();
 
117
            for (File file : files) {
 
118
                revertFiles.add(file);
 
119
            }
 
120
            HgUtils.outputMercurialTabInRed(
 
121
                    NbBundle.getMessage(RevertModificationsAction.class,
 
122
                    "MSG_REVERT_TITLE")); // NOI18N
 
123
            HgUtils.outputMercurialTabInRed(
 
124
                    NbBundle.getMessage(RevertModificationsAction.class,
 
125
                    "MSG_REVERT_TITLE_SEP")); // NOI18N
 
126
            HgUtils.outputMercurialTab(
 
127
                    NbBundle.getMessage(RevertModificationsAction.class,
 
128
                    "MSG_REVERT_REVISION_STR", revStr)); // NOI18N
 
129
            for (File file : files) {
 
130
                HgUtils.outputMercurialTab(file.getAbsolutePath());
 
131
            }
 
132
            HgUtils.outputMercurialTab(""); // NOI18N
 
133
 
 
134
            HgCommand.doRevert(repository, revertFiles, revStr);
 
135
            FileStatusCache cache = Mercurial.getInstance().getFileStatusCache();
 
136
            File[] conflictFiles = cache.listFiles(files, FileInformation.STATUS_VERSIONED_CONFLICT);
 
137
            if(conflictFiles.length != 0){
 
138
                ConflictResolvedAction.conflictResolved(repository, conflictFiles);
 
139
            }
 
140
        } catch (HgException ex) {
 
141
            NotifyDescriptor.Exception e = new NotifyDescriptor.Exception(ex);
 
142
            DialogDisplayer.getDefault().notifyLater(e);
 
143
        }
 
144
 
 
145
        if (revStr == null) {
 
146
            for (File file : files) {
 
147
                HgUtils.forceStatusRefresh(file);
 
148
            }
 
149
        } else {
 
150
            HgUtils.forceStatusRefresh(files[0]);
 
151
        }
 
152
        // refresh filesystem to take account of changes
 
153
        FileObject rootObj = FileUtil.toFileObject(repository);
 
154
        try {
 
155
            rootObj.getFileSystem().refresh(true);
 
156
        } catch (java.lang.Exception exc) {
 
157
        }
 
158
        HgUtils.outputMercurialTabInRed(
 
159
                NbBundle.getMessage(RevertModificationsAction.class,
 
160
                "MSG_REVERT_DONE")); // NOI18N
 
161
 
 
162
    }
 
163
 
 
164
    public boolean isEnabled() {
 
165
        return HgRepositoryContextCache.hasHistory(context);
 
166
    }
 
167
}