1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
%{ /* -*- c -*- */
/*
* Grammar for parsing the style sheets
*
* Copyright (c) 1988-1993 Miguel Santana
* Copyright (c) 1995-1999 Akim Demaille, Miguel Santana
*
*/
/*
* This file is part of a2ps
*
* 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, 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; see the file COPYING. If not, write to
* the Free Software Foundation, 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/*
* $Id: parseppd.y,v 1.1.1.1.2.1 2007/12/29 01:58:21 mhatta Exp $
*/
#include <config.h>
#include "a2ps.h"
#include "jobs.h"
#include "ppd.h"
#include "message.h"
#include "routines.h"
#include "lexppd.h"
#define YYDEBUG 1
#define YYERROR_VERBOSE 1
/* Comes from the caller */
extern FILE * ppdin;
extern struct a2ps_job * job;
/* Local prototypes */
void yyerror (const char *msg);
/* Initilizes the obstacks */
void ppdlex_initialize (void);
int yylex (void);
static struct ppd * ppd_parse_result;
%}
%union
{
char * string;
unsigned char * ustring;
struct ppd * ppd;
}
%token EOL
%token tDefaultFont tFont tModelName tNickName
%token <string> STRING SYMBOL
%token <ustring> USTRING
%type <ppd> ppd
%type <string> font_clause
%%
/************************************************************************/
/* Top most */
/************************************************************************/
file :
ppd
{
ppd_parse_result = $1;
/* Nothing Right Now */;
}
;
ppd :
/* Empty */
{
$$ = ppd_new ();
}
| ppd font_clause EOL
{
ppd_font_add ($1, $2);
$$ = $1;
}
| ppd tModelName ':' STRING EOL
{
if (!$1->modelname)
$1->modelname = $4;
$$ = $1;
}
| ppd tNickName ':' STRING EOL
{
if (!$1->nickname)
$1->nickname = $4;
$$ = $1;
}
| ppd SYMBOL
{
$$ = $1;
}
| ppd STRING
{
$$ = $1;
}
| ppd USTRING
{
$$ = $1;
}
| ppd ':'
{
$$ = $1;
}
| ppd EOL
{
$$ = $1;
}
;
/************************************************************************/
/* *Font entry */
/************************************************************************/
font_clause :
tFont SYMBOL ':' SYMBOL STRING SYMBOL SYMBOL
{ $$= $2; }
| tDefaultFont ':' SYMBOL
{ $$= $3; }
;
%%
void
yyerror (const char *msg)
{
error_at_line (1, 0, ppdfilename, ppdlineno, "%s", msg);
}
struct ppd *
a2ps_ppd_parse (const char * filename, char * const * path)
{
/* The filename won't be changed. */
ppdfilename = (char *) filename;
ppdlineno = 1;
ppdin = xrfopen (ppdfilename);
ppdpath = path;
message (msg_file | msg_ppd | msg_parse,
(stderr, "Parsing file `%s'\n", ppdfilename));
ppdlex_initialize ();
if (msg_test (msg_parse))
yydebug = true;
else
yydebug = false;
yyparse (); /* FIXME: test return value? */
fclose (ppdin);
return ppd_parse_result;
}
|