/src/main/java/org/smartapp/mongodb/ui/MainWindow.java

http://mongodb-shell.googlecode.com/ · Java · 124 lines · 87 code · 32 blank · 5 comment · 8 complexity · d41c0a0573950c9a7a21a34553bf6f3a MD5 · raw file

  1. package org.smartapp.mongodb.ui;
  2. import java.awt.BorderLayout;
  3. import java.awt.Component;
  4. import javax.swing.Icon;
  5. import javax.swing.ImageIcon;
  6. import javax.swing.JFileChooser;
  7. import javax.swing.JFrame;
  8. import javax.swing.JOptionPane;
  9. import javax.swing.JPanel;
  10. import javax.swing.JScrollPane;
  11. import javax.swing.JSplitPane;
  12. import javax.swing.JTabbedPane;
  13. import org.smartapp.mongodb.config.ConnectionConfig;
  14. import org.smartapp.mongodb.console.Console;
  15. import org.smartapp.mongodb.console.TextAreaConsoleImpl;
  16. import com.mongodb.Mongo;
  17. public class MainWindow extends JFrame {
  18. static final String VERSION = "0.3-alpha";
  19. /** */
  20. private static final long serialVersionUID = -951506042833748903L;
  21. private static JFileChooser fileChooser;
  22. private JTabbedPane editorTabContainer;
  23. private TextAreaConsoleImpl console;
  24. public Console getConsole() {
  25. return console;
  26. }
  27. public MainWindow() {
  28. super("mongodb-shell " + VERSION);
  29. console = new TextAreaConsoleImpl();
  30. JPanel consoleResizableWrapper = new JPanel(new BorderLayout(0,0));
  31. consoleResizableWrapper.add(console);
  32. Component configContailer = new ConfigContainer(this);
  33. editorTabContainer = new JTabbedPane();
  34. // JSplitPane mainContainer = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, configContailer, editorTabContailer);
  35. // mainContainer.setDividerLocation(180);
  36. // mainContainer.setEnabled(false);
  37. JPanel mainContainer = new JPanel(new BorderLayout());
  38. mainContainer.add(configContailer, BorderLayout.WEST);
  39. mainContainer.add(editorTabContainer, BorderLayout.CENTER);
  40. JSplitPane splitPanel = new JSplitPane(JSplitPane.VERTICAL_SPLIT, mainContainer, new JScrollPane(consoleResizableWrapper));
  41. splitPanel.setDividerLocation(650);
  42. add(splitPanel);
  43. setSize(1000, 800);
  44. setLocation(100, 100);
  45. }
  46. public void connect(ConnectionConfig config) {
  47. try {
  48. Mongo mongo = new Mongo(config.getHost(), config.getPort());
  49. // validate connection
  50. mongo.getDatabaseNames();
  51. String title = config.getName();
  52. int count = 1;
  53. while (titleExists(title)) {
  54. title = config.getName() + " (" + (++count) +")";
  55. }
  56. SessionContainer editorContainer = new SessionContainer(mongo, title, console);
  57. editorTabContainer.addTab(title, editorContainer);
  58. editorTabContainer.setTabComponentAt(editorTabContainer.getTabCount() - 1, new TabLabel(title, editorContainer));
  59. editorTabContainer.setSelectedIndex(editorTabContainer.getTabCount() - 1);
  60. console.info("Connected to: ", title);
  61. } catch (Exception e) {
  62. e.printStackTrace();
  63. console.error("Error: ", e.getClass().getSimpleName(), ": ", e.getMessage());
  64. JOptionPane.showMessageDialog(this, e.getClass().getSimpleName() + ": " + e.getMessage(), "Unable to connect", JOptionPane.ERROR_MESSAGE);
  65. }
  66. }
  67. private boolean titleExists(String title) {
  68. for (int i = 0; i < editorTabContainer.getTabCount(); i++) {
  69. String tabTitle = ((TabLabel)editorTabContainer.getTabComponentAt(i)).getTitle();
  70. if (title.equals(tabTitle) || ("*" + title).equals(tabTitle) )
  71. return true;
  72. }
  73. return false;
  74. }
  75. public static Icon createIcon(String name) {
  76. return new ImageIcon(MainWindow.class.getResource("/icons/" + name));
  77. }
  78. public static JFileChooser getFileChooser() {
  79. if (fileChooser == null) {
  80. fileChooser = new JFileChooser("/");
  81. }
  82. return fileChooser;
  83. }
  84. public boolean canClose() {
  85. while (editorTabContainer.getTabCount() > 0) {
  86. SessionContainer editorContainer = (SessionContainer) editorTabContainer.getComponentAt(editorTabContainer.getSelectedIndex());
  87. if (! editorContainer.close())
  88. return false;
  89. }
  90. return true;
  91. }
  92. }