1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2006 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/>. */
18 #include "any-writer.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"
35 #define _(msgid) gettext (msgid)
37 /* Creates and returns a writer for HANDLE with the given DICT. */
39 any_writer_open (struct file_handle *handle, struct dictionary *dict)
41 switch (fh_get_referent (handle))
45 struct casewriter *writer;
48 extension = fn_extension (fh_get_file_name (handle));
49 str_lowercase (extension);
51 if (!strcmp (extension, ".por"))
52 writer = pfm_open_writer (handle, dict,
53 pfm_writer_default_options ());
55 writer = sfm_open_writer (handle, dict,
56 sfm_writer_default_options ());
63 msg (ME, _("The inline file is not allowed here."));
67 return scratch_writer_open (handle, dict);