blob: 2c6b9d36064a9a3724d28ce38f8587d6fed97f64 [file] [log] [blame]
/*
* Copyright 2000-2012 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 org.jetbrains.android.util;
import com.intellij.execution.process.BaseOSProcessHandler;
import com.intellij.execution.process.ProcessOutputTypes;
import com.intellij.openapi.util.Key;
import com.intellij.openapi.util.text.StringUtil;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.ArrayList;
import java.util.List;
/**
* @author Eugene.Kudelevsky
*/
public class AndroidOSProcessHandler extends BaseOSProcessHandler {
@NonNls private static final String IGNORING = "ignoring";
@NonNls private static final String SKIPPING = "skipping";
@NonNls private static final String DEBUGGABLE_ERROR = "androidmanifest.xml already defines debuggable";
private final List<String> myInfoMessages = new ArrayList<String>();
private final List<String> myErrorMessages = new ArrayList<String>();
public AndroidOSProcessHandler(@NotNull final Process process, @Nullable final String commandLine) {
super(process, commandLine, null);
}
@Override
public void notifyTextAvailable(String text, Key outputType) {
super.notifyTextAvailable(text, outputType);
if (StringUtil.isEmptyOrSpaces(text)) {
return;
}
String[] lines = text.split("[\\n\\r]+");
for (String line : lines) {
String l = line.toLowerCase();
if (outputType == ProcessOutputTypes.STDOUT) {
myInfoMessages.add(line);
}
else if (outputType == ProcessOutputTypes.STDERR) {
if (l.contains(IGNORING) || l.contains(SKIPPING) || l.contains(DEBUGGABLE_ERROR)) {
myInfoMessages.add(line);
}
else {
myErrorMessages.add(line);
}
}
}
}
@NotNull
public List<String> getInfoMessages() {
return myInfoMessages;
}
@NotNull
public List<String> getErrorMessages() {
return myErrorMessages;
}
}