unbufdataf.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 <sys/stat.h>
  37. #include <sys/types.h>
  38. #include <fcntl.h>
  39. #include <unistd.h>
  40. #include <errno.h>
  41. #include "hxtypes.h"
  42. #include "hxcom.h"
  43. #include "hxresult.h"
  44. #include "ihxpckts.h"
  45. #include "hxbuffer.h"
  46. #include "debug.h"
  47. #include "hxdataf.h"
  48. #include "datffact.h"
  49. #include "unbufdataf.h"
  50. /////////////////////////////////////////////////////////////////////////
  51. //  Method:
  52. //      UnBufferedDataFile::QueryInterface
  53. //  Purpose:
  54. //      Implement this to export the interfaces supported by your
  55. //      object.
  56. //
  57. STDMETHODIMP
  58. UnBufferedDataFile::QueryInterface(REFIID riid, void** ppvObj)
  59. {
  60.     if (IsEqualIID(riid, IID_IHXDataFile))
  61.     {
  62.         AddRef();
  63.         *ppvObj = (IHXDataFile*)this;
  64.         return HXR_OK;
  65.     }
  66.     
  67.     *ppvObj = NULL;
  68.     return HXR_NOINTERFACE;
  69. }   
  70. /////////////////////////////////////////////////////////////////////////
  71. //  Method:
  72. //      UnBufferedDataFile::AddRef
  73. //  Purpose:
  74. //      Everyone usually implements this the same... feel free to use
  75. //      this implementation.
  76. //
  77. STDMETHODIMP_(ULONG32)
  78. UnBufferedDataFile::AddRef()
  79. {
  80.     DPRINTF(0x5d000000, ("UBDF::AddRef() = %ldn", m_lRefCount+1));
  81.     return InterlockedIncrement(&m_lRefCount);
  82. }   
  83. /////////////////////////////////////////////////////////////////////////
  84. //  Method:
  85. //      UnBufferedDataFile::Release
  86. //  Purpose:
  87. //      Everyone usually implements this the same... feel free to use
  88. //      this implementation.
  89. //
  90. STDMETHODIMP_(ULONG32)
  91. UnBufferedDataFile::Release()
  92. {
  93.     DPRINTF(0x5d000000, ("UBDF::Release() = %ldn", m_lRefCount-1));
  94.     if (InterlockedDecrement(&m_lRefCount) > 0)
  95.     {
  96.         return m_lRefCount;
  97.     }
  98.     
  99.     delete this;
  100.     return 0;
  101. }   
  102. UnBufferedDataFile::UnBufferedDataFile()
  103.   : m_lRefCount(0)
  104.   , m_ulLastError(HXR_OK)
  105.   , m_pFilename(new CHXBuffer)
  106.   , m_nFD(-1)
  107. {
  108.     m_pFilename->AddRef();
  109.     DPRINTF(0x5d000000, ("UnBufferedDataFile::UnBufferedDataFile()n"));
  110. }
  111. // ~CHXFile should close the file if it is open
  112. UnBufferedDataFile::~UnBufferedDataFile()
  113.     // close the file if it is open
  114.     if (m_nFD > 0)
  115.     {
  116.        close(m_nFD);
  117.        m_nFD = -1;
  118.     }
  119.     HX_RELEASE(m_pFilename);
  120.     DPRINTF(0x5d000000, ("UnBufferedDataFile::~UnBufferedDataFile()n"));
  121. }
  122. /*
  123.  *  IHXDataFile methods
  124.  */
  125. /* Bind DataFile Object with FileName */
  126. STDMETHODIMP_(void)
  127. UnBufferedDataFile::Bind(const char* pFilename)
  128. {
  129.     m_pFilename->Set((BYTE *)pFilename, strlen(pFilename)+1);
  130.     DPRINTF(0x5d000000, ("UnBufferedDataFile::Bind(%s)n", 
  131.     (const char *)m_pFilename->GetBuffer()));
  132. }
  133. /* Creates a datafile using the specified mode
  134.  * uOpenMode --- File Open mode - HX_FILEFLAG_READ/HX_FILEFLAG_WRITE/HX_FILEFLAG_BINARY
  135.  */
  136. STDMETHODIMP
  137. UnBufferedDataFile::Create(UINT16 uOpenMode)
  138. {
  139.     return HXR_NOTIMPL;
  140. }
  141. /* Open will open a file with the specified mode
  142.  */
  143. STDMETHODIMP
  144. UnBufferedDataFile::Open(UINT16 uOpenMode)
  145. {
  146.     DPRINTF(0x5d000000, ("UnBufferedDataFile::Open()n"));
  147.     int mode = 0;
  148.     if (uOpenMode & HX_FILEFLAG_WRITE)
  149.     {
  150.         mode |= (O_CREAT | O_RDWR);
  151. if (!(uOpenMode & HX_FILEFLAG_NOTRUNC))
  152. {
  153.     mode |= O_TRUNC;
  154. }
  155.     }
  156.     else if (uOpenMode & HX_FILEFLAG_READ)
  157.     {
  158. mode |= O_RDONLY;
  159.     }
  160.     // close previous file if necessary
  161.     if (m_nFD > 0)
  162. close(m_nFD);
  163.     // open file
  164.     m_ulLastError = HXR_OK;
  165. #define FILEPERM (S_IREAD | S_IWRITE)
  166.     if ((m_nFD = open((const char *)m_pFilename->GetBuffer(), 
  167. mode, FILEPERM)) < 0)
  168.     {
  169. m_ulLastError = errno;
  170. return HXR_DOC_MISSING;
  171.     }
  172.     // change permissions to allow everyone to read the file and owner to write
  173.     // only if I have to create this file
  174. #if !defined(_VXWORKS) && !defined(_BEOS)
  175.     if (mode & O_CREAT)
  176. fchmod(m_nFD, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
  177. #endif
  178.     return HXR_OK;
  179. }
  180. /* Close closes a file 
  181.  * If the reference count on the IHXDataFile object is greater than 1, 
  182.  * then the underlying file cannot be safely closed, so Close() becomes 
  183.  * a noop in that case. Close it only when the object is destroyed. 
  184.  * This would be safe, but could lead to a file descriptor leak.
  185.  */
  186. STDMETHODIMP
  187. UnBufferedDataFile::Close()
  188. {
  189.     if (m_nFD > 0)
  190.     {
  191. close(m_nFD);
  192. m_nFD = -1;
  193.     }
  194.     return HXR_OK;
  195. }
  196. /* Name returns the currently bound file name in FileName.
  197.  * and returns TRUE, if the a name has been bound.  Otherwise
  198.  * FALSE is returned.
  199.  */
  200. STDMETHODIMP_(BOOL)
  201. UnBufferedDataFile::Name(REF(IHXBuffer*) pFileName)
  202. {
  203.     return HXR_NOTIMPL;
  204. }
  205. /*
  206.  * IsOpen returns TRUE if file is open.  Otherwise FALSE.
  207.  */
  208. inline BOOL
  209. UnBufferedDataFile::IsOpen()
  210. {
  211.     return (m_nFD > 0 ? TRUE : FALSE);
  212. }
  213. /* Seek moves the current file position to the offset from the
  214.  * fromWhere specifier returns current position of file or -1 on
  215.  * error.
  216.  */
  217. STDMETHODIMP
  218. UnBufferedDataFile::Seek(ULONG32 offset, UINT16 fromWhere)
  219. {
  220.     if (m_nFD > 0)
  221.     {
  222. m_ulLastError = HXR_OK;       
  223. if (lseek(m_nFD, offset, fromWhere) < 0)
  224. {
  225.     m_ulLastError = errno;
  226.     return HXR_INVALID_FILE;
  227. }
  228. return HXR_OK;
  229.     }
  230.     return HXR_INVALID_FILE;
  231. }
  232. /* Tell returns the current file position in the file */
  233. STDMETHODIMP_(ULONG32)
  234. UnBufferedDataFile::Tell()
  235. {
  236.     INT32 offset = -1;
  237.     if (m_nFD > 0)
  238.     {
  239. m_ulLastError = HXR_OK;       
  240. // so we do this instead....
  241. if ((offset = lseek(m_nFD, 0, SEEK_CUR)) < 0)
  242. {
  243.     m_ulLastError = errno;
  244. }
  245.     }
  246.     return (ULONG32)offset;
  247. }
  248. /* Read reads up to count bytes of data into buf.
  249.  * returns the number of bytes read, EOF, or -1 if the read failed 
  250.  */
  251. STDMETHODIMP_(ULONG32)
  252. UnBufferedDataFile::Read(REF(IHXBuffer *) pBuf, ULONG32 count)
  253. {
  254.     HX_ASSERT(pBuf);
  255.     pBuf->AddRef();
  256.     int ncnt = 0;           // number of bytes read
  257.     if (m_nFD > 0)
  258.     { 
  259. m_ulLastError = HXR_OK;
  260. ULONG32 tmpCheck = Tell();
  261. if ((ncnt = read(m_nFD, (void *)pBuf->GetBuffer(), count)) < 0)
  262. {
  263.     m_ulLastError = errno;
  264. }
  265.     }
  266.     pBuf->Release();
  267.     return (ULONG32)ncnt;
  268. }
  269. /* Write writes up to count bytes of data from buf.
  270.  * returns the number of bytes written, or -1 if the write failed 
  271.  */
  272. STDMETHODIMP_(ULONG32)
  273. UnBufferedDataFile::Write(REF(IHXBuffer *) pBuf)
  274. {
  275.     HX_ASSERT(pBuf);
  276.     pBuf->AddRef();
  277.     int ncnt = -1;           // number of bytes written
  278.     int count = pBuf->GetSize();
  279.     if (m_nFD > 0)
  280.     {
  281. m_ulLastError = HXR_OK;
  282. if ((ncnt = write(m_nFD, (const char *)pBuf->GetBuffer(), count)) < 0)
  283. {
  284.     m_ulLastError = errno;
  285. }
  286.     }
  287.     pBuf->Release();
  288.     return (ULONG32)ncnt;
  289. }
  290. /* Flush out the data in case of unbuffered I/O
  291.  */
  292. STDMETHODIMP
  293. UnBufferedDataFile::Flush()
  294. {
  295.     return HXR_OK;
  296. }
  297. /*
  298.  * Return info about the data file such as permissions, time of creation
  299.  * size in bytes, etc.
  300.  */
  301. STDMETHODIMP
  302. UnBufferedDataFile::Stat(struct stat* statbuf)
  303. {
  304.     if (m_nFD > 0)
  305.     {
  306. if (!fstat(m_nFD, statbuf))
  307.     return HXR_OK;
  308.     }
  309.     else if (m_pFilename->GetSize())
  310.     {
  311. if (!stat((const char *)m_pFilename->GetBuffer(), statbuf))
  312.     return HXR_OK;
  313.     }
  314.     return HXR_FAIL;
  315. }
  316. /* Return the file descriptor */
  317. inline INT16
  318. UnBufferedDataFile::GetFd()
  319. {
  320.     return m_nFD;
  321. }
  322. /* GetLastError returns the platform specific file error */
  323. STDMETHODIMP
  324. UnBufferedDataFile::GetLastError()
  325. {
  326.     return HXR_NOTIMPL;
  327. }
  328. /* GetLastError returns the platform specific file error in
  329.  * string form.
  330.  */
  331. STDMETHODIMP_(void)
  332. UnBufferedDataFile::GetLastError(REF(IHXBuffer*) err)
  333. {
  334. }