posix-xprintf-functions.patch from patch #6230.
[pspp] / src / language / lexer / lexer.c
index 7db9ab5e27b86fd359bc12906f32b416f59340dd..79657df7d52793ec2b9cc8f385947de13bac3203 100644 (file)
@@ -1,21 +1,18 @@
-/* PSPP - computes sample statistics.
+/* PSPP - a program for statistical analysis.
    Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
-   Written by Ben Pfaff <blp@gnu.org>.
 
-   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 2 of the
-   License, or (at your option) any later version.
+   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.
+   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, write to the Free Software
-   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA. */
+   along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
 #include <config.h>
 #include "lexer.h"
 #include <limits.h>
 #include <math.h>
 #include <stdarg.h>
+#include <stdint.h>
 #include <stdlib.h>
-#include <libpspp/alloc.h>
 #include <libpspp/assertion.h>
 #include <language/command.h>
 #include <libpspp/message.h>
-#include <libpspp/magic.h>
 #include <data/settings.h>
 #include <libpspp/getl.h>
 #include <libpspp/str.h>
+#include <output/journal.h>
 
-#include "size_max.h"
+#include "xalloc.h"
 
 #include "gettext.h"
 #define _(msgid) gettext (msgid)
@@ -45,7 +42,8 @@
 #define DUMP_TOKENS 0
 
 
-struct lexer 
+
+struct lexer
 {
   struct string line_buffer;
 
@@ -57,7 +55,7 @@ struct lexer
   char tokid [LONG_NAME_LEN + 1];   /* T_ID: the identifier. */
 
   struct string tokstr;   /* T_ID, T_STRING: token string value.
-                           For T_ID, this is not truncated as is 
+                           For T_ID, this is not truncated as is
                            tokid. */
 
   char *prog; /* Pointer to next token in line_buffer. */
@@ -65,7 +63,7 @@ struct lexer
 
   int put_token ; /* If nonzero, next token returned by lex_get().
                    Used only in exceptional circumstances. */
-  
+
   struct string put_tokstr;
   double put_tokval;
 };
@@ -74,7 +72,7 @@ struct lexer
 static int parse_id (struct lexer *);
 
 /* How a string represents its contents. */
-enum string_type 
+enum string_type
   {
     CHARACTER_STRING,   /* Characters. */
     BINARY_STRING,      /* Binary digits. */
@@ -110,11 +108,23 @@ lex_get_source_stream (const struct lexer *lex)
   return lex->ss;
 }
 
+enum syntax_mode
+lex_current_syntax_mode (const struct lexer *lex)
+{
+  return source_stream_current_syntax_mode (lex->ss);
+}
+
+enum error_mode
+lex_current_error_mode (const struct lexer *lex)
+{
+  return source_stream_current_error_mode (lex->ss);
+}
+
 
 void
 lex_destroy (struct lexer *lexer)
 {
-  if ( NULL != lexer ) 
+  if ( NULL != lexer )
     {
       ds_destroy (&lexer->put_tokstr);
       ds_destroy (&lexer->tokstr);
@@ -130,7 +140,7 @@ lex_destroy (struct lexer *lexer)
 /* Copies put_token, lexer->put_tokstr, put_tokval into token, tokstr,
    tokval, respectively, and sets tokid appropriately. */
 static void
-restore_token (struct lexer *lexer) 
+restore_token (struct lexer *lexer)
 {
   assert (lexer->put_token != 0);
   lexer->token = lexer->put_token;
@@ -143,7 +153,7 @@ restore_token (struct lexer *lexer)
 /* Copies token, tokstr, lexer->tokval into lexer->put_token, put_tokstr,
    put_lexer->tokval respectively. */
 static void
-save_token (struct lexer *lexer) 
+save_token (struct lexer *lexer)
 {
   lexer->put_token = lexer->token;
   ds_assign_string (&lexer->put_tokstr, &lexer->tokstr);
@@ -215,7 +225,7 @@ lex_get (struct lexer *lexer)
 
       /* Actually parse the token. */
       ds_clear (&lexer->tokstr);
-      
+
       switch (*lexer->prog)
        {
        case '-': case '.':
@@ -244,9 +254,9 @@ lex_get (struct lexer *lexer)
                  }
                 lexer->token = T_NEG_NUM;
              }
-            else 
+            else
               lexer->token = T_POS_NUM;
-                
+
            /* Parse the number, copying it into tokstr. */
            while (isdigit ((unsigned char) *lexer->prog))
              ds_put_char (&lexer->tokstr, *lexer->prog++);
@@ -349,26 +359,26 @@ lex_get (struct lexer *lexer)
           else
             lexer->token = parse_id (lexer);
           break;
-          
+
         case 'o': case 'O':
           if (lexer->prog[1] == '\'' || lexer->prog[1] == '"')
             lexer->token = parse_string (lexer, OCTAL_STRING);
           else
             lexer->token = parse_id (lexer);
           break;
-          
+
         case 'x': case 'X':
           if (lexer->prog[1] == '\'' || lexer->prog[1] == '"')
             lexer->token = parse_string (lexer, HEX_STRING);
           else
             lexer->token = parse_id (lexer);
           break;
-          
+
        default:
-          if (lex_is_id1 (*lexer->prog)) 
+          if (lex_is_id1 (*lexer->prog))
             {
               lexer->token = parse_id (lexer);
-              break; 
+              break;
             }
           else
             {
@@ -376,7 +386,7 @@ lex_get (struct lexer *lexer)
                 msg (SE, _("Bad character in input: `%c'."), *lexer->prog++);
               else
                 msg (SE, _("Bad character in input: `\\%o'."), *lexer->prog++);
-              continue; 
+              continue;
             }
         }
       break;
@@ -391,7 +401,7 @@ lex_get (struct lexer *lexer)
    tokstr.
    Returns the correct token type. */
 static int
-parse_id (struct lexer *lexer) 
+parse_id (struct lexer *lexer)
 {
   struct substring rest_of_line
     = ss_substr (ds_ss (&lexer->line_buffer),
@@ -409,7 +419,7 @@ parse_id (struct lexer *lexer)
 /* Reports an error to the effect that subcommand SBC may only be
    specified once. */
 void
-lex_sbc_only_once (const char *sbc) 
+lex_sbc_only_once (const char *sbc)
 {
   msg (SE, _("Subcommand %s may only be specified once."), sbc);
 }
@@ -417,7 +427,7 @@ lex_sbc_only_once (const char *sbc)
 /* Reports an error to the effect that subcommand SBC is
    missing. */
 void
-lex_sbc_missing (struct lexer *lexer, const char *sbc) 
+lex_sbc_missing (struct lexer *lexer, const char *sbc)
 {
   lex_error (lexer, _("missing required subcommand %s"), sbc);
 }
@@ -443,7 +453,7 @@ lex_error (struct lexer *lexer, const char *message, ...)
     {
       char buf[1024];
       va_list args;
-      
+
       va_start (args, message);
       vsnprintf (buf, 1024, message, args);
       va_end (args);
@@ -474,11 +484,20 @@ lex_end_of_command (struct lexer *lexer)
 
 /* Returns true if the current token is a number. */
 bool
-lex_is_number (struct lexer *lexer) 
+lex_is_number (struct lexer *lexer)
 {
   return lexer->token == T_POS_NUM || lexer->token == T_NEG_NUM;
 }
 
+
+/* Returns true if the current token is a string. */
+bool
+lex_is_string (struct lexer *lexer)
+{
+  return lexer->token == T_STRING;
+}
+
+
 /* Returns the value of the current token, which must be a
    floating point number. */
 double
@@ -493,8 +512,7 @@ bool
 lex_is_integer (struct lexer *lexer)
 {
   return (lex_is_number (lexer)
-         && lexer->tokval != NOT_LONG
-         && lexer->tokval >= LONG_MIN
+         && lexer->tokval > LONG_MIN
          && lexer->tokval <= LONG_MAX
          && floor (lexer->tokval) == lexer->tokval);
 }
@@ -507,7 +525,7 @@ lex_integer (struct lexer *lexer)
   assert (lex_is_integer (lexer));
   return lexer->tokval;
 }
-\f  
+\f
 /* Token matching functions. */
 
 /* If TOK is the current token, skips it and returns true
@@ -616,7 +634,7 @@ lex_force_int (struct lexer *lexer)
       return false;
     }
 }
-       
+
 /* If this token is a number, does nothing and returns true.
    Otherwise, reports an error and returns false. */
 bool
@@ -628,7 +646,7 @@ lex_force_num (struct lexer *lexer)
   lex_error (lexer, _("expecting number"));
   return false;
 }
-       
+
 /* If this token is an identifier, does nothing and returns true.
    Otherwise, reports an error and returns false. */
 bool
@@ -672,7 +690,7 @@ lex_look_ahead (struct lexer *lexer)
          else if (!lex_get_line (lexer))
             return 0;
 
-         if (lexer->put_token) 
+         if (lexer->put_token)
            return lexer->put_token;
        }
 
@@ -711,29 +729,33 @@ lex_put_back_id (struct lexer *lexer, const char *id)
 
 /* Returns the entire contents of the current line. */
 const char *
-lex_entire_line (struct lexer *lexer)
+lex_entire_line (const struct lexer *lexer)
 {
   return ds_cstr (&lexer->line_buffer);
 }
 
 const struct string *
-lex_entire_line_ds (struct lexer *lexer)
+lex_entire_line_ds (const struct lexer *lexer)
 {
   return &lexer->line_buffer;
 }
 
 /* As lex_entire_line(), but only returns the part of the current line
-   that hasn't already been tokenized.
-   If END_DOT is non-null, stores nonzero into *END_DOT if the line
-   ends with a terminal dot, or zero if it doesn't. */
+   that hasn't already been tokenized. */
 const char *
-lex_rest_of_line (struct lexer *lexer, int *end_dot)
+lex_rest_of_line (const struct lexer *lexer)
 {
-  if (end_dot)
-    *end_dot = lexer->dot;
   return lexer->prog;
 }
 
+/* Returns true if the current line ends in a terminal dot,
+   false otherwise. */
+bool
+lex_end_dot (const struct lexer *lexer)
+{
+  return lexer->dot;
+}
+
 /* Causes the rest of the current input line to be ignored for
    tokenization purposes. */
 void
@@ -754,15 +776,15 @@ lex_discard_line (struct lexer *lexer)
    the user doesn't want to finish typing a command that will be
    ignored anyway. */
 void
-lex_discard_rest_of_command (struct lexer *lexer) 
+lex_discard_rest_of_command (struct lexer *lexer)
 {
   if (!getl_is_interactive (lexer->ss))
     {
       while (lexer->token != T_STOP && lexer->token != '.')
        lex_get (lexer);
     }
-  else 
-    lex_discard_line (lexer); 
+  else
+    lex_discard_line (lexer);
 }
 \f
 /* Weird line reading functions. */
@@ -788,7 +810,7 @@ strip_comments (struct string *string)
           else if (*cp == '\'' || *cp == '"')
             quote = *cp;
         }
-      
+
       /* If we're not inside a quotation, check for comment. */
       if (quote == EOF)
         {
@@ -807,7 +829,7 @@ strip_comments (struct string *string)
               continue;
             }
         }
-      
+
       /* Check commenting. */
       if (in_comment)
         *cp = ' ';
@@ -821,7 +843,7 @@ strip_comments (struct string *string)
    *LINE_STARTS_COMMAND and *LINE_ENDS_COMMAND appropriately. */
 void
 lex_preprocess_line (struct string *line,
-                     enum getl_syntax syntax,
+                     enum syntax_mode syntax,
                      bool *line_starts_command,
                      bool *line_ends_command)
 {
@@ -834,7 +856,7 @@ lex_preprocess_line (struct string *line,
     {
       int first = ds_first (line);
       *line_starts_command = !isspace (first);
-      if (first == '+' || first == '-') 
+      if (first == '+' || first == '-')
         *ds_data (line) = ' ';
     }
 }
@@ -842,12 +864,13 @@ lex_preprocess_line (struct string *line,
 /* Reads a line, without performing any preprocessing.
    Sets *SYNTAX, if SYNTAX is non-null, to the line's syntax
    mode. */
-bool 
-lex_get_line_raw (struct lexer *lexer, enum getl_syntax *syntax)
+bool
+lex_get_line_raw (struct lexer *lexer)
 {
-  enum getl_syntax dummy;
-  bool ok = getl_read_line (lexer->ss, &lexer->line_buffer,
-                              syntax != NULL ? syntax : &dummy);
+  bool ok = getl_read_line (lexer->ss, &lexer->line_buffer);
+  enum syntax_mode mode = lex_current_syntax_mode (lexer);
+  journal_write (mode == GETL_BATCH, ds_cstr (&lexer->line_buffer));
+
   return ok;
 }
 
@@ -858,15 +881,15 @@ bool
 lex_get_line (struct lexer *lexer)
 {
   bool line_starts_command;
-  enum getl_syntax syntax;
 
-  if (!lex_get_line_raw (lexer, &syntax))
+  if (!lex_get_line_raw (lexer))
     {
       lexer->prog = NULL;
-    return false;
+      return false;
     }
 
-  lex_preprocess_line (&lexer->line_buffer, syntax,
+  lex_preprocess_line (&lexer->line_buffer,
+                      lex_current_syntax_mode (lexer),
                        &line_starts_command, &lexer->dot);
 
   if (line_starts_command)
@@ -902,7 +925,7 @@ char *
 lex_token_representation (struct lexer *lexer)
 {
   char *token_rep;
-  
+
   switch (lexer->token)
     {
     case T_ID:
@@ -922,7 +945,7 @@ lex_token_representation (struct lexer *lexer)
              hexstring = 1;
              break;
            }
-             
+
        token_rep = xmalloc (2 + ds_length (&lexer->tokstr) * 2 + 1 + 1);
 
        dp = token_rep;
@@ -945,7 +968,7 @@ lex_token_representation (struct lexer *lexer)
            }
        *dp++ = '\'';
        *dp = '\0';
-       
+
        return token_rep;
       }
     break;
@@ -961,7 +984,7 @@ lex_token_representation (struct lexer *lexer)
     default:
       return xstrdup (lex_token_name (lexer->token));
     }
-       
+
   NOT_REACHED ();
 }
 \f
@@ -983,20 +1006,20 @@ lex_negative_to_dash (struct lexer *lexer)
       lexer->token = '-';
     }
 }
-   
+
 /* Skip a COMMENT command. */
 void
 lex_skip_comment (struct lexer *lexer)
 {
   for (;;)
     {
-      if (!lex_get_line (lexer)) 
+      if (!lex_get_line (lexer))
         {
           lexer->put_token = T_STOP;
          lexer->prog = NULL;
           return;
         }
-      
+
       if (lexer->put_token == '.')
        break;
 
@@ -1013,7 +1036,7 @@ lex_skip_comment (struct lexer *lexer)
    hex digits, according to TYPE.  The string is converted to
    characters having the specified values. */
 static void
-convert_numeric_string_to_char_string (struct lexer *lexer, 
+convert_numeric_string_to_char_string (struct lexer *lexer,
                                       enum string_type type)
 {
   const char *base_name;
@@ -1023,7 +1046,7 @@ convert_numeric_string_to_char_string (struct lexer *lexer,
   size_t i;
   char *p;
 
-  switch (type) 
+  switch (type)
     {
     case BINARY_STRING:
       base_name = _("binary");
@@ -1043,10 +1066,10 @@ convert_numeric_string_to_char_string (struct lexer *lexer,
     default:
       NOT_REACHED ();
     }
-  
+
   byte_cnt = ds_length (&lexer->tokstr) / chars_per_byte;
   if (ds_length (&lexer->tokstr) % chars_per_byte)
-    msg (SE, _("String of %s digits has %d characters, which is not a "
+    msg (SE, _("String of %s digits has %zu characters, which is not a "
               "multiple of %d."),
         base_name, ds_length (&lexer->tokstr), chars_per_byte);
 
@@ -1055,7 +1078,7 @@ convert_numeric_string_to_char_string (struct lexer *lexer,
     {
       int value;
       int j;
-         
+
       value = 0;
       for (j = 0; j < chars_per_byte; j++, p++)
        {
@@ -1090,7 +1113,7 @@ convert_numeric_string_to_char_string (struct lexer *lexer,
    buffer pointer lexer->prog must point to the initial single or double
    quote.  TYPE indicates the type of string to be parsed.
    Returns token type. */
-static int 
+static int
 parse_string (struct lexer *lexer, enum string_type type)
 {
   if (type != CHARACTER_STRING)
@@ -1102,7 +1125,7 @@ parse_string (struct lexer *lexer, enum string_type type)
     {
       /* Single or double quote. */
       int c = *lexer->prog++;
-      
+
       /* Accumulate section. */
       for (;;)
        {
@@ -1112,7 +1135,7 @@ parse_string (struct lexer *lexer, enum string_type type)
              msg (SE, _("Unterminated string constant."));
              goto finish;
            }
-         
+
          /* Double quote characters to embed them in strings. */
          if (*lexer->prog == c)
            {
@@ -1184,14 +1207,14 @@ finish:
 
   if (ds_length (&lexer->tokstr) > 255)
     {
-      msg (SE, _("String exceeds 255 characters in length (%d characters)."),
+      msg (SE, _("String exceeds 255 characters in length (%zu characters)."),
           ds_length (&lexer->tokstr));
       ds_truncate (&lexer->tokstr, 255);
     }
-      
+
   return T_STRING;
 }
-\f      
+\f
 #if DUMP_TOKENS
 /* Reads one token from the lexer and writes a textual representation
    on stdout for debugging purposes. */
@@ -1207,7 +1230,7 @@ dump_token (struct lexer *lexer)
     if (curfn)
       fprintf (stderr, "%s:%d\t", curfn, curln);
   }
-  
+
   switch (lexer->token)
     {
     case T_ID:
@@ -1248,13 +1271,13 @@ dump_token (struct lexer *lexer)
 
 /* Token Accessor Functions */
 
-int 
+int
 lex_token (const struct lexer *lexer)
 {
   return lexer->token;
 }
 
-double 
+double
 lex_tokval (const struct lexer *lexer)
 {
   return lexer->tokval;