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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxstat.cpp,v 1.5.32.3 2004/07/09 01:46:18 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. #include "hlxclib/stdio.h"
  50. #include "hlxclib/stdarg.h"
  51. #include "hlxclib/string.h"             // memchr
  52. #include "hxresult.h"
  53. #include "hxtypes.h"
  54. #include "hxstat.h"
  55.  
  56. #include "hxheap.h"
  57. #ifdef _DEBUG
  58. #undef HX_THIS_FILE             
  59. static const char HX_THIS_FILE[] = __FILE__;
  60. #endif
  61. #include "hlxclib/fcntl.h"              // O_CREAT | O_APPEND
  62. HXStatLog::HXStatLog() :
  63.     mStatFile (0)
  64.                        , mStatBuffer (0)
  65.                        , mStatCurrentPosition (0)
  66.                        , mStatBufferLength (0)
  67.                        , mStatBytesLeft (0) 
  68. {
  69. }
  70. HXStatLog::~HXStatLog()
  71. {
  72.     if (mStatFile)
  73.     {
  74.         mStatFile->Close();
  75.         delete mStatFile;
  76.         mStatFile = NULL;
  77.     }
  78.     if (mStatBuffer)
  79.     {
  80.         delete [] mStatBuffer;
  81.         mStatBuffer = NULL;
  82.     }
  83. }
  84. HX_RESULT HXStatLog::Open_Write (const char * filepath)
  85. {
  86.     HX_RESULT theErr = HXR_OK;
  87.     if (mStatFile)
  88.         return HXR_ALREADY_OPEN;                //HX_ALREADY_OPEN;
  89.     mStatFile = CHXDataFile::Construct();
  90.     if (!mStatFile)
  91.         theErr = HXR_OUTOFMEMORY;
  92.     if (!theErr)
  93.     {
  94.         // Open file in Text format...
  95.         // (setting last variable TRUE opens file in text format)
  96.         theErr = mStatFile->Open(filepath, O_RDWR | O_CREAT | O_APPEND, TRUE);
  97.     }
  98.     if (theErr && mStatFile)
  99.     {
  100.         mStatFile->Close();
  101.         delete mStatFile;
  102.         mStatFile = NULL;
  103.     }
  104.     return theErr;
  105. }
  106. HX_RESULT HXStatLog::Open_WriteNoAppend (const char * filepath)
  107. {
  108.     HX_RESULT theErr = HXR_OK;
  109.     if (mStatFile)
  110.         return HXR_ALREADY_OPEN;                //HX_ALREADY_OPEN;
  111.     mStatFile = CHXDataFile::Construct();
  112.     if (!mStatFile)
  113.         theErr = HXR_OUTOFMEMORY;
  114.     if (!theErr)
  115.     {
  116.         // Open file in Text format...
  117.         // (setting last variable TRUE opens file in text format)
  118.         theErr = mStatFile->Open(filepath, O_RDWR | O_CREAT | O_TRUNC, TRUE);
  119.     }
  120.     if (theErr && mStatFile)
  121.     {
  122.         mStatFile->Close();
  123.         delete mStatFile;
  124.         mStatFile = NULL;
  125.     }
  126.     return theErr;
  127. }
  128. HX_RESULT HXStatLog::Open_Read (const char * filepath)
  129. {
  130.     HX_RESULT theErr = HXR_OK;
  131.     if (mStatFile)
  132.         return HXR_ALREADY_OPEN;                //HX_ALREADY_OPEN;
  133.     mStatFile = CHXDataFile::Construct();
  134.     if (!mStatFile)
  135.         theErr = HXR_OUTOFMEMORY;
  136.     if (!theErr)
  137.     {
  138.         // Open file in Text format...
  139.         // (setting last variable TRUE opens file in text format)
  140.         theErr = mStatFile->Open(filepath, O_RDONLY, TRUE);
  141.     }
  142.     if (theErr && mStatFile)
  143.     {
  144.         mStatFile->Close();
  145.         delete mStatFile;
  146.         mStatFile = NULL;
  147.     }
  148.     return theErr;
  149. }
  150. HX_RESULT HXStatLog::Close      (void)
  151. {
  152.     HX_RESULT theErr = HXR_OK;
  153.     if (!mStatFile)
  154.         return HXR_INVALID_FILE;                //HX_ALREADY_OPEN;
  155.     theErr = mStatFile->Close();
  156.     delete mStatFile;
  157.     mStatFile = NULL;
  158.     return theErr;
  159. }
  160. LONG32 HXStatLog::Read  (char *buf,     ULONG32 buf_length)
  161. {
  162.     if (!mStatFile || !buf)
  163.         return HXR_INVALID_PATH;                
  164.     LONG32 bytes_read = 0;
  165.         
  166.     bytes_read = (LONG32) mStatFile->Read(buf, buf_length);
  167.     return bytes_read;
  168. }
  169. LONG32 HXStatLog::Write (char *buf, ULONG32 buf_length)
  170. {
  171.     if (!mStatFile || !buf)
  172.         return HXR_INVALID_PATH;                
  173.     LONG32 bytes_written = 0;
  174.         
  175.     bytes_written = (LONG32) mStatFile->Write(buf, (ULONG32) buf_length);
  176.     return bytes_written;
  177. }
  178. HX_RESULT HXStatLog::StatPrintf(const char* fmt, ...)
  179. {
  180.     if (!mStatFile)
  181.         return HXR_INVALID_PATH;                
  182.     HX_RESULT theErr = HXR_OK;
  183.     char buf[8096]; /* Flawfinder: ignore */
  184.     LONG32 bytes_written = 0;
  185.     LONG32 bytes_towrite = 0;
  186.     va_list args;
  187.     va_start(args, fmt);
  188.     bytes_towrite = vsnprintf(buf, sizeof(buf), fmt, args);       // scanf
  189.     va_end(args);
  190.     if (bytes_towrite < 0)
  191.         theErr = HXR_INVALID_PATH;              
  192.     if (!theErr)
  193.     {
  194.         bytes_written = mStatFile->Write(buf, (ULONG32) bytes_towrite);
  195.         if (bytes_written != bytes_towrite)
  196.             theErr = HXR_INVALID_PATH;              
  197.     }
  198.     return theErr;
  199. }
  200.         
  201. #define MAX_STAT_LENGTH 8096
  202. HX_RESULT HXStatLog::ReadLine(char *buf, ULONG32 buf_length)
  203. {
  204.     char *newline_loc = NULL;
  205.     if (!mStatFile || !buf)
  206.         return HXR_INVALID_FILE;
  207.     if (!mStatBuffer)
  208.     {
  209.         mStatBuffer = new char [MAX_STAT_LENGTH];
  210.         if (!mStatBuffer)
  211.             return HXR_INVALID_FILE;
  212.         mStatBufferLength = (INT16) mStatFile->Read(mStatBuffer, MAX_STAT_LENGTH);
  213.         mStatBytesLeft =        mStatBufferLength;
  214.         mStatCurrentPosition = mStatBuffer;
  215.     }
  216. #ifdef __MWERKS__
  217.     char eofChar = 'r';
  218. #else
  219.     char eofChar = 'n';
  220. #endif
  221.     // check if something is left in the buffer read earlier...
  222.     // if yes try to read line from that buffer...
  223.     if (mStatBytesLeft)
  224.     {
  225.         newline_loc = (char *) memchr(mStatCurrentPosition, eofChar, mStatBufferLength);
  226.     }
  227.     // if newlibe is not found, read more data from file...
  228.     if (!newline_loc)
  229.     {
  230.         char * tmp_config_buf = new char [MAX_STAT_LENGTH];
  231.         if (!tmp_config_buf)
  232.             return HXR_OK;
  233.         memcpy(tmp_config_buf, mStatCurrentPosition, (mStatBytesLeft <= MAX_STAT_LENGTH ? mStatBytesLeft : MAX_STAT_LENGTH));
  234.         mStatBufferLength = (INT16) mStatFile->Read(tmp_config_buf + mStatBytesLeft, MAX_STAT_LENGTH - mStatBytesLeft);
  235.         mStatBufferLength       += mStatBytesLeft;
  236.         // update the pointers...
  237.         delete [] mStatBuffer;
  238.         mStatBuffer = tmp_config_buf;
  239.         mStatBytesLeft =        mStatBufferLength;
  240.         mStatCurrentPosition = mStatBuffer;
  241.     }
  242.     // if newlibe was not found earlier, try it again now that we have
  243.     // read more data... if it is still not found.. we bail out..
  244.     // limitation: Each line can be a max of MAX_STAT_LENGTH...
  245.     if (!newline_loc && mStatBytesLeft)
  246.     {
  247.         newline_loc = (char *) memchr(mStatCurrentPosition, eofChar, mStatBufferLength);
  248.     }
  249.         
  250.     // extra + 1 is for adding  at the end of newline character..
  251.     if (newline_loc && (newline_loc + 1 + 1 - mStatCurrentPosition ) <= (LONG32) buf_length)
  252.     {
  253.         memcpy(buf, mStatCurrentPosition, newline_loc + 1 - mStatCurrentPosition); /* Flawfinder: ignore */
  254.                 
  255.         // make it a NULL terminated string to perform string operations...
  256.         buf[newline_loc + 1 - mStatCurrentPosition] = '';
  257.         mStatBytesLeft          -= (newline_loc + 1 - mStatCurrentPosition);
  258.         mStatCurrentPosition    = newline_loc + 1;
  259.         return HXR_OK;
  260.     }
  261.     else
  262.         return HXR_INVALID_FILE;
  263. }
  264.  
  265. HX_RESULT HXStatLog::Seek (ULONG32 offset, UINT16 fromWhere)
  266. {
  267.     if (!mStatFile)
  268.         return HXR_INVALID_PATH;                
  269.     return mStatFile->Seek(offset, fromWhere);      
  270. }
  271. ULONG32  HXStatLog::Tell (void) 
  272. {
  273.     if (!mStatFile)
  274.         return (ULONG32)HXR_INVALID_PATH;               
  275.     
  276.     return mStatFile->Tell();
  277. }
  278.