blob: 06e233717fd638de481bdfceafa59a04ba8e6a29 [file] [log] [blame]
/*
* Copyright 2000-2013 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 com.jetbrains.python.packaging;
import com.intellij.execution.ExecutionException;
import com.intellij.openapi.util.Pair;
import com.intellij.openapi.util.text.StringUtil;
import org.jetbrains.annotations.NotNull;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Pattern;
/**
* @author vlan
*/
public class PyExternalProcessException extends ExecutionException {
private static final Pattern WITH_CR_DELIMITER_PATTERN = Pattern.compile("(?<=\r|\n|\r\n)");
private final int myRetcode;
@NotNull private String myName;
@NotNull private List<String> myArgs;
@NotNull private String myMessage;
private Pair<String, Runnable> myHandler = null;
public PyExternalProcessException(int retcode, @NotNull String name, @NotNull List<String> args, @NotNull String message) {
super(String.format("External process error '%s %s':\n%s", name, StringUtil.join(args, " "), message));
myRetcode = retcode;
myName = name;
myArgs = args;
myMessage = stripLinesWithoutLineFeeds(message);
}
public PyExternalProcessException(int retcode, @NotNull String name, @NotNull List<String> args, @NotNull String message, Throwable cause) {
super(String.format("External process error '%s %s':\n%s", name, StringUtil.join(args, " "), message), cause);
myRetcode = retcode;
myName = name;
myArgs = args;
myMessage = stripLinesWithoutLineFeeds(message);
}
@Override
public String toString() {
final StringBuilder b = new StringBuilder();
b.append("The following command was executed:\n\n");
final String command = getName() + " " + StringUtil.join(getArgs(), " ");
b.append(command);
b.append("\n\n");
b.append("The error output of the command:\n\n");
b.append(getMessage());
return b.toString();
}
public int getRetcode() {
return myRetcode;
}
@NotNull
public String getName() {
return myName;
}
@NotNull
public List<String> getArgs() {
return myArgs;
}
@NotNull
public String getMessage() {
return myMessage;
}
@NotNull
private static String stripLinesWithoutLineFeeds(@NotNull String s) {
final String[] lines = WITH_CR_DELIMITER_PATTERN.split(s);
final List<String> result = new ArrayList<String>();
for (String line : lines) {
if (!line.endsWith("\r")) {
result.add(line);
}
}
return StringUtil.join(result, "");
}
public PyExternalProcessException withHandler(@NotNull String name, @NotNull Runnable handler) {
myHandler = Pair.create(name, handler);
return this;
}
public boolean hasHandler() {
return myHandler != null;
}
public Pair<String, Runnable> getHandler() {
return myHandler;
}
}