分享
 
 
 

XML4C完美兼容中文的补充

王朝vc·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

XML4C完美兼容中文的补充

xml4c兼容中文的问题一直是大家比较头疼的问题,网上也有很多关于这方面的讨论,但是一直没有太好的结论。在IBM Developerworks的网站上,找到了邹月明先生的一篇文章《剖析XML4c源码,完美兼容中文XML》,该文章对Xml4c的源码进行了剖析,对xml4c的源码进行了修改,从而达到了对中文兼容的目的。我也针对Xml4c的源码按照文章中的说法进行了修改,这种方法在我的debug版本中确实完美的解决了xml4c对中文的完美兼容。但是,问题出现了在我的Release版本中,对中文的解析出现了混乱。

为了能够弄清楚问题的所在,决定对xml4c的release版本进行跟踪,结果发现问题就是出在邹月明先生的文章中所指出的修改之处。该代码对于Debug和Release返回的是不同的结果(首先需要声明的是,我已经在使用该库之前调用了setlocale ( LC_ALL, “Chinese-siimplified” ) ),只要字符串中包含有中文,在Release版本下calcRequiredSize ( const char* const srcText )函数种调用mbstowcs返回的结果就是不正确。下面是《剖析XML4C源码》修改的函数calcRequiredSize代码:

unsigned int Win32LCPTranscoder::calcRequiredSize(const char* const srcText)

{

/*

if(!srcText)

return 0;

unsigned charLen = ::mblen(srcText, MB_CUR_MAX);

if(charLen == -1)

return 0;

else if(charLen != 0 )

charLen = strlen(srcText)/charLen;

if(charLen == -1)

return 0;

return charLen;

*/

if(! srcText){

return 0;

}

unsigned int retVal = ::mbstowcs( 0, srcText, 0 );

if ( retVal == -1) {

return 0;

}

return retVal;

}

这段代码在Debug下正确运行没有问题,但是在Release下,计算长度就是会出现问题,得到的结果不正确。开始以为是在程序开始的设置的本地环境服务被修改了,可是跟踪代码的时候发现并没有被改变,这让人感到很迷惑,不知道是什么原因造成的。当在mbstowcs前设置当前的本地环境服务(setlocale(LC_ALL, NULL );)之后,函数mbstowcs就能够正确的工作了,如果有谁知道原因,可以来信告知(email: flyelfsky@hotmail.com)。

于是,修改之后的代码就如下了:

unsigned int Win32LCPTranscoder::calcRequiredSize(const char* const srcText)

{

if(! srcText){

return 0;

}

#ifndef _DEBUG

// 确保在release下能够得到正确的结果

setlocale ( LC_ALL, NULL );

#endif

unsigned int retVal = ::mbstowcs( 0, srcText, 0 );

if ( retVal == -1) {

return 0;

}

return retVal;

}

当然了,不仅仅是这个函数需要添加这个,对于所有的mbstowcs函数的前面都要添加这个代码:setlocale(LC_ALL, NULL );下面列出的就是需要修改的函数:

unsigned int Win32LCPTranscoder::calcRequiredSize(const char* const srcText

, MemoryManager* const manager)

char* Win32LCPTranscoder::transcode(const XMLCh* const toTranscode);

char* Win32LCPTranscoder::transcode(const XMLCh* const toTranscode,

MemoryManager* const manager)

XMLCh* Win32LCPTranscoder::transcode(const char* const toTranscode)

XMLCh* Win32LCPTranscoder::transcode(const char* const toTranscode,

MemoryManager* const manager)

bool Win32LCPTranscoder::transcode( const char* const toTranscode

, XMLCh* const toFill

, const unsigned int maxChars

, MemoryManager* const manager)

bool Win32LCPTranscoder::transcode( const XMLCh* const toTranscode

, char* const toFill

, const unsigned int maxBytes

, MemoryManager* const manager)

使用函数mbstowcs和wcstombs进行转换,只不过是为了移植的方便,而在win32下已经提供了另外的api来进行转换:WideCharToMultiByte和MultiByteToWideChar,在这些转换函数中,把mbstowcs替换为MultiByteToWideChar,把wcstombs替换为WideCharToMultiByte。这样重新编译后就不会出现这个问题了。

附录:修改之后的Win32TransService.cpp的部分寒暑内容

// ---------------------------------------------------------------------------

// Win32LCPTranscoder: Implementation of the virtual transcoder interface

// ---------------------------------------------------------------------------

unsigned int Win32LCPTranscoder::calcRequiredSize(const char* const srcText

, MemoryManager* const manager)

{

if ( ! srcText )

{

return 0;

}

#ifdef _WIN32

unsigned int retVal = ::MultiByteToWideChar ( CP_ACP,

0,

srcText,

-1,

NULL,

0 );

#else

#ifndef _DEBUG

setlocale( LC_ALL, "" );

#endif

unsigned int retVal = ::mbstowcs( 0, srcText, 0 );

#endif

if ( retVal == -1 )

{

return 0;

}

return retVal;

}

char* Win32LCPTranscoder::transcode(const XMLCh* const toTranscode)

{

if (!toTranscode)

return 0;

char* retVal = 0;

if (*toTranscode)

{

// Calc the needed size

const unsigned int neededLen = calcRequiredSize(toTranscode);

// Allocate a buffer of that size plus one for the null and transcode

retVal = new char[neededLen + 1];

#ifdef _WIN32

::WideCharToMultiByte ( CP_ACP,

0,

toTranscode,

-1,

retVal,

neededLen,

"",

NULL );

#else

#ifndef _DEBUG

setlocale( LC_ALL, "" );

#endif

::wcstombs(retVal, toTranscode, neededLen + 1);

#endif

// And cap it off anyway just to make sure

retVal[neededLen] = 0;

}

else

{

retVal = new char[1];

retVal[0] = 0;

}

return retVal;

}

char* Win32LCPTranscoder::transcode(const XMLCh* const toTranscode,

MemoryManager* const manager)

{

if (!toTranscode)

return 0;

char* retVal = 0;

if (*toTranscode)

{

// Calc the needed size

const unsigned int neededLen = calcRequiredSize(toTranscode, manager);

// Allocate a buffer of that size plus one for the null and transcode

retVal = (char*) manager->allocate((neededLen + 1) * sizeof(char)); //new char[neededLen + 1];

#ifdef _WIN32

::WideCharToMultiByte ( CP_ACP,

0,

toTranscode,

-1,

retVal,

neededLen,

"",

NULL );

#else

#ifndef _DEBUG

setlocale( LC_ALL, "" );

#endif

::wcstombs(retVal, toTranscode, neededLen + 1);

#endif

// And cap it off anyway just to make sure

retVal[neededLen] = 0;

}

else

{

retVal = (char*) manager->allocate(sizeof(char)); //new char[1];

retVal[0] = 0;

}

return retVal;

}

XMLCh* Win32LCPTranscoder::transcode(const char* const toTranscode)

{

if (!toTranscode)

return 0;

XMLCh* retVal = 0;

if (*toTranscode)

{

// Calculate the buffer size required

const unsigned int neededLen = calcRequiredSize(toTranscode);

if (neededLen == 0)

{

retVal = new XMLCh[1];

retVal[0] = 0;

return retVal;

}

// Allocate a buffer of that size plus one for the null and transcode

retVal = new XMLCh[neededLen + 1];

#ifdef _WIN32

::MultiByteToWideChar ( CP_ACP,

0,

toTranscode,

-1,

retVal,

neededLen );

#else

#ifndef _DEBUG

setlocale( LC_ALL, "" );

#endif

::mbstowcs(retVal, toTranscode, neededLen + 1);

#endif

// Cap it off just to make sure. We are so paranoid!

retVal[neededLen] = 0;

}

else

{

retVal = new XMLCh[1];

retVal[0] = 0;

}

return retVal;

}

XMLCh* Win32LCPTranscoder::transcode(const char* const toTranscode,

MemoryManager* const manager)

{

if (!toTranscode)

return 0;

XMLCh* retVal = 0;

if (*toTranscode)

{

// Calculate the buffer size required

const unsigned int neededLen = calcRequiredSize(toTranscode, manager);

if (neededLen == 0)

{

retVal = (XMLCh*) manager->allocate(sizeof(XMLCh)); //new XMLCh[1];

retVal[0] = 0;

return retVal;

}

// Allocate a buffer of that size plus one for the null and transcode

retVal = (XMLCh*) manager->allocate((neededLen + 1) * sizeof(XMLCh)); //new XMLCh[neededLen + 1];

#ifdef _WIN32

::MultiByteToWideChar ( CP_ACP,

0,

toTranscode,

-1,

retVal,

neededLen );

#else

#ifndef _DEBUG

setlocale( LC_ALL, "" );

#endif

::mbstowcs(retVal, toTranscode, neededLen + 1);

#endif

// Cap it off just to make sure. We are so paranoid!

retVal[neededLen] = 0;

}

else

{

retVal = (XMLCh*) manager->allocate(sizeof(XMLCh)); //new XMLCh[1];

retVal[0] = 0;

}

return retVal;

}

bool Win32LCPTranscoder::transcode( const char* const toTranscode

, XMLCh* const toFill

, const unsigned int maxChars

, MemoryManager* const manager)

{

// Check for a couple of psycho corner cases

if (!toTranscode || !maxChars)

{

toFill[0] = 0;

return true;

}

if (!*toTranscode)

{

toFill[0] = 0;

return true;

}

// This one has a fixed size output, so try it and if it fails it fails

#ifdef _WIN32

size_t to_ = ::MultiByteToWideChar ( CP_ACP,

0,

toTranscode,

-1,

toFill,

maxChars );

#else

#ifndef _DEBUG

setlocale( LC_ALL, "" );

#endif

size_t to_ = ::mbstowcs(toFill, toTranscode, maxChars + 1);

#endif

return ( to_ != size_t(-1) );

//

}

bool Win32LCPTranscoder::transcode( const XMLCh* const toTranscode

, char* const toFill

, const unsigned int maxBytes

, MemoryManager* const manager)

{

// Watch for a couple of pyscho corner cases

if (!toTranscode || !maxBytes)

{

toFill[0] = 0;

return true;

}

if (!*toTranscode)

{

toFill[0] = 0;

return true;

}

// This one has a fixed size output, so try it and if it fails it fails

//

#ifdef _WIN32

size_t to_ = ::WideCharToMultiByte ( CP_ACP,

0,

toTranscode,

-1,

toFill,

maxBytes,

"",

NULL );

#else

#ifndef _DEBUG

setlocale( LC_ALL, "" );

#endif

size_t to_ = ::wcstombs(toFill, toTranscode, maxBytes + 1);

#endif

if ( to_ == size_t(-1) )

{

return false;

}

// Cap it off just in case

toFill[maxBytes] = 0;

return true;

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有