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

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 "chxdataf.h"
  36. #include "platform/win/mmfile.h"
  37. #include "hlxclib/windows.h"
  38. #include "hxheap.h"
  39. #ifdef _DEBUG
  40. #undef HX_THIS_FILE
  41. static const char HX_THIS_FILE[] = __FILE__;
  42. #endif
  43. BEGIN_INTERFACE_LIST(_CBufferWinMemMapped)
  44.     INTERFACE_LIST_ENTRY(IID_IHXBuffer,  IHXBuffer)
  45. END_INTERFACE_LIST
  46. UINT32 
  47. _CBufferWinMemMapped::_AllocGran()
  48. {
  49.     static UINT32 m_ulAllocGran = 0;
  50.     if (!m_ulAllocGran)
  51.     {
  52. SYSTEM_INFO sysinfCurrent;
  53. GetSystemInfo(&sysinfCurrent);
  54. m_ulAllocGran = sysinfCurrent.dwAllocationGranularity;
  55.     }
  56.     
  57.     return m_ulAllocGran;
  58. }
  59. void 
  60. _CBufferWinMemMapped::_UnMap()
  61. {
  62.     if (m_pData)
  63.     {
  64. UnmapViewOfFile(m_pData);
  65. m_ulLength = 0;
  66.     }
  67. }
  68. HX_RESULT 
  69. _CBufferWinMemMapped::_SetMapping
  70. (
  71.     HANDLE hfmoFile, 
  72.     UINT32 ulOffsetHigh, 
  73.     UINT32 ulOffsetLow , 
  74.     UINT32 ulLength
  75. )
  76. {
  77.     _UnMap();
  78.     
  79.     if(!ulLength || !hfmoFile)
  80.     {
  81. return HXR_INVALID_PARAMETER;
  82.     }
  83.     m_ulOffset = ulOffsetLow%_AllocGran();
  84.     if (m_ulOffset < ulOffsetLow)
  85.     {
  86. ulOffsetLow -= m_ulOffset;
  87.     }
  88.     else
  89.     {
  90. m_ulOffset = ulOffsetLow;
  91. ulOffsetLow = 0;
  92.     }
  93.     m_pData = (UCHAR*)MapViewOfFile
  94.     (
  95. hfmoFile, 
  96. FILE_MAP_READ,
  97. ulOffsetHigh, 
  98. ulOffsetLow, 
  99. ulLength+m_ulOffset
  100.     );
  101.     if(m_pData)
  102.     {
  103. m_ulLength = ulLength;
  104.     }
  105.     else
  106.     {
  107. return HRESULT_FROM_WIN32(::GetLastError());
  108.     }
  109.     
  110.     return HXR_OK;
  111. }
  112. /*  Create creates a file using the specified mode */
  113. HX_RESULT CWin32MMFile::Create
  114. (
  115.     const char *filename, 
  116.     UINT16 mode, 
  117.     BOOL textflag
  118. )
  119. {
  120.     return Open(filename, mode, textflag);
  121. }
  122. /*  Open will open a file with the specified permissions */
  123. HX_RESULT CWin32MMFile::Open
  124. (
  125.     const char *filename, 
  126.     UINT16 mode, 
  127.     BOOL textflag
  128. )
  129. {
  130.     // _O_APPEND Repositions the file pointer to the end of the file 
  131.     // before every write operation.
  132.     // _O_CREAT Creates and opens a new file for writing; this has 
  133.     // no effect if the file specified by filename exists.
  134.     // _O_EXCL Returns an error value if the file specified by 
  135.     // filename exists. Only applies when used with 
  136.     // _O_CREAT.
  137.     // _O_RDONLY Opens file for reading only; if this flag is given, 
  138.     // neither _O_RDWR nor _O_WRONLY can be given.
  139.     // _O_RDWR Opens file for both reading and writing; if this 
  140.     // flag is given, neither _O_RDONLY nor _O_WRONLY can 
  141.     // be given.
  142.     // _O_TRUNC Opens and truncates an existing file to zero 
  143.     // length; the file must have write permission. 
  144.     // The contents of the file are destroyed. If this 
  145.     // flag is given, you cannot specify _O_RDONLY.
  146.     // _O_WRONLY Opens file for writing only; if this flag is given, 
  147.     // neither _O_RDONLY nor _O_RDWR can be given.
  148.     if(mode&_O_APPEND)// || textflag)
  149.     {
  150. return HXR_INVALID_PARAMETER;
  151.     }
  152.     Close();
  153.     //CreateFile Parameters
  154.     //
  155.     LPSECURITY_ATTRIBUTES lpSecurityAttributes = NULL;
  156.     DWORD dwCreationDistribution = 0;
  157.     DWORD dwFlagsAndAttributes = 0;
  158.     DWORD dwDesiredAccess = 0;
  159.     DWORD dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE;
  160.     //CreateFileMapping Parameters
  161.     //
  162.     DWORD flProtect = SEC_COMMIT | SEC_NOCACHE;
  163.     DWORD dwMaximumSizeHigh=0;
  164.     DWORD dwMaximumSizeLow=0;
  165.     if(mode&_O_RDWR || mode&_O_WRONLY)
  166.     {
  167. dwDesiredAccess = GENERIC_READ | GENERIC_WRITE;
  168. flProtect |= PAGE_READWRITE;
  169.     }
  170.     else
  171.     {
  172. dwDesiredAccess = GENERIC_READ;
  173. flProtect |= PAGE_READONLY;
  174.     }
  175.     
  176.     if(mode&_O_EXCL && mode&_O_CREAT)
  177.     {
  178. dwCreationDistribution |= CREATE_NEW;
  179.     }
  180.     else if(mode&_O_CREAT)
  181.     {
  182. dwCreationDistribution |= OPEN_ALWAYS;
  183.     }
  184.     else if(mode&_O_TRUNC)
  185.     {
  186. dwCreationDistribution |= TRUNCATE_EXISTING;
  187.     }
  188.     else
  189.     {
  190. dwCreationDistribution |= OPEN_EXISTING;
  191.     }
  192.     m_hFile = CreateFile
  193.     (
  194. OS_STRING(filename), 
  195. dwDesiredAccess, 
  196. dwShareMode, 
  197. lpSecurityAttributes, 
  198. dwCreationDistribution, 
  199. dwFlagsAndAttributes, 
  200. NULL
  201.     );
  202.     
  203.     if(m_hFile == INVALID_HANDLE_VALUE)
  204.     {
  205. return HRESULT_FROM_WIN32(::GetLastError());
  206.     }
  207.     m_ulSizeLow = GetFileSize(m_hFile, &m_ulSizeHigh);
  208.     
  209.     m_hfmoFile = CreateFileMapping
  210.     (
  211. m_hFile, 
  212. NULL, 
  213. flProtect, 
  214. dwMaximumSizeHigh, 
  215. dwMaximumSizeLow, 
  216. NULL
  217.     );
  218.     if(!m_hfmoFile)
  219.     {
  220. return HRESULT_FROM_WIN32(::GetLastError());
  221.     }
  222.     return HXR_OK;
  223. }
  224. /*  Close closes a file */
  225. HX_RESULT CWin32MMFile::Close (void)
  226. {
  227.     if(m_hfmoFile)
  228.     {
  229. CloseHandle(m_hfmoFile);
  230. m_hfmoFile = NULL;
  231.     }
  232.     if(m_hFile != INVALID_HANDLE_VALUE)
  233.     {
  234. CloseHandle(m_hFile);
  235. m_hFile = INVALID_HANDLE_VALUE;
  236.     }
  237.     m_ulPositionHigh = 0;
  238.     m_ulPositionLow = 0;
  239.     m_ulSizeHigh = 0;
  240.     m_ulSizeLow = 0;
  241.     return HXR_OK;
  242. }
  243. /*  Seek moves the current file position to the offset from the fromWhere 
  244. specifier */
  245. HX_RESULT CWin32MMFile::Seek
  246. (
  247.     ULONG32 offset, 
  248.     UINT16 fromWhere
  249. )
  250. {
  251.     if(!m_hfmoFile)
  252.     {
  253. return HXR_FAIL;
  254.     }
  255.     switch(fromWhere)
  256.     {
  257.     case SEEK_SET:
  258. {
  259.     m_ulPositionHigh = 0;
  260.     m_ulPositionLow = offset;
  261. }
  262. break;
  263.     case SEEK_END:
  264. {
  265.     // Set to End..
  266.     m_ulPositionHigh = m_ulSizeHigh;
  267.     m_ulPositionLow = m_ulSizeLow;
  268. }
  269. // Then do the offset..
  270.     case SEEK_CUR:
  271. {
  272.     m_ulPositionLow += offset;
  273.     // Handle overflow
  274.     //
  275.     if (m_ulPositionLow < offset && offset>1)
  276. ++m_ulPositionHigh;
  277.     else if (m_ulPositionLow > offset && offset<1)
  278. --m_ulPositionHigh;
  279. }
  280. break;
  281.     };
  282.     
  283.     return HXR_OK;
  284. }
  285. /*  Tell returns the current file position in the ra file */
  286. ULONG32 CWin32MMFile::Tell (void)
  287. {
  288.     if (!m_hfmoFile || m_ulPositionHigh)
  289.     {
  290. return UINT32(-1);
  291.     }
  292.     return m_ulPositionLow;
  293. }
  294. /*  Read reads up to count bytes of data into buf.
  295. returns the number of bytes read, EOF, or -1 if the read failed */
  296. ULONG32 CWin32MMFile::Read
  297. (
  298.     char* buf, 
  299.     ULONG32 count
  300. )
  301. {
  302.     return (ULONG)-1;
  303. }
  304. /*  Read reads up to ulCount bytes of data into ppbufOut.
  305. returns a result code */
  306. HX_RESULT CWin32MMFile::ReadToBuffer
  307. (
  308.     ULONG32 ulCount, 
  309.     IHXBuffer** ppbufOut
  310. )
  311. {
  312.     if(!m_hfmoFile)
  313.     {
  314. return HXR_FAIL;
  315.     }
  316.     
  317.     UINT32 ulActualCount = ulCount;
  318.     if (m_ulPositionHigh >= m_ulSizeHigh)
  319.     {
  320. if(m_ulPositionLow >= m_ulSizeLow)
  321. {
  322.     return HXR_FAIL;
  323. }
  324. if(m_ulPositionLow+ulCount > m_ulSizeLow)
  325. {
  326.     ulActualCount = m_ulSizeLow - m_ulPositionLow;
  327. }
  328.     }
  329.     HX_RESULT pnrRes;
  330.     IHXFragmentedBuffer* pfbufOut;
  331.     IHXBuffer* pbufOut;
  332.     _CBufferWinMemMapped* pmmbufOut;
  333.     IUnknown* punk;
  334.     pmmbufOut = _CBufferWinMemMapped::CreateObject();
  335.     pmmbufOut->AddRef();
  336.     pnrRes = pmmbufOut->_SetMapping
  337.     (
  338. m_hfmoFile, 
  339. m_ulPositionHigh, 
  340. m_ulPositionLow, 
  341. ulCount
  342.     );
  343.     if (SUCCEEDED(pnrRes))
  344.     {
  345. pmmbufOut->QueryInterface(IID_IHXBuffer, (void**)&pbufOut);
  346. CHXFragmentedBuffer::CreateInstance(&punk);
  347. punk->QueryInterface(IID_IHXFragmentedBuffer, (void**)&pfbufOut);
  348. pfbufOut->Append(pbufOut, 0, ulCount);
  349. punk->QueryInterface(IID_IHXBuffer, (void**)ppbufOut);
  350. Seek(ulCount, SEEK_CUR);
  351. HX_RELEASE(pfbufOut);
  352. HX_RELEASE(punk);
  353. HX_RELEASE(pbufOut);
  354.     }
  355.     HX_RELEASE(pmmbufOut);
  356.     return pnrRes;
  357. }
  358. /*  Write writes up to count bytes of data from buf.
  359. returns the number of bytes written, or -1 if the write failed */
  360. ULONG32 CWin32MMFile::Write
  361. (
  362.     const char *buf, 
  363.     ULONG32 count
  364. )
  365. {
  366.     return (ULONG)-1;
  367. }
  368. /*  Rewinds the file to the start of the file */
  369. HX_RESULT CWin32MMFile::Rewind (void)
  370. {
  371.     return Seek(0, SEEK_SET);
  372. }
  373. /*  Return the file descriptor                      */
  374. INT16 CWin32MMFile::GetFd (void)
  375. {
  376.     return 0;
  377. }
  378. /*  Delete deletes a file */
  379. HX_RESULT CWin32MMFile::Delete
  380. (
  381.     const char *filename
  382. )
  383. {
  384.     return E_NOTIMPL;
  385. }