Switching from log/learn to reportOutput/add

This commit is contained in:
Andrey Breslav
2012-11-12 19:57:39 +04:00
parent ef403cc91a
commit b2b5ccefbd
12 changed files with 128 additions and 130 deletions
@@ -1,73 +0,0 @@
/*
* Copyright 2010-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.jet.compiler.runner;
import com.intellij.util.containers.ContainerUtil;
import org.jetbrains.annotations.NotNull;
import java.util.List;
public abstract class AbstractOutputItemCollector<S, R> implements OutputItemsCollector {
private static final String FOR_SOURCE_PREFIX = "For source: ";
private static final String EMITTING_PREFIX = "Emitting: ";
private S currentSource;
private final List<R> answer = ContainerUtil.newArrayList();
private final List<S> sources = ContainerUtil.newArrayList();
private final String outputPath;
public AbstractOutputItemCollector(@NotNull String outputPath) {
this.outputPath = outputPath;
}
protected void addItem(R item) {
answer.add(item);
}
@Override
public final void learn(String message) {
message = message.trim();
if (message.startsWith(FOR_SOURCE_PREFIX)) {
String sourcePath = message.substring(FOR_SOURCE_PREFIX.length());
currentSource = convertSource(sourcePath);
if (currentSource != null) {
sources.add(currentSource);
}
}
else if (message.startsWith(EMITTING_PREFIX)) {
if (currentSource != null) {
String resultPath = message.substring(EMITTING_PREFIX.length());
R item = convertResult(outputPath + "/" + resultPath, currentSource);
if (item != null) {
answer.add(item);
}
}
}
}
protected abstract R convertResult(String resultPath, S correspondingSource);
protected abstract S convertSource(String sourcePath);
public List<R> getOutputs() {
return answer;
}
public List<S> getSources() {
return sources;
}
}
@@ -180,6 +180,7 @@ public class CompilerRunnerUtil {
.put("error", ERROR)
.put("warning", WARNING)
.put("logging", LOGGING)
.put("output", OUTPUT)
.put("exception", ERROR)
.put("info", INFO)
.put("messages", INFO) // Root XML element
@@ -23,7 +23,5 @@ import java.util.Collection;
* @author abreslav
*/
public interface OutputItemsCollector {
@Deprecated
void learn(String message);
void add(Collection<File> sourceFiles, File outputFile);
}
@@ -0,0 +1,45 @@
/*
* Copyright 2010-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.jet.compiler.runner;
import com.intellij.util.containers.ContainerUtil;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.io.File;
import java.util.Collection;
import java.util.List;
public class OutputItemsCollectorImpl implements OutputItemsCollector {
private final List<SimpleOutputItem> outputs = ContainerUtil.newArrayList();
@Nullable
private final File outputDir;
public OutputItemsCollectorImpl(@Nullable File outputDir) {
this.outputDir = outputDir;
}
@Override
public void add(Collection<File> sourceFiles, File outputFile) {
outputs.add(new SimpleOutputItem(sourceFiles, new File(outputDir, outputFile.getPath())));
}
@NotNull
public List<SimpleOutputItem> getOutputs() {
return outputs;
}
}
@@ -0,0 +1,43 @@
/*
* Copyright 2010-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.jet.compiler.runner;
import java.io.File;
import java.util.Collection;
public class SimpleOutputItem {
private final Collection<File> sourceFiles;
private final File outputFile;
public SimpleOutputItem(Collection<File> sourceFiles, File outputFile) {
this.sourceFiles = sourceFiles;
this.outputFile = outputFile;
}
public Collection<File> getSourceFiles() {
return sourceFiles;
}
public File getOutputFile() {
return outputFile;
}
@Override
public String toString() {
return sourceFiles + " -> " + outputFile;
}
}