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