Search in sources :

Example 1 with CommandAbortedException

use of org.netbeans.lib.cvsclient.command.CommandAbortedException in project intellij-community by JetBrains.

the class StickyHeadGetter method getBranchHeadRevision.

@Nullable
protected String getBranchHeadRevision(final VirtualFile parent, final String name, final Convertor<CvsRevisionNumber, Boolean> chooser) {
    final LocalPathIndifferentLogOperation operation = new LocalPathIndifferentLogOperation(new File(parent.getPath(), name));
    final Ref<Boolean> logSuccess = new Ref<>(Boolean.TRUE);
    final CvsExecutionEnvironment cvsExecutionEnvironment = new CvsExecutionEnvironment(new CvsMessagesAdapter(), CvsExecutionEnvironment.DUMMY_STOPPER, new ErrorProcessor() {

        public void addError(VcsException ex) {
            logSuccess.set(Boolean.FALSE);
        }

        public List<VcsException> getErrors() {
            return null;
        }
    }, PostCvsActivity.DEAF, myProject);
    try {
        // should already be logged in
        //operation.login(context);
        operation.execute(cvsExecutionEnvironment, false);
    } catch (VcsException | CommandAbortedException e) {
    //
    }
    if (Boolean.TRUE.equals(logSuccess.get())) {
        return extractRevision(operation, chooser);
    }
    return null;
}
Also used : ErrorProcessor(com.intellij.cvsSupport2.cvsoperations.cvsErrors.ErrorProcessor) Ref(com.intellij.openapi.util.Ref) LocalPathIndifferentLogOperation(com.intellij.cvsSupport2.cvsoperations.cvsLog.LocalPathIndifferentLogOperation) CvsExecutionEnvironment(com.intellij.cvsSupport2.cvsoperations.common.CvsExecutionEnvironment) CommandAbortedException(org.netbeans.lib.cvsclient.command.CommandAbortedException) VcsException(com.intellij.openapi.vcs.VcsException) CvsMessagesAdapter(com.intellij.cvsSupport2.cvsoperations.cvsMessages.CvsMessagesAdapter) List(java.util.List) VirtualFile(com.intellij.openapi.vfs.VirtualFile) File(java.io.File) Nullable(org.jetbrains.annotations.Nullable)

Aggregations

CvsExecutionEnvironment (com.intellij.cvsSupport2.cvsoperations.common.CvsExecutionEnvironment)1 ErrorProcessor (com.intellij.cvsSupport2.cvsoperations.cvsErrors.ErrorProcessor)1 LocalPathIndifferentLogOperation (com.intellij.cvsSupport2.cvsoperations.cvsLog.LocalPathIndifferentLogOperation)1 CvsMessagesAdapter (com.intellij.cvsSupport2.cvsoperations.cvsMessages.CvsMessagesAdapter)1 Ref (com.intellij.openapi.util.Ref)1 VcsException (com.intellij.openapi.vcs.VcsException)1 VirtualFile (com.intellij.openapi.vfs.VirtualFile)1 File (java.io.File)1 List (java.util.List)1 Nullable (org.jetbrains.annotations.Nullable)1 CommandAbortedException (org.netbeans.lib.cvsclient.command.CommandAbortedException)1