1 /* windmc.c -- a program to compile Windows message files.
2 Copyright (C) 2007-2023 Free Software Foundation, Inc.
3 Written by Kai Tietz, Onevision.
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 3 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., 51 Franklin Street - Fifth Floor, Boston, MA
23 /* This program can read and comile Windows message format.
25 It is based on information taken from the following sources:
27 * Microsoft documentation.
29 * The wmc program, written by Bertho A. Stultiens (BS). */
37 #include "libiberty.h"
38 #include "safe-ctype.h"
44 /* Defines a message compiler element item with length and offset
46 typedef struct mc_msg_item
50 struct bin_messagetable_item
*res
;
53 bool target_is_bigendian
= 0;
54 const char *def_target_arch
;
56 /* Globals and static variable definitions. */
58 /* bfd global helper struct variable. */
66 mc_node
*mc_nodes
= NULL
;
67 static mc_node_lang
**mc_nodes_lang
= NULL
;
68 static int mc_nodes_lang_count
= 0;
69 static mc_keyword
**mc_severity_codes
= NULL
;
70 static int mc_severity_codes_count
= 0;
71 static mc_keyword
**mc_facility_codes
= NULL
;
72 static int mc_facility_codes_count
= 0;
74 /* When we are building a resource tree, we allocate everything onto
75 an obstack, so that we can free it all at once if we want. */
76 #define obstack_chunk_alloc xmalloc
77 #define obstack_chunk_free free
79 /* The resource building obstack. */
80 static struct obstack res_obstack
;
83 /* Set by -C. Set the default code page to be used for input text file. */
84 static rc_uint_type mcset_codepage_in
= 0;
86 /* Set by -O. Set the default code page to be used for output text files. */
87 static rc_uint_type mcset_codepage_out
= 0;
89 /* Set by -b. .BIN filename should have .mc filename_ included for uniqueness. */
90 static int mcset_prefix_bin
= 0;
92 /* The base name of the .mc file. */
93 static const char *mcset_mc_basename
= "unknown";
95 /* Set by -e <ext>. Specify the extension for the header file. */
96 static const char *mcset_header_ext
= ".h";
98 /* Set by -h <path>. Gives the path of where to create the C include file. */
99 static const char *mcset_header_dir
= "./";
101 /* Set by -r <path>. Gives the path of where to create the RC include file
102 and the binary message resource files it includes. */
103 static const char *mcset_rc_dir
= "./";
105 /* Modified by -a & -u. By -u input file is unicode, by -a is ASCII (default). */
106 static int mcset_text_in_is_unicode
= 0;
108 /* Modified by -A & -U. By -U bin file is unicode (default), by -A is ASCII. */
109 static int mcset_bin_out_is_unicode
= 1;
111 /* Set by -c. Sets the Customer bit in all the message ID's. */
112 int mcset_custom_bit
= 0;
114 /* Set by -o. Generate OLE2 header file. Use HRESULT definition instead of
115 status code definition. */
116 static int mcset_use_hresult
= 0;
118 /* Set by -m <msglen>. Generate a warning if the size of any message exceeds
119 maxmsglen characters. */
120 rc_uint_type mcset_max_message_length
= 0;
122 /* Set by -d. Sets message values in header to decimal initially. */
123 int mcset_out_values_are_decimal
= 0;
125 /* Set by -n. terminates all strings with null's in the message tables. */
126 static int mcset_automatic_null_termination
= 0;
128 /* The type used for message id output in header. */
129 unichar
*mcset_msg_id_typedef
= NULL
;
131 /* Set by -x path. Geberated debug C file for mapping ID's to text. */
132 static const char *mcset_dbg_dir
= NULL
;
134 /* getopt long name definitions. */
135 static const struct option long_options
[] =
137 {"binprefix", no_argument
, 0, 'b'},
138 {"target", required_argument
, 0, 'F'},
139 {"extension", required_argument
, 0, 'e'},
140 {"headerdir", required_argument
, 0, 'h'},
141 {"rcdir", required_argument
, 0, 'r'},
142 {"verbose", no_argument
, 0, 'v'},
143 {"codepage_in", required_argument
, 0, 'C'},
144 {"codepage_out", required_argument
, 0, 'O'},
145 {"maxlength", required_argument
, 0, 'm'},
146 {"ascii_in", no_argument
, 0, 'a'},
147 {"ascii_out", no_argument
, 0, 'A'},
148 {"unicode_in", no_argument
, 0, 'u'},
149 {"unicode_out", no_argument
, 0, 'U'},
150 {"customflag", no_argument
, 0, 'c'},
151 {"decimal_values", no_argument
, 0, 'd'},
152 {"hresult_use", no_argument
, 0, 'o'},
153 {"nullterminate", no_argument
, 0, 'n'},
154 {"xdbg", required_argument
, 0, 'x'},
155 {"version", no_argument
, 0, 'V'},
156 {"help", no_argument
, 0, 'H'},
157 {0, no_argument
, 0, 0}
161 /* Initialize the resource building obstack. */
165 obstack_init (&res_obstack
);
168 /* Allocate space on the resource building obstack. */
170 res_alloc (rc_uint_type bytes
)
172 return obstack_alloc (&res_obstack
, (size_t) bytes
);
176 mc_create_path_text_file (const char *path
, const char *ext
)
182 len
+= (path
!= NULL
? strlen (path
) : 0);
183 len
+= strlen (mcset_mc_basename
);
184 len
+= (ext
!= NULL
? strlen (ext
) : 0);
186 sprintf (hsz
, "%s%s%s", (path
!= NULL
? path
: ""), mcset_mc_basename
,
187 (ext
!= NULL
? ext
: ""));
188 if ((ret
= fopen (hsz
, "wb")) == NULL
)
189 fatal (_("can't create %s file `%s' for output.\n"), (ext
? ext
: "text"), hsz
);
195 usage (FILE *stream
, int status
)
197 fprintf (stream
, _("Usage: %s [option(s)] [input-file]\n"),
199 fprintf (stream
, _(" The options are:\n\
200 -a --ascii_in Read input file as ASCII file\n\
201 -A --ascii_out Write binary messages as ASCII\n\
202 -b --binprefix .bin filename is prefixed by .mc filename_ for uniqueness.\n\
203 -c --customflag Set custom flags for messages\n\
204 -C --codepage_in=<val> Set codepage when reading mc text file\n\
205 -d --decimal_values Print values to text files decimal\n\
206 -e --extension=<extension> Set header extension used on export header file\n\
207 -F --target <target> Specify output target for endianness.\n\
208 -h --headerdir=<directory> Set the export directory for headers\n\
209 -u --unicode_in Read input file as UTF16 file\n\
210 -U --unicode_out Write binary messages as UFT16\n\
211 -m --maxlength=<val> Set the maximal allowed message length\n\
212 -n --nullterminate Automatic add a zero termination to strings\n\
213 -o --hresult_use Use HRESULT definition instead of status code definition\n\
214 -O --codepage_out=<val> Set codepage used for writing text file\n\
215 -r --rcdir=<directory> Set the export directory for rc files\n\
216 -x --xdbg=<directory> Where to create the .dbg C include file\n\
217 that maps message ID's to their symbolic name.\n\
219 fprintf (stream
, _("\
220 -H --help Print this help message\n\
221 -v --verbose Verbose - tells you what it's doing\n\
222 -V --version Print version information\n"));
224 list_supported_targets (program_name
, stream
);
226 if (REPORT_BUGS_TO
[0] && status
== 0)
227 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
233 set_endianness (bfd
*abfd
, const char *target
)
235 const bfd_target
*target_vec
;
237 def_target_arch
= NULL
;
238 target_vec
= bfd_get_target_info (target
, abfd
, &target_is_bigendian
, NULL
,
241 fatal ("Can't detect target endianness and architecture.");
242 if (! def_target_arch
)
243 fatal ("Can't detect architecture.");
247 probe_codepage (rc_uint_type
*cp
, int *is_uni
, const char *pswitch
, int defmode
)
258 if (*cp
!= 0 && *cp
!= CP_UTF16
)
260 fprintf (stderr
, _("%s: warning: "), program_name
);
261 fprintf (stderr
, _("A codepage was specified switch `%s' and UTF16.\n"), pswitch
);
262 fprintf (stderr
, _("\tcodepage settings are ignored.\n"));
274 if (! unicode_is_valid_codepage (*cp
))
275 fatal ("Code page 0x%x is unknown.", (unsigned int) *cp
);
285 ret
= res_alloc (sizeof (mc_node
));
286 memset (ret
, 0, sizeof (mc_node
));
291 mc_node
*h
= mc_nodes
;
293 while (h
->next
!= NULL
)
301 mc_add_node_lang (mc_node
*root
, const mc_keyword
*lang
, rc_uint_type vid
)
303 mc_node_lang
*ret
, *h
, *p
;
305 if (! lang
|| ! root
)
306 fatal (_("try to add a ill language."));
307 ret
= res_alloc (sizeof (mc_node_lang
));
308 memset (ret
, 0, sizeof (mc_node_lang
));
311 if ((h
= root
->sub
) == NULL
)
318 if (h
->lang
->nval
> lang
->nval
)
320 if (h
->lang
->nval
== lang
->nval
)
325 fatal ("double defined message id %ld.\n", (long) vid
);
339 convert_unicode_to_ACP (const unichar
*usz
)
346 codepage_from_unicode (&l
, usz
, &s
, mcset_codepage_out
);
348 fatal ("unicode string not mappable to ASCII codepage 0x%lx.\n",
349 (unsigned long) mcset_codepage_out
);
354 write_dbg_define (FILE *fp
, const unichar
*sym_name
, const unichar
*typecast
)
358 if (!sym_name
|| sym_name
[0] == 0)
360 sym
= convert_unicode_to_ACP (sym_name
);
363 unicode_print (fp
, typecast
, unichar_len (typecast
));
365 fprintf (fp
, "DWORD");
366 fprintf (fp
, ") %s, \"%s\" },\n", sym
, sym
);
370 write_header_define (FILE *fp
, const unichar
*sym_name
, rc_uint_type vid
, const unichar
*typecast
, mc_node_lang
*nl
)
375 if (!sym_name
|| sym_name
[0] == 0)
379 if (mcset_out_values_are_decimal
)
380 fprintf (fp
, "//\n// MessageId: %lu\n//\n", (unsigned long) vid
);
382 fprintf (fp
, "//\n// MessageId: 0x%lx\n//\n", (unsigned long) vid
);
386 sym
= convert_unicode_to_ACP (sym_name
);
387 if (typecast
&& typecast
[0] != 0)
388 tdef
= convert_unicode_to_ACP (typecast
);
389 fprintf (fp
, "//\n// MessageId: %s\n//\n", sym
);
390 if (! mcset_out_values_are_decimal
)
391 fprintf (fp
, "#define %s %s%s%s 0x%lx\n\n", sym
,
392 (tdef
? "(" : ""), (tdef
? tdef
: ""), (tdef
? ")" : ""),
393 (unsigned long) vid
);
395 fprintf (fp
, "#define %s %s%s%s %lu\n\n", sym
,
396 (tdef
? "(" : ""), (tdef
? tdef
: ""), (tdef
? ")" : ""),
397 (unsigned long) vid
);
401 sort_mc_node_lang (const void *l
, const void *r
)
403 const mc_node_lang
*l1
= *((const mc_node_lang
**)l
);
404 const mc_node_lang
*r1
= *((const mc_node_lang
**)r
);
408 if (l1
->lang
!= r1
->lang
)
410 if (l1
->lang
->nval
< r1
->lang
->nval
)
414 if (l1
->vid
== r1
->vid
)
416 if (l1
->vid
< r1
->vid
)
422 sort_keyword_by_nval (const void *l
, const void *r
)
424 const mc_keyword
*l1
= *((const mc_keyword
**)l
);
425 const mc_keyword
*r1
= *((const mc_keyword
**)r
);
426 rc_uint_type len1
, len2
;
431 if (l1
->nval
!= r1
->nval
)
433 if (l1
->nval
< r1
->nval
)
437 len1
= unichar_len (l1
->usz
);
438 len2
= unichar_len (r1
->usz
);
440 e
= memcmp (l1
->usz
, r1
->usz
, sizeof (unichar
) * len1
);
442 e
= memcmp (l1
->usz
, r1
->usz
, sizeof (unichar
) * len2
);
447 else if (len1
> len2
)
460 /* Sort message by their language and id ascending. */
461 mc_nodes_lang_count
= 0;
469 mc_nodes_lang_count
+=1;
475 if (mc_nodes_lang_count
!= 0)
479 mc_nodes_lang
= xmalloc (sizeof (mc_node_lang
*) * mc_nodes_lang_count
);
486 mc_nodes_lang
[i
++] = n
;
491 qsort (mc_nodes_lang
, (size_t) mc_nodes_lang_count
, sizeof (mc_node_lang
*), sort_mc_node_lang
);
493 /* Sort facility code definitions by there id ascending. */
495 while ((k
= enum_facility (i
)) != NULL
)
497 mc_facility_codes_count
= i
;
500 mc_facility_codes
= xmalloc (sizeof (mc_keyword
*) * i
);
502 while ((k
= enum_facility (i
)) != NULL
)
503 mc_facility_codes
[i
++] = (mc_keyword
*) k
;
504 qsort (mc_facility_codes
, (size_t) mc_facility_codes_count
, sizeof (mc_keyword
*), sort_keyword_by_nval
);
507 /* Sort severity code definitions by there id ascending. */
509 while ((k
= enum_severity (i
)) != NULL
)
511 mc_severity_codes_count
= i
;
514 mc_severity_codes
= xmalloc (sizeof (mc_keyword
*) * i
);
516 while ((k
= enum_severity (i
)) != NULL
)
517 mc_severity_codes
[i
++] = (mc_keyword
*) k
;
518 qsort (mc_severity_codes
, (size_t) mc_severity_codes_count
, sizeof (mc_keyword
*), sort_keyword_by_nval
);
523 mc_get_block_count (mc_node_lang
**nl
, int elems
)
536 while (i
< elems
&& nl
[i
]->vid
== exid
+ 1)
543 windmc_open_as_binary (const char *filename
)
547 abfd
= bfd_openw (filename
, "binary");
549 fatal ("can't open `%s' for output", filename
);
555 target_put_16 (void *p
, rc_uint_type value
)
559 if (target_is_bigendian
)
560 bfd_putb16 (value
, p
);
562 bfd_putl16 (value
, p
);
566 target_put_32 (void *p
, rc_uint_type value
)
570 if (target_is_bigendian
)
571 bfd_putb32 (value
, p
);
573 bfd_putl32 (value
, p
);
576 static struct bin_messagetable_item
*
577 mc_generate_bin_item (mc_node_lang
*n
, rc_uint_type
*res_len
)
579 struct bin_messagetable_item
*ret
= NULL
;
583 if (mcset_bin_out_is_unicode
== 1)
585 unichar
*ht
= n
->message
;
586 rc_uint_type txt_len
;
588 txt_len
= unichar_len (n
->message
);
589 if (mcset_automatic_null_termination
&& txt_len
!= 0)
591 while (txt_len
> 0 && ht
[txt_len
- 1] > 0 && ht
[txt_len
- 1] < 0x20)
594 txt_len
*= sizeof (unichar
);
595 len
= BIN_MESSAGETABLE_ITEM_SIZE
+ txt_len
+ sizeof (unichar
);
596 ret
= res_alloc ((len
+ 3) & ~3);
597 memset (ret
, 0, (len
+ 3) & ~3);
598 target_put_16 (ret
->length
, (len
+ 3) & ~3);
599 target_put_16 (ret
->flags
, MESSAGE_RESOURCE_UNICODE
);
603 target_put_16 (ret
->data
+ txt_len
, *ht
++);
609 rc_uint_type txt_len
, l
;
610 char *cvt_txt
= NULL
;
612 codepage_from_unicode( &l
, n
->message
, &cvt_txt
, n
->lang
->lang_info
.wincp
);
614 fatal ("Failed to convert message to language codepage.\n");
615 txt_len
= strlen (cvt_txt
);
616 if (mcset_automatic_null_termination
&& txt_len
> 0)
618 while (txt_len
> 0 && cvt_txt
[txt_len
- 1] > 0 && cvt_txt
[txt_len
- 1] < 0x20)
619 cvt_txt
[--txt_len
] = 0;
621 len
= BIN_MESSAGETABLE_ITEM_SIZE
+ txt_len
+ 1;
622 ret
= res_alloc ((len
+ 3) & ~3);
623 memset (ret
, 0, (len
+ 3) & ~3);
624 target_put_16 (ret
->length
, (len
+ 3) & ~3);
625 target_put_16 (ret
->flags
, 0);
626 strcpy ((char *) ret
->data
, cvt_txt
);
628 *res_len
= (len
+ 3) & ~3;
633 mc_write_blocks (struct bin_messagetable
*mtbl
, mc_node_lang
**nl
, mc_msg_item
*ml
, int elems
)
643 target_put_32 (mtbl
->items
[idx
].lowid
, nl
[i
]->vid
);
644 target_put_32 (mtbl
->items
[idx
].highid
, nl
[i
]->vid
);
645 target_put_32 (mtbl
->items
[idx
].offset
, ml
[i
].res_off
);
647 while (i
< elems
&& nl
[i
]->vid
== exid
+ 1)
649 target_put_32 (mtbl
->items
[idx
].highid
, nl
[i
]->vid
);
657 set_windmc_bfd_content (const void *data
, rc_uint_type off
, rc_uint_type length
)
659 if (! bfd_set_section_contents (mc_bfd
.abfd
, mc_bfd
.sec
, data
, off
, length
))
660 bfd_fatal ("bfd_set_section_contents");
664 windmc_write_bin (const char *filename
, mc_node_lang
**nl
, int elems
)
666 unsigned long sec_length
= 1;
669 struct bin_messagetable
*mtbl
;
670 rc_uint_type dta_off
, dta_start
;
674 mc_bfd
.abfd
= windmc_open_as_binary (filename
);
675 mc_bfd
.sec
= bfd_make_section_with_flags (mc_bfd
.abfd
, ".data",
676 (SEC_HAS_CONTENTS
| SEC_ALLOC
677 | SEC_LOAD
| SEC_DATA
));
678 if (mc_bfd
.sec
== NULL
)
679 bfd_fatal ("bfd_make_section");
680 /* Requiring this is probably a bug in BFD. */
681 mc_bfd
.sec
->output_section
= mc_bfd
.sec
;
683 block_count
= mc_get_block_count (nl
, elems
);
685 dta_off
= (rc_uint_type
) ((BIN_MESSAGETABLE_BLOCK_SIZE
* block_count
) + BIN_MESSAGETABLE_SIZE
- 4);
686 dta_start
= dta_off
= (dta_off
+ 3) & ~3;
687 mi
= xmalloc (sizeof (mc_msg_item
) * elems
);
688 mtbl
= xmalloc (dta_start
);
690 /* Clear header region. */
691 memset (mtbl
, 0, dta_start
);
692 target_put_32 (mtbl
->cblocks
, block_count
);
693 /* Prepare items section for output. */
694 for (i
= 0; i
< elems
; i
++)
696 mi
[i
].res_off
= dta_off
;
697 mi
[i
].res
= mc_generate_bin_item (nl
[i
], &mi
[i
].res_len
);
698 dta_off
+= mi
[i
].res_len
;
700 sec_length
= (dta_off
+ 3) & ~3;
701 if (!bfd_set_section_size (mc_bfd
.sec
, sec_length
))
702 bfd_fatal ("bfd_set_section_size");
703 /* Make sure we write the complete block. */
704 set_windmc_bfd_content ("\0", sec_length
- 1, 1);
706 /* Write block information. */
707 mc_write_blocks (mtbl
, nl
, mi
, elems
);
709 set_windmc_bfd_content (mtbl
, 0, dta_start
);
712 for (i
= 0; i
< elems
; i
++)
713 set_windmc_bfd_content (mi
[i
].res
, mi
[i
].res_off
, mi
[i
].res_len
);
717 bfd_close (mc_bfd
.abfd
);
725 mc_node_lang
*n
= NULL
;
728 if (! mc_nodes_lang_count
)
732 while (i
< mc_nodes_lang_count
)
737 if (n
&& n
->lang
== mc_nodes_lang
[i
]->lang
)
742 n
= mc_nodes_lang
[i
];
744 while (c
< mc_nodes_lang_count
&& n
->lang
== mc_nodes_lang
[c
]->lang
)
746 nd
= convert_unicode_to_ACP (n
->lang
->sval
);
748 /* Prepare filename for binary output. */
749 filename
= xmalloc (strlen (nd
) + 4 + 1 + strlen (mcset_mc_basename
) + 1 + strlen (mcset_rc_dir
));
750 strcpy (filename
, mcset_rc_dir
);
751 if (mcset_prefix_bin
)
752 sprintf (filename
+ strlen (filename
), "%s_", mcset_mc_basename
);
753 strcat (filename
, nd
);
754 strcat (filename
, ".bin");
756 /* Write message file. */
757 windmc_write_bin (filename
, &mc_nodes_lang
[i
], (c
- i
));
771 "/* Do not edit this file manually.\n"
772 " This file is autogenerated by windmc. */\n\n");
773 if (! mc_nodes_lang_count
)
776 for (l
= 0; l
< mc_nodes_lang_count
; l
++)
778 if (n
&& n
->lang
== mc_nodes_lang
[l
]->lang
)
780 n
= mc_nodes_lang
[l
];
781 fprintf (fp
, "\n// Country: %s\n// Language: %s\n#pragma code_page(%u)\n",
782 n
->lang
->lang_info
.country
, n
->lang
->lang_info
.name
,
783 (unsigned) n
->lang
->lang_info
.wincp
);
784 fprintf (fp
, "LANGUAGE 0x%lx, 0x%lx\n",
785 (unsigned long) (n
->lang
->nval
& 0x3ff),
786 (unsigned long) ((n
->lang
->nval
& 0xffff) >> 10));
787 fprintf (fp
, "1 MESSAGETABLE \"");
788 if (mcset_prefix_bin
)
789 fprintf (fp
, "%s_", mcset_mc_basename
);
790 unicode_print (fp
, n
->lang
->sval
, unichar_len (n
->lang
->sval
));
791 fprintf (fp
, ".bin\"\n");
801 "/* Do not edit this file manually.\n"
802 " This file is autogenerated by windmc.\n\n"
803 " This file maps each message ID value in to a text string that contains\n"
804 " the symbolic name used for it. */\n\n");
807 "struct %sSymbolicName\n"
808 "{\n ", mcset_mc_basename
);
809 if (mcset_msg_id_typedef
)
810 unicode_print (fp
, mcset_msg_id_typedef
, unichar_len (mcset_msg_id_typedef
));
812 fprintf (fp
, "DWORD");
815 " char *SymbolicName;\n"
816 "} %sSymbolicNames[] =\n"
817 "{\n", mcset_mc_basename
);
822 write_dbg_define (fp
, h
->symbol
, h
->id_typecast
);
825 fprintf (fp
, " { (");
826 if (mcset_msg_id_typedef
)
827 unicode_print (fp
, mcset_msg_id_typedef
, unichar_len (mcset_msg_id_typedef
));
829 fprintf (fp
, "DWORD");
831 ") 0xffffffff, NULL }\n"
836 write_header (FILE *fp
)
840 const mc_keyword
*key
;
844 "/* Do not edit this file manually.\n"
845 " This file is autogenerated by windmc. */\n\n"
846 "//\n// The values are 32 bit layed out as follows:\n//\n"
847 "// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1\n"
848 "// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0\n"
849 "// +---+-+-+-----------------------+-------------------------------+\n"
850 "// |Sev|C|R| Facility | Code |\n"
851 "// +---+-+-+-----------------------+-------------------------------+\n//\n"
853 "// C - is the Customer code flag\n//\n"
854 "// R - is a reserved bit\n//\n"
855 "// Code - is the facility's status code\n//\n");
859 fprintf (fp
, "// Sev - is the severity code\n//\n");
860 if (mc_severity_codes_count
!= 0)
862 for (i
= 0; i
< mc_severity_codes_count
; i
++)
864 key
= mc_severity_codes
[i
];
865 fprintf (fp
, "// %s - %02lx\n", convert_unicode_to_ACP (key
->usz
),
866 (unsigned long) key
->nval
);
867 if (key
->sval
&& key
->sval
[0] != 0)
869 if (! mcset_out_values_are_decimal
)
870 fprintf (fp
, "#define %s 0x%lx\n", convert_unicode_to_ACP (key
->sval
),
871 (unsigned long) key
->nval
);
873 fprintf (fp
, "#define %s %lu\n", convert_unicode_to_ACP (key
->sval
),
874 (unsigned long) key
->nval
);
877 fprintf (fp
, "//\n");
879 fprintf (fp
, "// Facility - is the facility code\n//\n");
880 if (mc_facility_codes_count
!= 0)
882 for (i
= 0; i
< mc_facility_codes_count
; i
++)
884 key
= mc_facility_codes
[i
];
885 fprintf (fp
, "// %s - %04lx\n", convert_unicode_to_ACP (key
->usz
),
886 (unsigned long) key
->nval
);
887 if (key
->sval
&& key
->sval
[0] != 0)
889 if (! mcset_out_values_are_decimal
)
890 fprintf (fp
, "#define %s 0x%lx\n", convert_unicode_to_ACP (key
->sval
),
891 (unsigned long) key
->nval
);
893 fprintf (fp
, "#define %s %lu\n", convert_unicode_to_ACP (key
->sval
),
894 (unsigned long) key
->nval
);
897 fprintf (fp
, "//\n");
904 s
= convert_unicode_to_ACP (h
->user_text
);
906 fprintf (fp
, "%s", s
);
909 write_header_define (fp
, h
->symbol
, h
->vid
, h
->id_typecast
, h
->sub
);
915 mc_unify_path (const char *path
)
920 if (! path
|| *path
== 0)
922 hsz
= xmalloc (strlen (path
) + 2);
924 end
= hsz
+ strlen (hsz
);
925 if (end
[-1] != '/' && end
[-1] != '\\')
927 while ((end
= strchr (hsz
, '\\')) != NULL
)
932 int main (int, char **);
935 main (int argc
, char **argv
)
939 char *target
, *input_filename
;
942 #ifdef HAVE_LC_MESSAGES
943 setlocale (LC_MESSAGES
, "");
945 setlocale (LC_CTYPE
, "");
946 bindtextdomain (PACKAGE
, LOCALEDIR
);
947 textdomain (PACKAGE
);
949 program_name
= argv
[0];
950 xmalloc_set_program_name (program_name
);
951 bfd_set_error_program_name (program_name
);
953 expandargv (&argc
, &argv
);
955 if (bfd_init () != BFD_INIT_MAGIC
)
956 fatal (_("fatal error: libbfd ABI mismatch"));
957 set_default_bfd_target ();
961 input_filename
= NULL
;
965 while ((c
= getopt_long (argc
, argv
, "C:F:O:h:e:m:r:x:aAbcdHunoUvV", long_options
,
971 mcset_prefix_bin
= 1;
975 mcset_header_ext
= optarg
;
976 if (mcset_header_ext
[0] != '.' && mcset_header_ext
[0] != 0)
978 char *hsz
= xmalloc (strlen (mcset_header_ext
) + 2);
980 sprintf (hsz
, ".%s", mcset_header_ext
);
981 mcset_header_ext
= hsz
;
986 mcset_header_dir
= mc_unify_path (optarg
);
989 mcset_rc_dir
= mc_unify_path (optarg
);
992 mcset_text_in_is_unicode
= 0;
996 mcset_dbg_dir
= mc_unify_path (optarg
);
999 mcset_bin_out_is_unicode
= 0;
1002 mcset_out_values_are_decimal
= 1;
1005 mcset_text_in_is_unicode
= 1;
1008 mcset_bin_out_is_unicode
= 1;
1011 mcset_custom_bit
= 1;
1014 mcset_automatic_null_termination
= 1;
1017 mcset_use_hresult
= 1;
1018 fatal ("option -o is not implemented until yet.\n");
1027 mcset_max_message_length
= strtol (optarg
, (char **) NULL
, 10);
1030 mcset_codepage_in
= strtol (optarg
, (char **) NULL
, 10);
1033 mcset_codepage_out
= strtol (optarg
, (char **) NULL
, 10);
1040 print_version ("windmc");
1048 if (input_filename
== NULL
&& optind
< argc
)
1050 input_filename
= argv
[optind
];
1054 set_endianness (NULL
, target
);
1056 if (input_filename
== NULL
)
1058 fprintf (stderr
, "Error: No input file was specified.\n");
1061 mc_set_inputfile (input_filename
);
1063 if (!probe_codepage (&mcset_codepage_in
, &mcset_text_in_is_unicode
, "codepage_in", 0))
1065 if (mcset_codepage_out
== 0)
1066 mcset_codepage_out
= 1252;
1067 if (! unicode_is_valid_codepage (mcset_codepage_out
))
1068 fatal ("Code page 0x%x is unknown.", (unsigned int) mcset_codepage_out
);
1069 if (mcset_codepage_out
== CP_UTF16
)
1070 fatal ("UTF16 is no valid text output code page.");
1073 fprintf (stderr
, "// Default target is %s and it is %s endian.\n",
1074 def_target_arch
, (target_is_bigendian
? "big" : "little"));
1075 fprintf (stderr
, "// Input codepage: 0x%x\n", (unsigned int) mcset_codepage_in
);
1076 fprintf (stderr
, "// Output codepage: 0x%x\n", (unsigned int) mcset_codepage_out
);
1082 /* Initialize mcset_mc_basename. */
1084 const char *bn
, *bn2
;
1087 bn
= strrchr (input_filename
, '/');
1088 bn2
= strrchr (input_filename
, '\\');
1091 if (bn
&& bn2
&& bn
< bn2
)
1094 bn
= input_filename
;
1097 mcset_mc_basename
= hsz
= xstrdup (bn
);
1099 /* Cut of right-hand extension. */
1100 if ((hsz
= strrchr (hsz
, '.')) != NULL
)
1104 /* Load the input file and do code page transformations to UTF16. */
1110 FILE *fp
= fopen (input_filename
, "rb");
1113 fatal (_("unable to open file `%s' for input.\n"), input_filename
);
1115 fseek (fp
, 0, SEEK_END
);
1117 fseek (fp
, 0, SEEK_SET
);
1118 buff
= malloc (flen
+ 3);
1119 memset (buff
, 0, flen
+ 3);
1120 if (fread (buff
, 1, flen
, fp
) < flen
)
1121 fatal (_("unable to read contents of %s"), input_filename
);
1123 if (mcset_text_in_is_unicode
!= 1)
1125 unicode_from_codepage (&ul
, &u
, buff
, mcset_codepage_in
);
1127 fatal ("Failed to convert input to UFT16\n");
1132 if ((flen
& 1) != 0)
1133 fatal (_("input file does not seems to be UFT16.\n"));
1134 mc_set_content ((unichar
*) buff
);
1144 h_fp
= mc_create_path_text_file (mcset_header_dir
, mcset_header_ext
);
1145 write_header (h_fp
);
1148 h_fp
= mc_create_path_text_file (mcset_rc_dir
, ".rc");
1152 if (mcset_dbg_dir
!= NULL
)
1154 h_fp
= mc_create_path_text_file (mcset_dbg_dir
, ".dbg");
1160 free (mc_nodes_lang
);
1161 free (mc_severity_codes
);
1162 free (mc_facility_codes
);