freebsd-dev/contrib/com_err/parse.y

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

175 lines
3.8 KiB
Plaintext
Raw Normal View History

2001-02-13 16:46:19 +00:00
%{
/*
2011-10-05 07:23:29 +00:00
* Copyright (c) 1998 - 2000 Kungliga Tekniska Högskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
2001-02-13 16:46:19 +00:00
*
2011-10-05 07:23:29 +00:00
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
2001-02-13 16:46:19 +00:00
*
2011-10-05 07:23:29 +00:00
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
2001-02-13 16:46:19 +00:00
*
2011-10-05 07:23:29 +00:00
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
2001-02-13 16:46:19 +00:00
*
2011-10-05 07:23:29 +00:00
* 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
2001-02-13 16:46:19 +00:00
*
2011-10-05 07:23:29 +00:00
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
2001-02-13 16:46:19 +00:00
*/
#include "compile_et.h"
#include "lex.h"
void yyerror (char *s);
static long name2number(const char *str);
extern char *yytext;
/* This is for bison */
#if !defined(alloca) && !defined(HAVE_ALLOCA)
#define alloca(x) malloc(x)
#endif
2011-10-05 07:23:29 +00:00
#define YYMALLOC malloc
#define YYFREE free
2001-02-13 16:46:19 +00:00
%}
%union {
char *string;
int number;
}
%token ET INDEX PREFIX EC ID END
%token <string> STRING
%token <number> NUMBER
%%
2011-10-05 07:23:29 +00:00
file : /* */
2001-02-13 16:46:19 +00:00
| header statements
;
header : id et
| et
;
id : ID STRING
{
id_str = $2;
}
;
et : ET STRING
{
2008-05-07 13:39:42 +00:00
base_id = name2number($2);
strlcpy(name, $2, sizeof(name));
2001-02-13 16:46:19 +00:00
free($2);
}
| ET STRING STRING
{
2008-05-07 13:39:42 +00:00
base_id = name2number($2);
strlcpy(name, $3, sizeof(name));
2001-02-13 16:46:19 +00:00
free($2);
free($3);
}
;
statements : statement
| statements statement
;
2011-10-05 07:23:29 +00:00
statement : INDEX NUMBER
2001-02-13 16:46:19 +00:00
{
number = $2;
}
| PREFIX STRING
{
2008-05-07 13:39:42 +00:00
free(prefix);
asprintf (&prefix, "%s_", $2);
if (prefix == NULL)
errx(1, "malloc");
2001-02-13 16:46:19 +00:00
free($2);
}
| PREFIX
{
prefix = realloc(prefix, 1);
2008-05-07 13:39:42 +00:00
if (prefix == NULL)
errx(1, "malloc");
2001-02-13 16:46:19 +00:00
*prefix = '\0';
}
| EC STRING ',' STRING
{
struct error_code *ec = malloc(sizeof(*ec));
2011-10-05 07:23:29 +00:00
2008-05-07 13:39:42 +00:00
if (ec == NULL)
errx(1, "malloc");
2001-02-13 16:46:19 +00:00
ec->next = NULL;
ec->number = number;
if(prefix && *prefix != '\0') {
asprintf (&ec->name, "%s%s", prefix, $2);
2008-05-07 13:39:42 +00:00
if (ec->name == NULL)
errx(1, "malloc");
2001-02-13 16:46:19 +00:00
free($2);
} else
ec->name = $2;
ec->string = $4;
APPEND(codes, ec);
number++;
}
| END
{
YYACCEPT;
}
;
%%
static long
name2number(const char *str)
{
const char *p;
2008-05-07 13:39:42 +00:00
long num = 0;
2001-02-13 16:46:19 +00:00
const char *x = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz0123456789_";
if(strlen(str) > 4) {
yyerror("table name too long");
return 0;
}
for(p = str; *p; p++){
char *q = strchr(x, *p);
if(q == NULL) {
yyerror("invalid character in table name");
return 0;
}
2008-05-07 13:39:42 +00:00
num = (num << 6) + (q - x) + 1;
2001-02-13 16:46:19 +00:00
}
2008-05-07 13:39:42 +00:00
num <<= 8;
if(num > 0x7fffffff)
num = -(0xffffffff - num + 1);
return num;
2001-02-13 16:46:19 +00:00
}
void
yyerror (char *s)
{
2011-10-05 07:23:29 +00:00
_lex_error_message ("%s\n", s);
2001-02-13 16:46:19 +00:00
}