1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 *******************************************************************************
6 * Copyright (C) 1999-2013, International Business Machines
7 * Corporation and others. All Rights Reserved.
9 *******************************************************************************
10 * file name: gendata.cpp
12 * created on: 11/03/2000
13 * created by: Eric R. Mader
20 #include "unicode/utypes.h"
21 #include "unicode/unistr.h"
22 #include "unicode/uscript.h"
23 #include "unicode/ubidi.h"
24 #include "unicode/ustring.h"
26 #include "layout/LETypes.h"
27 #include "layout/LEScripts.h"
28 #include "layout/LayoutEngine.h"
30 #include "PortableFontInstance.h"
31 #include "SimpleFontInstance.h"
33 #include "xmlparser.h"
40 static LEErrorCode overallStatus
= LE_NO_ERROR
;
50 /* Returns the path to icu/source/test/testdata/ */
51 const char *getSourceTestData() {
52 const char *srcDataDir
= NULL
;
54 srcDataDir
= U_TOPSRCDIR U_FILE_SEP_STRING
"test" U_FILE_SEP_STRING
"testdata" U_FILE_SEP_STRING
;
56 srcDataDir
= ".."U_FILE_SEP_STRING
".."U_FILE_SEP_STRING
"test"U_FILE_SEP_STRING
"testdata"U_FILE_SEP_STRING
;
57 FILE *f
= fopen(".."U_FILE_SEP_STRING
".."U_FILE_SEP_STRING
"test"U_FILE_SEP_STRING
"testdata"U_FILE_SEP_STRING
"rbbitst.txt", "r");
60 /* We're in icu/source/test/letest/ */
63 /* We're in icu/source/test/letest/(Debug|Release) */
64 srcDataDir
= ".."U_FILE_SEP_STRING
".."U_FILE_SEP_STRING
".."U_FILE_SEP_STRING
"test"U_FILE_SEP_STRING
"testdata"U_FILE_SEP_STRING
;
71 const char *getPath(char buffer
[2048], const char *filename
) {
72 const char *testDataDirectory
= getSourceTestData();
74 strcpy(buffer
, testDataDirectory
);
75 strcat(buffer
, filename
);
81 * FIXME: should use the output file name and the current date.
84 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
87 " Copyright (c) 1999-%4.4d International Business Machines\n"
88 " Corporation and others. All rights reserved.\n"
90 " WARNING: THIS FILE IS MACHINE GENERATED. DO NOT HAND EDIT IT\n"
91 " UNLESS YOU REALLY KNOW WHAT YOU'RE DOING.\n"
93 " file name: letest.xml\n"
95 " generated by: gendata.cpp\n"
100 void dumpLongs(FILE *file
, const char *tag
, le_int32
*longs
, le_int32 count
) {
101 char lineBuffer
[8 * 12 + 2];
104 fprintf(file
, " <%s>\n", tag
);
106 for (int i
= 0; i
< count
; i
+= 1) {
107 if (i
% 8 == 0 && bufp
!= 0) {
108 fprintf(file
, " %s\n", lineBuffer
);
112 bufp
+= sprintf(&lineBuffer
[bufp
], "0x%8.8X, ", longs
[i
]);
116 lineBuffer
[bufp
- 2] = '\0';
117 fprintf(file
, " %s\n", lineBuffer
);
120 fprintf(file
, " </%s>\n\n", tag
);
123 void dumpFloats(FILE *file
, const char *tag
, float *floats
, le_int32 count
) {
124 char lineBuffer
[8 * 16 + 2];
127 fprintf(file
, " <%s>\n", tag
);
129 for (int i
= 0; i
< count
; i
+= 1) {
130 if (i
% 8 == 0 && bufp
!= 0) {
131 fprintf(file
, " %s\n", lineBuffer
);
135 bufp
+= sprintf(&lineBuffer
[bufp
], "%f, ", floats
[i
]);
139 lineBuffer
[bufp
- 2] = '\0';
140 fprintf(file
, " %s\n", lineBuffer
);
143 fprintf(file
, " </%s>\n", tag
);
146 int main(int argc
, char *argv
[])
148 UErrorCode status
= U_ZERO_ERROR
;
149 const char *gendataFile
= "gendata.xml";
150 FILE *outputFile
= fopen(argv
[1], "w");
152 gendataFile
= argv
[2];
154 time_t now
= time(NULL
);
155 struct tm
*local
= localtime(&now
);
156 const char *tmFormat
= "%m/%d/%Y %I:%M:%S %p %Z";
159 strftime(tmString
, 64, tmFormat
, local
);
160 fprintf(outputFile
, header
, local
->tm_year
+ 1900, tmString
);
162 UXMLParser
*parser
= UXMLParser::createParser(status
);
163 UXMLElement
*root
= parser
->parseFile(gendataFile
, status
);
166 printf("Error: Could not open %s\n", gendataFile
);
169 } else if(U_FAILURE(status
)) {
170 printf("Error reading %s: %s\n", gendataFile
, u_errorName(status
));
173 printf("Reading %s\n", gendataFile
);
176 UnicodeString test_case
= UNICODE_STRING_SIMPLE("test-case");
177 UnicodeString test_text
= UNICODE_STRING_SIMPLE("test-text");
178 UnicodeString test_font
= UNICODE_STRING_SIMPLE("test-font");
180 // test-case attributes
181 UnicodeString id_attr
= UNICODE_STRING_SIMPLE("id");
182 UnicodeString script_attr
= UNICODE_STRING_SIMPLE("script");
183 UnicodeString lang_attr
= UNICODE_STRING_SIMPLE("lang");
185 // test-font attributes
186 UnicodeString name_attr
= UNICODE_STRING_SIMPLE("name");
188 const UXMLElement
*testCase
;
191 while((testCase
= root
->nextChildElement(tc
)) != NULL
) {
192 if (testCase
->getTagName().compare(test_case
) == 0) {
193 char *id
= getCString(testCase
->getAttribute(id_attr
));
194 char *script
= getCString(testCase
->getAttribute(script_attr
));
195 char *lang
= getCString(testCase
->getAttribute(lang_attr
));
197 printf("\n ID %s\n", id
);
198 LEFontInstance
*font
= NULL
;
199 const UXMLElement
*element
;
201 int32_t charCount
= 0;
202 int32_t typoFlags
= LayoutEngine::kTypoFlagKern
| LayoutEngine::kTypoFlagLiga
; // kerning + ligatures...
203 UScriptCode scriptCode
;
204 le_int32 languageCode
= -1;
206 int32_t glyphCount
= 0;
207 LEErrorCode leStatus
= LE_NO_ERROR
;
208 LayoutEngine
*engine
= NULL
;
209 LEGlyphID
*glyphs
= NULL
;
210 le_int32
*indices
= NULL
;
211 float *positions
= NULL
;
213 uscript_getCode(script
, &scriptCode
, 1, &status
);
214 if (LE_FAILURE(status
)) {
215 printf("Error: invalid script name: %s.\n", script
);
220 languageCode
= getLanguageCode(lang
);
222 if (languageCode
< 0) {
223 printf("Error: invalid language name: %s.\n", lang
);
227 fprintf(outputFile
, " <test-case id=\"%s\" script=\"%s\" lang=\"%s\">\n", id
, script
, lang
);
229 fprintf(outputFile
, " <test-case id=\"%s\" script=\"%s\">\n", id
, script
);
232 while((element
= testCase
->nextChildElement(ec
)) != NULL
) {
233 UnicodeString tag
= element
->getTagName();
235 // TODO: make sure that each element is only used once.
236 if (tag
.compare(test_font
) == 0) {
237 char *fontName
= getCString(element
->getAttribute(name_attr
));
238 const char *version
= NULL
;
240 PortableFontInstance
*pfi
= new PortableFontInstance(getPath(buf
,fontName
), 12, leStatus
);
242 if (LE_FAILURE(leStatus
)) {
243 printf("Error: could not open font: %s (path: %s)\n", fontName
, buf
);
244 freeCString(fontName
);
248 printf(" Generating: %s, %s, %s, %s\n", id
, script
, lang
, fontName
);
250 version
= pfi
->getNameString(NAME_VERSION_STRING
, PLATFORM_MACINTOSH
, MACINTOSH_ROMAN
, MACINTOSH_ENGLISH
);
252 // The standard recommends that the Macintosh Roman/English name string be present, but
253 // if it's not, try the Microsoft Unicode/English string.
254 if (version
== NULL
) {
255 const LEUnicode16
*uversion
= pfi
->getUnicodeNameString(NAME_VERSION_STRING
, PLATFORM_MICROSOFT
, MICROSOFT_UNICODE_BMP
, MICROSOFT_ENGLISH
);
257 if (uversion
!= NULL
) {
258 char uversion_utf8
[300];
259 UErrorCode status2
= U_ZERO_ERROR
;
260 u_strToUTF8(uversion_utf8
, 300, NULL
, uversion
, -1, &status2
);
261 if(U_FAILURE(status2
)) {
264 fprintf(outputFile
, " <test-font name=\"%s\" version=\"%s\" checksum=\"0x%8.8X\" rchecksum=\"0x%8.8X\"/>\n\n",
265 fontName
, uversion_utf8
, pfi
->getFontChecksum(), pfi
->getRawChecksum());
267 pfi
->deleteNameString(uversion
);
269 fprintf(outputFile
, " <test-font name=\"%s\" version=\"unknown-0x%8.8X\" checksum=\"0x%8.8X\" rchecksum=\"0x%8.8X\"/>\n\n",
270 fontName
, pfi
->getFontChecksum(), pfi
->getFontChecksum(), pfi
->getRawChecksum());
273 fprintf(outputFile
, " <test-font name=\"%s\" version=\"%s\" checksum=\"0x%8.8X\" rchecksum=\"0x%8.8X\"/>\n\n",
274 fontName
, version
, pfi
->getFontChecksum(), pfi
->getRawChecksum());
276 pfi
->deleteNameString(version
);
280 freeCString(fontName
);
283 } else if (tag
.compare(test_text
) == 0) {
286 text
= element
->getText(TRUE
);
287 charCount
= text
.length();
289 utf8
= getUTF8String(&text
);
290 fprintf(outputFile
, " <test-text>%s</test-text>\n\n", utf8
);
295 char *cTag
= getCString(&tag
);
297 printf("Test %s: unknown element with tag \"%s\"\n", id
, cTag
);
303 LEErrorCode fontStatus
= LE_NO_ERROR
;
305 font
= new SimpleFontInstance(12, fontStatus
);
306 typoFlags
|= 0x80000000L
; // use CharSubstitutionFilter...
309 engine
= LayoutEngine::layoutEngineFactory(font
, scriptCode
, languageCode
, typoFlags
, leStatus
);
311 if (LE_FAILURE(leStatus
)) {
312 printf("Error for test %s: could not create a LayoutEngine.\n", id
);
316 glyphCount
= engine
->layoutChars(text
.getBuffer(), 0, charCount
, charCount
, getRTL(text
), 0, 0, leStatus
);
318 glyphs
= NEW_ARRAY(LEGlyphID
, glyphCount
);
319 indices
= NEW_ARRAY(le_int32
, glyphCount
);
320 positions
= NEW_ARRAY(float, glyphCount
* 2 + 2);
322 engine
->getGlyphs(glyphs
, leStatus
);
323 engine
->getCharIndices(indices
, leStatus
);
324 engine
->getGlyphPositions(positions
, leStatus
);
326 if(LE_FAILURE(leStatus
)) {
327 fprintf(stderr
,"ERROR: LO returned error: %s\n", u_errorName((UErrorCode
)leStatus
));
328 overallStatus
= leStatus
;
329 fprintf(outputFile
, "<!-- ERROR: %d -->\n", leStatus
);
331 leStatus
= LE_NO_ERROR
;
333 dumpLongs(outputFile
, "result-glyphs", (le_int32
*) glyphs
, glyphCount
);
335 dumpLongs(outputFile
, "result-indices", indices
, glyphCount
);
337 dumpFloats(outputFile
, "result-positions", positions
, glyphCount
* 2 + 2);
342 DELETE_ARRAY(positions
);
343 DELETE_ARRAY(indices
);
344 DELETE_ARRAY(glyphs
);
349 fprintf(outputFile
, " </test-case>\n\n");
364 fprintf(outputFile
, "</layout-tests>\n");
367 fprintf(stderr
, "No cases processed!\n");
372 if(LE_FAILURE(overallStatus
)) {
373 fprintf(outputFile
, "<!-- !!! FAILED. %d -->\n", overallStatus
);
374 fprintf(stderr
, "!!! FAILED. %d\n", overallStatus
);
379 printf("Generated.\n");