Fix problem with non-reentrant journal driver 20131101030507/pspp
authorJohn Darrington <john@darrington.wattle.id.au>
Wed, 30 Oct 2013 19:47:07 +0000 (20:47 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Thu, 31 Oct 2013 19:29:01 +0000 (20:29 +0100)
src/output/journal.c
src/output/journal.h
src/ui/gui/psppire.c
src/ui/terminal/terminal-reader.c

index c1d246360f3b9b7b036c812c7c28de5b989386d8..84d0cd922266c0dbe1d745af84a8005fc6b7de42 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2007, 2010, 2012 Free Software Foundation, Inc.
+   Copyright (C) 2007, 2010, 2012, 2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -21,6 +21,7 @@
 #include <errno.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <stdbool.h>
 
 #include "data/file-name.h"
 #include "libpspp/cast.h"
@@ -44,12 +45,13 @@ struct journal_driver
 
     /* Name of journal file. */
     char *file_name;
+    bool destroyed;
   };
 
 static const struct output_driver_class journal_class;
 
 /* Journal driver, if journaling is enabled. */
-static struct journal_driver *journal;
+static struct journal_driver journal;
 
 
 static struct journal_driver *
@@ -62,13 +64,14 @@ journal_driver_cast (struct output_driver *driver)
 static void
 journal_close (void)
 {
-  if (journal != NULL && journal->file != NULL)
+  if (journal.file != NULL)
     {
-      if (fwriteerror (journal->file))
+      if (fwriteerror (journal.file))
         msg_error (errno, _("error writing output file `%s'"),
-               journal->file_name);
-      journal->file = NULL;
-    }
+                  journal.file_name);
+
+      }
+  journal.file = NULL;
 }
 
 static void
@@ -76,27 +79,20 @@ journal_destroy (struct output_driver *driver)
 {
   struct journal_driver *j = journal_driver_cast (driver);
 
-  journal_close ();
-  free (j->command_name);
-  free (j);
+  if ( !j->destroyed)
+    {
+      journal_close ();
+      free (j->command_name);
+    }
 
-  journal = NULL;
+  j->destroyed = true;
 }
 
 static void
 journal_output (struct journal_driver *j, const char *s)
 {
-  if (j->file == NULL)
-    {
-      j->file = fopen (journal_get_file_name (), "a");
-      if (j->file == NULL)
-        {
-          msg_error (errno, _("error opening output file `%s'"),
-                 journal_get_file_name ());
-          output_driver_destroy (&j->driver);
-          return;
-        }
-    }
+  if ( j->file == NULL)
+    return;
 
   fprintf (j->file, "%s\n", s);
 
@@ -138,38 +134,56 @@ static const struct output_driver_class journal_class =
     journal_submit,
     NULL                        /* flush */
   };
+
 \f
+
 /* Enables journaling. */
 void
-journal_enable (void)
+journal_init (void)
 {
-  if (journal == NULL)
-    {
-      /* Create journal driver. */
-      journal = xzalloc (sizeof *journal);
-      output_driver_init (&journal->driver, &journal_class, "journal",
-                          SETTINGS_DEVICE_UNFILTERED);
-      journal->file = NULL;
-      journal->command_name = NULL;
-
-      /* Register journal driver. */
-      output_driver_register (&journal->driver);
-    }
+  /* Create journal driver. */
+  output_driver_init (&journal.driver, &journal_class, "journal",
+                     SETTINGS_DEVICE_UNFILTERED);
+  journal.file = NULL;
+  journal.command_name = NULL;
+  
+  /* Register journal driver. */
+  output_driver_register (&journal.driver);
+
+  journal_enable ();
+  journal.destroyed = false;
 }
 
 /* Disables journaling. */
 void
 journal_disable (void)
 {
-  if (journal != NULL)
-    output_driver_destroy (&journal->driver);
+  journal_close ();
+}
+
+
+/* Enable journaling. */
+void
+journal_enable (void)
+{
+  if (journal.file == NULL)
+    {
+      journal.file = fopen (journal_get_file_name (), "a");
+      if (journal.file == NULL)
+        {
+          msg_error (errno, _("error opening output file `%s'"),
+                    journal_get_file_name ());
+         journal_close ();
+        }
+    }
 }
 
+
 /* Returns true if journaling is enabled, false otherwise. */
 bool
 journal_is_enabled (void)
 {
-  return journal != NULL;
+  return journal.file != NULL ;
 }
 
 /* Sets the name of the journal file to FILE_NAME. */
@@ -177,8 +191,8 @@ void
 journal_set_file_name (const char *file_name)
 {
   journal_close ();
-  free (journal->file_name);
-  journal->file_name = xstrdup (file_name);
+  free (journal.file_name);
+  journal.file_name = xstrdup (file_name);
 }
 
 /* Returns the name of the journal file.  The caller must not modify or free
@@ -186,10 +200,10 @@ journal_set_file_name (const char *file_name)
 const char *
 journal_get_file_name (void)
 {
-  if (journal->file_name == NULL)
+  if (journal.file_name == NULL)
     {
       const char *output_path = default_output_path ();
-      journal->file_name = xasprintf ("%s%s", output_path, "pspp.jnl");
+      journal.file_name = xasprintf ("%s%s", output_path, "pspp.jnl");
     }
-  return journal->file_name;
+  return journal.file_name;
 }
index 377152d5ce14cd6a3e3a82eeeb664ea5bc80f0e0..6571e95272965beaad7263fbd2c3f3f79a3d5d50 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <stdbool.h>
 
+void journal_init (void);
 void journal_enable (void);
 void journal_disable (void);
 bool journal_is_enabled (void);
index 512239e92a4eb1a8fa038691ef2d23c841b9b0c0..91640fe9cf0fed7c16e8bb2512c7d4c6ed78b1b7 100644 (file)
@@ -94,7 +94,7 @@ initialize (const char *data_file)
 
   psppire_output_window_setup ();
 
-  journal_enable ();
+  journal_init ();
   textdomain (PACKAGE);
 
   psppire_selector_set_default_selection_func (GTK_TYPE_ENTRY, insert_source_row_into_entry);
index 2f11279bf428af8b24a63902ef71f1db8bf83328..c80a6131dea915afc84b2fc1b2943b55cef0440b 100644 (file)
@@ -99,7 +99,7 @@ welcome (void)
         "conditions.\nThere is ABSOLUTELY NO WARRANTY for PSPP; type \"show "
         "warranty.\" for details.\n", stdout);
   puts (stat_version);
-  journal_enable ();
+  journal_init ();
 }
 
 static struct terminal_reader *