/* * 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.jps.uiDesigner.compiler; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.util.Key; import com.intellij.openapi.util.io.FileFilters; import org.jetbrains.annotations.NotNull; import org.jetbrains.jps.incremental.BuilderCategory; import org.jetbrains.jps.incremental.ModuleLevelBuilder; import java.io.File; import java.io.FileFilter; import java.util.ArrayList; import java.util.Collection; import java.util.Map; /** * @author Eugene Zhuravlev * Date: 11/20/12 */ public abstract class FormsBuilder extends ModuleLevelBuilder { protected static final Logger LOG = Logger.getInstance("#org.jetbrains.jps.uiDesigner.compiler.FormsInstrumenter"); protected static final Key<Map<File, Collection<File>>> FORMS_TO_COMPILE = Key.create("_forms-to_compile_"); protected static final String FORM_EXTENSION = "form"; protected static final FileFilter JAVA_SOURCES_FILTER = FileFilters.withExtension("java"); protected static final FileFilter FORM_SOURCES_FILTER = FileFilters.withExtension(FORM_EXTENSION); private final String myBuilderName; public FormsBuilder(BuilderCategory category, String name) { super(category); myBuilderName = name; } @NotNull @Override public String getPresentableName() { return myBuilderName; } protected static void addBinding(File srcFile, File form, Map<File, Collection<File>> container) { Collection<File> forms = container.get(srcFile); if (forms == null) { forms = new ArrayList<>(); container.put(srcFile, forms); } forms.add(form); } }