2014-07-23 22:39:29 +02:00
|
|
|
#ifndef IVL_parse_api_H
|
|
|
|
|
#define IVL_parse_api_H
|
2010-12-13 05:02:18 +01:00
|
|
|
/*
|
2014-07-23 22:39:29 +02:00
|
|
|
* Copyright (c) 2011-2014 Stephen Williams (steve@icarus.com)
|
2010-12-13 05:02:18 +01:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form 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 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
|
2012-08-29 03:41:23 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2010-12-13 05:02:18 +01:00
|
|
|
*/
|
|
|
|
|
|
2010-12-15 06:36:47 +01:00
|
|
|
# include <cstdio>
|
2011-01-03 07:30:09 +01:00
|
|
|
# include "entity.h"
|
2010-12-15 06:36:47 +01:00
|
|
|
|
2011-07-23 05:49:57 +02:00
|
|
|
typedef void*yyscan_t;
|
|
|
|
|
|
2010-12-13 05:02:18 +01:00
|
|
|
/*
|
2012-05-14 18:58:49 +02:00
|
|
|
* The yyltype supports the passing of detailed source file location
|
2010-12-13 05:02:18 +01:00
|
|
|
* information between the lexical analyzer and the parser. Defining
|
|
|
|
|
* YYLTYPE compels the lexor to use this type and not something other.
|
|
|
|
|
*/
|
|
|
|
|
struct yyltype {
|
|
|
|
|
unsigned first_line;
|
|
|
|
|
const char*text;
|
2011-07-23 05:49:57 +02:00
|
|
|
yyltype() { first_line = 1; text = ""; }
|
2010-12-13 05:02:18 +01:00
|
|
|
};
|
|
|
|
|
# define YYLTYPE struct yyltype
|
|
|
|
|
|
2010-12-15 06:36:47 +01:00
|
|
|
/*
|
2011-07-23 19:07:20 +02:00
|
|
|
* This calls the bison-generated parser with the given file path as
|
|
|
|
|
* the input stream. If the file cannot be opened, this returns -1.
|
2011-07-31 00:04:07 +02:00
|
|
|
* The "library_name" argument is the name of the library that is
|
|
|
|
|
* being parsed. If this is a regular source file, then this name is
|
|
|
|
|
* nil. Note that the "work" library is handled specially.
|
2010-12-15 06:36:47 +01:00
|
|
|
*/
|
2011-07-31 00:04:07 +02:00
|
|
|
extern int parse_source_file(const char*file_path, perm_string library_name);
|
2010-12-15 06:36:47 +01:00
|
|
|
|
2011-02-19 20:39:00 +01:00
|
|
|
/*
|
2011-03-29 17:18:22 +02:00
|
|
|
* Use this function during parse to generate error messages. The "loc"
|
2011-02-19 20:39:00 +01:00
|
|
|
* is the location of the token that triggered the error, and the fmt
|
|
|
|
|
* is printf-style format.
|
|
|
|
|
*/
|
|
|
|
|
extern void errormsg(const YYLTYPE&loc, const char*fmt, ...) __attribute__((format (printf, 2, 3)));
|
|
|
|
|
|
2011-03-20 02:26:43 +01:00
|
|
|
extern void sorrymsg(const YYLTYPE&loc, const char*fmt, ...) __attribute__((format (printf, 2, 3)));
|
|
|
|
|
|
2010-12-15 06:36:47 +01:00
|
|
|
/*
|
|
|
|
|
* Set this to a non-zero value to enable parser debug output.
|
|
|
|
|
*/
|
|
|
|
|
extern int yydebug;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The parser counts the errors that is handed in the parse_errors
|
|
|
|
|
* variable. For a clean compile, this value should not change. (The
|
2011-03-20 02:26:43 +01:00
|
|
|
* caller sets its initial value.) The sorrys are the count of
|
|
|
|
|
* unsupported constructs that are encountered.
|
2010-12-15 06:36:47 +01:00
|
|
|
*/
|
|
|
|
|
extern int parse_errors;
|
2011-03-20 02:26:43 +01:00
|
|
|
extern int parse_sorrys;
|
2010-12-15 06:36:47 +01:00
|
|
|
|
2014-07-23 22:39:29 +02:00
|
|
|
#endif /* IVL_parse_api_H */
|