]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/tools/gentest/gentest.c
ICU-66108.tar.gz
[apple/icu.git] / icuSources / tools / gentest / gentest.c
index b65bd0bf5e25a589eb2af0dd2697c8d2d1c1366a..77076e9369cd8da4c20edfe8513ff8e2d3ca27fe 100644 (file)
@@ -1,12 +1,14 @@
+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
 /*
 *******************************************************************************
 *
-*   Copyright (C) 1999-2006, International Business Machines
+*   Copyright (C) 1999-2016, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 *
 *******************************************************************************
 *   file name:  gentest.c
-*   encoding:   US-ASCII
+*   encoding:   UTF-8
 *   tab size:   8 (not used)
 *   indentation:4
 *
@@ -22,6 +24,7 @@
 #include "unicode/putil.h"
 #include "unicode/uclean.h"
 #include "unicode/udata.h"
+#include "udbgutil.h"
 #include "unewdata.h"
 #include "cmemory.h"
 #include "cstring.h"
@@ -48,11 +51,14 @@ static const UDataInfo dataInfo={
 
 static void createData(const char*, UErrorCode *);
 
+static int outputJavaStuff(const char * progname, const char *outputDir);
+
 static UOption options[]={
   /*0*/ UOPTION_HELP_H,
   /*1*/ UOPTION_HELP_QUESTION_MARK,
   /*2*/ UOPTION_DESTDIR,
-  /*3*/ UOPTION_DEF("genres", 'r', UOPT_NO_ARG)
+  /*3*/ UOPTION_DEF("genres", 'r', UOPT_NO_ARG),
+  /*4*/ UOPTION_DEF("javastuff", 'j', UOPT_NO_ARG),  
 };
 
 extern int
@@ -61,7 +67,7 @@ main(int argc, char* argv[]) {
 
     /* preset then read command line options */
     options[2].value=u_getDataDirectory();
-    argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
+    argc=u_parseArgs(argc, argv, UPRV_LENGTHOF(options), options);
 
     /* error handling, printing usage message */
     if(argc<0) {
@@ -76,12 +82,15 @@ main(int argc, char* argv[]) {
             "\toptions:\n"
             "\t\t-h or -? or --help  this usage text\n"
             "\t\t-d or --destdir     destination directory, followed by the path\n"
-            "\t\t-r or --genres      generate resource file testtable32.txt instead of UData test \n",
+            "\t\t-r or --genres      generate resource file testtable32.txt instead of UData test \n"
+            "\t\t-j or --javastuff   generate Java source for DebugUtilities. \n",
             argv[0]);
         return argc<0 ? U_ILLEGAL_ARGUMENT_ERROR : U_ZERO_ERROR;
     }
 
-    if ( options[3].doesOccur ) {
+    if( options[4].doesOccur ) {
+       return outputJavaStuff( argv[0], options[2].value );
+    } else if ( options[3].doesOccur ) {
         return genres32( argv[0], options[2].value );
     } else { 
         /* printf("Generating the test memory mapped file\n"); */
@@ -103,7 +112,7 @@ createData(const char* outputDirectory, UErrorCode *errorCode) {
     pData=udata_create(outputDirectory, DATA_TYPE, DATA_NAME, &dataInfo,
                        U_COPYRIGHT_STRING, errorCode);
     if(U_FAILURE(*errorCode)) {
-        fprintf(stderr, "gentest: unable to create data memory, error %d\n", *errorCode);
+        fprintf(stderr, "gentest: unable to create data memory, %s\n", u_errorName(*errorCode));
         exit(*errorCode);
     }
 
@@ -127,3 +136,94 @@ createData(const char* outputDirectory, UErrorCode *errorCode) {
         exit(U_INTERNAL_PROGRAM_ERROR);
     }
 }
+
+/* Create Java file ----------------------------------------------------- */
+
+static int
+outputJavaStuff(const char* progname, const char *outputDir) {
+    int32_t i,t,count;
+    char file[512];
+    FILE *out;
+
+    uprv_strcpy(file,outputDir);
+    if(*outputDir &&  /* don't put a trailing slash if outputDir is empty */ 
+        file[strlen(file)-1]!=U_FILE_SEP_CHAR) {
+            uprv_strcat(file,U_FILE_SEP_STRING);
+    }
+    uprv_strcat(file,"DebugUtilitiesData.java");
+    out = fopen(file, "w");
+    /*puts(file);*/
+    printf("%s: Generating %s\n", progname, file);
+    if(out == NULL) {
+        fprintf(stderr, "%s: Couldn't create resource test file %s\n",
+            progname, file);
+        return 1;
+    }
+
+    fprintf(out, "// Copyright (C) 2016 and later: Unicode, Inc. and others.\n");
+    fprintf(out, "// License & terms of use: http://www.unicode.org/copyright.html\n\n");
+    fprintf(out, "/** Copyright (C) 2007-2016, International Business Machines Corporation and Others. All Rights Reserved. **/\n\n");
+    fprintf(out, "/* NOTE: this file is AUTOMATICALLY GENERATED by gentest.\n"
+                 " * See: {ICU4C}/source/data/icu4j-readme.txt for more information. \n"
+                 " **/\n\n");
+    fprintf(out, "package com.ibm.icu.dev.test.util;\n\n");
+    fprintf(out, "public class DebugUtilitiesData extends Object {\n");
+    fprintf(out, "    public static final String ICU4C_VERSION=\"%s\";\n", U_ICU_VERSION);
+    for(t=0;t<UDBG_ENUM_COUNT;t++) {
+        fprintf(out, "    public static final int %s = %d;\n", udbg_enumName(UDBG_UDebugEnumType,t), t);
+    }
+    fprintf(out, "    public static final String [] TYPES = { \n");
+    for(t=0;t<UDBG_ENUM_COUNT;t++) {
+        fprintf(out, "        \"%s\", /* %d */\n", udbg_enumName(UDBG_UDebugEnumType,t), t);
+    }
+    fprintf(out, "    };\n\n");
+
+    fprintf(out, "    public static final String [][] NAMES = { \n");
+    for(t=0;t<UDBG_ENUM_COUNT;t++) {
+        count = udbg_enumCount((UDebugEnumType)t);
+        fprintf(out, "        /* %s, %d */\n", udbg_enumName(UDBG_UDebugEnumType,t), t);
+        fprintf(out, "        { \n");
+        for(i=0;i<count;i++) {
+            fprintf(out, 
+                "           \"%s\", /* %d */ \n", udbg_enumName((UDebugEnumType)t,i), i);
+        }
+        fprintf(out, "        },\n");
+    }
+    fprintf(out, "    };\n\n");
+
+    fprintf(out, "    public static final int [][] VALUES = { \n");
+    for(t=0;t<UDBG_ENUM_COUNT;t++) {
+        count = udbg_enumCount((UDebugEnumType)t);
+        fprintf(out, "        /* %s, %d */\n", udbg_enumName(UDBG_UDebugEnumType,t), t);
+        fprintf(out, "        { \n");
+        for(i=0;i<count;i++) {
+            fprintf(out, 
+                "           ");
+            switch(t) {
+#if !UCONFIG_NO_FORMATTING
+            case UDBG_UCalendarDateFields:
+            case UDBG_UCalendarMonths:
+                /* Temporary workaround for IS_LEAP_MONTH #6051 */
+                if (t == UDBG_UCalendarDateFields && i == 22) {
+                  fprintf(out, "com.ibm.icu.util.ChineseCalendar.%s, /* %d */", udbg_enumName((UDebugEnumType)t,i), i);
+                } else {
+                  fprintf(out, "com.ibm.icu.util.Calendar.%s, /* %d */", udbg_enumName((UDebugEnumType)t,i), i);
+                }
+                break;
+#endif
+            case UDBG_UDebugEnumType:
+            default:
+                fprintf(out,"%d, /* %s */", i, udbg_enumName((UDebugEnumType)t,i));
+            }
+            fprintf(out,"\n");
+        }
+        fprintf(out, "        },\n");
+    }
+    fprintf(out, "    };\n\n");
+    fprintf(out, "}\n");
+
+    fclose(out);
+
+    return 0;
+
+}