str_win32.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:6k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*****************************************************************************
  2.  *
  3.  * This program is free software ; you can redistribute it and/or modify
  4.  * it under the terms of the GNU General Public License as published by
  5.  * the Free Software Foundation; either version 2 of the License, or
  6.  * (at your option) any later version.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License
  14.  * along with this program; if not, write to the Free Software
  15.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  16.  *
  17.  * $Id: str_win32.c 585 2006-01-16 09:48:55Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2004-2005 Gabor Kovacs
  21.  *
  22.  ****************************************************************************/
  23. #include "../common.h"
  24. #include "../gzip.h"
  25. #define MAXTEXT 20000
  26. #if defined(TARGET_WIN32) || defined(TARGET_WINCE)
  27. #ifndef STRICT
  28. #define STRICT
  29. #endif
  30. #define WIN32_LEAN_AND_MEAN
  31. #include <windows.h>
  32. void GetModulePath(tchar_t* Path,const tchar_t* Module);
  33. void FindFiles(const tchar_t* Path, const tchar_t* Mask,void(*Process)(const tchar_t*,void*),void* Param);
  34. void StringAlloc();
  35. void StringFree();
  36. #if !defined(NO_LANG) || defined(NO_PLUGINS)
  37. static void LoadTGZ(stream* p,void* Buffer)
  38. {
  39. gzreader Reader;
  40. if (GZInit(&Reader,p))
  41. {
  42. int Size;
  43. tchar_t StrSize[16];
  44. tarhead Head;
  45. while (GZRead(&Reader,&Head,sizeof(Head))==sizeof(Head) && Head.size[0])
  46. {
  47. GetAsciiToken(StrSize,16,Head.size,sizeof(Head.size));
  48. if (stscanf(StrSize,T("%o"),&Size)!=1 || Size>MAXTEXT)
  49. break;
  50. assert(Size<MAXTEXT);
  51. StringAddText(Buffer,GZRead(&Reader,Buffer,Size));
  52. if (Size & 511)
  53. GZRead(&Reader,Buffer,512-(Size & 511));
  54. }
  55. GZDone(&Reader);
  56. }
  57. }
  58. #endif
  59. #ifndef NO_LANG
  60. static void LoadTXT(const tchar_t* FileName,void* Buffer)
  61. {
  62. stream* p = StreamOpen(FileName,0);
  63. if (p)
  64. {
  65. StringAddText(Buffer,p->Read(p,Buffer,MAXTEXT));
  66. StreamClose(p);
  67. }
  68. }
  69. #endif
  70. void String_Init()
  71. {
  72. void* Buffer;
  73. StringAlloc();
  74. Buffer = malloc(MAXTEXT);
  75. if (Buffer)
  76. {
  77. #ifdef NO_PLUGINS
  78. {
  79. int n;
  80. HANDLE Module = GetModuleHandle(NULL);
  81. HRSRC Rsrc = FindResource(Module,MAKEINTRESOURCE(2000),T("LANGTAR"));
  82. if (Rsrc)
  83. {
  84. int Size = SizeofResource(Module,Rsrc);
  85. HGLOBAL Global = LoadResource(Module,Rsrc);
  86. if (Global)
  87. {
  88. void* p = LockResource(Global);
  89. if (p)
  90. {
  91. stream* Stream = StreamOpenMem(p,Size);
  92. if (Stream)
  93. {
  94. LoadTGZ(Stream,Buffer);
  95. StreamCloseMem(Stream);
  96. }
  97. }
  98. }
  99. }
  100. for (n=2000;(Rsrc = FindResource(Module,MAKEINTRESOURCE(n),T("LANG")))!=NULL;++n)
  101. {
  102. int Size = SizeofResource(Module,Rsrc);
  103. HGLOBAL Global = LoadResource(Module,Rsrc);
  104. if (Global)
  105. {
  106. void* p = LockResource(Global);
  107. if (p)
  108. StringAddText(p,Size);
  109. }
  110. }
  111. }
  112. #endif
  113. #ifndef NO_LANG
  114. {
  115. tchar_t Path[MAXPATH];
  116. stream* p;
  117. GetModulePath(Path,T("common.dll"));
  118. tcscat_s(Path,TSIZEOF(Path),T("language.tgz"));
  119. p = StreamOpen(Path,0);
  120. if (p)
  121. {
  122. LoadTGZ(p,Buffer);
  123. StreamClose(p);
  124. }
  125. GetModulePath(Path,T("common.dll"));
  126. FindFiles(Path,T("*.txt"),LoadTXT,Buffer);
  127. }
  128. #endif
  129. free(Buffer);
  130. }
  131. }
  132. void String_Done()
  133. {
  134. StringFree();
  135. }
  136. #ifndef CP_UTF8
  137. #define CP_UTF8 65001
  138. #endif
  139. void AsciiToTcs(tchar_t* Out,size_t OutLen,const char* In)
  140. {
  141. #ifdef UNICODE
  142. if (!MultiByteToWideChar(CP_ACP,0,In,-1,Out,OutLen))
  143. StrToTcs(Out,OutLen,In);
  144. #else
  145. StrToTcs(Out,OutLen,In);
  146. #endif
  147. }
  148. void TcsToAscii(char* Out,size_t OutLen,const tchar_t* In)
  149. {
  150. #ifdef UNICODE
  151. if (!WideCharToMultiByte(CP_ACP,0,In,-1,Out,OutLen,0,0))
  152. TcsToStr(Out,OutLen,In);
  153. #else
  154. TcsToStr(Out,OutLen,In);
  155. #endif
  156. }
  157. void UTF8ToTcs(tchar_t* Out,size_t OutLen,const char* In)
  158. {
  159. #ifdef UNICODE
  160. if (!MultiByteToWideChar(CP_UTF8,0,In,-1,Out,OutLen))
  161. StrToTcs(Out,OutLen,In);
  162. #else
  163. WCHAR Temp[512];
  164. if (!MultiByteToWideChar(CP_UTF8,0,In,-1,Temp,512) ||
  165. !WideCharToMultiByte(CP_ACP,0,Temp,-1,Out,OutLen,0,0))
  166. StrToTcs(Out,OutLen,In);
  167. #endif
  168. }
  169. void TcsToUTF8(char* Out,size_t OutLen,const tchar_t* In)
  170. {
  171. #ifdef UNICODE
  172. if (!WideCharToMultiByte(CP_UTF8,0,In,-1,Out,OutLen,0,0))
  173. TcsToStr(Out,OutLen,In);
  174. #else
  175. WCHAR Temp[512];
  176. if (!MultiByteToWideChar(CP_ACP,0,In,-1,Temp,512) ||
  177. !WideCharToMultiByte(CP_UTF8,0,Temp,-1,Out,OutLen,0,0))
  178. TcsToStr(Out,OutLen,In);
  179. #endif
  180. }
  181. void TcsToStrEx(char* Out,size_t OutLen,const tchar_t* In,int CodePage)
  182. {
  183. #ifdef UNICODE
  184. if (!WideCharToMultiByte(CodePage,0,In,-1,Out,OutLen,0,0) && OutLen>0)
  185. {
  186. for (;OutLen>1 && *In;++In,--OutLen,++Out)
  187. *Out = (char)(*In>255?'?':*In);
  188. *Out = 0;
  189. }
  190. #else
  191. WCHAR Temp[512];
  192. if (CodePage==Context()->CodePage ||
  193. !MultiByteToWideChar(CP_ACP,0,In,-1,Temp,512) ||
  194. !WideCharToMultiByte(CodePage,0,Temp,-1,Out,OutLen,0,0))
  195. tcscpy_s(Out,OutLen,In);
  196. #endif
  197. }
  198. void StrToTcsEx(tchar_t* Out,size_t OutLen,const char* In,int CodePage)
  199. {
  200. #ifdef UNICODE
  201. if (!MultiByteToWideChar(CodePage,0,In,-1,Out,OutLen) && OutLen>0)
  202. {
  203. for (;OutLen>1 && *In;++In,--OutLen,++Out)
  204. *Out = (uint8_t)*In;
  205. *Out = 0;
  206. }
  207. #else
  208. WCHAR Temp[512];
  209. if (CodePage==Context()->CodePage ||
  210. !MultiByteToWideChar(CodePage,0,In,-1,Temp,512) ||
  211. !WideCharToMultiByte(CP_ACP,0,Temp,-1,Out,OutLen,0,0))
  212. tcscpy_s(Out,OutLen,In);
  213. #endif
  214. }
  215. void WcsToTcs(tchar_t* Out,size_t OutLen,const uint16_t* In)
  216. {
  217. #ifdef UNICODE
  218. tcscpy_s(Out,OutLen,In);
  219. #else
  220. if (!WideCharToMultiByte(Context()->CodePage,0,In,-1,Out,OutLen,0,0) && OutLen>0)
  221. {
  222. for (;OutLen>1 && *In;++In,--OutLen,++Out)
  223. *Out = (char)(*In>255?'?':*In);
  224. *Out = 0;
  225. }
  226. #endif
  227. }
  228. int tcsicmp(const tchar_t* a,const tchar_t* b) 
  229. {
  230. #ifdef UNICODE
  231. return _wcsicmp(a,b);
  232. #else
  233. return _stricmp(a,b);
  234. #endif
  235. }
  236. int tcsnicmp(const tchar_t* a,const tchar_t* b,size_t n) 
  237. {
  238. #ifdef UNICODE
  239. return _wcsnicmp(a,b,n);
  240. #else
  241. return _strnicmp(a,b,n);
  242. #endif
  243. }
  244. int GetCodePage(const tchar_t* ContentType)
  245. {
  246. const tchar_t* p = tcsstr(ContentType,T("CHARSET="));
  247. if (p)
  248. {
  249. p += 8;
  250. if (tcsncmp(p,T("UTF-8"),5)==0)
  251. return CP_UTF8;
  252. }
  253. return Context()->CodePage;
  254. }
  255. #endif