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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: cchx2ihxdataf.cpp,v 1.4.42.3 2004/07/09 01:44:51 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 "hlxclib/sys/stat.h"
  55. #include "hxbuffer.h"
  56. #include "hxassert.h"
  57. #include "chxdataf.h"
  58. #include "cchx2ihxdataf.h"
  59. /****************************************************************************
  60.  *  CCHX2IHXDataFile
  61.  */
  62. /****************************************************************************
  63.  *  Constructor/Destructor
  64.  */
  65. CCHX2IHXDataFile::CCHX2IHXDataFile(IHXDataFile* pIHXFile,
  66.    void* pUserData,
  67.    TemporaryFileNameFnPtr fpTempFileName,
  68.    FastReadFnPtr fpFastRead,
  69.    FastReadFnPtr fpFastWrite,
  70.    FileDeleteFnPtr fpFileDelete)
  71.     : m_pIHXFile(pIHXFile)
  72.     , m_pUserData(pUserData)
  73.     , m_fpFileDelete(fpFileDelete)
  74.     , m_fpTempFileName(fpTempFileName)
  75.     , m_fpFastRead(fpFastRead)
  76.     , m_fpFastWrite(fpFastWrite)
  77. {
  78.     if (m_pIHXFile)
  79.     {
  80. m_pIHXFile->AddRef();
  81.     }
  82. }
  83. CCHX2IHXDataFile::~CCHX2IHXDataFile(void)
  84. {
  85.     HX_RELEASE(m_pIHXFile);
  86. }
  87. /****************************************************************************
  88.  *  CHXDataFile methods
  89.  */
  90. HX_RESULT CCHX2IHXDataFile::GetLastError(void)
  91. {
  92.     HX_RESULT retVal = HXR_OK;
  93.     if (m_pIHXFile)
  94.     {
  95. retVal = m_pIHXFile->GetLastError();
  96.     }
  97.     return retVal;
  98. }
  99. BOOL CCHX2IHXDataFile::GetTemporaryFileName(const char *tag, char* name, UINT32 ulBufLen)
  100. {
  101.     BOOL bRetVal = FALSE;
  102.     if (m_fpTempFileName)
  103.     {
  104. bRetVal = (*m_fpTempFileName)(m_pUserData, tag, name, ulBufLen);
  105.     }
  106.     return bRetVal;
  107. }
  108. HX_RESULT CCHX2IHXDataFile::Create(const char *filename, UINT16 mode, BOOL textflag)
  109. {
  110.     HX_RESULT retVal = HXR_FAIL;
  111.     if (m_pIHXFile)
  112.     {
  113. m_pIHXFile->Bind(filename);
  114. retVal = m_pIHXFile->Create(TranslateMode(mode, textflag));
  115.     }
  116.     return retVal;
  117. }
  118. HX_RESULT CCHX2IHXDataFile::Open(const char *filename, UINT16 mode, BOOL textflag)
  119. {
  120.     HX_RESULT retVal = HXR_FAIL;
  121.     if (m_pIHXFile)
  122.     {
  123. m_pIHXFile->Bind(filename);
  124. retVal = m_pIHXFile->Open(TranslateMode(mode, textflag));
  125.     }
  126.     return retVal;
  127. }
  128. HX_RESULT CCHX2IHXDataFile::Close(void)
  129. {
  130.     HX_RESULT retVal = HXR_FAIL;
  131.     if (m_pIHXFile)
  132.     {
  133. retVal = m_pIHXFile->Close();
  134.     }
  135.     return retVal;
  136. }
  137. ULONG32 CCHX2IHXDataFile::GetSize(void)
  138. {
  139.     ULONG32 ulSize = 0;
  140.     if (m_pIHXFile)
  141.     {
  142. struct stat statBuffer;
  143. if (m_pIHXFile->IsOpen())
  144. {
  145.     ULONG32 ulCurrPos = m_pIHXFile->Tell();
  146.     ulSize = m_pIHXFile->Seek(0, SEEK_END);
  147.     m_pIHXFile->Seek(ulCurrPos, SEEK_SET);
  148. }
  149. else if (m_pIHXFile->Stat(&statBuffer) == HXR_OK)
  150. {
  151.     ulSize = statBuffer.st_size;
  152. }
  153.     }
  154.     return ulSize;
  155. }
  156. HX_RESULT CCHX2IHXDataFile::Seek(ULONG32 offset, UINT16 fromWhere)
  157. {
  158.     HX_RESULT retVal = HXR_FAIL;
  159.     if (m_pIHXFile)
  160.     {
  161. retVal = m_pIHXFile->Seek(offset, fromWhere);
  162.     }
  163.     return retVal;
  164. }
  165. ULONG32 CCHX2IHXDataFile::Tell(void)
  166. {
  167.     ULONG32 ulPos = 0;
  168.     if (m_pIHXFile)
  169.     {
  170. ulPos = m_pIHXFile->Tell();
  171.     }
  172.     return ulPos;
  173. }
  174. ULONG32 CCHX2IHXDataFile::Read(char* buf, ULONG32 count)
  175. {
  176.     ULONG32 ulBytesRead = 0;
  177.     if (m_pIHXFile)
  178.     {
  179. if (m_fpFastRead)
  180. {
  181.     ulBytesRead = m_fpFastRead(m_pUserData, buf, count);
  182. }
  183. else
  184. {
  185.     IHXBuffer* pBuffer = NULL;
  186.     ulBytesRead = m_pIHXFile->Read(pBuffer, count);
  187.     if (ulBytesRead != 0)
  188.     {
  189. if (ulBytesRead <= count)
  190. {
  191.     memcpy(buf, pBuffer->GetBuffer(), count); /* Flawfinder: ignore */
  192. }
  193. else
  194. {
  195.     ulBytesRead = 0;
  196. }
  197.     }
  198.     HX_RELEASE(pBuffer);
  199. }
  200.     }
  201.     return ulBytesRead;
  202. }
  203. HX_RESULT CCHX2IHXDataFile::ReadToBuffer(ULONG32 ulCount, IHXBuffer** ppbufOut)
  204. {
  205.     HX_RESULT retVal = HXR_FAIL;
  206.     if (m_pIHXFile)
  207.     {
  208. UINT32 ulRead = m_pIHXFile->Read(*ppbufOut, ulCount);
  209. if ((ulRead == ulCount) || ((ulRead != 0) && (ulRead < ulCount)))
  210. {
  211.     retVal = HXR_OK;
  212. }
  213.     }
  214.     return retVal;
  215. }
  216. ULONG32 CCHX2IHXDataFile::Write(const char* buf, ULONG32 count)
  217. {
  218.     ULONG32 ulBytesWritten = 0;
  219.     if (m_pIHXFile)
  220.     {
  221. if (m_fpFastWrite)
  222. {
  223.     ulBytesWritten = m_fpFastWrite(m_pUserData, buf, count);
  224. }
  225. else
  226. {
  227.     IHXBuffer* pBuffer = new CHXBuffer();
  228.     if (pBuffer)
  229.     {
  230. pBuffer->AddRef();
  231. if ((count != 0) && (pBuffer->SetSize(count) == HXR_OK))
  232. {
  233.     memcpy(pBuffer->GetBuffer(), buf, count); /* Flawfinder: ignore */
  234.     ulBytesWritten = m_pIHXFile->Write(pBuffer);
  235. }
  236. pBuffer->Release();
  237.     }
  238. }
  239.     }
  240.     return ulBytesWritten;
  241. }
  242. HX_RESULT CCHX2IHXDataFile::Rewind(void)
  243. {
  244.     HX_RESULT retVal = HXR_FAIL;
  245.     if (m_pIHXFile)
  246.     {
  247. retVal = m_pIHXFile->Seek(0, SEEK_SET);
  248.     }
  249.     return retVal;
  250. }
  251. INT16 CCHX2IHXDataFile::GetFd(void)
  252. {
  253.     INT16 iFd = -1;
  254.     if (m_pIHXFile)
  255.     {
  256. iFd = m_pIHXFile->GetFd();
  257.     }
  258.     return iFd;
  259. }
  260. HX_RESULT CCHX2IHXDataFile::Delete(const char *filename)
  261. {
  262.     HX_RESULT retVal = HXR_FAIL;
  263.     if (m_pIHXFile)
  264.     {
  265. if (m_pIHXFile->IsOpen())
  266. {
  267.     IHXBuffer* pNameBuffer = NULL;
  268.     if (m_pIHXFile->Name(pNameBuffer) && pNameBuffer)
  269.     {
  270. if (strcmp(filename, (const char*) pNameBuffer->GetBuffer()))
  271. {
  272.     retVal = m_pIHXFile->Delete();
  273. }
  274. else
  275. {
  276.     if (m_fpFileDelete)
  277.     {
  278. retVal = m_fpFileDelete(m_pUserData, filename);
  279.     }
  280.     else
  281.     {
  282. m_pIHXFile->Bind(filename);
  283. retVal = m_pIHXFile->Delete();
  284.     }
  285. }
  286. pNameBuffer->Release();
  287.     }
  288. }
  289. else
  290. {
  291.     m_pIHXFile->Bind(filename);
  292.     retVal = m_pIHXFile->Delete();
  293. }
  294.     }
  295.     return retVal;
  296. }
  297. /************************************************************************
  298.  *  Private methods
  299.  */
  300. UINT16 CCHX2IHXDataFile::TranslateMode(UINT16 uOpenMode, BOOL bTextFlag)
  301. {
  302.     UINT16 uMode = 0;
  303.     
  304.     if (uOpenMode & O_RDWR)
  305.     {
  306. uMode |= (HX_FILEFLAG_READ | HX_FILEFLAG_WRITE);
  307.     }
  308.     else if (uOpenMode & O_RDONLY)
  309.     {
  310. uMode |= HX_FILEFLAG_READ;
  311.     }
  312.     else if (uOpenMode & O_WRONLY)
  313.     {
  314. uMode |= HX_FILEFLAG_WRITE;
  315.     }
  316.     if ((uOpenMode & O_BINARY) && (!bTextFlag))
  317.     {
  318. uMode |= HX_FILEFLAG_BINARY;
  319.     }
  320.     return uMode;
  321. }