1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2007, 2010, 2012 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "output/journal.h"
25 #include "data/file-name.h"
26 #include "libpspp/cast.h"
27 #include "libpspp/str.h"
28 #include "output/driver-provider.h"
29 #include "output/message-item.h"
30 #include "output/text-item.h"
33 #include "gl/fwriteerror.h"
34 #include "gl/xalloc.h"
37 #define _(msgid) gettext (msgid)
41 struct output_driver driver;
46 static const struct output_driver_class journal_class;
48 /* Journal driver, if journaling is enabled. */
49 static struct journal_driver *journal;
51 /* Name of journal file. */
52 static char *journal_file_name;
54 static struct journal_driver *
55 journal_driver_cast (struct output_driver *driver)
57 assert (driver->class == &journal_class);
58 return UP_CAST (driver, struct journal_driver, driver);
64 if (journal != NULL && journal->file != NULL)
66 if (fwriteerror (journal->file))
67 error (0, errno, _("error writing output file `%s'"),
74 journal_destroy (struct output_driver *driver)
76 struct journal_driver *j = journal_driver_cast (driver);
79 free (j->command_name);
86 journal_output (struct journal_driver *j, const char *s)
90 j->file = fopen (journal_get_file_name (), "a");
93 error (0, errno, _("error opening output file `%s'"),
94 journal_get_file_name ());
95 output_driver_destroy (&j->driver);
100 fprintf (j->file, "%s\n", s);
102 /* Flush the journal in case the syntax we're about to write
103 causes a crash. Having the syntax already written to disk
104 makes postmortem analysis of the problem possible. */
109 journal_submit (struct output_driver *driver, const struct output_item *item)
111 struct journal_driver *j = journal_driver_cast (driver);
113 output_driver_track_current_command (item, &j->command_name);
115 if (is_text_item (item))
117 const struct text_item *text_item = to_text_item (item);
118 enum text_item_type type = text_item_get_type (text_item);
120 if (type == TEXT_ITEM_SYNTAX)
121 journal_output (j, text_item_get_text (text_item));
123 else if (is_message_item (item))
125 const struct message_item *message_item = to_message_item (item);
126 const struct msg *msg = message_item_get_msg (message_item);
127 char *s = msg_to_string (msg, j->command_name);
128 journal_output (j, s);
133 static const struct output_driver_class journal_class =
141 /* Enables journaling. */
143 journal_enable (void)
147 /* Create journal driver. */
148 journal = xzalloc (sizeof *journal);
149 output_driver_init (&journal->driver, &journal_class, "journal",
150 SETTINGS_DEVICE_UNFILTERED);
151 journal->file = NULL;
152 journal->command_name = NULL;
154 /* Register journal driver. */
155 output_driver_register (&journal->driver);
159 /* Disables journaling. */
161 journal_disable (void)
164 output_driver_destroy (&journal->driver);
167 /* Returns true if journaling is enabled, false otherwise. */
169 journal_is_enabled (void)
171 return journal != NULL;
174 /* Sets the name of the journal file to FILE_NAME. */
176 journal_set_file_name (const char *file_name)
179 free (journal_file_name);
180 journal_file_name = xstrdup (file_name);
183 /* Returns the name of the journal file. The caller must not modify or free
184 the returned string. */
186 journal_get_file_name (void)
188 if (journal_file_name == NULL)
190 const char *output_path = default_output_path ();
191 journal_file_name = xasprintf ("%s%s", output_path, "pspp.jnl");
193 return journal_file_name;