在汇编源文件中写入Unicode字符串


摘要: 
        通过编写一个C++程序,并用其处理汇编源文件,使汇编源文件中的被特别标识符标识的Ansi字符串转化为Unicode字符串。  
 
源程序:

  1. //String to Unicode String (for assembler)
  2. //可以把汇编源文件(ANSI编码)中的
  3. //;Unicode Name "12我门3"
  4. //转化为
  5. //;Unicode Name "12我门3"
  6. //Name  dw  00031h,00032h,06211h,095E8h,00033h,0 ;EndUni
  7. //注意:
  8. //对于
  9. //;Unicode Name "12我门3"
  10. //??????????????????????????;EndUni
  11. //也将转化为
  12. //;Unicode Name "12我门3"
  13. //Name  dw  00031h,00032h,06211h,095E8h,00033h,0 ;EndUni
  14. //“12我门3”  ANSI编码为3132CED2C3C533  Unicode编码为00310032621195E80033
  15. //"12我门3" 转化为 00031h,00032h,06211h,095E8h,00033h
  16. //-------------------------------------------------------------------------------------------------
  17. #include<iostream>
  18. #include<iomanip>
  19. #include<fstream>
  20. #include<sstream>
  21. #include<string>
  22. #include<windows.h>
  23. const int maxLineChar=2048;
  24. const int maxByte=1023;
  25. bool ConvStrAndInput(std::string &strtmp,std::ostream & fout)
  26. {//实现转换strtmp与输出到fout
  27.     UINT CodePage=CP_ACP; 
  28.     DWORD dwFlags=NULL;
  29.     wchar_t WideCharStr[maxByte+1];//MultiByteToWideChar函数的输出字符串
  30.     if (strtmp.length()>maxByte) {return false;};
  31.     //MultiByteToWideChar是主要干活的函数
  32.     if (!MultiByteToWideChar(CodePage,dwFlags,strtmp.c_str(),-1,WideCharStr,maxByte)) {return false;};
  33.     //设置fout流
  34.     int i=0;fout<<std::setfill('0')<<std::hex;
  35.     while ((__int16)WideCharStr[i]!=0)
  36.     {//把获得的输出转换为汇编中的定义形式
  37.         fout<<'0'   //确保数据的第一个字符为数字
  38.             <<std::setw(2)<<int(*((unsigned char *)(WideCharStr+i)+1))  //由于内存高低位的反向,
  39.             <<std::setw(2)<<int(*((unsigned char *)(WideCharStr+i)))    //所以这里也反向
  40.             <<"h,"//汇编中16进制数定义所需的
  41.         i++;
  42.     };
  43.     fout<<"0";
  44.     return true;
  45. };
  46. int main(const int argc,const char *argv[])
  47. {
  48.     //  准备好输入输出文件
  49.     if (argc!=2) {std::cerr<<"参数错误!/nUsage:ConvStr input_file./n";system("pause");exit(1);};
  50.     std::ifstream fi(argv[1]);
  51.     std::ofstream fo("Conv.$$");
  52.     //  中转字符串,与字符
  53.     std::istringstream si;
  54.     std::ostringstream so;
  55.     std::string strLine;
  56.     std::string strTemp2;
  57.     std::string strModelB(";Unicode");
  58.     std::string strModelE(";EndUni");
  59.     //  读取-判断(转换)-输出
  60.     while (std::getline(fi,strLine))
  61.     {
  62.         so.str("");si.clear();
  63.         if (strLine.length()<8) {fo<<strLine<<'/n';continue;}
  64.         if (strLine.substr(strLine.length()-7,7)==strModelE) continue;
  65.         if (strLine[0]!=';'||strLine[1]!='U') {fo<<strLine<<'/n';continue;};
  66.         
  67.         si.str(strLine);si>>strTemp2;
  68.         if (strTemp2!=strModelB) {fo<<strLine<<'/n';continue;};
  69.         if(!(si>>strTemp2 && strTemp2!=strModelB)) 
  70.         {std::cerr<<"定义格式错误!此行未改变:/""<<strLine<<"/"/n";fo<<strLine<<'/n';continue;};
  71.         so<<strTemp2<<"/tdw/t";
  72.         std::getline(si,strTemp2,'"');std::getline(si,strTemp2,'"');
  73.         if(!si) 
  74.         {std::cerr<<"定义格式错误!此行未改变:/""<<strLine<<"/"/n";fo<<strLine<<'/n';continue;};
  75.         if (!ConvStrAndInput(strTemp2,so)) 
  76.         {std::cerr<<"待转换的字符串错误/nError String:"<<strTemp2;system("pause");exit(1);};
  77.         so<<' '<<strModelE;
  78.         fo<<strLine<<'/n'<<so.str()<<'/n';
  79.         
  80.     
  81.     };
  82.     fi.close();fo.close();
  83.     strLine.assign("del ");strLine.append(argv[1]);
  84.     strTemp2.assign("rename Conv.$$ ");strTemp2.append(argv[1]);
  85.     system(strLine.c_str());
  86.     system(strTemp2.c_str());
  87.     return(0);
  88. }

备注:编译环境为VS2008

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值