blob: f2d850248a3b4c8dbbdbf05d511e22f257b9d04f [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.importDependencies;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.module.ModuleManager;
import com.intellij.openapi.module.StdModuleTypes;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.roots.ModifiableRootModel;
import com.intellij.openapi.roots.ModuleRootManager;
import com.intellij.openapi.util.Computable;
import com.intellij.openapi.util.io.FileUtil;
import com.intellij.openapi.vfs.VirtualFile;
import org.jetbrains.android.facet.AndroidFacet;
import org.jetbrains.android.sdk.AndroidSdkUtils;
import org.jetbrains.android.util.AndroidBundle;
import org.jetbrains.android.util.AndroidUtils;
import org.jetbrains.annotations.NotNull;
/**
* @author Eugene.Kudelevsky
*/
class CreateNewModuleTask extends ModuleProvidingTask {
private final Project myProject;
private final VirtualFile myContentRoot;
public CreateNewModuleTask(@NotNull Project project, @NotNull VirtualFile contentRoot) {
myContentRoot = contentRoot;
myProject = project;
}
@Override
public Exception perform() {
final Module depModule = ApplicationManager.getApplication().runWriteAction(new Computable<Module>() {
@Override
public Module compute() {
final Module depModule =
ModuleManager.getInstance(myProject)
.newModule(myContentRoot.getPath() + '/' + myContentRoot.getName() + ".iml", StdModuleTypes.JAVA.getId());
final ModifiableRootModel model = ModuleRootManager.getInstance(depModule).getModifiableModel();
model.addContentEntry(myContentRoot);
model.commit();
return depModule;
}
});
if (AndroidFacet.getInstance(depModule) == null) {
AndroidUtils.addAndroidFacetInWriteAction(depModule, myContentRoot, true);
}
AndroidSdkUtils.setupAndroidPlatformIfNecessary(depModule, false);
setDepModule(depModule);
return null;
}
@NotNull
@Override
public String getTitle() {
final String contentRootPath = FileUtil.toSystemDependentName(myContentRoot.getPath());
return AndroidBundle.message("android.import.dependencies.new.module.task.title", getModuleName(), contentRootPath);
}
@Override
public String getModuleName() {
return myContentRoot.getName();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CreateNewModuleTask that = (CreateNewModuleTask)o;
if (!myContentRoot.equals(that.myContentRoot)) return false;
if (!myProject.equals(that.myProject)) return false;
return true;
}
@Override
public int hashCode() {
int result = myProject.hashCode();
result = 31 * result + myContentRoot.hashCode();
return result;
}
@Override
@NotNull
public VirtualFile getContentRoot() {
return myContentRoot;
}
}