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

Symbian

开发平台:

Visual C++

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