/*
* Copyright (c) 2016 David Boissier.
*
* 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.codinjutsu.tools.mongo.view.console;
import com.intellij.execution.ExecutionException;
import com.intellij.execution.configurations.GeneralCommandLine;
import com.intellij.execution.console.ConsoleHistoryController;
import com.intellij.execution.console.ConsoleRootType;
import com.intellij.execution.console.ProcessBackedConsoleExecuteActionHandler;
import com.intellij.execution.process.ColoredProcessHandler;
import com.intellij.execution.process.OSProcessHandler;
import com.intellij.execution.runners.AbstractConsoleRunnerWithHistory;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.Key;
import com.intellij.psi.PsiFile;
import org.codinjutsu.tools.mongo.MongoConfiguration;
import org.codinjutsu.tools.mongo.ServerConfiguration;
import org.codinjutsu.tools.mongo.logic.Notifier;
import org.codinjutsu.tools.mongo.model.MongoDatabase;
import org.codinjutsu.tools.mongo.utils.MongoUtils;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class MongoConsoleRunner extends AbstractConsoleRunnerWithHistory<MongoConsoleView> {
private static final Key<Boolean> MONGO_SHELL_FILE = Key.create("MONGO_SHELL_FILE");
private final ServerConfiguration serverConfiguration;
private final MongoDatabase database;
private final Notifier notifier;
public MongoConsoleRunner(@NotNull Project project, ServerConfiguration serverConfiguration, MongoDatabase database) {
super(project, "Mongo Shell", "/tmp");
notifier = Notifier.getInstance(project);
this.serverConfiguration = serverConfiguration;
this.database = database;
}
@Override
protected MongoConsoleView createConsoleView() {
MongoConsoleView res = new MongoConsoleView(getProject());
PsiFile file = res.getFile();
assert file.getContext() == null;
file.putUserData(MONGO_SHELL_FILE, Boolean.TRUE);
return res;
}
@Nullable
@Override
protected Process createProcess() throws ExecutionException {
String shellPath = MongoConfiguration.getInstance(getProject()).getShellPath();
GeneralCommandLine commandLine = MongoUtils.buildCommandLine(shellPath, serverConfiguration, database);
notifier.notifyInfo("Running " + commandLine.getCommandLineString());
return commandLine.createProcess();
}
@Override
protected OSProcessHandler createProcessHandler(Process process) {
return new ColoredProcessHandler(process, MongoConfiguration.getInstance(getProject()).getShellPath());
}
@NotNull
@Override
protected ProcessBackedConsoleExecuteActionHandler createExecuteActionHandler() {
ProcessBackedConsoleExecuteActionHandler handler = new ProcessBackedConsoleExecuteActionHandler(getProcessHandler(), false) {
@Override
public String getEmptyExecuteAction() {
return "Mongo.Shell.Execute";
}
};
new ConsoleHistoryController(new ConsoleRootType("Mongo Shell", null) {
}, null, getConsoleView()).install();
return handler;
}
}