94dff952f1ea6a42dbd8a154d62e4c39c4a48f72
[pspp-builds.git] / src / data / any-writer.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2006 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #include <config.h>
18 #include "any-writer.h"
19 #include <assert.h>
20 #include <errno.h>
21 #include <stdbool.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <libpspp/assertion.h>
25 #include <libpspp/message.h>
26 #include "file-handle-def.h"
27 #include "file-name.h"
28 #include "por-file-writer.h"
29 #include "sys-file-writer.h"
30 #include <libpspp/str.h>
31 #include "scratch-writer.h"
32 #include "xalloc.h"
33
34 #include "gettext.h"
35 #define _(msgid) gettext (msgid)
36
37 /* Creates and returns a writer for HANDLE with the given DICT. */
38 struct casewriter *
39 any_writer_open (struct file_handle *handle, struct dictionary *dict)
40 {
41   switch (fh_get_referent (handle))
42     {
43     case FH_REF_FILE:
44       {
45         struct casewriter *writer;
46         char *extension;
47
48         extension = fn_extension (fh_get_file_name (handle));
49         str_lowercase (extension);
50
51         if (!strcmp (extension, ".por"))
52           writer = pfm_open_writer (handle, dict,
53                                     pfm_writer_default_options ());
54         else
55           writer = sfm_open_writer (handle, dict,
56                                     sfm_writer_default_options ());
57         free (extension);
58
59         return writer;
60       }
61
62     case FH_REF_INLINE:
63       msg (ME, _("The inline file is not allowed here."));
64       return NULL;
65
66     case FH_REF_SCRATCH:
67       return scratch_writer_open (handle, dict);
68     }
69
70   NOT_REACHED ();
71 }