hxstat.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

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. #ifndef _HXSTATLOG_
  36. #define _HXSTATLOG_
  37. #ifdef _MACINTOSH
  38. #include <stdlib.h>
  39. #endif
  40. #ifdef _WINDOWS
  41. #include <stdio.h>
  42. #endif
  43. #include "hlxclib/stdarg.h"
  44. #include "hxresult.h"
  45. #include "hxtypes.h"
  46. #include "../fileio/pub/chxdataf.h"
  47. #ifdef HELIX_CONFIG_NOSTATICS
  48. # include "globals/hxglobals.h"
  49. #endif
  50. class HXStatLog 
  51. {
  52.   public:
  53.     HXStatLog();
  54.     ~HXStatLog();
  55.     HX_RESULT       Open_Read       (const char * filename);
  56.     HX_RESULT       Open_Write      (const char * filename);
  57.     HX_RESULT       Open_WriteNoAppend (const char * filename);
  58.     HX_RESULT       Close           (void);
  59.     LONG32          Read            (char *buf, ULONG32 max_buf_length);
  60.     LONG32          Write           (char *buf, ULONG32 buf_length);
  61.     HX_RESULT       StatPrintf      (const char* fmt, ...);
  62.     HX_RESULT       ReadLine        (char *buf, ULONG32 buf_length);
  63.     HX_RESULT       Seek            (ULONG32 offset, UINT16 fromWhere);
  64.     ULONG32         Tell            (void);
  65.   private:        
  66.     CHXDataFile* mStatFile;
  67.     char*        mStatBuffer;
  68.     char*        mStatCurrentPosition;
  69.     INT16        mStatBufferLength;
  70.     INT16        mStatBytesLeft;
  71. };
  72. /////
  73. // This is static implementation of the above class so that
  74. // the log info can be written from anywahere in the player to the same
  75. // log file...(opened once for each session)
  76. /////
  77. class HXStaticStatLog 
  78. {
  79.   public:
  80.     static HX_RESULT Open_Read(const char* filename)
  81.     { 
  82.         if (LogFileInstance()) return HXR_ALREADY_OPEN;
  83.         HX_RESULT theErr = HXR_OK;
  84.         LogFileInstance() = new HXStatLog;
  85.         if (!LogFileInstance())
  86.             theErr = HXR_OUTOFMEMORY;
  87.         if (!theErr)
  88.         {
  89.             theErr = LogFileInstance()->Open_Read(filename);
  90.         }
  91.         // error in opening file?
  92.         if (theErr && LogFileInstance())
  93.         {
  94.             delete LogFileInstance();
  95.             LogFileInstance() = NULL;
  96.         }
  97.         return theErr;
  98.     }
  99.                         
  100.     static HX_RESULT Open_Write(const char* filename)
  101.     { 
  102.         if (LogFileInstance()) return HXR_ALREADY_OPEN;
  103.         HX_RESULT theErr = HXR_OK;
  104.         LogFileInstance() = new HXStatLog;
  105.         if (!LogFileInstance())
  106.             theErr = HXR_OUTOFMEMORY;
  107.         if (!theErr)
  108.         {
  109.             theErr = LogFileInstance()->Open_Write(filename);
  110.         }
  111.         // error in opening file?
  112.         if (theErr && LogFileInstance())
  113.         {
  114.             delete LogFileInstance();
  115.             LogFileInstance() = NULL;
  116.         }
  117.         return theErr;
  118.     }
  119.                         
  120.     static HX_RESULT Close(void)
  121.     { 
  122.         if (!LogFileInstance()) return HXR_INVALID_FILE;
  123.         HX_RESULT theErr = HXR_OK;
  124.         theErr = LogFileInstance()->Close();
  125.         delete LogFileInstance();
  126.         LogFileInstance() = NULL;
  127.         return theErr;
  128.     }
  129.                          
  130.     static LONG32 Read(char* buf, ULONG32 max_buf_length)
  131.     { 
  132.         if (!LogFileInstance()) return -1;
  133.         return LogFileInstance()->Read(buf, max_buf_length);
  134.     }
  135.                         
  136.     static LONG32 Write(char* buf, ULONG32 buf_length)
  137.     { 
  138.         if (!LogFileInstance()) return -1;
  139.         return LogFileInstance()->Write(buf, buf_length);
  140.     }
  141.                         
  142.     static HX_RESULT StatPrintf(const char* fmt, ...)
  143.     { 
  144.         if (!LogFileInstance()) return HXR_INVALID_FILE;
  145.                         
  146.         HX_RESULT theErr = HXR_OK;
  147. #ifndef _MACINTOSH
  148.         char buf[8096]; /* Flawfinder: ignore */
  149.         LONG32 bytes_written = 0;
  150.         LONG32 bytes_towrite = 0;
  151.         va_list args;
  152.         va_start(args, fmt);
  153.         bytes_towrite = vsnprintf(buf, sizeof(buf), fmt, args);       // scanf
  154.         va_end(args);
  155.         if (bytes_towrite < 0)
  156.             theErr = HXR_INVALID_PATH;              
  157.         if (!theErr)
  158.         {
  159.             bytes_written = LogFileInstance()->Write(buf, (ULONG32) bytes_towrite);
  160.             if (bytes_written != bytes_towrite)
  161.                 theErr = HXR_INVALID_PATH;              
  162.         }
  163. #endif
  164.         return theErr;
  165.     }
  166.                         
  167.     static HX_RESULT ReadLine (char *buf, ULONG32 buf_length)
  168.     { 
  169.         if (!LogFileInstance()) return HXR_INVALID_FILE;
  170.         return LogFileInstance()->ReadLine(buf, buf_length);
  171.     }
  172.                         
  173.     static HX_RESULT Seek (ULONG32 offset, UINT16 fromWhere)
  174.     { 
  175.         if (!LogFileInstance()) return HXR_INVALID_FILE;
  176.         return LogFileInstance()->Seek(offset, fromWhere);
  177.     }
  178.                         
  179.     static ULONG32 Tell (void)
  180.     { 
  181.         if (!LogFileInstance()) return (ULONG32) -1;
  182.         return LogFileInstance()->Tell();
  183.     }
  184.     
  185.     static inline HXStatLog*& LogFileInstance()
  186.     {
  187. #if defined(HELIX_CONFIG_NOSTATICS)    
  188.             static const HXStatLog* const pmLogFile = NULL;
  189.             return (HXStatLog*&)HXGlobalPtr::Get(&pmLogFile, NULL );
  190. #else
  191.             static HXStatLog* pmLogFile = NULL;
  192.             return pmLogFile;
  193. #endif    
  194.      }
  195. };
  196. #endif //_HXSTATLOG_