test_utf8.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_utf8.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:43:05  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_utf8.cpp,v 1000.1 2004/06/01 19:43:05 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *   This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author: Vladimir Ivanov
  35.  *
  36.  * File Description:
  37.  *   Test program for test UTF-8 conversion functions
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbiapp.hpp>
  42. #include <corelib/ncbiargs.hpp>
  43. #include <util/utf8.hpp>
  44. #include <stdio.h>
  45. #include <test/test_assert.h>  /* This header must go last */
  46. USING_NCBI_SCOPE;
  47. class CTestUtf8 : public CNcbiApplication
  48. {
  49. public:
  50.     void Init(void);
  51.     int Run(void);
  52. };
  53. void CTestUtf8::Init(void)
  54. {
  55.     SetDiagPostLevel(eDiag_Warning);
  56.     auto_ptr<CArgDescriptions> d(new CArgDescriptions);
  57.     d->SetUsageContext("test_utf8",
  58.                        "test UTF-8 converter");
  59.     SetupArgDescriptions(d.release());
  60. }
  61. // Run test
  62. int CTestUtf8::Run(void)
  63. {
  64.     const char* sTest[]={
  65.           "Archiv für Gynäkologie",
  66.           "Phillip Journal für restaurative Zahnmedizin.",
  67.           "Revista odontológica.",
  68.           "Veterinární medicína.",
  69.           "Zhōnghuá zhŏngliú zázhì",
  70.           "Biokhimii357270240a357270241"
  71.     };
  72.     const size_t MAX_TEST_NUM = 6;
  73.     string sRes;
  74.     string s;
  75.     vector<long> v;
  76.     utf8::EConversionStatus stat;
  77.     char ch;
  78.     size_t len;
  79.     
  80.     // Start passes
  81.     //-----------------------------------
  82.     printf("nUTF -> Asciinn");
  83.     for (size_t i=0; i<MAX_TEST_NUM; i++)
  84.     {
  85.         sRes=utf8::StringToAscii(sTest[i]);
  86.         sRes+='';
  87.         printf("%st -> %sn",sTest[i],sRes.data());
  88.     }
  89.     //-----------------------------------
  90.     printf("nUTF -> Charsnn");
  91.     for (size_t i=0; i<MAX_TEST_NUM; i++)
  92.     {
  93.         s=sTest[i]; 
  94.         printf("%snn",s.data());
  95.         for (size_t j=0; j<s.size(); )
  96.         {
  97.             ch=utf8::StringToChar(s.data()+j, &len, false, &stat);
  98.             printf("%c (len = %i)t - result %c, status %in",
  99.                    s.data()[j],len,ch,stat);
  100.             j+=len;
  101.         }
  102.         printf("----n");
  103.     }
  104.     //-----------------------------------
  105.     printf("nUTF -> Vector (last string)nn");
  106.     v=utf8::StringToVector(sTest[4]);    
  107.     for (size_t i=0; i<v.size(); i++)
  108.     {
  109.         printf("%lu ",v[i]);
  110.     }
  111.     //-----------------------------------
  112.     printf("nn");
  113.     return 0;
  114. }
  115. int main(int argc, const char* argv[])
  116. {
  117.     return CTestUtf8().AppMain(argc, argv);
  118. }
  119. /*
  120.  * ===========================================================================
  121.  * $Log: test_utf8.cpp,v $
  122.  * Revision 1000.1  2004/06/01 19:43:05  gouriano
  123.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  124.  *
  125.  * Revision 1.6  2004/05/17 21:09:26  gorelenk
  126.  * Added include of PCH ncbi_pch.hpp
  127.  *
  128.  * Revision 1.5  2002/06/30 03:24:08  vakatov
  129.  * Get rid of warnings caused by constless char* initialization
  130.  *
  131.  * Revision 1.4  2002/04/16 18:52:16  ivanov
  132.  * Centralize threatment of assert() in tests.
  133.  * Added #include <test/test_assert.h>. CVS log moved to end of file.
  134.  *
  135.  * Revision 1.3  2002/01/18 19:25:26  ivanov
  136.  * Polish source code. Appended one more test string.
  137.  *
  138.  * Revision 1.2  2001/04/18 16:32:24  ivanov
  139.  * Change types TUnicodeChar, TUnicodeString to simple types.
  140.  * TUnicode char to long, TUnicodeString to vector<long>.
  141.  *
  142.  * Revision 1.1  2001/04/06 19:16:04  ivanov
  143.  * Initial revision
  144.  * ===========================================================================
  145.  */