symbihxdataf.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:13k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: symbihxdataf.cpp,v 1.8.20.3 2004/07/09 01:44:20 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. /****************************************************************************
  50.  *  Includes
  51.  */
  52. #include "hlxclib/string.h"
  53. #include "hlxclib/fcntl.h"
  54. #include "hxbuffer.h"
  55. #include "hxassert.h"
  56. #include "hlxosstr.h"
  57. #include "hxstrutl.h"
  58. #include "symbihxdataf.h"
  59. #include "symbsessionmgr.h"
  60. /****************************************************************************
  61.  *  CSymbIHXDataFile
  62.  */
  63. /****************************************************************************
  64.  *  Constructor/Destructor
  65.  */
  66. CSymbIHXDataFile::CSymbIHXDataFile(IUnknown** ppCommonObj)
  67.     : m_pFileName(NULL)
  68.     , m_pSessionManager(NULL)
  69.     , m_bHaveSession(FALSE)
  70.     , m_bOpen(FALSE)
  71.     , m_symbLastError(KErrNone)
  72.     , m_lRefCount(0)
  73. {
  74.     CSymbSessionMgr::Create(m_pSessionManager, ppCommonObj);
  75. }
  76. CSymbIHXDataFile::~CSymbIHXDataFile(void)
  77. {
  78.     Close();
  79.     HX_RELEASE(m_pFileName);
  80.     HX_RELEASE(m_pSessionManager);
  81. }
  82. /****************************************************************************
  83.  *  IHXDataFile methods
  84.  */
  85. STDMETHODIMP_(void) CSymbIHXDataFile::Bind(const char* pFileName)
  86. {
  87.     m_symbLastError = KErrNone;
  88.     if (!m_pFileName)
  89.     {
  90. m_pFileName = new CHXBuffer;
  91. if (m_pFileName)
  92. {
  93.          m_pFileName->AddRef();
  94. }
  95.     }
  96.     Close();
  97.     if (m_pFileName && pFileName)
  98.     {
  99. if (m_pFileName->Set((UINT8*) pFileName, ::strlen(pFileName) + 1) != HXR_OK)
  100. {
  101.     HX_RELEASE(m_pFileName);
  102. }
  103.     }
  104. }
  105. HX_RESULT CSymbIHXDataFile::_Create(UINT16 uOpenMode, BOOL bCreateFile)
  106. {
  107.     HX_RESULT retVal = HXR_FAIL;
  108.     Close();
  109.     if (m_pFileName && (m_pFileName->GetSize() != 0) && GetSession())
  110.     {
  111. OS_STRING_TYPE osFileName(m_pFileName->GetBuffer());
  112. TPtrC symbNameDesc((TText*) ((OS_TEXT_PTR) osFileName));
  113. TUint symbFileMode = TranslateOpenMode(uOpenMode);
  114. if (bCreateFile)
  115. {
  116.     m_symbLastError = m_symbFile.Create(m_symbSession, 
  117. symbNameDesc,
  118. symbFileMode);
  119.     if ((m_symbLastError != KErrNone) && 
  120. !(uOpenMode & HX_FILEFLAG_NOTRUNC))
  121.     {
  122. m_symbSession.Delete(symbNameDesc);
  123. m_symbLastError = m_symbFile.Create(m_symbSession, 
  124.     symbNameDesc,
  125.     symbFileMode);
  126.     }
  127. }
  128. else
  129. {
  130.     m_symbLastError = m_symbFile.Open(m_symbSession, 
  131.       symbNameDesc,
  132.       symbFileMode);
  133. }
  134. if (m_symbLastError == KErrNone)
  135. {
  136.     m_bOpen = TRUE;
  137.     retVal = HXR_OK;
  138. }
  139.     }
  140.     return retVal;
  141. }
  142. STDMETHODIMP CSymbIHXDataFile::Create(UINT16 uOpenMode)
  143. {
  144.    return _Create(uOpenMode, TRUE);
  145. }
  146. STDMETHODIMP CSymbIHXDataFile::Open(UINT16 uOpenMode)
  147. {
  148.    return _Create(uOpenMode, FALSE);
  149. }
  150. STDMETHODIMP CSymbIHXDataFile::Close()
  151. {
  152.     HX_RESULT retVal = HXR_OK;
  153.     m_symbLastError = KErrNone;
  154.     if (m_bOpen)
  155.     {
  156. retVal = HXR_FAIL;
  157. if ((m_symbLastError = m_symbFile.Flush()) == KErrNone)
  158. {
  159.     retVal = HXR_OK;
  160. }
  161. m_symbFile.Close();
  162. m_bOpen = FALSE;
  163.     }
  164.     return retVal;
  165. }
  166. STDMETHODIMP_(BOOL) CSymbIHXDataFile::Name(REF(IHXBuffer*) pFileName)
  167. {
  168.     m_symbLastError = KErrNotReady;
  169.     if (m_pFileName && (m_pFileName->GetSize() != 0))
  170.     {
  171. m_symbLastError = KErrNone;
  172. pFileName = m_pFileName;
  173. pFileName->AddRef();
  174. return TRUE;
  175.     }
  176.     return FALSE;
  177. }
  178. STDMETHODIMP_(BOOL) CSymbIHXDataFile::IsOpen()
  179. {
  180.     m_symbLastError = KErrNone;
  181.     return m_bOpen;
  182. }
  183. STDMETHODIMP CSymbIHXDataFile::Seek(ULONG32 offset, UINT16 fromWhere)
  184. {
  185.     HX_RESULT retVal = HXR_FAIL;
  186.     TSeek symbSeekMode = TranslateSeekMode(fromWhere);
  187.     TInt symbOffset = (TInt) offset;
  188.     m_symbLastError = KErrNotReady;
  189.     if (m_bOpen && ((m_symbLastError = m_symbFile.Seek(symbSeekMode, symbOffset)) == KErrNone))
  190.     {
  191. retVal = HXR_OK;
  192.     }
  193.     return retVal;
  194. }
  195. STDMETHODIMP_(ULONG32) CSymbIHXDataFile::Tell()
  196. {
  197.     TInt symbOffset = 0;
  198.     m_symbLastError = KErrNotReady;
  199.     if (m_bOpen)
  200.     {
  201. m_symbLastError = m_symbFile.Seek(ESeekCurrent, symbOffset);
  202.     }
  203.     return (ULONG32) symbOffset;
  204. }
  205. STDMETHODIMP_(ULONG32) CSymbIHXDataFile::Read(REF(IHXBuffer*) pBuf,
  206.       ULONG32 ulSize)
  207. {
  208.     ULONG32 ulBytesRead = 0;
  209.     m_symbLastError = KErrNotReady;
  210.     if (m_bOpen)
  211.     {
  212. IHXBuffer* pNewBuffer = (IHXBuffer*) new CHXBuffer();
  213. if (pNewBuffer)
  214. {
  215.     pNewBuffer->AddRef();
  216.     if (pNewBuffer->SetSize(ulSize) == HXR_OK)
  217.     {
  218. TPtr8 symbBufferDesc((TUint8*) pNewBuffer->GetBuffer(), 
  219.      (TInt) ulSize);
  220. if ((m_symbLastError = m_symbFile.Read(symbBufferDesc)) == KErrNone)
  221. {
  222.     ulBytesRead = symbBufferDesc.Length();
  223.     
  224.     if (ulBytesRead == ulSize)
  225.     {
  226. pBuf = pNewBuffer;
  227. pNewBuffer = NULL;
  228.     }
  229.     else
  230.     {
  231. if (ulBytesRead < ulSize)
  232. {
  233.     if (pNewBuffer->SetSize(ulBytesRead) == HXR_OK)
  234.     {
  235. pBuf = pNewBuffer;
  236. pNewBuffer = NULL;
  237.     }
  238. }
  239. if (pNewBuffer)
  240. {
  241.     ulBytesRead = 0;
  242. }
  243.     }
  244. }
  245.     }
  246. }
  247. HX_RELEASE(pNewBuffer);
  248.     }
  249.     return ulBytesRead;
  250. }
  251. STDMETHODIMP_(ULONG32) CSymbIHXDataFile::Write(REF(IHXBuffer*) pBuf)
  252. {
  253.     ULONG32 ulBytesWritten = 0;
  254.     ULONG32 ulBytesToWrite = pBuf->GetSize();
  255.     
  256.     m_symbLastError = KErrNotReady;
  257.     if (m_bOpen)
  258.     {
  259. TPtrC8 symbBufferDesc((TUint8*) pBuf->GetBuffer(), 
  260.       (TInt) ulBytesToWrite);
  261. if ((m_symbLastError = m_symbFile.Write(symbBufferDesc)) == KErrNone)
  262. {
  263.     ulBytesWritten = ulBytesToWrite;
  264. }
  265.     }
  266.     return ulBytesWritten;
  267. }
  268. STDMETHODIMP CSymbIHXDataFile::Flush()
  269. {
  270.     HX_RESULT retVal = HXR_FAIL;
  271.     m_symbLastError = KErrNotReady;
  272.     if (m_bOpen && ((m_symbLastError = m_symbFile.Flush()) == KErrNone))
  273.     {
  274. retVal = HXR_OK;
  275.     }
  276.     return retVal;
  277. }
  278. STDMETHODIMP CSymbIHXDataFile::Stat(struct stat* pStatBuffer)
  279. {
  280.     TInt symbSize = 0;
  281.     BOOL bWasOpen = m_bOpen;
  282.     HX_RESULT retVal = HXR_OK;
  283.     
  284.     if (!m_bOpen)
  285.     {
  286. retVal = Open(HX_FILEFLAG_READ | HX_FILEFLAG_BINARY);
  287.     }
  288.     if (bWasOpen)
  289.     {
  290. retVal = HXR_FAIL;
  291. if ((m_symbLastError = m_symbFile.Flush()) == KErrNone)
  292. {
  293.     retVal = HXR_OK;
  294. }
  295.     }
  296.     if (retVal == HXR_OK)
  297.     {
  298. retVal = HXR_FAIL;
  299. if ((m_symbLastError = m_symbFile.Size(symbSize)) == KErrNone)
  300. {
  301.     retVal = HXR_OK;
  302. }
  303.     }
  304.     if (retVal == HXR_OK)
  305.     {
  306. pStatBuffer->st_mode = 0;
  307. pStatBuffer->st_size = symbSize;
  308. pStatBuffer->st_atime = 0;
  309. pStatBuffer->st_ctime = 0;
  310. pStatBuffer->st_mtime = 0;
  311.     }
  312.     if (!bWasOpen)
  313.     {
  314. Close();
  315.     }
  316.     return retVal;
  317. }
  318. STDMETHODIMP CSymbIHXDataFile::Delete()
  319. {
  320.     HX_RESULT retVal = HXR_FAIL;
  321.     m_symbLastError = KErrNotReady;
  322.     Close();
  323.     if (m_pFileName && (m_pFileName->GetSize() != 0) && GetSession())
  324.     {
  325. OS_STRING_TYPE osFileName(m_pFileName->GetBuffer());
  326. TPtrC symbNameDesc((TText*) ((OS_TEXT_PTR) osFileName));
  327. if ((m_symbLastError = m_symbSession.Delete(symbNameDesc)) == KErrNone)
  328. {
  329.     retVal = HXR_OK;
  330. }
  331.     }
  332.     return retVal;
  333. }
  334. STDMETHODIMP_(INT16) CSymbIHXDataFile::GetFd()
  335. {
  336.     INT16 iFd = -1;
  337.     m_symbLastError = KErrNotReady;
  338.     if (m_bOpen)
  339.     {
  340. m_symbLastError = KErrNone;
  341. iFd = (INT16) m_symbFile.SubSessionHandle();
  342.     }
  343.     return iFd;
  344. }
  345. STDMETHODIMP CSymbIHXDataFile::GetLastError(void)
  346. {
  347.     HX_RESULT retVal = (m_symbLastError == KErrNone) ? HXR_OK : HXR_FAIL;
  348.     return retVal;
  349. }
  350. STDMETHODIMP_(void) CSymbIHXDataFile::GetLastError(REF(IHXBuffer*) err)
  351. {
  352.     ;
  353. }
  354. /************************************************************************
  355.  *  IHXAsyncDataFile methods
  356.  */
  357. STDMETHODIMP CSymbIHXDataFile::SetReceiver(IHXCallback* pCallback)
  358. {
  359.     return HXR_NOTIMPL;
  360. }
  361. STDMETHODIMP CSymbIHXDataFile::SeekAsync(REF(HX_RESULT) status, 
  362.  ULONG32 offset, UINT16 fromWhere)
  363. {
  364.     return HXR_NOTIMPL;
  365. }
  366. STDMETHODIMP CSymbIHXDataFile::ReadAsync(REF(ULONG32) ulReadSize,
  367.  REF(IHXBuffer*) pBuf, 
  368.  ULONG32 count)
  369. {
  370.     return HXR_NOTIMPL;
  371. }
  372. STDMETHODIMP CSymbIHXDataFile::WriteAsync(REF(ULONG32) ulWrittenSize,
  373.   REF(IHXBuffer*) pBuf)
  374. {
  375.     return HXR_NOTIMPL;
  376. }
  377. /****************************************************************************
  378.  *  CSymbIHXDataFile custom public methods
  379.  */
  380. void CSymbIHXDataFile::Bind(IHXBuffer *pFileNameBuffer)
  381. {
  382.     Close();
  383.     HX_RELEASE(m_pFileName);
  384.     m_pFileName = pFileNameBuffer;
  385.     if (m_pFileName)
  386.     {
  387. m_pFileName->AddRef();
  388.     }
  389. }
  390. BOOL CSymbIHXDataFile::GetTemporaryFileName(const char *tag, char* filename, UINT32 ulBufLen)
  391. {
  392.     BOOL bRetVal = FALSE;
  393.     if (GetSession())
  394.     {
  395. TFileName* psymbTempPath = new TFileName;
  396. if (m_symbSession.DefaultPath(*psymbTempPath) == KErrNone)
  397. {
  398.     TFileName* psymbTempFileName = new TFileName;
  399.     if (psymbTempFileName)
  400.     {
  401. RFile symbTempFile;
  402. if (symbTempFile.Temp(m_symbSession, 
  403.       *psymbTempPath, 
  404.       *psymbTempFileName, 
  405.       EFileShareExclusive) == KErrNone)
  406. {
  407.     filename[0] = '';
  408.     SafeStrCpy(filename, 
  409.        OS_STRING2((OS_TEXT_PTR) psymbTempFileName->Ptr(), 
  410.   psymbTempFileName->Length()), 
  411.        ulBufLen);
  412.     symbTempFile.Close();
  413.     m_symbSession.Delete(*psymbTempFileName);
  414.     bRetVal = TRUE;
  415. }
  416. delete psymbTempFileName;
  417.     }
  418. }
  419. HX_DELETE(psymbTempPath);
  420.     }
  421.     return bRetVal;
  422. }
  423. /************************************************************************
  424.  *  Private methods
  425.  */
  426. TUint CSymbIHXDataFile::TranslateOpenMode(UINT16 uOpenMode)
  427. {
  428.     TUint symbMode = EFileShareAny;
  429.     
  430.     if (uOpenMode & HX_FILEFLAG_WRITE)
  431.     {
  432. symbMode |= EFileWrite;
  433.     }
  434.     else if (uOpenMode & HX_FILEFLAG_READ)
  435.     {
  436. symbMode |= EFileRead;
  437.     }
  438.     
  439.     if (uOpenMode & HX_FILEFLAG_BINARY)
  440.     {
  441. symbMode |= EFileStream;
  442.     }
  443.     return symbMode;
  444. }
  445. TSeek CSymbIHXDataFile::TranslateSeekMode(UINT16 fromWhere)
  446. {
  447.     switch (fromWhere)
  448.     {
  449.     case SEEK_SET:
  450. return ESeekStart;
  451.     case SEEK_CUR:
  452. return ESeekCurrent;
  453.     }
  454.     return ESeekEnd;
  455. }
  456. BOOL CSymbIHXDataFile::GetSession(void)
  457. {
  458.     if (m_bHaveSession)
  459.     {
  460. // Assume single thread usage for now
  461. return TRUE;
  462.     }
  463.     else if (m_pSessionManager)
  464.     {
  465. m_bHaveSession = 
  466.     (m_pSessionManager->GetSession(m_symbSession) == HXR_OK);
  467.     }
  468.     
  469.     return m_bHaveSession;
  470. }
  471. /************************************************************************
  472.  *  IUnknown methods
  473.  */
  474. STDMETHODIMP CSymbIHXDataFile::QueryInterface(REFIID riid, void** ppvObj)
  475. {
  476. QInterfaceList qiList[] =
  477. {
  478. { GET_IIDHANDLE(IID_IUnknown), (IUnknown*) this },
  479. { GET_IIDHANDLE(IID_IHXDataFile), (IHXDataFile*) this },
  480. };
  481.     return QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  482. }
  483. STDMETHODIMP_(ULONG32) CSymbIHXDataFile::AddRef()
  484. {
  485.     return InterlockedIncrement(&m_lRefCount);
  486. }
  487. STDMETHODIMP_(ULONG32) CSymbIHXDataFile::Release()
  488. {
  489.     if (InterlockedDecrement(&m_lRefCount) > 0)
  490.     {
  491.         return m_lRefCount;
  492.     }
  493.     delete this;
  494.     return 0;
  495. }