亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? icutransservice.cpp

?? IBM的解析xml的工具Xerces的源代碼
?? CPP
?? 第 1 頁 / 共 3 頁
字號:
/* * Copyright 1999-2004 The Apache Software Foundation. *  * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *  *      http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *//* * $Id: ICUTransService.cpp,v 1.16 2004/09/08 13:56:44 peiyongz Exp $ */// ---------------------------------------------------------------------------//  Includes// ---------------------------------------------------------------------------#include <xercesc/util/Janitor.hpp>#include <xercesc/util/TranscodingException.hpp>#include <xercesc/util/XMLString.hpp>#include <xercesc/util/XMLUniDefs.hpp>#include "ICUTransService.hpp"#include <string.h>#include <unicode/uloc.h>#include <unicode/uchar.h>#include <unicode/ucnv.h>#include <unicode/ucnv_err.h>#include <unicode/ustring.h>#include <unicode/udata.h>#if (U_ICU_VERSION_MAJOR_NUM >= 2)    #include <unicode/uclean.h>#endif#if !defined(XML_OS390) && !defined(XML_AS400) && !defined(XML_HPUX) && !defined(XML_PTX)// Forward reference the symbol which points to the ICU converter data.#if (U_ICU_VERSION_MAJOR_NUM < 2)extern "C" const uint8_t U_IMPORT icudata_dat[];#endif#endifXERCES_CPP_NAMESPACE_BEGIN// ---------------------------------------------------------------------------//  Local, const data// ---------------------------------------------------------------------------static const XMLCh gMyServiceId[] ={    chLatin_I, chLatin_C, chLatin_U, chNull};static const XMLCh gS390Id[] ={    chLatin_S, chDigit_3, chDigit_9, chDigit_0, chNull};static const XMLCh gs390Id[] ={    chLatin_s, chDigit_3, chDigit_9, chDigit_0, chNull};static const XMLCh gswaplfnlId[] ={    chComma, chLatin_s, chLatin_w, chLatin_a, chLatin_p,    chLatin_l, chLatin_f, chLatin_n, chLatin_l, chNull};// ---------------------------------------------------------------------------//  Local functions// ---------------------------------------------------------------------------////  When XMLCh and ICU's UChar are not the same size, we have to do a temp//  conversion of all strings. These local helper methods make that easier.//static UChar* convertToUChar( const   XMLCh* const    toConvert                            , const unsigned int    srcLen = 0                            , MemoryManager* const manager = 0){    const unsigned int actualLen = srcLen                                   ? srcLen : XMLString::stringLen(toConvert);    UChar* tmpBuf = (manager)        ? (UChar*) manager->allocate((actualLen + 1) * sizeof(UChar))		: new UChar[actualLen + 1];    const XMLCh* srcPtr = toConvert;    UChar* outPtr = tmpBuf;    while (*srcPtr)        *outPtr++ = UChar(*srcPtr++);    *outPtr = 0;    return tmpBuf;}static XMLCh* convertToXMLCh( const UChar* const toConvert,                            MemoryManager* const manager = 0){    const unsigned int srcLen = u_strlen(toConvert);    XMLCh* retBuf = (manager)        ? (XMLCh*) manager->allocate((srcLen+1) * sizeof(XMLCh))        : new XMLCh[srcLen + 1];    XMLCh* outPtr = retBuf;    const UChar* srcPtr = toConvert;    while (*srcPtr)        *outPtr++ = XMLCh(*srcPtr++);    *outPtr = 0;    return retBuf;}// ---------------------------------------------------------------------------//  ICUTransService: Constructors and Destructor// ---------------------------------------------------------------------------ICUTransService::ICUTransService(){#if !defined(XML_OS390) && !defined(XML_AS400) && !defined(XML_HPUX) && !defined(XML_PTX)#if (U_ICU_VERSION_MAJOR_NUM < 2)    // Starting with ICU 2.0, ICU itself includes a static reference to the data    // entrypoint symbol.    //    // ICU 1.8 (and previous) did not include a static reference, but would    // dynamically load the data dll when it was first needed, however this dynamic    // loading proved unreliable in some of the odd environments that Xerces needed    // to run in.  Hence, the static reference.    // Pass the location of the converter data to ICU. By doing so, we are    // forcing the load of ICU converter data DLL, after the Xerces-C DLL is    // loaded. This implies that Xerces-C, now has to explicitly link with the    // ICU converter dll. However, the advantage is that we no longer depend    // on the code which does demand dynamic loading of DLL's. The demand    // loading is highly system dependent and was a constant source of support    // calls.    UErrorCode uerr = U_ZERO_ERROR;    udata_setCommonData((void *) icudata_dat, &uerr);#endif#endif}ICUTransService::~ICUTransService(){    /*     * commented out the following clean up code     * in case users use ICU outside of the parser     * if we clean up here, users' code may crash     *    #if (U_ICU_VERSION_MAJOR_NUM >= 2)        // release all lasily allocated data        u_cleanup();    #endif    */}// ---------------------------------------------------------------------------//  ICUTransService: The virtual transcoding service API// ---------------------------------------------------------------------------int ICUTransService::compareIString(const   XMLCh* const    comp1                                    , const XMLCh* const    comp2){    const XMLCh* psz1 = comp1;    const XMLCh* psz2 = comp2;    unsigned int curCount = 0;    while (true)    {        //        //  If an inequality, then return the difference. Note that the XMLCh        //  might be bigger physically than UChar, but it won't hold anything        //  larger than 0xFFFF, so our cast here will work for both possible        //  sizes of XMLCh.        //        if (u_toupper(UChar(*psz1)) != u_toupper(UChar(*psz2)))            return int(*psz1) - int(*psz2);        // If either has ended, then they both ended, so equal        if (!*psz1 || !*psz2)            break;        // Move upwards for the next round        psz1++;        psz2++;    }    return 0;}int ICUTransService::compareNIString(const  XMLCh* const    comp1                                    , const XMLCh* const    comp2                                    , const unsigned int    maxChars){    const XMLCh* psz1 = comp1;    const XMLCh* psz2 = comp2;    unsigned int curCount = 0;    while (true)    {        //        //  If an inequality, then return the difference. Note that the XMLCh        //  might be bigger physically than UChar, but it won't hold anything        //  larger than 0xFFFF, so our cast here will work for both possible        //  sizes of XMLCh.        //        if (u_toupper(UChar(*psz1)) != u_toupper(UChar(*psz2)))            return int(*psz1) - int(*psz2);        // If either ended, then both ended, so equal        if (!*psz1 || !*psz2)            break;        // Move upwards to next chars        psz1++;        psz2++;        //        //  Bump the count of chars done. If it equals the count then we        //  are equal for the requested count, so break out and return        //  equal.        //        curCount++;        if (maxChars == curCount)            break;    }    return 0;}const XMLCh* ICUTransService::getId() const{    return gMyServiceId;}bool ICUTransService::isSpace(const XMLCh toCheck) const{    //    //  <TBD>    //  For now, we short circuit some of the control chars because ICU    //  is not correctly reporting them as space. Later, when they change    //  this, we can get rid of this special case.    //    if ((toCheck == 0x09)    ||  (toCheck == 0x0A)    ||  (toCheck == 0x0D))    {        return true;    }    return (u_isspace(UChar(toCheck)) != 0);}XMLLCPTranscoder* ICUTransService::makeNewLCPTranscoder(){    //    //  Try to create a default converter. If it fails, return a null    //  pointer which will basically cause the system to give up because    //  we really can't do anything without one.    //    UErrorCode uerr = U_ZERO_ERROR;    UConverter* converter = ucnv_open(NULL, &uerr);    if (!converter)        return 0;    // That went ok, so create an ICU LCP transcoder wrapper and return it    return new ICULCPTranscoder(converter);}bool ICUTransService::supportsSrcOfs() const{    // This implementation supports source offset information    return true;}void ICUTransService::upperCase(XMLCh* const toUpperCase) const{    XMLCh* outPtr = toUpperCase;    while (*outPtr)    {        *outPtr = XMLCh(u_toupper(UChar(*outPtr)));        outPtr++;    }}void ICUTransService::lowerCase(XMLCh* const toLowerCase) const{    XMLCh* outPtr = toLowerCase;    while (*outPtr)    {        *outPtr = XMLCh(u_tolower(UChar(*outPtr)));        outPtr++;    }}// ---------------------------------------------------------------------------//  ICUTransService: The protected virtual transcoding service API// ---------------------------------------------------------------------------XMLTranscoder* ICUTransService::makeNewXMLTranscoder(const  XMLCh* const            encodingName                    ,       XMLTransService::Codes& resValue                    , const unsigned int            blockSize                    ,       MemoryManager* const    manager){    //      //  For encodings that end with "s390" we need to strip off the "s390"     //  from the encoding name and add ",swaplfnl" to the encoding name	    //  that we pass into ICU on the ucnv_openU.      //      XMLCh* encodingNameToUse = (XMLCh*) encodingName;    XMLCh* workBuffer = 0;    if ( (XMLString::endsWith(encodingNameToUse, gs390Id)) ||         (XMLString::endsWith(encodingNameToUse, gS390Id)) )    {       int workBufferSize = (XMLString::stringLen(encodingNameToUse) + XMLString::stringLen(gswaplfnlId) - XMLString::stringLen(gS390Id) + 1);       workBuffer = (XMLCh*) manager->allocate(workBufferSize * sizeof(XMLCh));       int moveSize = XMLString::stringLen(encodingNameToUse) - XMLString::stringLen(gS390Id);       XMLString::moveChars(workBuffer, encodingNameToUse, moveSize);       XMLString::moveChars((workBuffer + moveSize), gswaplfnlId, XMLString::stringLen(gswaplfnlId));       encodingNameToUse = workBuffer;    }    //    //  If UChar and XMLCh are not the same size, then we have premassage the    //  encoding name into a UChar type string.    //    const UChar* actualName;    UChar* tmpName = 0;    if (sizeof(UChar) == sizeof(XMLCh))    {        actualName = (const UChar*)encodingNameToUse;    }    else    {        tmpName = convertToUChar(encodingNameToUse, 0, manager);        actualName = tmpName;    }    ArrayJanitor<UChar> janTmp(tmpName, manager);    ArrayJanitor<XMLCh> janTmp1(workBuffer, manager);    UErrorCode uerr = U_ZERO_ERROR;    UConverter* converter = ucnv_openU(actualName, &uerr);    if (!converter)    {        resValue = XMLTransService::UnsupportedEncoding;        return 0;    }    return new (manager) ICUTranscoder(encodingName, converter, blockSize, manager);}// ---------------------------------------------------------------------------//  ICUTranscoder: Constructors and Destructor// ---------------------------------------------------------------------------ICUTranscoder::ICUTranscoder(const  XMLCh* const        encodingName                            ,       UConverter* const   toAdopt                            , const unsigned int        blockSize                            , MemoryManager* const      manager) :    XMLTranscoder(encodingName, blockSize, manager)    , fConverter(toAdopt)    , fFixed(false)    , fSrcOffsets(0){    // If there is a block size, then allocate our source offset array    if (blockSize)        fSrcOffsets = (XMLUInt32*) manager->allocate        (            blockSize * sizeof(XMLUInt32)        );//new XMLUInt32[blockSize];    // Remember if its a fixed size encoding    fFixed = (ucnv_getMaxCharSize(fConverter) == ucnv_getMinCharSize(fConverter));}ICUTranscoder::~ICUTranscoder(){    getMemoryManager()->deallocate(fSrcOffsets);//delete [] fSrcOffsets;    // If there is a converter, ask ICU to clean it up    if (fConverter)    {        // <TBD> Does this actually delete the structure???        ucnv_close(fConverter);        fConverter = 0;    }}// ---------------------------------------------------------------------------//  ICUTranscoder: The virtual transcoder API// ---------------------------------------------------------------------------unsigned intICUTranscoder::transcodeFrom(const  XMLByte* const          srcData                            , const unsigned int            srcCount                            ,       XMLCh* const            toFill                            , const unsigned int            maxChars                            ,       unsigned int&           bytesEaten                            ,       unsigned char* const    charSizes){    // If debugging, insure the block size is legal    #if defined(XERCES_DEBUG)    checkBlockSize(maxChars);    #endif    // Set up pointers to the start and end of the source buffer    const XMLByte*  startSrc = srcData;    const XMLByte*  endSrc = srcData + srcCount;    //    //  And now do the target buffer. This works differently according to    //  whether XMLCh and UChar are the same size or not.    //    UChar* startTarget;    if (sizeof(XMLCh) == sizeof(UChar))        startTarget = (UChar*)toFill;     else        startTarget = (UChar*) getMemoryManager()->allocate        (            maxChars * sizeof(UChar)        );//new UChar[maxChars];    UChar* orgTarget = startTarget;    //    //  Transoode the buffer.  Buffer overflow errors are normal, occuring    //  when the raw input buffer holds more characters than will fit in    //  the Unicode output buffer.    //    UErrorCode  err = U_ZERO_ERROR;    ucnv_toUnicode    (        fConverter        , &startTarget        , startTarget + maxChars        , (const char**)&startSrc        , (const char*)endSrc        , (fFixed ? 0 : (int32_t*)fSrcOffsets)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩理论片在线| 久99久精品视频免费观看| 日本在线播放一区二区三区| 国产精品一区久久久久| 在线国产亚洲欧美| 日本一区二区三区电影| 日韩激情视频在线观看| 在线日韩一区二区| 中文字幕乱码日本亚洲一区二区| 日本va欧美va瓶| 在线国产亚洲欧美| 自拍偷拍亚洲综合| 成人小视频在线| 久久精品水蜜桃av综合天堂| 日本欧洲一区二区| 欧美日韩高清影院| 亚洲一区电影777| 91视频在线观看免费| 中文字幕高清不卡| 国产.欧美.日韩| 久久久五月婷婷| 国产在线精品不卡| 久久久久久97三级| 国产精品一区二区91| 欧美电影免费提供在线观看| 丝袜亚洲另类丝袜在线| 欧美三级日韩在线| 亚洲国产精品一区二区久久| 日本精品一区二区三区四区的功能| 亚洲国产精品t66y| 懂色av一区二区在线播放| 国产亚洲综合在线| 国产电影精品久久禁18| 国产色91在线| 成人成人成人在线视频| 国产精品嫩草影院com| 成人福利在线看| 亚洲欧洲日产国码二区| 91在线播放网址| 亚洲成人在线观看视频| 欧美一区二区三区免费观看视频| 午夜影视日本亚洲欧洲精品| 88在线观看91蜜桃国自产| 奇米777欧美一区二区| 精品国产乱码久久| 成人网在线播放| 亚洲在线视频网站| 欧美高清性hdvideosex| 蓝色福利精品导航| 中文字幕的久久| 欧美色大人视频| 看电视剧不卡顿的网站| 欧美视频精品在线观看| 日韩欧美在线不卡| 国产精品正在播放| 中文字幕中文在线不卡住| 欧美亚洲自拍偷拍| 强制捆绑调教一区二区| 久久精品亚洲精品国产欧美| av成人动漫在线观看| 亚洲大片免费看| 久久免费美女视频| 欧美在线啊v一区| 九色|91porny| 亚洲男人都懂的| 日韩午夜电影av| 91影视在线播放| 蜜桃久久精品一区二区| 国产精品全国免费观看高清| 欧美日韩精品电影| 国产黄人亚洲片| 日韩一区欧美二区| 综合色天天鬼久久鬼色| 日韩你懂的在线播放| 91色九色蝌蚪| 国产福利视频一区二区三区| 亚洲大型综合色站| 亚洲欧洲www| 亚洲精品一区二区三区影院| 色成人在线视频| 国产精品1区2区| 日韩黄色免费网站| 一区二区激情视频| 国产精品污www在线观看| 在线不卡中文字幕| 色狠狠色噜噜噜综合网| 国产盗摄女厕一区二区三区| 日韩电影在线看| 亚洲高清中文字幕| 综合亚洲深深色噜噜狠狠网站| 久久五月婷婷丁香社区| 欧美精品一卡二卡| 色婷婷综合久久久久中文| 成人一级黄色片| 久久精品国产精品亚洲红杏| 偷拍与自拍一区| 亚洲精品成人在线| 国产精品成人一区二区艾草| 久久久国产精品不卡| 日韩欧美www| 日韩欧美一区二区免费| 在线播放欧美女士性生活| 色先锋资源久久综合| av午夜一区麻豆| 成人国产精品免费观看视频| 丰满少妇久久久久久久| 国产传媒欧美日韩成人| 国产综合色产在线精品| 国产揄拍国内精品对白| 精品一区二区三区在线观看 | 国产精品影视在线观看| 美女视频黄 久久| 麻豆精品视频在线观看| 日本欧美在线观看| 蜜桃av一区二区| 久久99蜜桃精品| 韩国三级中文字幕hd久久精品| 美腿丝袜亚洲三区| 激情六月婷婷综合| 国产一区二区三区四| 国产**成人网毛片九色| 成人一道本在线| 99re热视频这里只精品| 一本到不卡免费一区二区| 欧美在线观看一区| 91精品一区二区三区久久久久久| 91精品国产综合久久福利软件| 日韩免费观看2025年上映的电影| 精品免费日韩av| 国产精品久久久久精k8| 亚洲欧美激情在线| 午夜精品免费在线| 久久福利资源站| 夫妻av一区二区| 欧美综合欧美视频| 日韩免费电影一区| 国产精品色眯眯| 亚洲国产综合人成综合网站| 免费看欧美女人艹b| 国产**成人网毛片九色| 欧洲生活片亚洲生活在线观看| 91精品国产色综合久久久蜜香臀| 久久久精品2019中文字幕之3| 综合激情网...| 蜜桃传媒麻豆第一区在线观看| 国产91高潮流白浆在线麻豆| 精品视频一区二区不卡| wwwwww.欧美系列| 亚洲美女在线一区| 蜜桃视频一区二区| 91蝌蚪国产九色| 欧美成人猛片aaaaaaa| 国产精品久久久久四虎| 视频在线观看国产精品| 成人蜜臀av电影| 69堂国产成人免费视频| 中文字幕在线播放不卡一区| 日韩成人午夜电影| 色婷婷综合激情| 精品福利视频一区二区三区| 一区二区免费看| 国产成人免费视频网站| 欧美酷刑日本凌虐凌虐| 国产女人18水真多18精品一级做| 香蕉加勒比综合久久| av成人动漫在线观看| 精品国精品国产| 亚洲第一精品在线| 97久久超碰国产精品| 久久久久久久久蜜桃| 喷水一区二区三区| 欧美日韩卡一卡二| 亚洲日本在线a| 国产99精品国产| 久久一二三国产| 日本 国产 欧美色综合| 在线精品亚洲一区二区不卡| 中文字幕成人在线观看| 精品亚洲porn| 5566中文字幕一区二区电影| 亚洲欧美国产77777| aaa亚洲精品一二三区| 国产日韩欧美a| 国产美女在线观看一区| 日韩欧美一卡二卡| 轻轻草成人在线| 欧美三级韩国三级日本一级| 一区二区三区中文在线| 91视频精品在这里| 国产精品短视频| 成人精品鲁一区一区二区| 国产亚洲一二三区| 精品一区在线看| 日韩三级中文字幕| 精品在线亚洲视频| 337p粉嫩大胆噜噜噜噜噜91av| 久久国产精品第一页| 久久综合中文字幕| 国产精品一区二区久久精品爱涩 | 国产精品三级av|