blob: 2da61039467710d3966643bde212ca8bc8f6a03c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.netbeans.modules.maven.output;
import org.netbeans.modules.maven.NbMavenProjectImpl;
import org.netbeans.modules.maven.api.output.OutputProcessor;
import org.netbeans.modules.maven.api.output.OutputUtils;
import org.netbeans.modules.maven.api.output.OutputVisitor;
import org.netbeans.api.java.classpath.ClassPath;
import org.netbeans.api.project.Project;
import org.netbeans.modules.maven.api.classpath.ProjectSourcesClassPathProvider;
import org.netbeans.spi.java.classpath.support.ClassPathSupport;
import org.openide.windows.OutputListener;
/**
* exec plugin output processing, just handle stacktraces.
* @author Milos Kleint
*/
public class ExecPluginOutputListenerProvider implements OutputProcessor {
private static final String[] EXECGOALS = new String[] {
"mojo-execute#exec:exec", //NOI18N
"mojo-execute#exec:java", //NOI18N
"mojo-execute#javafx:run" //NOI18N
};
private final NbMavenProjectImpl project;
/** Creates a new instance of ExecPluginOutputListenerProvider */
public ExecPluginOutputListenerProvider(NbMavenProjectImpl proj) {
project = proj;
}
@Override
public void processLine(String line, OutputVisitor visitor) {
OutputVisitor.Context context = visitor.getContext();
Project prj = project;
if (context != null && context.getCurrentProject() != null) {
prj = context.getCurrentProject();
}
OutputListener list = OutputUtils.matchStackTraceLine(line, prj);
if (list != null) {
visitor.setOutputListener(list);
}
}
@Override
public String[] getRegisteredOutputSequences() {
return EXECGOALS;
}
@Override
public void sequenceStart(String sequenceId, OutputVisitor visitor) {
}
@Override
public void sequenceEnd(String sequenceId, OutputVisitor visitor) {
}
@Override
public void sequenceFail(String sequenceId, OutputVisitor visitor) {
}
}