1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2007, 2008, 2009, 2010 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/>. */
21 #include <data/gnumeric-reader.h>
22 #include <data/psql-reader.h>
24 #include <data/dictionary.h>
25 #include <data/format.h>
26 #include <data/procedure.h>
27 #include <data/settings.h>
28 #include <language/command.h>
29 #include <language/data-io/data-parser.h>
30 #include <language/data-io/data-reader.h>
31 #include <language/data-io/file-handle.h>
32 #include <language/data-io/placement-parser.h>
33 #include <language/lexer/format-parser.h>
34 #include <language/lexer/lexer.h>
35 #include <libpspp/message.h>
40 #define _(msgid) gettext (msgid)
41 #define N_(msgid) (msgid)
43 static int parse_get_gnm (struct lexer *lexer, struct dataset *);
44 static int parse_get_txt (struct lexer *lexer, struct dataset *);
45 static int parse_get_psql (struct lexer *lexer, struct dataset *);
48 cmd_get_data (struct lexer *lexer, struct dataset *ds)
50 lex_force_match (lexer, '/');
52 if (!lex_force_match_id (lexer, "TYPE"))
55 lex_force_match (lexer, '=');
57 if (lex_match_id (lexer, "GNM"))
58 return parse_get_gnm (lexer, ds);
59 else if (lex_match_id (lexer, "TXT"))
60 return parse_get_txt (lexer, ds);
61 else if (lex_match_id (lexer, "PSQL"))
62 return parse_get_psql (lexer, ds);
64 msg (SE, _("Unsupported TYPE %s"), lex_tokid (lexer));
69 parse_get_psql (struct lexer *lexer, struct dataset *ds)
71 struct psql_read_info psql;
72 psql.allow_clear = false;
76 ds_init_empty (&psql.sql);
78 lex_force_match (lexer, '/');
80 if (!lex_force_match_id (lexer, "CONNECT"))
83 lex_force_match (lexer, '=');
85 if (!lex_force_string (lexer))
88 psql.conninfo = xstrdup (ds_cstr (lex_tokstr (lexer)));
92 while (lex_match (lexer, '/') )
94 if ( lex_match_id (lexer, "ASSUMEDSTRWIDTH"))
96 lex_match (lexer, '=');
97 psql.str_width = lex_integer (lexer);
100 else if ( lex_match_id (lexer, "BSIZE"))
102 lex_match (lexer, '=');
103 psql.bsize = lex_integer (lexer);
106 else if ( lex_match_id (lexer, "UNENCRYPTED"))
108 psql.allow_clear = true;
110 else if (lex_match_id (lexer, "SQL"))
112 lex_match (lexer, '=');
113 if ( ! lex_force_string (lexer) )
116 ds_put_substring (&psql.sql, lex_tokstr (lexer)->ss);
121 struct dictionary *dict = NULL;
122 struct casereader *reader = psql_open_reader (&psql, &dict);
125 proc_set_active_file (ds, reader, dict);
128 ds_destroy (&psql.sql);
129 free (psql.conninfo);
135 ds_destroy (&psql.sql);
136 free (psql.conninfo);
142 parse_get_gnm (struct lexer *lexer, struct dataset *ds)
144 struct gnumeric_read_info gri = {NULL, NULL, NULL, 1, true, -1};
146 lex_force_match (lexer, '/');
148 if (!lex_force_match_id (lexer, "FILE"))
151 lex_force_match (lexer, '=');
153 if (!lex_force_string (lexer))
156 gri.file_name = xstrdup (ds_cstr (lex_tokstr (lexer)));
160 while (lex_match (lexer, '/') )
162 if ( lex_match_id (lexer, "ASSUMEDSTRWIDTH"))
164 lex_match (lexer, '=');
165 gri.asw = lex_integer (lexer);
167 else if (lex_match_id (lexer, "SHEET"))
169 lex_match (lexer, '=');
170 if (lex_match_id (lexer, "NAME"))
172 if ( ! lex_force_string (lexer) )
175 gri.sheet_name = xstrdup (ds_cstr (lex_tokstr (lexer)));
176 gri.sheet_index = -1;
178 else if (lex_match_id (lexer, "INDEX"))
180 gri.sheet_index = lex_integer (lexer);
185 else if (lex_match_id (lexer, "CELLRANGE"))
187 lex_match (lexer, '=');
189 if (lex_match_id (lexer, "FULL"))
191 gri.cell_range = NULL;
192 lex_put_back (lexer, T_ID);
194 else if (lex_match_id (lexer, "RANGE"))
196 if ( ! lex_force_string (lexer) )
199 gri.cell_range = xstrdup (ds_cstr (lex_tokstr (lexer)));
204 else if (lex_match_id (lexer, "READNAMES"))
206 lex_match (lexer, '=');
208 if ( lex_match_id (lexer, "ON"))
210 gri.read_names = true;
212 else if (lex_match_id (lexer, "OFF"))
214 gri.read_names = false;
218 lex_put_back (lexer, T_ID);
228 struct dictionary *dict = NULL;
229 struct casereader *reader = gnumeric_open_reader (&gri, &dict);
232 proc_set_active_file (ds, reader, dict);
235 free (gri.file_name);
236 free (gri.sheet_name);
237 free (gri.cell_range);
242 free (gri.file_name);
243 free (gri.sheet_name);
244 free (gri.cell_range);
249 set_type (struct data_parser *parser, const char *subcommand,
250 enum data_parser_type type, bool *has_type)
254 data_parser_set_type (parser, type);
257 else if (type != data_parser_get_type (parser))
259 msg (SE, _("%s is allowed only with %s arrangement, but %s arrangement "
260 "was stated or implied earlier in this command."),
262 type == DP_FIXED ? "FIXED" : "DELIMITED",
263 type == DP_FIXED ? "DELIMITED" : "FIXED");
270 parse_get_txt (struct lexer *lexer, struct dataset *ds)
272 struct data_parser *parser = NULL;
273 struct dictionary *dict = dict_create ();
274 struct file_handle *fh = NULL;
275 struct dfm_reader *reader = NULL;
278 enum data_parser_type type;
281 lex_force_match (lexer, '/');
283 if (!lex_force_match_id (lexer, "FILE"))
285 lex_force_match (lexer, '=');
286 fh = fh_parse (lexer, FH_REF_FILE | FH_REF_INLINE);
290 parser = data_parser_create (dict);
292 data_parser_set_type (parser, DP_DELIMITED);
293 data_parser_set_span (parser, false);
294 data_parser_set_quotes (parser, ss_empty ());
295 data_parser_set_empty_line_has_field (parser, true);
299 if (!lex_force_match (lexer, '/'))
302 if (lex_match_id (lexer, "ARRANGEMENT"))
306 lex_match (lexer, '=');
307 if (lex_match_id (lexer, "FIXED"))
308 ok = set_type (parser, "ARRANGEMENT=FIXED", DP_FIXED, &has_type);
309 else if (lex_match_id (lexer, "DELIMITED"))
310 ok = set_type (parser, "ARRANGEMENT=DELIMITED",
311 DP_DELIMITED, &has_type);
314 lex_error (lexer, _("expecting %s or %s"), "FIXED", "DELIMITED");
320 else if (lex_match_id (lexer, "FIRSTCASE"))
322 lex_match (lexer, '=');
323 if (!lex_force_int (lexer))
325 if (lex_integer (lexer) < 1)
327 msg (SE, _("Value of FIRSTCASE must be 1 or greater."));
330 data_parser_set_skip (parser, lex_integer (lexer) - 1);
333 else if (lex_match_id_n (lexer, "DELCASE", 4))
335 if (!set_type (parser, "DELCASE", DP_DELIMITED, &has_type))
337 lex_match (lexer, '=');
338 if (lex_match_id (lexer, "LINE"))
339 data_parser_set_span (parser, false);
340 else if (lex_match_id (lexer, "VARIABLES"))
342 data_parser_set_span (parser, true);
344 /* VARIABLES takes an integer argument, but for no
345 good reason. We just ignore it. */
346 if (!lex_force_int (lexer))
352 lex_error (lexer, _("expecting %s or %s"), "LINE", "VARIABLES");
356 else if (lex_match_id (lexer, "FIXCASE"))
358 if (!set_type (parser, "FIXCASE", DP_FIXED, &has_type))
360 lex_match (lexer, '=');
361 if (!lex_force_int (lexer))
363 if (lex_integer (lexer) < 1)
365 msg (SE, _("Value of FIXCASE must be at least 1."));
368 data_parser_set_records (parser, lex_integer (lexer));
371 else if (lex_match_id (lexer, "IMPORTCASES"))
373 lex_match (lexer, '=');
374 if (lex_match (lexer, T_ALL))
376 data_parser_set_case_limit (parser, -1);
377 data_parser_set_case_percent (parser, 100);
379 else if (lex_match_id (lexer, "FIRST"))
381 if (!lex_force_int (lexer))
383 if (lex_integer (lexer) < 1)
385 msg (SE, _("Value of FIRST must be at least 1."));
388 data_parser_set_case_limit (parser, lex_integer (lexer));
391 else if (lex_match_id (lexer, "PERCENT"))
393 if (!lex_force_int (lexer))
395 if (lex_integer (lexer) < 1 || lex_integer (lexer) > 100)
397 msg (SE, _("Value of PERCENT must be between 1 and 100."));
400 data_parser_set_case_percent (parser, lex_integer (lexer));
404 else if (lex_match_id_n (lexer, "DELIMITERS", 4))
406 struct string hard_seps = DS_EMPTY_INITIALIZER;
407 const char *soft_seps = "";
411 if (!set_type (parser, "DELIMITERS", DP_DELIMITED, &has_type))
413 lex_match (lexer, '=');
415 if (!lex_force_string (lexer))
418 s = ds_ss (lex_tokstr (lexer));
419 if (ss_match_string (&s, ss_cstr ("\\t")))
420 ds_put_cstr (&hard_seps, "\t");
421 if (ss_match_string (&s, ss_cstr ("\\\\")))
422 ds_put_cstr (&hard_seps, "\\");
423 while ((c = ss_get_char (&s)) != EOF)
427 ds_put_char (&hard_seps, c);
428 data_parser_set_soft_delimiters (parser, ss_cstr (soft_seps));
429 data_parser_set_hard_delimiters (parser, ds_ss (&hard_seps));
430 ds_destroy (&hard_seps);
434 else if (lex_match_id (lexer, "QUALIFIERS"))
436 if (!set_type (parser, "QUALIFIERS", DP_DELIMITED, &has_type))
438 lex_match (lexer, '=');
440 if (!lex_force_string (lexer))
443 if (settings_get_syntax () == COMPATIBLE
444 && ds_length (lex_tokstr (lexer)) != 1)
446 msg (SE, _("In compatible syntax mode, the QUALIFIER string "
447 "must contain exactly one character."));
451 data_parser_set_quotes (parser, ds_ss (lex_tokstr (lexer)));
454 else if (settings_get_syntax () == ENHANCED
455 && lex_match_id (lexer, "ESCAPE"))
456 data_parser_set_quote_escape (parser, true);
457 else if (lex_match_id (lexer, "VARIABLES"))
461 lex_error (lexer, _("expecting %s"), "VARIABLES");
465 lex_match (lexer, '=');
469 type = data_parser_get_type (parser);
472 char name[VAR_NAME_LEN + 1];
473 struct fmt_spec input, output;
477 while (type == DP_FIXED && lex_match (lexer, '/'))
479 if (!lex_force_int (lexer))
481 if (lex_integer (lexer) < record)
483 msg (SE, _("The record number specified, %ld, is at or "
484 "before the previous record, %d. Data "
485 "fields must be listed in order of "
486 "increasing record number."),
487 lex_integer (lexer), record);
490 if (lex_integer (lexer) > data_parser_get_records (parser))
492 msg (SE, _("The record number specified, %ld, exceeds "
493 "the number of records per case specified "
495 lex_integer (lexer), data_parser_get_records (parser));
498 record = lex_integer (lexer);
502 if (!lex_force_id (lexer))
504 strcpy (name, lex_tokid (lexer));
507 if (type == DP_DELIMITED)
509 if (!parse_format_specifier (lexer, &input)
510 || !fmt_check_input (&input))
515 if (!parse_column_range (lexer, 0, &fc, &lc, NULL))
517 if (!parse_format_specifier_name (lexer, &input.type))
519 input.w = lc - fc + 1;
521 if (!fmt_check_input (&input))
524 output = fmt_for_output_from_input (&input);
526 v = dict_create_var (dict, name, fmt_var_width (&input));
529 msg (SE, _("%s is a duplicate variable name."), name);
532 var_set_both_formats (v, &output);
534 if (type == DP_DELIMITED)
535 data_parser_add_delimited_field (parser, &input,
536 var_get_case_index (v),
539 data_parser_add_fixed_field (parser, &input, var_get_case_index (v),
542 while (lex_token (lexer) != '.');
544 reader = dfm_open_reader (fh, lexer);
548 data_parser_make_active_file (parser, ds, reader, dict);
553 data_parser_destroy (parser);
556 return CMD_CASCADING_FAILURE;