JAL-1645 Version-Rel Version 2.9 Year-Rel 2015 Licensing glob
[jalview.git] / src / jalview / gui / OOMWarning.java
index 9b69825..e37dd07 100644 (file)
@@ -1,79 +1,89 @@
-/*\r
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4)\r
- * Copyright (C) 2008 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
- * \r
- * This program is free software; you can redistribute it and/or\r
- * modify it under the terms of the GNU General Public License\r
- * as published by the Free Software Foundation; either version 2\r
- * of the License, or (at your option) any later version.\r
- * \r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- * \r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
- */\r
-package jalview.gui;\r
-\r
-import java.awt.Component;\r
-\r
-public class OOMWarning implements Runnable\r
-{\r
-  String action = null;\r
-\r
-  String instructions = "";\r
-\r
-  Component desktop = null;\r
-\r
-  /**\r
-   * Raise an out of memory error.\r
-   * \r
-   * @param action -\r
-   *                what was going on when OutOfMemory exception occured.\r
-   * @param instance -\r
-   *                Window where the dialog will appear\r
-   * @param oomex -\r
-   *                the actual exception - to be written to stderr or debugger.\r
-   */\r
-  OOMWarning(String action, OutOfMemoryError oomex, Component instance)\r
-  {\r
-    this.action = action;\r
-    desktop = instance;\r
-    if (oomex != null)\r
-    {\r
-      if (jalview.bin.Cache.log != null)\r
-      {\r
-        jalview.bin.Cache.log.error("Out of Memory when " + action, oomex);\r
-      }\r
-      else\r
-      {\r
-        System.err.println("Out of Memory when " + action);\r
-        oomex.printStackTrace();\r
-      }\r
-    }\r
-    javax.swing.SwingUtilities.invokeLater(this);\r
-    System.gc();\r
-  }\r
-\r
-  public OOMWarning(String string, OutOfMemoryError oomerror)\r
-  {\r
-    this(string, oomerror, Desktop.desktop);\r
-  }\r
-\r
-  public void run()\r
-  {\r
-    javax.swing.JOptionPane\r
-            .showInternalMessageDialog(\r
-                    desktop,\r
-                    "Out of memory when "\r
-                            + action\r
-                            + "!!"\r
-                            + "\nSee help files for increasing Java Virtual Machine memory.",\r
-                    "Out of memory",\r
-                    javax.swing.JOptionPane.WARNING_MESSAGE);\r
-  }\r
-\r
-}\r
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9)
+ * Copyright (C) 2015 The Jalview Authors
+ * 
+ * This file is part of Jalview.
+ * 
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *  
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
+package jalview.gui;
+
+import jalview.util.MessageManager;
+
+import java.awt.Component;
+
+public class OOMWarning implements Runnable
+{
+  String action = null;
+
+  String instructions = "";
+
+  public static boolean oomInprogress = false;
+
+  Component desktop = null;
+
+  /**
+   * Raise an out of memory error.
+   * 
+   * @param action
+   *          - what was going on when OutOfMemory exception occured.
+   * @param instance
+   *          - Window where the dialog will appear
+   * @param oomex
+   *          - the actual exception - to be written to stderr or debugger.
+   */
+  OOMWarning(final String action, final OutOfMemoryError oomex,
+          final Component instance)
+  {
+    if (!oomInprogress)
+    {
+      oomInprogress = true;
+      this.action = action;
+      desktop = instance;
+      if (oomex != null)
+      {
+        if (jalview.bin.Cache.log != null)
+        {
+          jalview.bin.Cache.log
+                  .error("Out of Memory when " + action, oomex);
+        }
+        else
+        {
+          System.err.println("Out of Memory when " + action);
+          oomex.printStackTrace();
+        }
+      }
+      javax.swing.SwingUtilities.invokeLater(this);
+      System.gc();
+    }
+  }
+
+  public OOMWarning(String string, OutOfMemoryError oomerror)
+  {
+    this(string, oomerror, Desktop.desktop);
+  }
+
+  public void run()
+  {
+    javax.swing.JOptionPane.showInternalMessageDialog(desktop,
+            MessageManager.formatMessage("warn.out_of_memory_when_action",
+                    new String[] { action }), MessageManager
+                    .getString("label.out_of_memory"),
+            javax.swing.JOptionPane.WARNING_MESSAGE);
+    // hope that there's enough memory left that no more appear.
+    oomInprogress = false;
+  }
+
+}