2001-02-04 Philip Blundell <philb@gnu.org>
[binutils.git] / binutils / rcparse.y
blobb67338f9d0455ce0ce742df6d5e3922ce6152b9e
1 %{ /* rcparse.y -- parser for Windows rc files
2 Copyright 1997, 1998 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Cygnus Support.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /* This is a parser for Windows rc files. It is based on the parser
23 by Gunther Ebert <gunther.ebert@ixos-leipzig.de>. */
25 #include "bfd.h"
26 #include "bucomm.h"
27 #include "libiberty.h"
28 #include "windres.h"
30 #include <ctype.h>
32 /* The current language. */
34 static unsigned short language;
36 /* The resource information during a sub statement. */
38 static struct res_res_info sub_res_info;
40 /* Dialog information. This is built by the nonterminals styles and
41 controls. */
43 static struct dialog dialog;
45 /* This is used when building a style. It is modified by the
46 nonterminal styleexpr. */
48 static unsigned long style;
50 /* These are used when building a control. They are set before using
51 control_params. */
53 static unsigned long base_style;
54 static unsigned long default_style;
55 static unsigned long class;
59 %union
61 struct accelerator acc;
62 struct accelerator *pacc;
63 struct dialog_control *dialog_control;
64 struct menuitem *menuitem;
65 struct
67 struct rcdata_item *first;
68 struct rcdata_item *last;
69 } rcdata;
70 struct rcdata_item *rcdata_item;
71 struct stringtable_data *stringtable;
72 struct fixed_versioninfo *fixver;
73 struct ver_info *verinfo;
74 struct ver_stringinfo *verstring;
75 struct ver_varinfo *vervar;
76 struct res_id id;
77 struct res_res_info res_info;
78 struct
80 unsigned short on;
81 unsigned short off;
82 } memflags;
83 struct
85 unsigned long val;
86 /* Nonzero if this number was explicitly specified as long. */
87 int dword;
88 } i;
89 unsigned long il;
90 unsigned short is;
91 const char *s;
92 struct
94 unsigned long length;
95 const char *s;
96 } ss;
99 %token BEG END
100 %token ACCELERATORS VIRTKEY ASCII NOINVERT SHIFT CONTROL ALT
101 %token BITMAP
102 %token CURSOR
103 %token DIALOG DIALOGEX EXSTYLE CAPTION CLASS STYLE
104 %token AUTO3STATE AUTOCHECKBOX AUTORADIOBUTTON CHECKBOX COMBOBOX CTEXT
105 %token DEFPUSHBUTTON EDITTEXT GROUPBOX LISTBOX LTEXT PUSHBOX PUSHBUTTON
106 %token RADIOBUTTON RTEXT SCROLLBAR STATE3 USERBUTTON
107 %token BEDIT HEDIT IEDIT
108 %token FONT
109 %token ICON
110 %token LANGUAGE CHARACTERISTICS VERSIONK
111 %token MENU MENUEX MENUITEM SEPARATOR POPUP CHECKED GRAYED HELP INACTIVE
112 %token MENUBARBREAK MENUBREAK
113 %token MESSAGETABLE
114 %token RCDATA
115 %token STRINGTABLE
116 %token VERSIONINFO FILEVERSION PRODUCTVERSION FILEFLAGSMASK FILEFLAGS
117 %token FILEOS FILETYPE FILESUBTYPE BLOCKSTRINGFILEINFO BLOCKVARFILEINFO
118 %token VALUE
119 %token <s> BLOCK
120 %token MOVEABLE FIXED PURE IMPURE PRELOAD LOADONCALL DISCARDABLE
121 %token NOT
122 %token <s> QUOTEDSTRING STRING
123 %token <i> NUMBER
124 %token <ss> SIZEDSTRING
125 %token IGNORED_TOKEN
127 %type <pacc> acc_entries
128 %type <acc> acc_entry acc_event
129 %type <dialog_control> control control_params
130 %type <menuitem> menuitems menuitem menuexitems menuexitem
131 %type <rcdata> optrcdata_data optrcdata_data_int rcdata_data
132 %type <rcdata_item> opt_control_data
133 %type <fixver> fixedverinfo
134 %type <verinfo> verblocks
135 %type <verstring> vervals
136 %type <vervar> vertrans
137 %type <res_info> suboptions memflags_move_discard memflags_move
138 %type <memflags> memflag
139 %type <id> id resref
140 %type <il> exstyle parennumber
141 %type <il> numexpr posnumexpr cnumexpr optcnumexpr cposnumexpr
142 %type <is> acc_options acc_option menuitem_flags menuitem_flag
143 %type <s> optstringc file_name resname
144 %type <i> sizednumexpr sizedposnumexpr
146 %left '|'
147 %left '^'
148 %left '&'
149 %left '+' '-'
150 %left '*' '/' '%'
151 %right '~' NEG
155 input:
156 /* empty */
157 | input newcmd accelerator
158 | input newcmd bitmap
159 | input newcmd cursor
160 | input newcmd dialog
161 | input newcmd font
162 | input newcmd icon
163 | input newcmd language
164 | input newcmd menu
165 | input newcmd menuex
166 | input newcmd messagetable
167 | input newcmd rcdata
168 | input newcmd stringtable
169 | input newcmd user
170 | input newcmd versioninfo
171 | input newcmd IGNORED_TOKEN
174 newcmd:
175 /* empty */
177 rcparse_discard_strings ();
181 /* Accelerator resources. */
183 accelerator:
184 id ACCELERATORS suboptions BEG acc_entries END
186 define_accelerator ($1, &$3, $5);
190 acc_entries:
191 /* empty */
193 $$ = NULL;
195 | acc_entries acc_entry
197 struct accelerator *a;
199 a = (struct accelerator *) res_alloc (sizeof *a);
200 *a = $2;
201 if ($1 == NULL)
202 $$ = a;
203 else
205 struct accelerator **pp;
207 for (pp = &$1->next; *pp != NULL; pp = &(*pp)->next)
209 *pp = a;
210 $$ = $1;
215 acc_entry:
216 acc_event cposnumexpr
218 $$ = $1;
219 $$.id = $2;
221 | acc_event cposnumexpr ',' acc_options
223 $$ = $1;
224 $$.id = $2;
225 $$.flags |= $4;
226 if (($$.flags & ACC_VIRTKEY) == 0
227 && ($$.flags & (ACC_SHIFT | ACC_CONTROL | ACC_ALT)) != 0)
228 rcparse_warning (_("inappropriate modifiers for non-VIRTKEY"));
232 acc_event:
233 QUOTEDSTRING
235 const char *s = $1;
236 char ch;
238 $$.next = NULL;
239 $$.id = 0;
240 ch = *s;
241 if (ch != '^')
242 $$.flags = 0;
243 else
245 $$.flags = ACC_CONTROL | ACC_VIRTKEY;
246 ++s;
247 ch = *s;
248 ch = toupper ((unsigned char) ch);
250 $$.key = ch;
251 if (s[1] != '\0')
252 rcparse_warning (_("accelerator should only be one character"));
254 | posnumexpr
256 $$.next = NULL;
257 $$.flags = 0;
258 $$.id = 0;
259 $$.key = $1;
263 acc_options:
264 acc_option
266 $$ = $1;
268 | acc_options ',' acc_option
270 $$ = $1 | $3;
272 /* I've had one report that the comma is optional. */
273 | acc_options acc_option
275 $$ = $1 | $2;
279 acc_option:
280 VIRTKEY
282 $$ = ACC_VIRTKEY;
284 | ASCII
286 /* This is just the absence of VIRTKEY. */
287 $$ = 0;
289 | NOINVERT
291 $$ = ACC_NOINVERT;
293 | SHIFT
295 $$ = ACC_SHIFT;
297 | CONTROL
299 $$ = ACC_CONTROL;
301 | ALT
303 $$ = ACC_ALT;
307 /* Bitmap resources. */
309 bitmap:
310 id BITMAP memflags_move file_name
312 define_bitmap ($1, &$3, $4);
316 /* Cursor resources. */
318 cursor:
319 id CURSOR memflags_move_discard file_name
321 define_cursor ($1, &$3, $4);
325 /* Dialog resources. */
327 dialog:
328 id DIALOG memflags_move exstyle posnumexpr cnumexpr cnumexpr
329 cnumexpr
331 memset (&dialog, 0, sizeof dialog);
332 dialog.x = $5;
333 dialog.y = $6;
334 dialog.width = $7;
335 dialog.height = $8;
336 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
337 dialog.exstyle = $4;
338 dialog.menu.named = 1;
339 dialog.class.named = 1;
340 dialog.font = NULL;
341 dialog.ex = NULL;
342 dialog.controls = NULL;
343 sub_res_info = $3;
345 styles BEG controls END
347 define_dialog ($1, &sub_res_info, &dialog);
349 | id DIALOGEX memflags_move exstyle posnumexpr cnumexpr cnumexpr
350 cnumexpr
352 memset (&dialog, 0, sizeof dialog);
353 dialog.x = $5;
354 dialog.y = $6;
355 dialog.width = $7;
356 dialog.height = $8;
357 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
358 dialog.exstyle = $4;
359 dialog.menu.named = 1;
360 dialog.class.named = 1;
361 dialog.font = NULL;
362 dialog.ex = ((struct dialog_ex *)
363 res_alloc (sizeof (struct dialog_ex)));
364 memset (dialog.ex, 0, sizeof (struct dialog_ex));
365 dialog.controls = NULL;
366 sub_res_info = $3;
368 styles BEG controls END
370 define_dialog ($1, &sub_res_info, &dialog);
372 | id DIALOGEX memflags_move exstyle posnumexpr cnumexpr cnumexpr
373 cnumexpr cnumexpr
375 memset (&dialog, 0, sizeof dialog);
376 dialog.x = $5;
377 dialog.y = $6;
378 dialog.width = $7;
379 dialog.height = $8;
380 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
381 dialog.exstyle = $4;
382 dialog.menu.named = 1;
383 dialog.class.named = 1;
384 dialog.font = NULL;
385 dialog.ex = ((struct dialog_ex *)
386 res_alloc (sizeof (struct dialog_ex)));
387 memset (dialog.ex, 0, sizeof (struct dialog_ex));
388 dialog.ex->help = $9;
389 dialog.controls = NULL;
390 sub_res_info = $3;
392 styles BEG controls END
394 define_dialog ($1, &sub_res_info, &dialog);
398 exstyle:
399 /* empty */
401 $$ = 0;
403 | EXSTYLE '=' numexpr
405 $$ = $3;
409 styles:
410 /* empty */
411 | styles CAPTION QUOTEDSTRING
413 unicode_from_ascii ((int *) NULL, &dialog.caption, $3);
415 | styles CLASS id
417 dialog.class = $3;
419 | styles STYLE
420 { style = dialog.style; }
421 styleexpr
423 dialog.style = style;
425 | styles EXSTYLE numexpr
427 dialog.exstyle = $3;
429 | styles FONT numexpr ',' QUOTEDSTRING
431 dialog.style |= DS_SETFONT;
432 dialog.pointsize = $3;
433 unicode_from_ascii ((int *) NULL, &dialog.font, $5);
435 | styles FONT numexpr ',' QUOTEDSTRING cnumexpr cnumexpr
437 dialog.style |= DS_SETFONT;
438 dialog.pointsize = $3;
439 unicode_from_ascii ((int *) NULL, &dialog.font, $5);
440 if (dialog.ex == NULL)
441 rcparse_warning (_("extended FONT requires DIALOGEX"));
442 else
444 dialog.ex->weight = $6;
445 dialog.ex->italic = $7;
448 | styles MENU id
450 dialog.menu = $3;
452 | styles CHARACTERISTICS numexpr
454 sub_res_info.characteristics = $3;
456 | styles LANGUAGE numexpr cnumexpr
458 sub_res_info.language = $3 | ($4 << 8);
460 | styles VERSIONK numexpr
462 sub_res_info.version = $3;
466 controls:
467 /* empty */
468 | controls control
470 struct dialog_control **pp;
472 for (pp = &dialog.controls; *pp != NULL; pp = &(*pp)->next)
474 *pp = $2;
478 control:
479 AUTO3STATE
481 default_style = BS_AUTO3STATE | WS_TABSTOP;
482 base_style = BS_AUTO3STATE;
483 class = CTL_BUTTON;
485 control_params
487 $$ = $3;
489 | AUTOCHECKBOX
491 default_style = BS_AUTOCHECKBOX | WS_TABSTOP;
492 base_style = BS_AUTOCHECKBOX;
493 class = CTL_BUTTON;
495 control_params
497 $$ = $3;
499 | AUTORADIOBUTTON
501 default_style = BS_AUTORADIOBUTTON | WS_TABSTOP;
502 base_style = BS_AUTORADIOBUTTON;
503 class = CTL_BUTTON;
505 control_params
507 $$ = $3;
509 | BEDIT
511 default_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
512 base_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
513 class = CTL_EDIT;
515 control_params
517 $$ = $3;
518 if (dialog.ex == NULL)
519 rcparse_warning (_("IEDIT requires DIALOGEX"));
520 res_string_to_id (&$$->class, "BEDIT");
522 | CHECKBOX
524 default_style = BS_CHECKBOX | WS_TABSTOP;
525 base_style = BS_CHECKBOX | WS_TABSTOP;
526 class = CTL_BUTTON;
528 control_params
530 $$ = $3;
532 | COMBOBOX
534 default_style = CBS_SIMPLE | WS_TABSTOP;
535 base_style = 0;
536 class = CTL_COMBOBOX;
538 control_params
540 $$ = $3;
542 | CONTROL optstringc numexpr cnumexpr control_styleexpr cnumexpr
543 cnumexpr cnumexpr cnumexpr optcnumexpr opt_control_data
545 $$ = define_control ($2, $3, $6, $7, $8, $9, $4, style, $10);
546 if ($11 != NULL)
548 if (dialog.ex == NULL)
549 rcparse_warning (_("control data requires DIALOGEX"));
550 $$->data = $11;
553 | CONTROL optstringc numexpr cnumexpr control_styleexpr cnumexpr
554 cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr opt_control_data
556 $$ = define_control ($2, $3, $6, $7, $8, $9, $4, style, $10);
557 if (dialog.ex == NULL)
558 rcparse_warning (_("help ID requires DIALOGEX"));
559 $$->help = $11;
560 $$->data = $12;
562 | CONTROL optstringc numexpr ',' QUOTEDSTRING control_styleexpr
563 cnumexpr cnumexpr cnumexpr cnumexpr optcnumexpr opt_control_data
565 $$ = define_control ($2, $3, $7, $8, $9, $10, 0, style, $11);
566 if ($12 != NULL)
568 if (dialog.ex == NULL)
569 rcparse_warning ("control data requires DIALOGEX");
570 $$->data = $12;
572 $$->class.named = 1;
573 unicode_from_ascii(&$$->class.u.n.length, &$$->class.u.n.name, $5);
575 | CONTROL optstringc numexpr ',' QUOTEDSTRING control_styleexpr
576 cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr opt_control_data
578 $$ = define_control ($2, $3, $7, $8, $9, $10, 0, style, $11);
579 if (dialog.ex == NULL)
580 rcparse_warning ("help ID requires DIALOGEX");
581 $$->help = $12;
582 $$->data = $13;
583 $$->class.named = 1;
584 unicode_from_ascii(&$$->class.u.n.length, &$$->class.u.n.name, $5);
586 | CTEXT
588 default_style = SS_CENTER | WS_GROUP;
589 base_style = SS_CENTER;
590 class = CTL_STATIC;
592 control_params
594 $$ = $3;
596 | DEFPUSHBUTTON
598 default_style = BS_DEFPUSHBUTTON | WS_TABSTOP;
599 base_style = BS_DEFPUSHBUTTON | WS_TABSTOP;
600 class = CTL_BUTTON;
602 control_params
604 $$ = $3;
606 | EDITTEXT
608 default_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
609 base_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
610 class = CTL_EDIT;
612 control_params
614 $$ = $3;
616 | GROUPBOX
618 default_style = BS_GROUPBOX;
619 base_style = BS_GROUPBOX;
620 class = CTL_BUTTON;
622 control_params
624 $$ = $3;
626 | HEDIT
628 default_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
629 base_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
630 class = CTL_EDIT;
632 control_params
634 $$ = $3;
635 if (dialog.ex == NULL)
636 rcparse_warning (_("IEDIT requires DIALOGEX"));
637 res_string_to_id (&$$->class, "HEDIT");
639 | ICON resref numexpr cnumexpr cnumexpr opt_control_data
641 $$ = define_icon_control ($2, $3, $4, $5, 0, 0, 0, $6,
642 dialog.ex);
644 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
645 opt_control_data
647 $$ = define_icon_control ($2, $3, $4, $5, 0, 0, 0, $8,
648 dialog.ex);
650 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
651 icon_styleexpr optcnumexpr opt_control_data
653 $$ = define_icon_control ($2, $3, $4, $5, style, $9, 0, $10,
654 dialog.ex);
656 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
657 icon_styleexpr cnumexpr cnumexpr opt_control_data
659 $$ = define_icon_control ($2, $3, $4, $5, style, $9, $10, $11,
660 dialog.ex);
662 | IEDIT
664 default_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
665 base_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
666 class = CTL_EDIT;
668 control_params
670 $$ = $3;
671 if (dialog.ex == NULL)
672 rcparse_warning (_("IEDIT requires DIALOGEX"));
673 res_string_to_id (&$$->class, "IEDIT");
675 | LISTBOX
677 default_style = LBS_NOTIFY | WS_BORDER;
678 base_style = LBS_NOTIFY | WS_BORDER;
679 class = CTL_LISTBOX;
681 control_params
683 $$ = $3;
685 | LTEXT
687 default_style = SS_LEFT | WS_GROUP;
688 base_style = SS_LEFT;
689 class = CTL_STATIC;
691 control_params
693 $$ = $3;
695 | PUSHBOX
697 default_style = BS_PUSHBOX | WS_TABSTOP;
698 base_style = BS_PUSHBOX;
699 class = CTL_BUTTON;
701 control_params
703 $$ = $3;
705 | PUSHBUTTON
707 default_style = BS_PUSHBUTTON | WS_TABSTOP;
708 base_style = BS_PUSHBUTTON | WS_TABSTOP;
709 class = CTL_BUTTON;
711 control_params
713 $$ = $3;
715 | RADIOBUTTON
717 default_style = BS_RADIOBUTTON | WS_TABSTOP;
718 base_style = BS_RADIOBUTTON;
719 class = CTL_BUTTON;
721 control_params
723 $$ = $3;
725 | RTEXT
727 default_style = SS_RIGHT | WS_GROUP;
728 base_style = SS_RIGHT;
729 class = CTL_STATIC;
731 control_params
733 $$ = $3;
735 | SCROLLBAR
737 default_style = SBS_HORZ;
738 base_style = 0;
739 class = CTL_SCROLLBAR;
741 control_params
743 $$ = $3;
745 | STATE3
747 default_style = BS_3STATE | WS_TABSTOP;
748 base_style = BS_3STATE;
749 class = CTL_BUTTON;
751 control_params
753 $$ = $3;
755 | USERBUTTON QUOTEDSTRING ',' numexpr ',' numexpr ',' numexpr ','
756 numexpr ',' numexpr ','
757 { style = WS_CHILD | WS_VISIBLE; }
758 styleexpr optcnumexpr
760 $$ = define_control ($2, $4, $6, $8, $10, $12, CTL_BUTTON,
761 style, $16);
765 /* Parameters for a control. The static variables DEFAULT_STYLE,
766 BASE_STYLE, and CLASS must be initialized before this nonterminal
767 is used. DEFAULT_STYLE is the style to use if no style expression
768 is specified. BASE_STYLE is the base style to use if a style
769 expression is specified; the style expression modifies the base
770 style. CLASS is the class of the control. */
772 control_params:
773 optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
774 opt_control_data
776 $$ = define_control ($1, $2, $3, $4, $5, $6, class,
777 default_style | WS_CHILD | WS_VISIBLE, 0);
778 if ($7 != NULL)
780 if (dialog.ex == NULL)
781 rcparse_warning (_("control data requires DIALOGEX"));
782 $$->data = $7;
785 | optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
786 control_params_styleexpr optcnumexpr opt_control_data
788 $$ = define_control ($1, $2, $3, $4, $5, $6, class, style, $8);
789 if ($9 != NULL)
791 if (dialog.ex == NULL)
792 rcparse_warning (_("control data requires DIALOGEX"));
793 $$->data = $9;
796 | optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
797 control_params_styleexpr cnumexpr cnumexpr opt_control_data
799 $$ = define_control ($1, $2, $3, $4, $5, $6, class, style, $8);
800 if (dialog.ex == NULL)
801 rcparse_warning (_("help ID requires DIALOGEX"));
802 $$->help = $9;
803 $$->data = $10;
807 optstringc:
808 /* empty */
810 $$ = NULL;
812 | QUOTEDSTRING
814 $$ = $1;
816 | QUOTEDSTRING ','
818 $$ = $1;
822 opt_control_data:
823 /* empty */
825 $$ = NULL;
827 | BEG optrcdata_data END
829 $$ = $2.first;
833 /* These only exist to parse a reduction out of a common case. */
835 control_styleexpr:
837 { style = WS_CHILD | WS_VISIBLE; }
838 styleexpr
841 icon_styleexpr:
843 { style = SS_ICON | WS_CHILD | WS_VISIBLE; }
844 styleexpr
847 control_params_styleexpr:
849 { style = base_style | WS_CHILD | WS_VISIBLE; }
850 styleexpr
853 /* Font resources. */
855 font:
856 id FONT memflags_move_discard file_name
858 define_font ($1, &$3, $4);
862 /* Icon resources. */
864 icon:
865 id ICON memflags_move_discard file_name
867 define_icon ($1, &$3, $4);
871 /* Language command. This changes the static variable language, which
872 affects all subsequent resources. */
874 language:
875 LANGUAGE numexpr cnumexpr
877 language = $2 | ($3 << 8);
881 /* Menu resources. */
883 menu:
884 id MENU suboptions BEG menuitems END
886 define_menu ($1, &$3, $5);
890 menuitems:
891 /* empty */
893 $$ = NULL;
895 | menuitems menuitem
897 if ($1 == NULL)
898 $$ = $2;
899 else
901 struct menuitem **pp;
903 for (pp = &$1->next; *pp != NULL; pp = &(*pp)->next)
905 *pp = $2;
906 $$ = $1;
911 menuitem:
912 MENUITEM QUOTEDSTRING cnumexpr menuitem_flags
914 $$ = define_menuitem ($2, $3, $4, 0, 0, NULL);
916 | MENUITEM SEPARATOR
918 $$ = define_menuitem (NULL, 0, 0, 0, 0, NULL);
920 | POPUP QUOTEDSTRING menuitem_flags BEG menuitems END
922 $$ = define_menuitem ($2, 0, $3, 0, 0, $5);
926 menuitem_flags:
927 /* empty */
929 $$ = 0;
931 | menuitem_flags ',' menuitem_flag
933 $$ = $1 | $3;
935 | menuitem_flags menuitem_flag
937 $$ = $1 | $2;
941 menuitem_flag:
942 CHECKED
944 $$ = MENUITEM_CHECKED;
946 | GRAYED
948 $$ = MENUITEM_GRAYED;
950 | HELP
952 $$ = MENUITEM_HELP;
954 | INACTIVE
956 $$ = MENUITEM_INACTIVE;
958 | MENUBARBREAK
960 $$ = MENUITEM_MENUBARBREAK;
962 | MENUBREAK
964 $$ = MENUITEM_MENUBREAK;
968 /* Menuex resources. */
970 menuex:
971 id MENUEX suboptions BEG menuexitems END
973 define_menu ($1, &$3, $5);
977 menuexitems:
978 /* empty */
980 $$ = NULL;
982 | menuexitems menuexitem
984 if ($1 == NULL)
985 $$ = $2;
986 else
988 struct menuitem **pp;
990 for (pp = &$1->next; *pp != NULL; pp = &(*pp)->next)
992 *pp = $2;
993 $$ = $1;
998 menuexitem:
999 MENUITEM QUOTEDSTRING
1001 $$ = define_menuitem ($2, 0, 0, 0, 0, NULL);
1003 | MENUITEM QUOTEDSTRING cnumexpr
1005 $$ = define_menuitem ($2, $3, 0, 0, 0, NULL);
1007 | MENUITEM QUOTEDSTRING cnumexpr cnumexpr optcnumexpr
1009 $$ = define_menuitem ($2, $3, $4, $5, 0, NULL);
1011 | MENUITEM SEPARATOR
1013 $$ = define_menuitem (NULL, 0, 0, 0, 0, NULL);
1015 | POPUP QUOTEDSTRING BEG menuexitems END
1017 $$ = define_menuitem ($2, 0, 0, 0, 0, $4);
1019 | POPUP QUOTEDSTRING cnumexpr BEG menuexitems END
1021 $$ = define_menuitem ($2, $3, 0, 0, 0, $5);
1023 | POPUP QUOTEDSTRING cnumexpr cnumexpr BEG menuexitems END
1025 $$ = define_menuitem ($2, $3, $4, 0, 0, $6);
1027 | POPUP QUOTEDSTRING cnumexpr cnumexpr cnumexpr optcnumexpr
1028 BEG menuexitems END
1030 $$ = define_menuitem ($2, $3, $4, $5, $6, $8);
1034 /* Messagetable resources. */
1036 messagetable:
1037 id MESSAGETABLE memflags_move file_name
1039 define_messagetable ($1, &$3, $4);
1043 /* Rcdata resources. */
1045 rcdata:
1046 id RCDATA suboptions BEG optrcdata_data END
1048 define_rcdata ($1, &$3, $5.first);
1052 /* We use a different lexing algorithm, because rcdata strings may
1053 contain embedded null bytes, and we need to know the length to use. */
1055 optrcdata_data:
1057 rcparse_rcdata ();
1059 optrcdata_data_int
1061 rcparse_normal ();
1062 $$ = $2;
1066 optrcdata_data_int:
1067 /* empty */
1069 $$.first = NULL;
1070 $$.last = NULL;
1072 | rcdata_data
1074 $$ = $1;
1078 rcdata_data:
1079 SIZEDSTRING
1081 struct rcdata_item *ri;
1083 ri = define_rcdata_string ($1.s, $1.length);
1084 $$.first = ri;
1085 $$.last = ri;
1087 | sizednumexpr
1089 struct rcdata_item *ri;
1091 ri = define_rcdata_number ($1.val, $1.dword);
1092 $$.first = ri;
1093 $$.last = ri;
1095 | rcdata_data ',' SIZEDSTRING
1097 struct rcdata_item *ri;
1099 ri = define_rcdata_string ($3.s, $3.length);
1100 $$.first = $1.first;
1101 $1.last->next = ri;
1102 $$.last = ri;
1104 | rcdata_data ',' sizednumexpr
1106 struct rcdata_item *ri;
1108 ri = define_rcdata_number ($3.val, $3.dword);
1109 $$.first = $1.first;
1110 $1.last->next = ri;
1111 $$.last = ri;
1115 /* Stringtable resources. */
1117 stringtable:
1118 STRINGTABLE suboptions BEG
1119 { sub_res_info = $2; }
1120 string_data END
1123 string_data:
1124 /* empty */
1125 | string_data numexpr QUOTEDSTRING
1127 define_stringtable (&sub_res_info, $2, $3);
1129 | string_data numexpr ',' QUOTEDSTRING
1131 define_stringtable (&sub_res_info, $2, $4);
1135 /* User defined resources. We accept general suboptions in the
1136 file_name case to keep the parser happy. */
1138 user:
1139 id id suboptions BEG optrcdata_data END
1141 define_user_data ($1, $2, &$3, $5.first);
1143 | id id suboptions file_name
1145 define_user_file ($1, $2, &$3, $4);
1149 /* Versioninfo resources. */
1151 versioninfo:
1152 id VERSIONINFO fixedverinfo BEG verblocks END
1154 define_versioninfo ($1, language, $3, $5);
1158 fixedverinfo:
1159 /* empty */
1161 $$ = ((struct fixed_versioninfo *)
1162 res_alloc (sizeof (struct fixed_versioninfo)));
1163 memset ($$, 0, sizeof (struct fixed_versioninfo));
1165 | fixedverinfo FILEVERSION numexpr cnumexpr cnumexpr cnumexpr
1167 $1->file_version_ms = ($3 << 16) | $4;
1168 $1->file_version_ls = ($5 << 16) | $6;
1169 $$ = $1;
1171 | fixedverinfo PRODUCTVERSION numexpr cnumexpr cnumexpr cnumexpr
1173 $1->product_version_ms = ($3 << 16) | $4;
1174 $1->product_version_ls = ($5 << 16) | $6;
1175 $$ = $1;
1177 | fixedverinfo FILEFLAGSMASK numexpr
1179 $1->file_flags_mask = $3;
1180 $$ = $1;
1182 | fixedverinfo FILEFLAGS numexpr
1184 $1->file_flags = $3;
1185 $$ = $1;
1187 | fixedverinfo FILEOS numexpr
1189 $1->file_os = $3;
1190 $$ = $1;
1192 | fixedverinfo FILETYPE numexpr
1194 $1->file_type = $3;
1195 $$ = $1;
1197 | fixedverinfo FILESUBTYPE numexpr
1199 $1->file_subtype = $3;
1200 $$ = $1;
1204 /* To handle verblocks successfully, the lexer handles BLOCK
1205 specially. A BLOCK "StringFileInfo" is returned as
1206 BLOCKSTRINGFILEINFO. A BLOCK "VarFileInfo" is returned as
1207 BLOCKVARFILEINFO. A BLOCK with some other string returns BLOCK
1208 with the string as the value. */
1210 verblocks:
1211 /* empty */
1213 $$ = NULL;
1215 | verblocks BLOCKSTRINGFILEINFO BEG BLOCK BEG vervals END END
1217 $$ = append_ver_stringfileinfo ($1, $4, $6);
1219 | verblocks BLOCKVARFILEINFO BEG VALUE QUOTEDSTRING vertrans END
1221 $$ = append_ver_varfileinfo ($1, $5, $6);
1225 vervals:
1226 /* empty */
1228 $$ = NULL;
1230 | vervals VALUE QUOTEDSTRING ',' QUOTEDSTRING
1232 $$ = append_verval ($1, $3, $5);
1236 vertrans:
1237 /* empty */
1239 $$ = NULL;
1241 | vertrans cnumexpr cnumexpr
1243 $$ = append_vertrans ($1, $2, $3);
1247 /* A resource ID. */
1250 posnumexpr
1252 $$.named = 0;
1253 $$.u.id = $1;
1255 | STRING
1257 char *copy, *s;
1259 /* It seems that resource ID's are forced to upper case. */
1260 copy = xstrdup ($1);
1261 for (s = copy; *s != '\0'; s++)
1262 if (islower ((unsigned char) *s))
1263 *s = toupper ((unsigned char) *s);
1264 res_string_to_id (&$$, copy);
1265 free (copy);
1269 /* A resource reference. */
1271 resname:
1272 QUOTEDSTRING
1274 $$ = $1;
1276 | QUOTEDSTRING ','
1278 $$ = $1;
1280 | STRING ','
1282 $$ = $1;
1287 resref:
1288 posnumexpr ','
1290 $$.named = 0;
1291 $$.u.id = $1;
1293 | resname
1295 char *copy, *s;
1297 /* It seems that resource ID's are forced to upper case. */
1298 copy = xstrdup ($1);
1299 for (s = copy; *s != '\0'; s++)
1300 if (islower ((unsigned char) *s))
1301 *s = toupper ((unsigned char) *s);
1302 res_string_to_id (&$$, copy);
1303 free (copy);
1307 /* Generic suboptions. These may appear before the BEGIN in any
1308 multiline statement. */
1310 suboptions:
1311 /* empty */
1313 memset (&$$, 0, sizeof (struct res_res_info));
1314 $$.language = language;
1315 /* FIXME: Is this the right default? */
1316 $$.memflags = MEMFLAG_MOVEABLE;
1318 | suboptions memflag
1320 $$ = $1;
1321 $$.memflags |= $2.on;
1322 $$.memflags &=~ $2.off;
1324 | suboptions CHARACTERISTICS numexpr
1326 $$ = $1;
1327 $$.characteristics = $3;
1329 | suboptions LANGUAGE numexpr cnumexpr
1331 $$ = $1;
1332 $$.language = $3 | ($4 << 8);
1334 | suboptions VERSIONK numexpr
1336 $$ = $1;
1337 $$.version = $3;
1341 /* Memory flags which default to MOVEABLE and DISCARDABLE. */
1343 memflags_move_discard:
1344 /* empty */
1346 memset (&$$, 0, sizeof (struct res_res_info));
1347 $$.language = language;
1348 $$.memflags = MEMFLAG_MOVEABLE | MEMFLAG_DISCARDABLE;
1350 | memflags_move_discard memflag
1352 $$ = $1;
1353 $$.memflags |= $2.on;
1354 $$.memflags &=~ $2.off;
1358 /* Memory flags which default to MOVEABLE. */
1360 memflags_move:
1361 /* empty */
1363 memset (&$$, 0, sizeof (struct res_res_info));
1364 $$.language = language;
1365 $$.memflags = MEMFLAG_MOVEABLE;
1367 | memflags_move memflag
1369 $$ = $1;
1370 $$.memflags |= $2.on;
1371 $$.memflags &=~ $2.off;
1375 /* Memory flags. This returns a struct with two integers, because we
1376 sometimes want to set bits and we sometimes want to clear them. */
1378 memflag:
1379 MOVEABLE
1381 $$.on = MEMFLAG_MOVEABLE;
1382 $$.off = 0;
1384 | FIXED
1386 $$.on = 0;
1387 $$.off = MEMFLAG_MOVEABLE;
1389 | PURE
1391 $$.on = MEMFLAG_PURE;
1392 $$.off = 0;
1394 | IMPURE
1396 $$.on = 0;
1397 $$.off = MEMFLAG_PURE;
1399 | PRELOAD
1401 $$.on = MEMFLAG_PRELOAD;
1402 $$.off = 0;
1404 | LOADONCALL
1406 $$.on = 0;
1407 $$.off = MEMFLAG_PRELOAD;
1409 | DISCARDABLE
1411 $$.on = MEMFLAG_DISCARDABLE;
1412 $$.off = 0;
1416 /* A file name. */
1418 file_name:
1419 QUOTEDSTRING
1421 $$ = $1;
1423 | STRING
1425 $$ = $1;
1429 /* A style expression. This changes the static variable STYLE. We do
1430 it this way because rc appears to permit a style to be set to
1431 something like
1432 WS_GROUP | NOT WS_TABSTOP
1433 to mean that a default of WS_TABSTOP should be removed. Anything
1434 which wants to accept a style must first set STYLE to the default
1435 value. The styleexpr nonterminal will change STYLE as specified by
1436 the user. Note that we do not accept arbitrary expressions here,
1437 just numbers separated by '|'. */
1439 styleexpr:
1440 parennumber
1442 style |= $1;
1444 | NOT parennumber
1446 style &=~ $2;
1448 | styleexpr '|' parennumber
1450 style |= $3;
1452 | styleexpr '|' NOT parennumber
1454 style &=~ $4;
1458 parennumber:
1459 NUMBER
1461 $$ = $1.val;
1463 | '(' numexpr ')'
1465 $$ = $2;
1469 /* An optional expression with a leading comma. */
1471 optcnumexpr:
1472 /* empty */
1474 $$ = 0;
1476 | cnumexpr
1478 $$ = $1;
1482 /* An expression with a leading comma. */
1484 cnumexpr:
1485 ',' numexpr
1487 $$ = $2;
1491 /* A possibly negated numeric expression. */
1493 numexpr:
1494 sizednumexpr
1496 $$ = $1.val;
1500 /* A possibly negated expression with a size. */
1502 sizednumexpr:
1503 NUMBER
1505 $$ = $1;
1507 | '(' sizednumexpr ')'
1509 $$ = $2;
1511 | '~' sizednumexpr %prec '~'
1513 $$.val = ~ $2.val;
1514 $$.dword = $2.dword;
1516 | '-' sizednumexpr %prec NEG
1518 $$.val = - $2.val;
1519 $$.dword = $2.dword;
1521 | sizednumexpr '*' sizednumexpr
1523 $$.val = $1.val * $3.val;
1524 $$.dword = $1.dword || $3.dword;
1526 | sizednumexpr '/' sizednumexpr
1528 $$.val = $1.val / $3.val;
1529 $$.dword = $1.dword || $3.dword;
1531 | sizednumexpr '%' sizednumexpr
1533 $$.val = $1.val % $3.val;
1534 $$.dword = $1.dword || $3.dword;
1536 | sizednumexpr '+' sizednumexpr
1538 $$.val = $1.val + $3.val;
1539 $$.dword = $1.dword || $3.dword;
1541 | sizednumexpr '-' sizednumexpr
1543 $$.val = $1.val - $3.val;
1544 $$.dword = $1.dword || $3.dword;
1546 | sizednumexpr '&' sizednumexpr
1548 $$.val = $1.val & $3.val;
1549 $$.dword = $1.dword || $3.dword;
1551 | sizednumexpr '^' sizednumexpr
1553 $$.val = $1.val ^ $3.val;
1554 $$.dword = $1.dword || $3.dword;
1556 | sizednumexpr '|' sizednumexpr
1558 $$.val = $1.val | $3.val;
1559 $$.dword = $1.dword || $3.dword;
1563 /* An expression with a leading comma which does not use unary
1564 negation. */
1566 cposnumexpr:
1567 ',' posnumexpr
1569 $$ = $2;
1573 /* An expression which does not use unary negation. */
1575 posnumexpr:
1576 sizedposnumexpr
1578 $$ = $1.val;
1582 /* An expression which does not use unary negation. We separate unary
1583 negation to avoid parsing conflicts when two numeric expressions
1584 appear consecutively. */
1586 sizedposnumexpr:
1587 NUMBER
1589 $$ = $1;
1591 | '(' sizednumexpr ')'
1593 $$ = $2;
1595 | '~' sizednumexpr %prec '~'
1597 $$.val = ~ $2.val;
1598 $$.dword = $2.dword;
1600 | sizedposnumexpr '*' sizednumexpr
1602 $$.val = $1.val * $3.val;
1603 $$.dword = $1.dword || $3.dword;
1605 | sizedposnumexpr '/' sizednumexpr
1607 $$.val = $1.val / $3.val;
1608 $$.dword = $1.dword || $3.dword;
1610 | sizedposnumexpr '%' sizednumexpr
1612 $$.val = $1.val % $3.val;
1613 $$.dword = $1.dword || $3.dword;
1615 | sizedposnumexpr '+' sizednumexpr
1617 $$.val = $1.val + $3.val;
1618 $$.dword = $1.dword || $3.dword;
1620 | sizedposnumexpr '-' sizednumexpr
1622 $$.val = $1.val - $3.val;
1623 $$.dword = $1.dword || $3.dword;
1625 | sizedposnumexpr '&' sizednumexpr
1627 $$.val = $1.val & $3.val;
1628 $$.dword = $1.dword || $3.dword;
1630 | sizedposnumexpr '^' sizednumexpr
1632 $$.val = $1.val ^ $3.val;
1633 $$.dword = $1.dword || $3.dword;
1635 | sizedposnumexpr '|' sizednumexpr
1637 $$.val = $1.val | $3.val;
1638 $$.dword = $1.dword || $3.dword;
1644 /* Set the language from the command line. */
1646 void
1647 rcparse_set_language (lang)
1648 int lang;
1650 language = lang;