1 /* windmc.c -- a program to compile Windows message files.
3 Free Software Foundation, Inc.
4 Written by Kai Tietz, Onevision.
6 This file is part of GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
24 /* This program can read and comile Windows message format.
26 It is based on information taken from the following sources:
28 * Microsoft documentation.
30 * The wmc program, written by Bertho A. Stultiens (BS). */
38 #include "libiberty.h"
39 #include "safe-ctype.h"
45 /* Defines a message compiler element item with length and offset
47 typedef struct mc_msg_item
51 struct bin_messagetable_item *res;
54 /* Defined in bfd/binary.c. Used to set architecture and machine of input
56 extern enum bfd_architecture bfd_external_binary_architecture;
57 extern unsigned long bfd_external_machine;
59 int target_is_bigendian = 0;
60 const char *def_target_arch;
62 /* Globals and static variable definitions. */
64 /* bfd global helper struct variable. */
72 mc_node *mc_nodes = NULL;
73 static mc_node_lang **mc_nodes_lang = NULL;
74 static int mc_nodes_lang_count = 0;
75 static mc_keyword **mc_severity_codes = NULL;
76 static int mc_severity_codes_count = 0;
77 static mc_keyword **mc_facility_codes = NULL;
78 static int mc_facility_codes_count = 0;
80 /* When we are building a resource tree, we allocate everything onto
81 an obstack, so that we can free it all at once if we want. */
82 #define obstack_chunk_alloc xmalloc
83 #define obstack_chunk_free free
85 /* The resource building obstack. */
86 static struct obstack res_obstack;
89 /* Set by -C. Set the default code page to be used for input text file. */
90 static rc_uint_type mcset_codepage_in = 0;
92 /* Set by -O. Set the default code page to be used for output text files. */
93 static rc_uint_type mcset_codepage_out = 0;
95 /* Set by -b. .BIN filename should have .mc filename_ included for uniqueness. */
96 static int mcset_prefix_bin = 0;
98 /* The base name of the .mc file. */
99 static const char *mcset_mc_basename = "unknown";
101 /* Set by -e <ext>. Specify the extension for the header file. */
102 static const char *mcset_header_ext = ".h";
104 /* Set by -h <path>. Gives the path of where to create the C include file. */
105 static const char *mcset_header_dir = "./";
107 /* Set by -r <path>. Gives the path of where to create the RC include file
108 and the binary message resource files it includes. */
109 static const char *mcset_rc_dir = "./";
111 /* Modified by -a & -u. By -u input file is unicode, by -a is ASCII (default). */
112 static int mcset_text_in_is_unicode = 0;
114 /* Modified by -A & -U. By -U bin file is unicode (default), by -A is ASCII. */
115 static int mcset_bin_out_is_unicode = 1;
117 /* Set by -c. Sets the Customer bit in all the message ID's. */
118 int mcset_custom_bit = 0;
120 /* Set by -o. Generate OLE2 header file. Use HRESULT definition instead of
121 status code definition. */
122 static int mcset_use_hresult = 0;
124 /* Set by -m <msglen>. Generate a warning if the size of any message exceeds
125 maxmsglen characters. */
126 rc_uint_type mcset_max_message_length = 0;
128 /* Set by -d. Sets message values in header to decimal initially. */
129 int mcset_out_values_are_decimal = 0;
131 /* Set by -n. terminates all strings with null's in the message tables. */
132 static int mcset_automatic_null_termination = 0;
134 /* The type used for message id output in header. */
135 unichar *mcset_msg_id_typedef = NULL;
137 /* Set by -x path. Geberated debug C file for mapping ID's to text. */
138 static const char *mcset_dbg_dir = NULL;
140 /* getopt long name definitions. */
141 static const struct option long_options[] =
143 {"binprefix", no_argument, 0, 'b'},
144 {"target", required_argument, 0, 'F'},
145 {"extension", required_argument, 0, 'e'},
146 {"headerdir", required_argument, 0, 'h'},
147 {"rcdir", required_argument, 0, 'r'},
148 {"verbose", no_argument, 0, 'v'},
149 {"codepage_in", required_argument, 0, 'C'},
150 {"codepage_out", required_argument, 0, 'O'},
151 {"maxlength", required_argument, 0, 'm'},
152 {"ascii_in", no_argument, 0, 'a'},
153 {"ascii_out", no_argument, 0, 'A'},
154 {"unicode_in", no_argument, 0, 'u'},
155 {"unicode_out", no_argument, 0, 'U'},
156 {"customflag", no_argument, 0, 'c'},
157 {"decimal_values", no_argument, 0, 'd'},
158 {"hresult_use", no_argument, 0, 'o'},
159 {"nullterminate", no_argument, 0, 'n'},
160 {"xdbg", required_argument, 0, 'x'},
161 {"version", no_argument, 0, 'V'},
162 {"help", no_argument, 0, 'H'},
163 {0, no_argument, 0, 0}
167 /* Initialize the resource building obstack. */
171 obstack_init (&res_obstack);
174 /* Allocate space on the resource building obstack. */
176 res_alloc (rc_uint_type bytes)
178 return obstack_alloc (&res_obstack, (size_t) bytes);
182 mc_create_path_text_file (const char *path, const char *ext)
188 len += (path != NULL ? strlen (path) : 0);
189 len += strlen (mcset_mc_basename);
190 len += (ext != NULL ? strlen (ext) : 0);
192 sprintf (hsz, "%s%s%s", (path != NULL ? path : ""), mcset_mc_basename,
193 (ext != NULL ? ext : ""));
194 if ((ret = fopen (hsz, "wb")) == NULL)
195 fatal (_("can't create %s file ,%s' for output.\n"), (ext ? ext : "text"), hsz);
201 usage (FILE *stream, int status)
203 fprintf (stream, _("Usage: %s [option(s)] [input-file]\n"),
205 fprintf (stream, _(" The options are:\n\
206 -a --ascii_in Read input file as ASCII file\n\
207 -A --ascii_out Write binary messages as ASCII\n\
208 -b --binprefix .bin filename is prefixed by .mc filename_ for uniqueness.\n\
209 -c --customflag Set custom flags for messages\n\
210 -C --codepage_in=<val> Set codepage when reading mc text file\n\
211 -d --decimal_values Print values to text files decimal\n\
212 -e --extension=<extension> Set header extension used on export header file\n\
213 -F --target <target> Specify output target for endianess.\n\
214 -h --headerdir=<directory> Set the export directory for headers\n\
215 -u --unicode_in Read input file as UTF16 file\n\
216 -U --unicode_out Write binary messages as UFT16\n\
217 -m --maxlength=<val> Set the maximal allowed message length\n\
218 -n --nullterminate Automatic add a zero termination to strings\n\
219 -o --hresult_use Use HRESULT definition instead of status code definition\n\
220 -O --codepage_out=<val> Set codepage used for writing text file\n\
221 -r --rcdir=<directory> Set the export directory for rc files\n\
222 -x --xdbg=<directory> Where to create the .dbg C include file\n\
223 that maps message ID's to their symbolic name.\n\
225 fprintf (stream, _("\
226 -H --help Print this help message\n\
227 -v --verbose Verbose - tells you what it's doing\n\
228 -V --version Print version information\n"));
230 list_supported_targets (program_name, stream);
232 if (REPORT_BUGS_TO[0] && status == 0)
233 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
239 set_endianess (bfd *abfd, const char *target)
241 const bfd_target *target_vec;
243 def_target_arch = NULL;
244 target_vec = bfd_find_target (target, abfd);
246 fatal ("Can't detect target endianess and architecture.");
247 target_is_bigendian = ((target_vec->byteorder == BFD_ENDIAN_BIG) ? 1 : 0);
250 const char * tname = target_vec->name;
251 const char ** arches = bfd_arch_list ();
255 const char ** arch = arches;
257 if (strchr (tname, '-') != NULL)
258 tname = strchr (tname, '-') + 1;
260 while (*arch != NULL)
262 const char *in_a = strstr (*arch, tname);
263 char end_ch = (in_a ? in_a[strlen (tname)] : 0);
265 if (in_a && (in_a == *arch || in_a[-1] == ':')
268 def_target_arch = *arch;
277 if (! def_target_arch)
278 fatal ("Can't detect architecture.");
283 probe_codepage (rc_uint_type *cp, int *is_uni, const char *pswitch, int defmode)
294 if (*cp != 0 && *cp != CP_UTF16)
296 fprintf (stderr, _("%s: warning: "), program_name);
297 fprintf (stderr, _("A codepage was specified switch ,%s' and UTF16.\n"), pswitch);
298 fprintf (stderr, _("\tcodepage settings are ignored.\n"));
310 if (! unicode_is_valid_codepage (*cp))
311 fatal ("Code page 0x%x is unknown.", (unsigned int) *cp);
321 ret = res_alloc (sizeof (mc_node));
322 memset (ret, 0, sizeof (mc_node));
327 mc_node *h = mc_nodes;
329 while (h->next != NULL)
337 mc_add_node_lang (mc_node *root, const mc_keyword *lang, rc_uint_type vid)
339 mc_node_lang *ret, *h, *p;
341 if (! lang || ! root)
342 fatal (_("try to add a ill language."));
343 ret = res_alloc (sizeof (mc_node_lang));
344 memset (ret, 0, sizeof (mc_node_lang));
347 if ((h = root->sub) == NULL)
354 if (h->lang->nval > lang->nval)
356 if (h->lang->nval == lang->nval)
361 fatal ("double defined message id %ld.\n", (long) vid);
375 convert_unicode_to_ACP (const unichar *usz)
382 codepage_from_unicode (&l, usz, &s, mcset_codepage_out);
384 fatal ("unicode string not mappable to ASCII codepage 0x%lx.\n",
385 (unsigned long) mcset_codepage_out);
390 write_dbg_define (FILE *fp, const unichar *sym_name, const unichar *typecast)
394 if (!sym_name || sym_name[0] == 0)
396 sym = convert_unicode_to_ACP (sym_name);
399 unicode_print (fp, typecast, unichar_len (typecast));
401 fprintf (fp, "DWORD");
402 fprintf (fp, ") %s, \"%s\" },\n", sym, sym);
406 write_header_define (FILE *fp, const unichar *sym_name, rc_uint_type vid, const unichar *typecast, mc_node_lang *nl)
411 if (!sym_name || sym_name[0] == 0)
415 if (mcset_out_values_are_decimal)
416 fprintf (fp, "//\n// MessageId: 0x%lu\n//\n", (unsigned long) vid);
418 fprintf (fp, "//\n// MessageId: 0x%lx\n//\n", (unsigned long) vid);
422 sym = convert_unicode_to_ACP (sym_name);
423 if (typecast && typecast[0] != 0)
424 tdef = convert_unicode_to_ACP (typecast);
425 fprintf (fp, "//\n// MessageId: %s\n//\n", sym);
426 if (! mcset_out_values_are_decimal)
427 fprintf (fp, "#define %s %s%s%s 0x%lx\n\n", sym,
428 (tdef ? "(" : ""), (tdef ? tdef : ""), (tdef ? ")" : ""),
429 (unsigned long) vid);
431 fprintf (fp, "#define %s %s%s%s 0x%lu\n\n", sym,
432 (tdef ? "(" : ""), (tdef ? tdef : ""), (tdef ? ")" : ""),
433 (unsigned long) vid);
437 sort_mc_node_lang (const void *l, const void *r)
439 const mc_node_lang *l1 = *((const mc_node_lang **)l);
440 const mc_node_lang *r1 = *((const mc_node_lang **)r);
444 if (l1->lang != r1->lang)
446 if (l1->lang->nval < r1->lang->nval)
450 if (l1->vid == r1->vid)
452 if (l1->vid < r1->vid)
458 sort_keyword_by_nval (const void *l, const void *r)
460 const mc_keyword *l1 = *((const mc_keyword **)l);
461 const mc_keyword *r1 = *((const mc_keyword **)r);
462 rc_uint_type len1, len2;
467 if (l1->nval != r1->nval)
469 if (l1->nval < r1->nval)
473 len1 = unichar_len (l1->usz);
474 len2 = unichar_len (r1->usz);
476 e = memcmp (l1->usz, r1->usz, sizeof (unichar) * len1);
478 e = memcmp (l1->usz, r1->usz, sizeof (unichar) * len2);
483 else if (len1 > len2)
496 /* Sort message by their language and id ascending. */
497 mc_nodes_lang_count = 0;
505 mc_nodes_lang_count +=1;
511 if (mc_nodes_lang_count != 0)
515 mc_nodes_lang = xmalloc (sizeof (mc_node_lang *) * mc_nodes_lang_count);
522 mc_nodes_lang[i++] = n;
527 qsort (mc_nodes_lang, (size_t) mc_nodes_lang_count, sizeof (mc_node_lang *), sort_mc_node_lang);
529 /* Sort facility code definitions by there id ascending. */
531 while ((k = enum_facility (i)) != NULL)
533 mc_facility_codes_count = i;
536 mc_facility_codes = xmalloc (sizeof (mc_keyword *) * i);
538 while ((k = enum_facility (i)) != NULL)
539 mc_facility_codes[i++] = (mc_keyword *) k;
540 qsort (mc_facility_codes, (size_t) mc_facility_codes_count, sizeof (mc_keyword *), sort_keyword_by_nval);
543 /* Sort severity code definitions by there id ascending. */
545 while ((k = enum_severity (i)) != NULL)
547 mc_severity_codes_count = i;
550 mc_severity_codes = xmalloc (sizeof (mc_keyword *) * i);
552 while ((k = enum_severity (i)) != NULL)
553 mc_severity_codes[i++] = (mc_keyword *) k;
554 qsort (mc_severity_codes, (size_t) mc_severity_codes_count, sizeof (mc_keyword *), sort_keyword_by_nval);
559 mc_get_block_count (mc_node_lang **nl, int elems)
572 while (i < elems && nl[i]->vid == exid + 1)
579 windmc_open_as_binary (const char *filename)
583 abfd = bfd_openw (filename, "binary");
585 fatal ("can't open `%s' for output", filename);
591 target_put_16 (void *p, rc_uint_type value)
595 if (target_is_bigendian)
596 bfd_putb16 (value, p);
598 bfd_putl16 (value, p);
602 target_put_32 (void *p, rc_uint_type value)
606 if (target_is_bigendian)
607 bfd_putb32 (value, p);
609 bfd_putl32 (value, p);
612 static struct bin_messagetable_item *
613 mc_generate_bin_item (mc_node_lang *n, rc_uint_type *res_len)
615 struct bin_messagetable_item *ret = NULL;
619 if (mcset_bin_out_is_unicode == 1)
621 unichar *ht = n->message;
622 rc_uint_type txt_len;
624 txt_len = unichar_len (n->message);
625 if (mcset_automatic_null_termination && txt_len != 0)
627 while (txt_len > 0 && ht[txt_len - 1] > 0 && ht[txt_len - 1] < 0x20)
630 txt_len *= sizeof (unichar);
631 len = BIN_MESSAGETABLE_ITEM_SIZE + txt_len + sizeof (unichar);
632 ret = res_alloc ((len + 3) & ~3);
633 memset (ret, 0, (len + 3) & ~3);
634 target_put_16 (ret->length, (len + 3) & ~3);
635 target_put_16 (ret->flags, MESSAGE_RESOURCE_UNICODE);
639 target_put_16 (ret->data + txt_len, *ht++);
645 rc_uint_type txt_len, l;
648 codepage_from_unicode( &l, n->message, &cvt_txt, n->lang->lang_info.wincp);
650 fatal ("Failed to convert message to language codepage.\n");
651 txt_len = strlen (cvt_txt);
652 if (mcset_automatic_null_termination && txt_len > 0)
654 while (txt_len > 0 && cvt_txt[txt_len - 1] > 0 && cvt_txt[txt_len - 1] < 0x20)
655 cvt_txt[--txt_len] = 0;
657 len = BIN_MESSAGETABLE_ITEM_SIZE + txt_len + 1;
658 ret = res_alloc ((len + 3) & ~3);
659 memset (ret, 0, (len + 3) & ~3);
660 target_put_16 (ret->length, (len + 3) & ~3);
661 target_put_16 (ret->flags, 0);
662 strcpy ((char *) ret->data, cvt_txt);
664 *res_len = (len + 3) & ~3;
669 mc_write_blocks (struct bin_messagetable *mtbl, mc_node_lang **nl, mc_msg_item *ml, int elems)
679 target_put_32 (mtbl->items[idx].lowid, nl[i]->vid);
680 target_put_32 (mtbl->items[idx].highid, nl[i]->vid);
681 target_put_32 (mtbl->items[idx].offset, ml[i].res_off);
683 while (i < elems && nl[i]->vid == exid + 1)
685 target_put_32 (mtbl->items[idx].highid, nl[i]->vid);
693 set_windmc_bfd_content (const void *data, rc_uint_type off, rc_uint_type length)
695 if (! bfd_set_section_contents (mc_bfd.abfd, mc_bfd.sec, data, off, length))
696 bfd_fatal ("bfd_set_section_contents");
700 windmc_write_bin (const char *filename, mc_node_lang **nl, int elems)
702 unsigned long sec_length = 1;
705 struct bin_messagetable *mtbl;
706 rc_uint_type dta_off, dta_start;
710 mc_bfd.abfd = windmc_open_as_binary (filename);
711 mc_bfd.sec = bfd_make_section_with_flags (mc_bfd.abfd, ".data",
712 (SEC_HAS_CONTENTS | SEC_ALLOC
713 | SEC_LOAD | SEC_DATA));
714 if (mc_bfd.sec == NULL)
715 bfd_fatal ("bfd_make_section");
716 /* Requiring this is probably a bug in BFD. */
717 mc_bfd.sec->output_section = mc_bfd.sec;
719 block_count = mc_get_block_count (nl, elems);
721 dta_off = (rc_uint_type) ((BIN_MESSAGETABLE_BLOCK_SIZE * block_count) + BIN_MESSAGETABLE_SIZE - 4);
722 dta_start = dta_off = (dta_off + 3) & ~3;
723 mi = xmalloc (sizeof (mc_msg_item) * elems);
724 mtbl = xmalloc (dta_start);
726 /* Clear header region. */
727 memset (mtbl, 0, dta_start);
728 target_put_32 (mtbl->cblocks, block_count);
729 /* Prepare items section for output. */
730 for (i = 0; i < elems; i++)
732 mi[i].res_off = dta_off;
733 mi[i].res = mc_generate_bin_item (nl[i], &mi[i].res_len);
734 dta_off += mi[i].res_len;
736 sec_length = (dta_off + 3) & ~3;
737 if (! bfd_set_section_size (mc_bfd.abfd, mc_bfd.sec, sec_length))
738 bfd_fatal ("bfd_set_section_size");
739 /* Make sure we write the complete block. */
740 set_windmc_bfd_content ("\0", sec_length - 1, 1);
742 /* Write block information. */
743 mc_write_blocks (mtbl, nl, mi, elems);
745 set_windmc_bfd_content (mtbl, 0, dta_start);
748 for (i = 0; i < elems; i++)
749 set_windmc_bfd_content (mi[i].res, mi[i].res_off, mi[i].res_len);
753 bfd_close (mc_bfd.abfd);
761 mc_node_lang *n = NULL;
764 if (! mc_nodes_lang_count)
768 while (i < mc_nodes_lang_count)
773 if (n && n->lang == mc_nodes_lang[i]->lang)
778 n = mc_nodes_lang[i];
780 while (c < mc_nodes_lang_count && n->lang == mc_nodes_lang[c]->lang)
782 nd = convert_unicode_to_ACP (n->lang->sval);
784 /* Prepare filename for binary output. */
785 filename = xmalloc (strlen (nd) + 4 + 1 + strlen (mcset_mc_basename) + 1 + strlen (mcset_rc_dir));
786 strcpy (filename, mcset_rc_dir);
787 if (mcset_prefix_bin)
788 sprintf (filename + strlen (filename), "%s_", mcset_mc_basename);
789 strcat (filename, nd);
790 strcat (filename, ".bin");
792 /* Write message file. */
793 windmc_write_bin (filename, &mc_nodes_lang[i], (c - i));
807 "/* Do not edit this file manually.\n"
808 " This file is autogenerated by windmc. */\n\n");
809 if (! mc_nodes_lang_count)
813 for (l = 0; l < mc_nodes_lang_count; l++)
815 if (n && n->lang == mc_nodes_lang[l]->lang)
818 n = mc_nodes_lang[l];
819 fprintf (fp, "\n// Country: %s\n// Language: %s\n#pragma code_page(%u)\n",
820 n->lang->lang_info.country, n->lang->lang_info.name,
821 (unsigned) n->lang->lang_info.wincp);
822 fprintf (fp, "LANGUAGE 0x%lx, 0x%lx\n",
823 (unsigned long) (n->lang->nval & 0x3ff),
824 (unsigned long) ((n->lang->nval & 0xffff) >> 10));
825 fprintf (fp, "1 MESSAGETABLE \"");
826 if (mcset_prefix_bin)
827 fprintf (fp, "%s_", mcset_mc_basename);
828 unicode_print (fp, n->lang->sval, unichar_len (n->lang->sval));
829 fprintf (fp, ".bin\"\n");
839 "/* Do not edit this file manually.\n"
840 " This file is autogenerated by windmc.\n\n"
841 " This file maps each message ID value in to a text string that contains\n"
842 " the symbolic name used for it. */\n\n");
845 "struct %sSymbolicName\n"
846 "{\n ", mcset_mc_basename);
847 if (mcset_msg_id_typedef)
848 unicode_print (fp, mcset_msg_id_typedef, unichar_len (mcset_msg_id_typedef));
850 fprintf (fp, "DWORD");
853 " char *SymbolicName;\n"
854 "} %sSymbolicNames[] =\n"
855 "{\n", mcset_mc_basename);
860 write_dbg_define (fp, h->symbol, mcset_msg_id_typedef);
863 fprintf (fp, " { (");
864 if (mcset_msg_id_typedef)
865 unicode_print (fp, mcset_msg_id_typedef, unichar_len (mcset_msg_id_typedef));
867 fprintf (fp, "DWORD");
869 ") 0xffffffff, NULL }\n"
874 write_header (FILE *fp)
878 const mc_keyword *key;
882 "/* Do not edit this file manually.\n"
883 " This file is autogenerated by windmc. */\n\n"
884 "//\n// The values are 32 bit layed out as follows:\n//\n"
885 "// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1\n"
886 "// 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"
887 "// +---+-+-+-----------------------+-------------------------------+\n"
888 "// |Sev|C|R| Facility | Code |\n"
889 "// +---+-+-+-----------------------+-------------------------------+\n//\n"
891 "// C - is the Customer code flag\n//\n"
892 "// R - is a reserved bit\n//\n"
893 "// Code - is the facility's status code\n//\n");
897 fprintf (fp, "// Sev - is the severity code\n//\n");
898 if (mc_severity_codes_count != 0)
900 for (i = 0; i < mc_severity_codes_count; i++)
902 key = mc_severity_codes[i];
903 fprintf (fp, "// %s - %02lx\n", convert_unicode_to_ACP (key->usz),
904 (unsigned long) key->nval);
905 if (key->sval && key->sval[0] != 0)
907 if (! mcset_out_values_are_decimal)
908 fprintf (fp, "#define %s 0x%lx\n", convert_unicode_to_ACP (key->sval),
909 (unsigned long) key->nval);
911 fprintf (fp, "#define %s 0x%lu\n", convert_unicode_to_ACP (key->sval),
912 (unsigned long) key->nval);
915 fprintf (fp, "//\n");
917 fprintf (fp, "// Facility - is the facility code\n//\n");
918 if (mc_facility_codes_count != 0)
920 for (i = 0; i < mc_facility_codes_count; i++)
922 key = mc_facility_codes[i];
923 fprintf (fp, "// %s - %04lx\n", convert_unicode_to_ACP (key->usz),
924 (unsigned long) key->nval);
925 if (key->sval && key->sval[0] != 0)
927 if (! mcset_out_values_are_decimal)
928 fprintf (fp, "#define %s 0x%lx\n", convert_unicode_to_ACP (key->sval),
929 (unsigned long) key->nval);
931 fprintf (fp, "#define %s 0x%lu\n", convert_unicode_to_ACP (key->sval),
932 (unsigned long) key->nval);
935 fprintf (fp, "//\n");
942 s = convert_unicode_to_ACP (h->user_text);
944 fprintf (fp, "%s", s);
947 write_header_define (fp, h->symbol, h->vid, mcset_msg_id_typedef, h->sub);
953 mc_unify_path (const char *path)
958 if (! path || *path == 0)
960 hsz = xmalloc (strlen (path) + 2);
962 end = hsz + strlen (hsz);
963 if (hsz[-1] != '/' && hsz[-1] != '\\')
965 while ((end = strchr (hsz, '\\')) != NULL)
970 int main (int, char **);
973 main (int argc, char **argv)
977 char *target, *input_filename;
980 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
981 setlocale (LC_MESSAGES, "");
983 #if defined (HAVE_SETLOCALE)
984 setlocale (LC_CTYPE, "");
986 bindtextdomain (PACKAGE, LOCALEDIR);
987 textdomain (PACKAGE);
989 program_name = argv[0];
990 xmalloc_set_program_name (program_name);
992 expandargv (&argc, &argv);
995 set_default_bfd_target ();
999 input_filename = NULL;
1003 while ((c = getopt_long (argc, argv, "C:F:O:h:e:m:r:x:aAbcdHunoUvV", long_options,
1009 mcset_prefix_bin = 1;
1013 mcset_header_ext = optarg;
1014 if (mcset_header_ext[0] != '.' && mcset_header_ext[0] != 0)
1016 char *hsz = xmalloc (strlen (mcset_header_ext) + 2);
1018 sprintf (hsz, ".%s", mcset_header_ext);
1019 mcset_header_ext = hsz;
1024 mcset_header_dir = mc_unify_path (optarg);
1027 mcset_rc_dir = mc_unify_path (optarg);
1030 mcset_text_in_is_unicode = 0;
1034 mcset_dbg_dir = mc_unify_path (optarg);
1037 mcset_bin_out_is_unicode = 0;
1040 mcset_out_values_are_decimal = 1;
1043 mcset_text_in_is_unicode = 1;
1046 mcset_bin_out_is_unicode = 1;
1049 mcset_custom_bit = 1;
1052 mcset_automatic_null_termination = 1;
1055 mcset_use_hresult = 1;
1056 fatal ("option -o is not implemented until yet.\n");
1065 mcset_max_message_length = strtol (optarg, (char **) NULL, 10);
1068 mcset_codepage_in = strtol (optarg, (char **) NULL, 10);
1071 mcset_codepage_out = strtol (optarg, (char **) NULL, 10);
1078 print_version ("windmc");
1086 if (input_filename == NULL && optind < argc)
1088 input_filename = argv[optind];
1092 set_endianess (NULL, target);
1094 if (input_filename == NULL)
1096 fprintf (stderr, "Error: No input file was specified.\n");
1099 mc_set_inputfile (input_filename);
1101 if (!probe_codepage (&mcset_codepage_in, &mcset_text_in_is_unicode, "codepage_in", 0))
1103 if (mcset_codepage_out == 0)
1104 mcset_codepage_out = 1252;
1105 if (! unicode_is_valid_codepage (mcset_codepage_out))
1106 fatal ("Code page 0x%x is unknown.", (unsigned int) mcset_codepage_out);
1107 if (mcset_codepage_out == CP_UTF16)
1108 fatal ("UTF16 is no valid text output code page.");
1111 fprintf (stderr, "// Default target is %s and it is %s endian.\n",
1112 def_target_arch, (target_is_bigendian ? "big" : "little"));
1113 fprintf (stderr, "// Input codepage: 0x%x\n", (unsigned int) mcset_codepage_in);
1114 fprintf (stderr, "// Output codepage: 0x%x\n", (unsigned int) mcset_codepage_out);
1120 /* Initialize mcset_mc_basename. */
1122 const char *bn, *bn2;
1125 bn = strrchr (input_filename, '/');
1126 bn2 = strrchr (input_filename, '\\');
1129 if (bn && bn2 && bn < bn2)
1132 bn = input_filename;
1135 mcset_mc_basename = hsz = xstrdup (bn);
1137 /* Cut of right-hand extension. */
1138 if ((hsz = strrchr (hsz, '.')) != NULL)
1142 /* Load the input file and do code page transformations to UTF16. */
1148 FILE *fp = fopen (input_filename, "rb");
1151 fatal (_("unable to open file ,%s' for input.\n"), input_filename);
1153 fseek (fp, 0, SEEK_END);
1155 fseek (fp, 0, SEEK_SET);
1156 buff = malloc (flen + 3);
1157 memset (buff, 0, flen + 3);
1158 fread (buff, 1, flen, fp);
1160 if (mcset_text_in_is_unicode != 1)
1162 unicode_from_codepage (&ul, &u, buff, mcset_codepage_in);
1164 fatal ("Failed to convert input to UFT16\n");
1169 if ((flen & 1) != 0)
1170 fatal (_("input file does not seems to be UFT16.\n"));
1171 mc_set_content ((unichar *) buff);
1181 h_fp = mc_create_path_text_file (mcset_header_dir, mcset_header_ext);
1182 write_header (h_fp);
1185 h_fp = mc_create_path_text_file (mcset_rc_dir, ".rc");
1189 if (mcset_dbg_dir != NULL)
1191 h_fp = mc_create_path_text_file (mcset_dbg_dir, ".dbg");
1198 free (mc_nodes_lang);
1199 if (mc_severity_codes)
1200 free (mc_severity_codes);
1201 if (mc_facility_codes)
1202 free (mc_facility_codes);