cwinfile.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:9k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include <stdio.h>
  36. #include <io.h>
  37. #include <fcntl.h>
  38. #include <sys/stat.h>
  39. #include <errno.h>
  40. #include <share.h>
  41. #include <limits.h>
  42. #include "hxassert.h"
  43. #include "CHXDataF.h"
  44. #include "platform/win/CWinFile.h"
  45. #include <windows.h> // For GetTempPath(), etc.
  46. #include <stdlib.h> // For _MAX_PATH
  47. #include "hxcom.h"
  48. #include "hxbuffer.h"
  49. #include "hxheap.h"
  50. #ifdef _DEBUG
  51. #undef HX_THIS_FILE
  52. static const char HX_THIS_FILE[] = __FILE__;
  53. #endif
  54. #define  HX_FILE_NOT_OPEN    -1000
  55. // CHXFile should set the file reference to a value
  56. // indicating the file is not open
  57. CWinFile::CWinFile (void)
  58. {
  59. // set FD to indicate file is not open
  60. mFD = HX_FILE_NOT_OPEN;
  61. mLastError = HXR_OK;
  62. }
  63. // ~CHXFile should close the file if it is open
  64. CWinFile::~CWinFile(void)
  65. // close the file if it is open
  66. if ( mFD >= 0 )
  67. {
  68. close( mFD );
  69. }
  70. }
  71. // Create a file with the specified mode
  72. // Closes the previous file if it was open
  73. // returns HXR_OK or HXR_INVALID_FILE if an error occurred
  74. HX_RESULT CWinFile::Create(const char *filename, UINT16 mode, BOOL textflag)
  75. {
  76. // close previous file if necessary
  77. if ( mFD >= 0 )
  78. {
  79. close( mFD );
  80. }
  81. // create file
  82. mLastError = HXR_OK;
  83. if ( ( mFD = creat( filename, mode ) ) < 0 )
  84. {
  85.    mLastError = HXR_DOC_MISSING;
  86.    return HXR_DOC_MISSING;
  87. }
  88. return HXR_OK;
  89. }
  90. // Open a file with the specified mode
  91. // Closes the previous file if it was open
  92. // returns HXR_OK or HXR_INVALID_FILE if an error occurred
  93. HX_RESULT CWinFile::Open(const char *filename, UINT16 mode, BOOL textflag)
  94. {
  95. // close previous file if necessary
  96. if ( mFD >= 0 )
  97. {
  98. close( mFD );
  99. }
  100. // open file
  101. mLastError = HXR_OK;
  102. int shareFlag = SH_DENYNO;
  103. if(mode & O_TRUNC)
  104. {
  105. // Check acces rights to this file first
  106.     if (!textflag)
  107. mFD = sopen( filename, mode | O_BINARY, SH_DENYRW, S_IREAD | S_IWRITE );
  108. else
  109. mFD = sopen( filename, mode | O_TEXT, SH_DENYRW, S_IREAD | S_IWRITE );
  110.     if ( mFD < 0)
  111.     {
  112.     mLastError = HXR_DOC_MISSING;
  113.     return HXR_DOC_MISSING;
  114.     }
  115. close( mFD );
  116. }
  117.   // Actually open the file
  118.     if (!textflag)
  119. mFD = open( filename, mode | O_BINARY, S_IREAD | S_IWRITE );
  120. else
  121. mFD = open( filename, mode | O_TEXT, S_IREAD | S_IWRITE );
  122.     if ( mFD < 0 )
  123. {
  124.     mLastError = HXR_DOC_MISSING;
  125.     return HXR_DOC_MISSING;
  126. }
  127. return HXR_OK;
  128. }
  129. // Open a file for sharing with the specified mode
  130. // Closes the previous file if it was open
  131. // returns HXR_OK or HXR_INVALID_FILE if an error occurred
  132. HX_RESULT CWinFile::OpenShared(const char *filename, UINT16 mode, UINT16 sharedmode, BOOL textflag)
  133. {
  134. // close previous file if necessary
  135. if ( mFD >= 0 )
  136. {
  137. close( mFD );
  138. }
  139. // open file
  140. mLastError = HXR_OK;
  141. int shareFlag = SH_DENYNO;
  142. if(mode & O_TRUNC)
  143. {
  144. // Check acces rights to this file first
  145.     if (!textflag)
  146. mFD = sopen( filename, mode | O_BINARY, SH_DENYRW, S_IREAD | S_IWRITE );
  147. else
  148. mFD = sopen( filename, mode | O_TEXT, SH_DENYRW, S_IREAD | S_IWRITE );
  149.     if ( mFD < 0)
  150.     {
  151.     mLastError = HXR_DOC_MISSING;
  152.     return HXR_DOC_MISSING;
  153.     }
  154. close( mFD );
  155. }
  156.   // Actually open the file - use sharing mode
  157.     if (!textflag)
  158. mFD = sopen( filename, mode | O_BINARY, sharedmode, S_IREAD | S_IWRITE );
  159. else
  160. mFD = sopen( filename, mode | O_TEXT, sharedmode, S_IREAD | S_IWRITE );
  161.     if ( mFD < 0 )
  162. {
  163.     if(errno == EACCES)
  164.     mLastError = HXR_ACCESSDENIED;
  165.     else
  166.     mLastError = HXR_DOC_MISSING;
  167.     return mLastError;
  168. }
  169. return HXR_OK;
  170. }
  171. // Close the previous file if it was open
  172. // returns HXR_OK or HXR_INVALID_FILE if an error occurred
  173. HX_RESULT CWinFile::Close(void)
  174. {
  175. // close previous file if necessary
  176. if ( mFD >= 0 )
  177. {
  178. mLastError = HXR_OK;   
  179. if ( close( mFD ) < 0 )
  180. {
  181. mLastError = HXR_INVALID_FILE;
  182. return HXR_INVALID_FILE;
  183. }
  184. return HXR_OK;
  185. }
  186. return HXR_INVALID_FILE;
  187. }
  188. // Simply uses stat to get the size of the file in bytes.  If the file
  189. // is closed, it will still work.
  190. ULONG32 CWinFile::GetSize(void)
  191. {
  192.     struct _stat filestats;
  193.     if (mFD >= 0) 
  194.     {
  195. _fstat(mFD, &filestats);
  196. return filestats.st_size;
  197.     }
  198.     return 0;
  199. }
  200. HX_RESULT CWinFile::ChangeSize (ULONG32 newSize)
  201. {
  202.     if (mFD >= 0)
  203.     {
  204.         // Ff the file pointer is passed the new size, we ought to position it in a valid spot.
  205.         ULONG32 pos = Tell();
  206.         if (pos > newSize)
  207.             Seek(newSize, SEEK_SET);
  208.                 
  209.         if (!_chsize(mFD, newSize))
  210.             return HXR_OK;
  211.         else // reposition pointer at orignal position
  212.             Seek(pos, SEEK_SET);              
  213.     }    
  214.     return HXR_FAIL;
  215. }
  216. // Seek moves the current file position to the offset from the fromWhere
  217. // specifier returns HXR_OK or HXR_INVALID_FILE if an error occurred
  218. HX_RESULT CWinFile::Seek(ULONG32 offset, UINT16 fromWhere)
  219. {
  220. if ( mFD >= 0 )
  221. {
  222. mLastError = HXR_OK;       
  223. if ( lseek( mFD, offset, fromWhere ) < 0 )
  224. {
  225. mLastError = HXR_INVALID_FILE;
  226. return HXR_INVALID_FILE;
  227. }
  228. return HXR_OK;
  229. }
  230. return HXR_INVALID_FILE;
  231. }
  232. // Rewind sets the file position to the start of file
  233. // returns HXR_OK or HXR_INVALID_FILE if an error occurred
  234. HX_RESULT CWinFile::Rewind(void)
  235. {
  236. if ( mFD >= 0 )
  237. {
  238. mLastError = HXR_OK;       
  239. if ( lseek( mFD, 0, SEEK_SET ) < 0 )
  240. {
  241. mLastError = HXR_INVALID_FILE;
  242. return HXR_INVALID_FILE;
  243. }
  244. return HXR_OK;
  245. }
  246. return HXR_INVALID_FILE;
  247. }
  248. // Tell returns the current file position
  249. // returns HXR_OK or -1 if an error occurred
  250. ULONG32 CWinFile::Tell(void)
  251. {   
  252. long offset = -1;
  253. if ( mFD >= 0 )
  254. {
  255. mLastError = HXR_OK;       
  256. if ((offset = tell( mFD )) < 0 )
  257. {
  258. mLastError = HXR_INVALID_FILE;
  259. }
  260. }
  261. return (ULONG32)offset;
  262. }
  263. /*      Read reads up to count bytes of data into buf.
  264.         returns the number of bytes read, EOF, or -1 if the read failed */
  265. ULONG32 CWinFile::Read (char *buf, ULONG32 count)
  266. {
  267. UINT ncnt = (UINT)-1;           // number of bytes read
  268. if ( mFD >= 0 )
  269. mLastError = HXR_OK;
  270. ULONG32 tmpCheck = Tell();
  271. HX_ASSERT(count < UINT_MAX);
  272. if ( ( ncnt = read( mFD, buf, (UINT) count ) ) == -1 )
  273. {
  274. mLastError = HXR_INVALID_FILE;
  275.  
  276. }
  277. }
  278. return (ULONG32)ncnt;
  279. }
  280. /*      Write writes up to count bytes of data from buf.
  281.         returns the number of bytes written, or -1 if the write failed */
  282. ULONG32 CWinFile::Write(const char *buf, ULONG32 count)
  283. {
  284. UINT ncnt = (UINT)-1;           // number of bytes written
  285. if ( mFD >= 0 )
  286. mLastError = HXR_OK;
  287. HX_ASSERT(count < UINT_MAX);
  288. if ( ( ncnt = write( mFD, buf, (UINT)count ) ) == -1 )
  289. {
  290. mLastError = HXR_INVALID_FILE;
  291. }
  292. }
  293. return (ULONG32)ncnt;
  294. }
  295. BOOL CWinFile::GetTemporaryFileName(const char *tag, char* name, UINT32 ulBufLen)
  296. {
  297. BOOL bOk = FALSE;
  298. #ifdef _WIN32
  299. char szTempPathName[_MAX_PATH]; /* Flawfinder: ignore */
  300. if (!GetTempPath(_MAX_PATH,szTempPathName))
  301. {
  302. goto exit;
  303. }
  304. if (!GetTempFileName(szTempPathName,tag,0,name))
  305. {
  306. goto exit;
  307. }
  308. #else
  309. if (!GetTempFileName(0,tag,0,name))
  310. {
  311. goto exit;
  312. }
  313. #endif _WIN32
  314. // If we made it this far then we're cool!
  315. bOk = TRUE;
  316. exit:
  317. return bOk;
  318. }
  319. // Delete a file 
  320. HX_RESULT CWinFile::Delete(const char *filename)
  321. {
  322. // close previous file if necessary
  323. if ( mFD >= 0 )
  324. {
  325. close( mFD );
  326. }
  327. // delete file
  328. mLastError = HXR_OK;
  329. if(unlink(filename))
  330. {
  331. if(errno == EACCES)
  332. mLastError = HXR_ACCESSDENIED;
  333. else
  334. mLastError = HXR_DOC_MISSING;
  335. return mLastError;
  336. }
  337. return HXR_OK;
  338. }