JAL-3949 - refactor logging from jalview.bin.Cache to jalview.bin.Console
[jalview.git] / src / jalview / gui / OOMWarning.java
index 324b307..9bdbf61 100644 (file)
@@ -1,88 +1,82 @@
-/*\r
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6)\r
- * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle\r
- * \r
- * This file is part of Jalview.\r
- * \r
- * Jalview 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 3 of the License, or (at your option) any later version.\r
- * \r
- * Jalview is distributed in the hope that it will be useful, but \r
- * WITHOUT ANY WARRANTY; without even the implied warranty \r
- * of MERCHANTABILITY or FITNESS FOR A PARTICULAR \r
- * PURPOSE.  See the GNU General Public License for more details.\r
- * \r
- * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.\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
-  public static boolean oomInprogress = false;\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(final String action, final OutOfMemoryError oomex,\r
-          final Component instance)\r
-  {\r
-    if (!oomInprogress)\r
-    {\r
-      oomInprogress = true;\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\r
-                  .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
-\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
-    // hope that there's enough memory left that no more appear.\r
-    oomInprogress=false;\r
-  }\r
-\r
-}\r
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ 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.bin.Console;
+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)
+      {
+        Console.error("Out of Memory when " + action,
+                  oomex);
+      }
+      javax.swing.SwingUtilities.invokeLater(this);
+      System.gc();
+    }
+  }
+
+  public OOMWarning(String string, OutOfMemoryError oomerror)
+  {
+    this(string, oomerror, Desktop.desktop);
+  }
+
+  @Override
+  public void run()
+  {
+    oomInprogress = false;
+    JvOptionPane.showInternalMessageDialog(desktop, MessageManager
+            .formatMessage("warn.out_of_memory_when_action", new String[]
+            { action }), MessageManager.getString("label.out_of_memory"),
+            JvOptionPane.WARNING_MESSAGE);
+    // hope that there's enough memory left that no more appear.
+  }
+
+}