2 *******************************************************************************
4 * Copyright (C) 1999-2013, International Business Machines
5 * Corporation and others. All Rights Reserved.
7 *******************************************************************************
8 * file name: gendata.cpp
10 * created on: 11/03/2000
11 * created by: Eric R. Mader
18 #include "unicode/utypes.h"
19 #include "unicode/unistr.h"
20 #include "unicode/uscript.h"
21 #include "unicode/ubidi.h"
22 #include "unicode/ustring.h"
24 #include "layout/LETypes.h"
25 #include "layout/LEScripts.h"
26 #include "layout/LayoutEngine.h"
28 #include "PortableFontInstance.h"
29 #include "SimpleFontInstance.h"
31 #include "xmlparser.h"
38 static LEErrorCode overallStatus
= LE_NO_ERROR
;
48 /* Returns the path to icu/source/test/testdata/ */
49 const char *getSourceTestData() {
50 const char *srcDataDir
= NULL
;
52 srcDataDir
= U_TOPSRCDIR U_FILE_SEP_STRING
"test" U_FILE_SEP_STRING
"testdata" U_FILE_SEP_STRING
;
54 srcDataDir
= ".."U_FILE_SEP_STRING
".."U_FILE_SEP_STRING
"test"U_FILE_SEP_STRING
"testdata"U_FILE_SEP_STRING
;
55 FILE *f
= fopen(".."U_FILE_SEP_STRING
".."U_FILE_SEP_STRING
"test"U_FILE_SEP_STRING
"testdata"U_FILE_SEP_STRING
"rbbitst.txt", "r");
58 /* We're in icu/source/test/letest/ */
61 /* We're in icu/source/test/letest/(Debug|Release) */
62 srcDataDir
= ".."U_FILE_SEP_STRING
".."U_FILE_SEP_STRING
".."U_FILE_SEP_STRING
"test"U_FILE_SEP_STRING
"testdata"U_FILE_SEP_STRING
;
69 const char *getPath(char buffer
[2048], const char *filename
) {
70 const char *testDataDirectory
= getSourceTestData();
72 strcpy(buffer
, testDataDirectory
);
73 strcat(buffer
, filename
);
79 * FIXME: should use the output file name and the current date.
82 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
85 " Copyright (c) 1999-%4.4d International Business Machines\n"
86 " Corporation and others. All rights reserved.\n"
88 " WARNING: THIS FILE IS MACHINE GENERATED. DO NOT HAND EDIT IT\n"
89 " UNLESS YOU REALLY KNOW WHAT YOU'RE DOING.\n"
91 " file name: letest.xml\n"
93 " generated by: gendata.cpp\n"
98 void dumpLongs(FILE *file
, const char *tag
, le_int32
*longs
, le_int32 count
) {
99 char lineBuffer
[8 * 12 + 2];
102 fprintf(file
, " <%s>\n", tag
);
104 for (int i
= 0; i
< count
; i
+= 1) {
105 if (i
% 8 == 0 && bufp
!= 0) {
106 fprintf(file
, " %s\n", lineBuffer
);
110 bufp
+= sprintf(&lineBuffer
[bufp
], "0x%8.8X, ", longs
[i
]);
114 lineBuffer
[bufp
- 2] = '\0';
115 fprintf(file
, " %s\n", lineBuffer
);
118 fprintf(file
, " </%s>\n\n", tag
);
121 void dumpFloats(FILE *file
, const char *tag
, float *floats
, le_int32 count
) {
122 char lineBuffer
[8 * 16 + 2];
125 fprintf(file
, " <%s>\n", tag
);
127 for (int i
= 0; i
< count
; i
+= 1) {
128 if (i
% 8 == 0 && bufp
!= 0) {
129 fprintf(file
, " %s\n", lineBuffer
);
133 bufp
+= sprintf(&lineBuffer
[bufp
], "%f, ", floats
[i
]);
137 lineBuffer
[bufp
- 2] = '\0';
138 fprintf(file
, " %s\n", lineBuffer
);
141 fprintf(file
, " </%s>\n", tag
);
144 int main(int argc
, char *argv
[])
146 UErrorCode status
= U_ZERO_ERROR
;
147 const char *gendataFile
= "gendata.xml";
148 FILE *outputFile
= fopen(argv
[1], "w");
150 gendataFile
= argv
[2];
152 time_t now
= time(NULL
);
153 struct tm
*local
= localtime(&now
);
154 const char *tmFormat
= "%m/%d/%Y %I:%M:%S %p %Z";
157 strftime(tmString
, 64, tmFormat
, local
);
158 fprintf(outputFile
, header
, local
->tm_year
+ 1900, tmString
);
160 UXMLParser
*parser
= UXMLParser::createParser(status
);
161 UXMLElement
*root
= parser
->parseFile(gendataFile
, status
);
164 printf("Error: Could not open %s\n", gendataFile
);
167 } else if(U_FAILURE(status
)) {
168 printf("Error reading %s: %s\n", gendataFile
, u_errorName(status
));
171 printf("Reading %s\n", gendataFile
);
174 UnicodeString test_case
= UNICODE_STRING_SIMPLE("test-case");
175 UnicodeString test_text
= UNICODE_STRING_SIMPLE("test-text");
176 UnicodeString test_font
= UNICODE_STRING_SIMPLE("test-font");
178 // test-case attributes
179 UnicodeString id_attr
= UNICODE_STRING_SIMPLE("id");
180 UnicodeString script_attr
= UNICODE_STRING_SIMPLE("script");
181 UnicodeString lang_attr
= UNICODE_STRING_SIMPLE("lang");
183 // test-font attributes
184 UnicodeString name_attr
= UNICODE_STRING_SIMPLE("name");
186 const UXMLElement
*testCase
;
189 while((testCase
= root
->nextChildElement(tc
)) != NULL
) {
190 if (testCase
->getTagName().compare(test_case
) == 0) {
191 char *id
= getCString(testCase
->getAttribute(id_attr
));
192 char *script
= getCString(testCase
->getAttribute(script_attr
));
193 char *lang
= getCString(testCase
->getAttribute(lang_attr
));
195 printf("\n ID %s\n", id
);
196 LEFontInstance
*font
= NULL
;
197 const UXMLElement
*element
;
199 int32_t charCount
= 0;
200 int32_t typoFlags
= LayoutEngine::kTypoFlagKern
| LayoutEngine::kTypoFlagLiga
; // kerning + ligatures...
201 UScriptCode scriptCode
;
202 le_int32 languageCode
= -1;
204 int32_t glyphCount
= 0;
205 LEErrorCode leStatus
= LE_NO_ERROR
;
206 LayoutEngine
*engine
= NULL
;
207 LEGlyphID
*glyphs
= NULL
;
208 le_int32
*indices
= NULL
;
209 float *positions
= NULL
;
211 uscript_getCode(script
, &scriptCode
, 1, &status
);
212 if (LE_FAILURE(status
)) {
213 printf("Error: invalid script name: %s.\n", script
);
218 languageCode
= getLanguageCode(lang
);
220 if (languageCode
< 0) {
221 printf("Error: invalid language name: %s.\n", lang
);
225 fprintf(outputFile
, " <test-case id=\"%s\" script=\"%s\" lang=\"%s\">\n", id
, script
, lang
);
227 fprintf(outputFile
, " <test-case id=\"%s\" script=\"%s\">\n", id
, script
);
230 while((element
= testCase
->nextChildElement(ec
)) != NULL
) {
231 UnicodeString tag
= element
->getTagName();
233 // TODO: make sure that each element is only used once.
234 if (tag
.compare(test_font
) == 0) {
235 char *fontName
= getCString(element
->getAttribute(name_attr
));
236 const char *version
= NULL
;
238 PortableFontInstance
*pfi
= new PortableFontInstance(getPath(buf
,fontName
), 12, leStatus
);
240 if (LE_FAILURE(leStatus
)) {
241 printf("Error: could not open font: %s (path: %s)\n", fontName
, buf
);
242 freeCString(fontName
);
246 printf(" Generating: %s, %s, %s, %s\n", id
, script
, lang
, fontName
);
248 version
= pfi
->getNameString(NAME_VERSION_STRING
, PLATFORM_MACINTOSH
, MACINTOSH_ROMAN
, MACINTOSH_ENGLISH
);
250 // The standard recommends that the Macintosh Roman/English name string be present, but
251 // if it's not, try the Microsoft Unicode/English string.
252 if (version
== NULL
) {
253 const LEUnicode16
*uversion
= pfi
->getUnicodeNameString(NAME_VERSION_STRING
, PLATFORM_MICROSOFT
, MICROSOFT_UNICODE_BMP
, MICROSOFT_ENGLISH
);
255 if (uversion
!= NULL
) {
256 char uversion_utf8
[300];
257 UErrorCode status2
= U_ZERO_ERROR
;
258 u_strToUTF8(uversion_utf8
, 300, NULL
, uversion
, -1, &status2
);
259 if(U_FAILURE(status2
)) {
262 fprintf(outputFile
, " <test-font name=\"%s\" version=\"%s\" checksum=\"0x%8.8X\" rchecksum=\"0x%8.8X\"/>\n\n",
263 fontName
, uversion_utf8
, pfi
->getFontChecksum(), pfi
->getRawChecksum());
265 pfi
->deleteNameString(uversion
);
267 fprintf(outputFile
, " <test-font name=\"%s\" version=\"unknown-0x%8.8X\" checksum=\"0x%8.8X\" rchecksum=\"0x%8.8X\"/>\n\n",
268 fontName
, pfi
->getFontChecksum(), pfi
->getFontChecksum(), pfi
->getRawChecksum());
271 fprintf(outputFile
, " <test-font name=\"%s\" version=\"%s\" checksum=\"0x%8.8X\" rchecksum=\"0x%8.8X\"/>\n\n",
272 fontName
, version
, pfi
->getFontChecksum(), pfi
->getRawChecksum());
274 pfi
->deleteNameString(version
);
278 freeCString(fontName
);
281 } else if (tag
.compare(test_text
) == 0) {
284 text
= element
->getText(TRUE
);
285 charCount
= text
.length();
287 utf8
= getUTF8String(&text
);
288 fprintf(outputFile
, " <test-text>%s</test-text>\n\n", utf8
);
293 char *cTag
= getCString(&tag
);
295 printf("Test %s: unknown element with tag \"%s\"\n", id
, cTag
);
301 LEErrorCode fontStatus
= LE_NO_ERROR
;
303 font
= new SimpleFontInstance(12, fontStatus
);
304 typoFlags
|= 0x80000000L
; // use CharSubstitutionFilter...
307 engine
= LayoutEngine::layoutEngineFactory(font
, scriptCode
, languageCode
, typoFlags
, leStatus
);
309 if (LE_FAILURE(leStatus
)) {
310 printf("Error for test %s: could not create a LayoutEngine.\n", id
);
314 glyphCount
= engine
->layoutChars(text
.getBuffer(), 0, charCount
, charCount
, getRTL(text
), 0, 0, leStatus
);
316 glyphs
= NEW_ARRAY(LEGlyphID
, glyphCount
);
317 indices
= NEW_ARRAY(le_int32
, glyphCount
);
318 positions
= NEW_ARRAY(float, glyphCount
* 2 + 2);
320 engine
->getGlyphs(glyphs
, leStatus
);
321 engine
->getCharIndices(indices
, leStatus
);
322 engine
->getGlyphPositions(positions
, leStatus
);
324 if(LE_FAILURE(leStatus
)) {
325 fprintf(stderr
,"ERROR: LO returned error: %s\n", u_errorName((UErrorCode
)leStatus
));
326 overallStatus
= leStatus
;
327 fprintf(outputFile
, "<!-- ERROR: %d -->\n", leStatus
);
329 leStatus
= LE_NO_ERROR
;
331 dumpLongs(outputFile
, "result-glyphs", (le_int32
*) glyphs
, glyphCount
);
333 dumpLongs(outputFile
, "result-indices", indices
, glyphCount
);
335 dumpFloats(outputFile
, "result-positions", positions
, glyphCount
* 2 + 2);
340 DELETE_ARRAY(positions
);
341 DELETE_ARRAY(indices
);
342 DELETE_ARRAY(glyphs
);
347 fprintf(outputFile
, " </test-case>\n\n");
362 fprintf(outputFile
, "</layout-tests>\n");
365 fprintf(stderr
, "No cases processed!\n");
370 if(LE_FAILURE(overallStatus
)) {
371 fprintf(outputFile
, "<!-- !!! FAILED. %d -->\n", overallStatus
);
372 fprintf(stderr
, "!!! FAILED. %d\n", overallStatus
);
377 printf("Generated.\n");