X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fmsglog.c;h=0d0329571045daa79b48190e3a22b1600250f9c7;hb=feba48309a227fe40feb3a87cbe900015021ac73;hp=4042b460e7e9e2b701195240cc1341d41723621b;hpb=173d1687aea88e0e5e1b1d8615ed68ebefb15d08;p=pspp diff --git a/src/output/msglog.c b/src/output/msglog.c index 4042b460e7..0d03295710 100644 --- a/src/output/msglog.c +++ b/src/output/msglog.c @@ -24,12 +24,13 @@ #include #include "data/file-name.h" +#include "data/file-handle-def.h" #include "data/settings.h" #include "libpspp/cast.h" +#include "libpspp/message.h" #include "output/driver-provider.h" #include "output/message-item.h" -#include "gl/error.h" #include "gl/fwriteerror.h" #include "gl/xalloc.h" @@ -40,7 +41,7 @@ struct msglog_driver { struct output_driver driver; FILE *file; - char *file_name; + struct file_handle *handle; char *command_name; }; @@ -60,10 +61,12 @@ msglog_create (const char *file_name) struct msglog_driver *ml; FILE *file; - file = fn_open (file_name, "w"); + struct file_handle *handle = fh_create_file (NULL, file_name, NULL, fh_default_properties ()); + + file = fn_open (handle, "w"); if (file == NULL) { - error (0, errno, _("error opening output file `%s'"), file_name); + msg_error (errno, _("error opening output file `%s'"), file_name); return NULL; } @@ -72,9 +75,9 @@ msglog_create (const char *file_name) : SETTINGS_DEVICE_UNFILTERED); ml = xzalloc (sizeof *ml); + ml->handle = handle; output_driver_init (&ml->driver, &msglog_class, file_name, type); ml->file = file; - ml->file_name = xstrdup (file_name); ml->command_name = NULL; output_driver_register (&ml->driver); @@ -87,9 +90,9 @@ msglog_destroy (struct output_driver *driver) { struct msglog_driver *ml = msglog_driver_cast (driver); - fn_close (ml->file_name, ml->file); - free (ml->file_name); + fn_close (ml->handle, ml->file); free (ml->command_name); + fh_unref (ml->handle); free (ml); }