X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/b75a7d8f3b4adbae880cab104ce2c6a50eee4db2..374ca955a76ecab1204ca8bfa63ff9238d998416:/icuSources/test/perf/convperf/convperf.cpp diff --git a/icuSources/test/perf/convperf/convperf.cpp b/icuSources/test/perf/convperf/convperf.cpp new file mode 100644 index 00000000..a663857b --- /dev/null +++ b/icuSources/test/perf/convperf/convperf.cpp @@ -0,0 +1,653 @@ +/* +********************************************************************** +* Copyright (c) 2002-2004, International Business Machines +* Corporation and others. All Rights Reserved. +********************************************************************** +********************************************************************** +*/ +/** + * This Program tests the performance of ICU's Normalization engine against Windows + * to run it use the command like + * + * c:\normperf.exe -s C:\work\ICUCupertinoRep\icu4c\collation-perf-data -i 10 -p 15 -f TestNames_Asian.txt -u -e UTF-8 -l + */ +#include "convperf.h" +#include "data.h" + +int main(int argc, const char* argv[]){ + UErrorCode status = U_ZERO_ERROR; + ConverterPerformanceTest test(argc, argv, status); + if(U_FAILURE(status)){ + return status; + } + if(test.run()==FALSE){ + fprintf(stderr,"FAILED: Tests could not be run please check the arguments.\n"); + return -1; + } + return 0; +} + + +ConverterPerformanceTest::ConverterPerformanceTest(int32_t argc, const char* argv[], UErrorCode& status) +: UPerfTest(argc,argv,status){ + +} + +ConverterPerformanceTest::~ConverterPerformanceTest(){ + +} + +UPerfFunction* ConverterPerformanceTest::runIndexedTest(int32_t index, UBool exec,const char* &name, char* par) { + switch (index) { + TESTCASE(0,TestICU_CleanOpenAllConverters);// This calls u_cleanup() + TESTCASE(1,TestICU_OpenAllConverters);// This doesn't call u_cleanup() + + TESTCASE(2,TestICU_UTF8_ToUnicode); + TESTCASE(3,TestICU_UTF8_FromUnicode); + TESTCASE(4,TestWinANSI_UTF8_ToUnicode); + TESTCASE(5,TestWinANSI_UTF8_FromUnicode); + TESTCASE(6,TestWinIML2_UTF8_ToUnicode); + TESTCASE(7,TestWinIML2_UTF8_FromUnicode); + + TESTCASE(8,TestICU_Latin1_ToUnicode); + TESTCASE(9,TestICU_Latin1_FromUnicode); + TESTCASE(10,TestWinIML2_Latin1_ToUnicode); + TESTCASE(11,TestWinIML2_Latin1_FromUnicode); + + TESTCASE(12,TestICU_Latin8_ToUnicode); + TESTCASE(13,TestICU_Latin8_FromUnicode); + TESTCASE(14,TestWinIML2_Latin8_ToUnicode); + TESTCASE(15,TestWinIML2_Latin8_FromUnicode); + + TESTCASE(16,TestICU_EBCDIC_Arabic_ToUnicode); + TESTCASE(17,TestICU_EBCDIC_Arabic_FromUnicode); + TESTCASE(18,TestWinIML2_EBCDIC_Arabic_ToUnicode); + TESTCASE(19,TestWinIML2_EBCDIC_Arabic_FromUnicode); + + TESTCASE(20,TestICU_SJIS_ToUnicode); + TESTCASE(21,TestICU_SJIS_FromUnicode); + TESTCASE(22,TestWinIML2_SJIS_ToUnicode); + TESTCASE(23,TestWinIML2_SJIS_FromUnicode); + + TESTCASE(24,TestICU_EUCJP_ToUnicode); + TESTCASE(25,TestICU_EUCJP_FromUnicode); + TESTCASE(26,TestWinIML2_EUCJP_ToUnicode); + TESTCASE(27,TestWinIML2_EUCJP_FromUnicode); + + TESTCASE(28,TestICU_GB2312_FromUnicode); + TESTCASE(29,TestICU_GB2312_ToUnicode); + TESTCASE(30,TestWinIML2_GB2312_ToUnicode); + TESTCASE(31,TestWinIML2_GB2312_FromUnicode); + + TESTCASE(32,TestICU_ISO2022KR_ToUnicode); + TESTCASE(33,TestICU_ISO2022KR_FromUnicode); + TESTCASE(34,TestWinIML2_ISO2022KR_ToUnicode); + TESTCASE(35,TestWinIML2_ISO2022KR_FromUnicode); + + TESTCASE(36,TestICU_ISO2022JP_ToUnicode); + TESTCASE(37,TestICU_ISO2022JP_FromUnicode); + TESTCASE(38,TestWinIML2_ISO2022JP_ToUnicode); + TESTCASE(39,TestWinIML2_ISO2022JP_FromUnicode); + + TESTCASE(40,TestWinANSI_Latin1_ToUnicode); + TESTCASE(41,TestWinANSI_Latin1_FromUnicode); + + TESTCASE(42,TestWinANSI_Latin8_ToUnicode); + TESTCASE(43,TestWinANSI_Latin8_FromUnicode); + + TESTCASE(44,TestWinANSI_SJIS_ToUnicode); + TESTCASE(45,TestWinANSI_SJIS_FromUnicode); + + TESTCASE(46,TestWinANSI_EUCJP_ToUnicode); + TESTCASE(47,TestWinANSI_EUCJP_FromUnicode); + + TESTCASE(48,TestWinANSI_GB2312_ToUnicode); + TESTCASE(49,TestWinANSI_GB2312_FromUnicode); + + TESTCASE(50,TestWinANSI_ISO2022KR_ToUnicode); + TESTCASE(51,TestWinANSI_ISO2022KR_FromUnicode); + + TESTCASE(52,TestWinANSI_ISO2022JP_ToUnicode); + TESTCASE(53,TestWinANSI_ISO2022JP_FromUnicode); + + default: + name = ""; + return NULL; + } + return NULL; + +} + +UPerfFunction* ConverterPerformanceTest::TestICU_CleanOpenAllConverters() { + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUOpenAllConvertersFunction(TRUE, status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_OpenAllConverters() { + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUOpenAllConvertersFunction(FALSE, status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_UTF8_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + ICUFromUnicodePerfFunction* pf = new ICUFromUnicodePerfFunction("utf-8",utf8_uniSource, LENGTHOF(utf8_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_UTF8_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUToUnicodePerfFunction("utf-8",(char*)utf8_encSource, LENGTHOF(utf8_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_UTF8_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2FromUnicodePerfFunction("utf-8",utf8_uniSource, LENGTHOF(utf8_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_UTF8_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2ToUnicodePerfFunction("utf-8",(char*)utf8_encSource, LENGTHOF(utf8_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_UTF8_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIFromUnicodePerfFunction("utf-8",utf8_uniSource, LENGTHOF(utf8_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_UTF8_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIToUnicodePerfFunction("utf-8",(char*)utf8_encSource, LENGTHOF(utf8_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +//################ + +UPerfFunction* ConverterPerformanceTest::TestICU_Latin1_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + ICUFromUnicodePerfFunction* pf = new ICUFromUnicodePerfFunction("iso-8859-1",latin1_uniSource, LENGTHOF(latin1_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_Latin1_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUToUnicodePerfFunction("iso-8859-1",(char*)latin1_encSource, LENGTHOF(latin1_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_Latin1_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2FromUnicodePerfFunction("iso-8859-1",latin1_uniSource, LENGTHOF(latin1_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_Latin1_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2ToUnicodePerfFunction("iso-8859-1",(char*)latin1_encSource, LENGTHOF(latin1_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_Latin1_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIFromUnicodePerfFunction("iso-8859-1",latin1_uniSource, LENGTHOF(latin1_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_Latin1_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIToUnicodePerfFunction("iso-8859-1",(char*)latin1_encSource, LENGTHOF(latin1_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +//################## + +UPerfFunction* ConverterPerformanceTest::TestICU_Latin8_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + ICUFromUnicodePerfFunction* pf = new ICUFromUnicodePerfFunction("iso-8859-8",latin8_uniSource, LENGTHOF(latin8_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_Latin8_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUToUnicodePerfFunction("iso-8859-8",(char*)latin8_encSource, LENGTHOF(latin8_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_Latin8_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2FromUnicodePerfFunction("iso-8859-8",latin8_uniSource, LENGTHOF(latin8_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_Latin8_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2ToUnicodePerfFunction("iso-8859-8",(char*)latin8_encSource, LENGTHOF(latin8_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} +UPerfFunction* ConverterPerformanceTest::TestWinANSI_Latin8_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIFromUnicodePerfFunction("iso-8859-8",latin8_uniSource, LENGTHOF(latin8_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_Latin8_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIToUnicodePerfFunction("iso-8859-8",(char*)latin8_encSource, LENGTHOF(latin8_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +//################# + + +UPerfFunction* ConverterPerformanceTest::TestICU_EBCDIC_Arabic_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + ICUFromUnicodePerfFunction* pf = new ICUFromUnicodePerfFunction("x-EBCDIC-Arabic",ebcdic_arabic_uniSource, LENGTHOF(ebcdic_arabic_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_EBCDIC_Arabic_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUToUnicodePerfFunction("x-EBCDIC-Arabic",(char*)ebcdic_arabic_encSource, LENGTHOF(ebcdic_arabic_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_EBCDIC_Arabic_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2FromUnicodePerfFunction("x-EBCDIC-Arabic",ebcdic_arabic_uniSource, LENGTHOF(ebcdic_arabic_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_EBCDIC_Arabic_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2ToUnicodePerfFunction("x-EBCDIC-Arabic",(char*)ebcdic_arabic_encSource, LENGTHOF(ebcdic_arabic_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_EBCDIC_Arabic_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIFromUnicodePerfFunction("x-EBCDIC-Arabic",ebcdic_arabic_uniSource, LENGTHOF(ebcdic_arabic_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_EBCDIC_Arabic_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIToUnicodePerfFunction("x-EBCDIC-Arabic",(char*)ebcdic_arabic_encSource, LENGTHOF(ebcdic_arabic_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} +//################# + + +UPerfFunction* ConverterPerformanceTest::TestICU_SJIS_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + ICUFromUnicodePerfFunction* pf = new ICUFromUnicodePerfFunction("sjis",sjis_uniSource, LENGTHOF(sjis_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_SJIS_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUToUnicodePerfFunction("sjis",(char*)sjis_encSource, LENGTHOF(sjis_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_SJIS_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2FromUnicodePerfFunction("sjis",sjis_uniSource, LENGTHOF(sjis_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_SJIS_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2ToUnicodePerfFunction("sjis",(char*)sjis_encSource, LENGTHOF(sjis_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_SJIS_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIFromUnicodePerfFunction("sjis",sjis_uniSource, LENGTHOF(sjis_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_SJIS_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIToUnicodePerfFunction("sjis",(char*)sjis_encSource, LENGTHOF(sjis_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +//################# + + +UPerfFunction* ConverterPerformanceTest::TestICU_EUCJP_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + ICUFromUnicodePerfFunction* pf = new ICUFromUnicodePerfFunction("euc-jp",eucjp_uniSource, LENGTHOF(eucjp_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_EUCJP_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUToUnicodePerfFunction("euc-jp",(char*)eucjp_encSource, LENGTHOF(eucjp_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_EUCJP_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2FromUnicodePerfFunction("euc-jp",eucjp_uniSource, LENGTHOF(eucjp_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_EUCJP_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2ToUnicodePerfFunction("euc-jp",(char*)eucjp_encSource, LENGTHOF(eucjp_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_EUCJP_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIFromUnicodePerfFunction("euc-jp",eucjp_uniSource, LENGTHOF(eucjp_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_EUCJP_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIToUnicodePerfFunction("euc-jp",(char*)eucjp_encSource, LENGTHOF(eucjp_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +//################# + + +UPerfFunction* ConverterPerformanceTest::TestICU_GB2312_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + ICUFromUnicodePerfFunction* pf = new ICUFromUnicodePerfFunction("gb2312",gb2312_uniSource, LENGTHOF(gb2312_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_GB2312_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUToUnicodePerfFunction("gb2312",(char*)gb2312_encSource, LENGTHOF(gb2312_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_GB2312_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2FromUnicodePerfFunction("gb2312",gb2312_uniSource, LENGTHOF(gb2312_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_GB2312_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2ToUnicodePerfFunction("gb2312",(char*)gb2312_encSource, LENGTHOF(gb2312_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_GB2312_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIFromUnicodePerfFunction("gb2312",gb2312_uniSource, LENGTHOF(gb2312_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_GB2312_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIToUnicodePerfFunction("gb2312",(char*)gb2312_encSource, LENGTHOF(gb2312_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +//################# + + +UPerfFunction* ConverterPerformanceTest::TestICU_ISO2022KR_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + ICUFromUnicodePerfFunction* pf = new ICUFromUnicodePerfFunction("iso-2022-kr",iso2022kr_uniSource, LENGTHOF(iso2022kr_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_ISO2022KR_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUToUnicodePerfFunction("iso-2022-kr",(char*)iso2022kr_encSource, LENGTHOF(iso2022kr_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_ISO2022KR_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2FromUnicodePerfFunction("iso-2022-kr",iso2022kr_uniSource, LENGTHOF(iso2022kr_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_ISO2022KR_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2ToUnicodePerfFunction("iso-2022-kr",(char*)iso2022kr_encSource, LENGTHOF(iso2022kr_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_ISO2022KR_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIFromUnicodePerfFunction("iso-2022-kr",iso2022kr_uniSource, LENGTHOF(iso2022kr_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_ISO2022KR_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIToUnicodePerfFunction("iso-2022-kr",(char*)iso2022kr_encSource, LENGTHOF(iso2022kr_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} +//################# + + +UPerfFunction* ConverterPerformanceTest::TestICU_ISO2022JP_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + ICUFromUnicodePerfFunction* pf = new ICUFromUnicodePerfFunction("iso-2022-jp",iso2022jp_uniSource, LENGTHOF(iso2022jp_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestICU_ISO2022JP_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new ICUToUnicodePerfFunction("iso-2022-jp",(char*)iso2022jp_encSource, LENGTHOF(iso2022jp_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_ISO2022JP_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2FromUnicodePerfFunction("iso-2022-jp",iso2022jp_uniSource, LENGTHOF(iso2022jp_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinIML2_ISO2022JP_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinIMultiLanguage2ToUnicodePerfFunction("iso-2022-jp",(char*)iso2022jp_encSource, LENGTHOF(iso2022jp_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_ISO2022JP_FromUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIFromUnicodePerfFunction("iso-2022-jp",iso2022jp_uniSource, LENGTHOF(iso2022jp_uniSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} + +UPerfFunction* ConverterPerformanceTest::TestWinANSI_ISO2022JP_ToUnicode(){ + UErrorCode status = U_ZERO_ERROR; + UPerfFunction* pf = new WinANSIToUnicodePerfFunction("iso-2022-jp",(char*)iso2022jp_encSource, LENGTHOF(iso2022jp_encSource), status); + if(U_FAILURE(status)){ + return NULL; + } + return pf; +} \ No newline at end of file