1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000 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 "syntax-file.h"
25 #include <data/file-name.h>
26 #include <data/settings.h>
27 #include <data/variable.h>
28 #include <language/command.h>
29 #include <language/lexer/lexer.h>
30 #include <libpspp/alloc.h>
31 #include <libpspp/assertion.h>
32 #include <libpspp/message.h>
33 #include <libpspp/message.h>
34 #include <libpspp/str.h>
35 #include <libpspp/verbose-msg.h>
36 #include <libpspp/version.h>
37 #include <output/table.h>
39 #include <libpspp/ll.h>
44 #define _(msgid) gettext (msgid)
46 #include <libpspp/getl.h>
49 struct syntax_file_source
51 struct getl_interface parent ;
55 /* Current location. */
56 char *fn; /* File name. */
57 int ln; /* Line number. */
61 name (const struct getl_interface *s)
63 const struct syntax_file_source *sfs = (const struct syntax_file_source *) s;
68 line_number (const struct getl_interface *s)
70 const struct syntax_file_source *sfs = (const struct syntax_file_source *) s;
75 /* Reads a line from syntax file source S into LINE.
76 Returns true if successful, false at end of file. */
78 read_syntax_file (struct getl_interface *s,
81 struct syntax_file_source *sfs = (struct syntax_file_source *) s;
83 /* Open file, if not yet opened. */
84 if (sfs->syntax_file == NULL)
86 verbose_msg (1, _("opening \"%s\" as syntax file"), sfs->fn);
87 sfs->syntax_file = fn_open (sfs->fn, "r");
89 if (sfs->syntax_file == NULL)
91 msg (ME, _("Opening `%s': %s."), sfs->fn, strerror (errno));
96 /* Read line from file and remove new-line.
97 Skip initial "#! /usr/bin/pspp" line. */
101 if (!ds_read_line (line, sfs->syntax_file))
103 if (ferror (sfs->syntax_file))
104 msg (ME, _("Reading `%s': %s."), sfs->fn, strerror (errno));
107 ds_chomp (line, '\n');
109 while (sfs->ln == 1 && !memcmp (ds_cstr (line), "#!", 2));
111 /* Echo to listing file, if configured to do so. */
113 tab_output_text (TAB_LEFT | TAB_FIX, ds_cstr (line));
119 syntax_close (struct getl_interface *s)
121 struct syntax_file_source *sfs = (struct syntax_file_source *) s;
123 if (sfs->syntax_file && EOF == fn_close (sfs->fn, sfs->syntax_file))
124 msg (MW, _("Closing `%s': %s."), sfs->fn, strerror (errno));
130 always_false (const struct getl_interface *s UNUSED)
136 /* Creates a syntax file source with file name FN. */
137 struct getl_interface *
138 create_syntax_file_source (const char *fn)
140 struct syntax_file_source *ss = xzalloc (sizeof (*ss));
142 ss->fn = xstrdup (fn);
144 ss->parent.interactive = always_false;
145 ss->parent.read = read_syntax_file ;
146 ss->parent.filter = NULL;
147 ss->parent.close = syntax_close ;
148 ss->parent.name = name ;
149 ss->parent.location = line_number;
151 return (struct getl_interface *) ss;