/* PSPP - a program for statistical analysis. Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "xalloc.h" #include "gettext.h" #define _(msgid) gettext (msgid) /* (headers) */ /* (specification) "FILE HANDLE" (fh_): name=string; lrecl=integer; tabwidth=integer "x>=0" "%s must be nonnegative"; mode=mode:!character/binary/image/360/scratch; recform=recform:fixed/f/variable/v/spanned/vs. */ /* (declarations) */ /* (functions) */ int cmd_file_handle (struct lexer *lexer, struct dataset *ds) { char handle_name[VAR_NAME_LEN + 1]; struct cmd_file_handle cmd; struct file_handle *handle; if (!lex_force_id (lexer)) return CMD_CASCADING_FAILURE; str_copy_trunc (handle_name, sizeof handle_name, lex_tokid (lexer)); handle = fh_from_id (handle_name); if (handle != NULL) { msg (SE, _("File handle %s is already defined. " "Use CLOSE FILE HANDLE before redefining a file handle."), handle_name); return CMD_CASCADING_FAILURE; } lex_get (lexer); if (!lex_force_match (lexer, '/')) return CMD_CASCADING_FAILURE; if (!parse_file_handle (lexer, ds, &cmd, NULL)) return CMD_CASCADING_FAILURE; if (lex_end_of_command (lexer) != CMD_SUCCESS) goto lossage; if (cmd.mode != FH_SCRATCH) { struct fh_properties properties = *fh_default_properties (); if (cmd.s_name == NULL) { lex_sbc_missing (lexer, "NAME"); goto lossage; } switch (cmd.mode) { case FH_CHARACTER: properties.mode = FH_MODE_TEXT; if (cmd.sbc_tabwidth) properties.tab_width = cmd.n_tabwidth[0]; break; case FH_IMAGE: properties.mode = FH_MODE_FIXED; break; case FH_BINARY: properties.mode = FH_MODE_VARIABLE; break; case FH_360: properties.encoding = "PSPP-LEGACY-EBCDIC"; if (cmd.recform == FH_FIXED || cmd.recform == FH_F) properties.mode = FH_MODE_FIXED; else if (cmd.recform == FH_VARIABLE || cmd.recform == FH_V) { properties.mode = FH_MODE_360_VARIABLE; properties.record_width = 8192; } else if (cmd.recform == FH_SPANNED || cmd.recform == FH_VS) { properties.mode = FH_MODE_360_SPANNED; properties.record_width = 8192; } else { msg (SE, _("RECFORM must be specified with MODE=360.")); goto lossage; } break; default: NOT_REACHED (); } if (properties.mode == FH_MODE_FIXED || cmd.n_lrecl[0] != LONG_MIN) { if (cmd.n_lrecl[0] == LONG_MIN) msg (SE, _("The specified file mode requires LRECL. " "Assuming %d-character records."), properties.record_width); else if (cmd.n_lrecl[0] < 1 || cmd.n_lrecl[0] >= (1UL << 31)) msg (SE, _("Record length (%ld) must be between 1 and %lu bytes. " "Assuming %d-character records."), cmd.n_lrecl[0], (1UL << 31) - 1, properties.record_width); else properties.record_width = cmd.n_lrecl[0]; } fh_create_file (handle_name, cmd.s_name, &properties); } else fh_create_scratch (handle_name); free_file_handle (&cmd); return CMD_SUCCESS; lossage: free_file_handle (&cmd); return CMD_CASCADING_FAILURE; } int cmd_close_file_handle (struct lexer *lexer, struct dataset *ds UNUSED) { struct file_handle *handle; if (!lex_force_id (lexer)) return CMD_CASCADING_FAILURE; handle = fh_from_id (lex_tokid (lexer)); if (handle == NULL) return CMD_CASCADING_FAILURE; fh_unname (handle); return CMD_SUCCESS; } /* Returns the name for REFERENT. */ static const char * referent_name (enum fh_referent referent) { switch (referent) { case FH_REF_FILE: return _("file"); case FH_REF_INLINE: return _("inline file"); case FH_REF_SCRATCH: return _("scratch file"); default: NOT_REACHED (); } } /* Parses a file handle name, which may be a file name as a string or a file handle name as an identifier. The allowed types of file handle are restricted to those in REFERENT_MASK. Returns the file handle when successful, a null pointer on failure. The caller is responsible for fh_unref()'ing the returned file handle when it is no longer needed. */ struct file_handle * fh_parse (struct lexer *lexer, enum fh_referent referent_mask) { struct file_handle *handle; if (lex_match_id (lexer, "INLINE")) handle = fh_inline_file (); else { if (lex_token (lexer) != T_ID && lex_token (lexer) != T_STRING) { lex_error (lexer, _("expecting a file name or handle name")); return NULL; } handle = NULL; if (lex_token (lexer) == T_ID) handle = fh_from_id (lex_tokid (lexer)); if (handle == NULL) { if (lex_token (lexer) != T_ID || lex_tokid (lexer)[0] != '#' || settings_get_syntax () != ENHANCED) handle = fh_create_file (NULL, ds_cstr (lex_tokstr (lexer)), fh_default_properties ()); else handle = fh_create_scratch (lex_tokid (lexer)); } lex_get (lexer); } if (!(fh_get_referent (handle) & referent_mask)) { msg (SE, _("Handle for %s not allowed here."), referent_name (fh_get_referent (handle))); fh_unref (handle); return NULL; } return handle; } /* Local variables: mode: c End: */