summaryrefslogtreecommitdiff
path: root/java/java-impl/src/com/intellij/openapi/module/BasePackageParameterFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-impl/src/com/intellij/openapi/module/BasePackageParameterFactory.java')
-rw-r--r--java/java-impl/src/com/intellij/openapi/module/BasePackageParameterFactory.java106
1 files changed, 106 insertions, 0 deletions
diff --git a/java/java-impl/src/com/intellij/openapi/module/BasePackageParameterFactory.java b/java/java-impl/src/com/intellij/openapi/module/BasePackageParameterFactory.java
new file mode 100644
index 000000000000..e2f3308f7ef2
--- /dev/null
+++ b/java/java-impl/src/com/intellij/openapi/module/BasePackageParameterFactory.java
@@ -0,0 +1,106 @@
+/*
+ * 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.intellij.openapi.module;
+
+import com.intellij.ide.util.projectWizard.ProjectTemplateParameterFactory;
+import com.intellij.ide.util.projectWizard.WizardInputField;
+import com.intellij.openapi.options.ConfigurationException;
+import com.intellij.openapi.project.Project;
+import com.intellij.openapi.util.Condition;
+import com.intellij.openapi.util.text.StringUtil;
+import com.intellij.psi.JavaPsiFacade;
+import com.intellij.psi.PsiPackage;
+import com.intellij.psi.impl.PsiNameHelperImpl;
+import com.intellij.psi.search.GlobalSearchScope;
+import com.intellij.util.containers.ContainerUtil;
+
+import javax.swing.*;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * @author Dmitry Avdeev
+ * Date: 2/1/13
+ */
+public class BasePackageParameterFactory extends ProjectTemplateParameterFactory {
+
+ private static final Condition<PsiPackage> PACKAGE_CONDITION = new Condition<PsiPackage>() {
+ @Override
+ public boolean value(PsiPackage aPackage) {
+ return JavaPsiFacade.getInstance(aPackage.getProject()).getNameHelper().isQualifiedName(aPackage.getQualifiedName()) &&
+ Character.isLowerCase(aPackage.getName().charAt(0));
+ }
+ };
+
+ @Override
+ public String getParameterId() {
+ return IJ_BASE_PACKAGE;
+ }
+
+ @Override
+ public WizardInputField createField(final String defaultValue) {
+
+ return new WizardInputField<JTextField>(IJ_BASE_PACKAGE, defaultValue) {
+
+ private final JTextField myField = new JTextField(defaultValue);
+
+ @Override
+ public String getLabel() {
+ return "Base package:";
+ }
+
+ @Override
+ public JTextField getComponent() {
+ return myField;
+ }
+
+ @Override
+ public String getValue() {
+ return myField.getText();
+ }
+
+ @Override
+ public Map<String, String> getValues() {
+ HashMap<String, String> map = new HashMap<String, String>(2);
+ map.put(getId(), getValue());
+ map.put("IJ_BASE_PACKAGE_DIR", getValue().replace('.', '/'));
+ return map;
+ }
+
+ @Override
+ public boolean validate() throws ConfigurationException {
+ if (!PsiNameHelperImpl.getInstance().isQualifiedName(getValue())) {
+ throw new ConfigurationException(getValue() + " is not a valid package name");
+ }
+ return true;
+ }
+ };
+ }
+
+ @Override
+ public String detectParameterValue(Project project) {
+ PsiPackage root = JavaPsiFacade.getInstance(project).findPackage("");
+ if (root == null) return null;
+ String name = getBasePackage(root, GlobalSearchScope.projectScope(project)).getQualifiedName();
+ return StringUtil.isEmpty(name) ? null : name;
+ }
+
+ private static PsiPackage getBasePackage(PsiPackage pack, GlobalSearchScope scope) {
+ List<PsiPackage> subPackages = ContainerUtil.filter(pack.getSubPackages(scope), PACKAGE_CONDITION);
+ return subPackages.size() == 1 ? getBasePackage(subPackages.get(0), scope) : pack;
+ }
+}