/* * Copyright 2000-2015 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.vcs; import com.intellij.ide.impl.ProjectUtil; import com.intellij.openapi.application.TransactionGuard; import com.intellij.openapi.project.Project; import com.intellij.openapi.util.Pair; import com.intellij.openapi.vfs.LocalFileSystem; import com.intellij.openapi.vfs.VirtualFile; import com.intellij.platform.PlatformProjectOpenProcessor; import com.intellij.projectImport.ProjectSetProcessor; import org.jetbrains.annotations.NotNull; import java.util.List; /** * @author Dmitry Avdeev */ public class OpenProjectSetProcessor extends ProjectSetProcessor { @Override public String getId() { return PROJECT; } @Override public void processEntries(@NotNull List<Pair<String, String>> entries, @NotNull final Context context, @NotNull Runnable runNext) { final String root = context.directory == null || context.directoryName == null ? null : context.directory.getPath() + "/" + context.directoryName; for (final Pair<String, String> entry : entries) { if ("project".equals(entry.getFirst())) { TransactionGuard.getInstance().submitTransactionAndWait(() -> { String path = root == null ? entry.getSecond() : (root + "/" + entry.getSecond()); context.project = ProjectUtil.openProject(path, null, true); }); if (context.project != null) { runNext.run(); } return; } } // no "project" entry final VirtualFile dir = LocalFileSystem.getInstance().refreshAndFindFileByPath(root); if (dir != null) { Project project = PlatformProjectOpenProcessor.getInstance().doOpenProject(dir, null, false); if (project != null) runNext.run(); } } }