LOG.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:75k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *
  3.  *  Log.c - This module handles the Logging.
  4.  *
  5.  *  Microsoft Confidential
  6.  *  Copyright (c) 1992-1997 Microsoft Corporation
  7.  *
  8.  *
  9.  ****************************************************************************/
  10. //==========================================================================//
  11. //                                  Includes                                //
  12. //==========================================================================//
  13. #include <stdio.h>
  14. #include "perfmon.h"
  15. #include "log.h"
  16. #include "fileutil.h"
  17. #include "owndraw.h"
  18. #include "pmemory.h"       // for MemoryXXX (mallloc-type) routines
  19. #include "perfmops.h"      // for SystemAdd
  20. #include "perfdata.h"
  21. #include "playback.h"      // for PlayingBackLog
  22. #include "status.h"        // for StatusUpdateIcons
  23. #include "system.h"        // for SystemAdd
  24. #include "utils.h"
  25. #include "fileopen.h"      // for FileGetName
  26. #include "command.h"
  27. extern TCHAR LOCAL_SYS_CODE_NAME[] ;
  28. //==========================================================================//
  29. //                              Funtion Prototypes                          //
  30. //==========================================================================//
  31. BOOL LogWriteStartBookmark (HWND hWnd, SYSTEMTIME *pSystemTime) ;
  32. BOOL LogWriteBookmarkData (HWND hWnd, PBOOKMARK pBookMark) ;
  33. BOOL LogWriteSystemBookmark (HWND hWnd, LPTSTR SysName, BOOL DisConnect, SYSTEMTIME *pSystemTime) ;
  34. //==========================================================================//
  35. //                                  Constants                               //
  36. //==========================================================================//
  37. #define LogNameMinLen             15
  38. #define LogObjectMinLen           20
  39. // This is set to 1 min
  40. #define LARGE_INTERVAL            60
  41. //=============================//
  42. // Log Class                   //
  43. //=============================//
  44. #define dwLogClassStyle           (CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS)
  45. #define iLogClassExtra            (0)
  46. #define iLogWindowExtra           (0)
  47. #define dwLogWindowStyle          (WS_CHILD)
  48. //==========================================================================//
  49. //                                Local Data                                //
  50. //==========================================================================//
  51. int            xStatusWidth ;
  52. int            xNameMinWidth ;
  53. TCHAR          szClosed [ShortTextLen] ;
  54. TCHAR          szCollecting [ShortTextLen] ;
  55. // TCHAR          szPaused [ControlStringLen + 1] ;
  56. LOGINDEXBLOCK  *pLogIndexBlock ;
  57. #define WM_START_LOGGING  WM_USER+2
  58. //==========================================================================//
  59. //                                   Macros                                 //
  60. //==========================================================================//
  61. #define LogEntryN(hWndLogEntries, iIndex)        
  62.    ((PLOGENTRY) LBData (hWndLogEntries, iIndex))
  63. //==========================================================================//
  64. //                              Local Functions                             //
  65. //==========================================================================//
  66. void LogAddEntryToList (PLOGENTRY *ppLogEntryFirst, PLOGENTRY pLogNewEntry)
  67. {
  68.    // insert the new entry at the beginning
  69.    pLogNewEntry->pNextLogEntry = *ppLogEntryFirst ;
  70.    *ppLogEntryFirst = pLogNewEntry ;
  71. }
  72. void LogDeleteEntryFromList (PLOGENTRY *ppLogEntryFirst, PLOGENTRY pLogEntryDel)
  73. {
  74.    PLOGENTRY   pLogEntry ;
  75.    if (*ppLogEntryFirst == pLogEntryDel)
  76.       {
  77.       *ppLogEntryFirst = pLogEntryDel->pNextLogEntry ;
  78.       }
  79.    else
  80.       {
  81.       for (pLogEntry = *ppLogEntryFirst ;
  82.          pLogEntry ;
  83.          pLogEntry = pLogEntry->pNextLogEntry)
  84.          {
  85.          if (pLogEntry->pNextLogEntry == pLogEntryDel)
  86.             {
  87.             // found, remove this entry from the list
  88.             pLogEntry->pNextLogEntry =
  89.                pLogEntryDel->pNextLogEntry ;
  90.             break ;
  91.             }
  92.          }
  93.       }
  94. }
  95. // LogDeleteIndex - delete the log entry specified by iIndex
  96. // and do memory clean-up
  97. void static LogDeleteIndex (HWND hWndLogEntries, int iIndex)
  98. {
  99.    PLOGENTRY   pLogEntry ;
  100.    PLOG        pLog ;
  101.    pLogEntry = (PLOGENTRY) LBData(hWndLogEntries, iIndex) ;
  102.    
  103.    if (pLogEntry && pLogEntry != (PLOGENTRY)LB_ERR)
  104.       {
  105.       pLog = LogData (hWndLog) ;
  106.       if (pLog->pLogEntryFirst)
  107.          {
  108.          LogDeleteEntryFromList (&(pLog->pLogEntryFirst), pLogEntry) ;
  109.          }
  110.       MemoryFree (pLogEntry) ;
  111.       }
  112.       
  113.    LBDelete (hWndLogEntries, iIndex) ;
  114. }
  115. void LogEntriesChanged (HWND hWndLogEntries)
  116. /*
  117.    Effect:        Perform any actions needed when an entry has been added or
  118.                   removed from the log. In particular, determine if a new
  119.                   "Object" column width is appropriate. If it is, then
  120.                   change the width and redraw the log entries list.
  121. */
  122.    {  // LogEntriesChanged
  123.    int         iIndex ;
  124.    int         iIndexNum ;
  125.    int         xCol1Width ;
  126.    HDC         hDC ;
  127.    PLOG        pLog ;
  128.    PLOGENTRY   pLogEntry ;
  129.    PPERFSYSTEM pSystem;
  130.    pLog = LogData (hWndLog) ;
  131.    xCol1Width = 0 ;
  132.    hDC = GetDC (hWndLog) ;
  133.    iIndexNum = LBNumItems (hWndLogEntries) ;
  134.     
  135.     // clear value Strings for all systems
  136.     for (pSystem = pLog->pSystemFirst;
  137.          pSystem;
  138.          pSystem = pSystem->pSystemNext) {
  139.         if (pSystem && pSystem->FailureTime == 0) {
  140.             RemoveObjectsFromSystem (pSystem);
  141.         }
  142.     }
  143.    for (iIndex = 0 ;
  144.         iIndex < iIndexNum ;
  145.         iIndex++)
  146.       {  // for all items in the list
  147.       pLogEntry = LogEntryN (hWndLogEntries, iIndex) ;
  148.       xCol1Width = max (TextWidth (hDC, pLogEntry->szObject), 
  149.                         xCol1Width) ;
  150.       pSystem = SystemGet (pLog->pSystemFirst, pLogEntry->szComputer);
  151.       if (pSystem && pSystem->FailureTime == 0) {
  152.          AppendObjectToValueList (
  153.                 pLogEntry->ObjectTitleIndex,
  154.                 pSystem->lpszValue);
  155.          } 
  156.       }  // for
  157.    xCol1Width += 2 * xScrollWidth ;
  158.    xCol1Width = max (xCol1Width, 
  159.                      TextAvgWidth (hDC, LogObjectMinLen)) ;
  160.    if (xCol1Width != pLog->xCol1Width)
  161.       {
  162.       pLog->xCol1Width = xCol1Width ;
  163.       WindowInvalidate (hWndLogEntries) ;
  164.       }
  165.    ReleaseDC (hWndLog, hDC) ;
  166.    }  // LogEntriesChanged
  167. LPTSTR StatusText (int iPMStatus)
  168. /*
  169.    Effect:        Return a string representation of the log status
  170.                   iPMStatus.
  171.    Note:          Since these are globals, we can just return a pointer
  172.                   to them. The user of this routine should not free
  173.                   these pointers or modify the string.
  174. */
  175.    {
  176.    switch (iPMStatus)
  177.       {  // switch
  178.       case iPMStatusClosed:
  179.          return (szClosed) ;
  180.       case iPMStatusCollecting:
  181.          return (szCollecting) ;
  182. //      case iPMStatusPaused:
  183. //         return (szPaused) ;
  184.       default:
  185.          return (szClosed) ;
  186.       }  // switch
  187.    }  // StatusText
  188. PLOG AllocateLogData (HWND hWndLog)
  189.    {
  190.    PLOG           pLog ;
  191.    pLog = LogData (hWndLog) ;
  192.    pLog->iStatus = iPMStatusClosed ;
  193.    pLog->bManualRefresh = FALSE ;
  194.    // let's not give it a filename
  195. /*!!
  196.    FileCombine (pLog->szFilePath, 
  197.                 szDefaultLogDirectory, szDefaultLogFileName) ;
  198. !!*/
  199.    strclr (pLog->szFilePath) ;
  200.    pLog->pSystemFirst = NULL;
  201.    pLog->lFileSize = 0L ;
  202.    pLog->iIntervalMSecs = iDefaultLogIntervalSecs * 1000 ;
  203.    pLog->pLogData = (PPERFDATA) MemoryAllocate (STARTING_SYSINFO_SIZE) ;
  204.    pLog->dwDetailLevel = PERF_DETAIL_WIZARD ;
  205.    LogEntriesChanged (hWndLogEntries) ;
  206.    return (pLog) ;
  207.    }  // AllocateLogData
  208. void FreeLogData (PLOG pLog)
  209.    {  // FreeLogData
  210.    MemoryFree (pLog->pLogData) ;
  211.    }  // FreeLogData
  212. void UpdateLogSize (HWND hWnd)
  213. /*
  214.    Effect:        Set the size value to the current size.  Also change the
  215.                   size entry in the status line.
  216. */
  217.    {  // UpdateLogSize
  218.    PLOG           pLog ;
  219.    TCHAR          szSize [ShortTextLen + 1] ;
  220.    pLog = LogData (hWnd) ;
  221.    
  222.    LongToCommaString (pLog->lFileSize, szSize) ;
  223.    SetDlgItemText (hWnd, IDD_LOGSIZE, szSize) ;
  224.    if (!PlayingBackLog())
  225.       {
  226.       StatusUpdateIcons (hWndStatus) ;
  227.       }
  228.    }  // UpdateLogSize
  229. HANDLE LogAppendSetup(PLOG pLog, PLOGHEADER pLogFileHeader)
  230.    {  // LogAppendSetup
  231.    PLOGHEADER     pHeader ;
  232.    LOGPOSITION    LP ;
  233.    DWORD          lPreviousIndexBlock ;
  234.    DWORD          lNextIndexBlock ;
  235.    PLOGHEADER     pPlaybackLogHeader ;
  236.    HANDLE         hMapHandle ;
  237.    pHeader = (PLOGHEADER) FileMap(pLog->hFile, &hMapHandle) ;
  238.    if (!pHeader ||
  239.        !strsame(pHeader->szSignature, LogFileSignature) ||
  240.        pHeader->wVersion != LogFileVersion ||
  241.        pHeader->wRevision != LogFileRevision)
  242.       {
  243.       if (pHeader)
  244.          {
  245.          FileUnMap((LPVOID)pHeader, hMapHandle) ;
  246.          }
  247.       return 0 ;
  248.       }
  249.    *pLogFileHeader = *pHeader ;
  250.    LP.pIndexBlock = FirstIndexBlock(pHeader) ;
  251.    LP.iIndex = 0 ;
  252.    LP.iPosition = 0 ;
  253.    lPreviousIndexBlock = pHeader->iLength ;
  254.    lNextIndexBlock = LP.pIndexBlock->lNextBlockOffset ;
  255.    // since inside NextReLogIndexPosition would eventually call
  256.    // PlaybackSeek for large log file, we have to temporarily
  257.    // setup PlaybackLog.pHeader.   Not a good fix but it works...
  258.    pPlaybackLogHeader = PlaybackLog.pHeader ;
  259.    PlaybackLog.pHeader = pHeader ;
  260.    while (NextReLogIndexPosition(&LP))
  261.       {
  262.       if (LP.pIndexBlock->lNextBlockOffset != lNextIndexBlock)
  263.          {
  264.          lPreviousIndexBlock = lNextIndexBlock ;
  265.          lNextIndexBlock = LP.pIndexBlock->lNextBlockOffset ;
  266.          }
  267.       }
  268.    // get the last system time from this log file
  269.    if (LP.iIndex > 0)
  270.       {
  271.       SYSTEMTIME localSystemTime ;
  272.       if (LogPositionSystemTime (&LP, &localSystemTime))
  273.          {
  274.          pLog->LastLogTime = localSystemTime ;
  275.          }
  276.       }
  277.    PlaybackLog.pHeader = pPlaybackLogHeader ;
  278.    if (!pLogIndexBlock)
  279.       {
  280.       pLogIndexBlock = (LOGINDEXBLOCK *) MemoryAllocate (sizeof(LOGINDEXBLOCK)) ;
  281.       }
  282.    *pLogIndexBlock = *LP.pIndexBlock ;
  283.    pLog->lIndexBlockOffset = lPreviousIndexBlock ;
  284.    pLog->iIndex = ++LP.iIndex ;
  285.    pLog->lFileSize = FileSeekEnd(pLog->hFile, 0) ;
  286.    FileUnMap((LPVOID)pHeader, hMapHandle) ;
  287.    return pLog->hFile ;
  288.    }  // LogAppendSetup
  289. void LogRemoveCounterName (PLOG pLog)
  290.    {
  291.    PPERFSYSTEM    pSystem ;
  292.    if (pLog->pBaseCounterName)
  293.       {
  294.       MemoryFree (pLog->pBaseCounterName) ;
  295.       }
  296.    pLog->pBaseCounterName = 0 ;
  297.    pLog->lBaseCounterNameSize = 0 ;
  298.    pLog->lBaseCounterNameOffset = 0 ;
  299.    // clear all the system marker to indicate they have not been 
  300.    // saved
  301.    for (pSystem = pLog->pSystemFirst ;
  302.       pSystem ;
  303.       pSystem = pSystem->pSystemNext)
  304.       {
  305.       pSystem->bSystemCounterNameSaved = FALSE ;
  306.       }
  307.    }
  308. int CreateLogFile (PLOG pLog, BOOL bCreateFile, BOOL bSameFile)
  309.    {  // CreateLogFile
  310.    HANDLE               returnHandle ;
  311.    LOGHEADER            LogFileHeader ;
  312.    long                 lCurPosition ;
  313.    LOGFILECOUNTERNAME   CounterNameRecord ;
  314.    pLog->lFileSize = 0 ;
  315.    memset (&(pLog->LastLogTime), 0, sizeof(SYSTEMTIME)) ;
  316.    if (!pLogIndexBlock)
  317.       {
  318.       pLogIndexBlock = (LOGINDEXBLOCK *) MemoryAllocate (sizeof(LOGINDEXBLOCK)) ;
  319.       }
  320.    lstrcpy (pLogIndexBlock->szSignature, LogIndexSignature) ;
  321.    pLog->hFile = FileHandleOpen (pLog->szFilePath) ;
  322.    if (pLog->hFile != INVALID_HANDLE_VALUE)
  323.       {
  324.       // if this is a pre-existing log file, set up to append to it
  325.       returnHandle = LogAppendSetup(pLog, &LogFileHeader) ;
  326.       if (!returnHandle)
  327.          {
  328.          // this is not a log file...
  329.          CloseHandle (pLog->hFile) ;
  330.          return (ERR_BAD_LOG_FILE) ;
  331.          }
  332.       
  333.       pLog->hFile = returnHandle ;
  334.       }
  335.    if (bCreateFile && (!pLog->hFile || pLog->hFile == INVALID_HANDLE_VALUE))
  336.       {
  337.       // Create a new log file if needed.
  338.       pLog->hFile = FileHandleCreate (pLog->szFilePath) ;
  339.       if (!pLog->hFile || pLog->hFile == INVALID_HANDLE_VALUE)
  340.          return (ERR_LOG_FILE) ;
  341.       lstrcpy (LogFileHeader.szSignature, LogFileSignature) ;
  342.       LogFileHeader.wVersion = LogFileVersion ;
  343.       LogFileHeader.wRevision = LogFileRevision ;
  344.       LogFileHeader.iLength = sizeof (LOGHEADER) ;
  345.       LogFileHeader.lBaseCounterNameOffset = 0 ;
  346.       if (!FileWrite (pLog->hFile, &LogFileHeader, sizeof (LogFileHeader)))
  347.          {
  348.          CloseHandle (pLog->hFile) ;
  349.          return (ERR_LOG_FILE) ;
  350.          }
  351.       pLog->iIndex = 0 ;
  352.       pLog->lIndexBlockOffset = FileTell (pLog->hFile) ;
  353.       FileSeekCurrent (pLog->hFile, sizeof (LOGINDEXBLOCK)) ;
  354.       pLog->lFileSize = sizeof(LOGHEADER) + sizeof (LOGINDEXBLOCK) ;
  355.       pLogIndexBlock->iNumIndexes = 0 ;
  356.       pLogIndexBlock->lNextBlockOffset = 0 ;
  357.       // get rid of any previous counter names and get ready for start
  358. //      if (!bSameFile)
  359. //         {
  360. //         LogRemoveCounterName (pLog) ;
  361. //         }
  362.       LogRemoveCounterName (pLog) ;
  363.       }
  364.    else if (bCreateFile)
  365.       {
  366.       // this is an existing log file, setup the counter names
  367.       // LogFileHeader already has the header info filled in
  368.       // by LogAppendSetup
  369.       if (!bSameFile || !pLog->pBaseCounterName)
  370.          {
  371.          // get rid of any previous counter names
  372.          LogRemoveCounterName (pLog) ;
  373.          // read the new names and get ready for start
  374.          lCurPosition = FileTell (pLog->hFile) ;
  375.          FileSeekBegin (pLog->hFile,
  376.             LogFileHeader.lBaseCounterNameOffset) ;
  377.          if (!(FileRead (pLog->hFile,
  378.             &CounterNameRecord,
  379.             sizeof (CounterNameRecord))))
  380.             {
  381.             FileSeekBegin (pLog->hFile,
  382.                lCurPosition) ;
  383.             goto EXIT ;
  384.             }
  385.          FileSeekBegin (pLog->hFile,
  386.             CounterNameRecord.lCurrentCounterNameOffset) ;
  387.          if (!(pLog->pBaseCounterName = MemoryAllocate (
  388.             CounterNameRecord.lUnmatchCounterNames)))
  389.             {
  390.             FileSeekBegin (pLog->hFile,
  391.                lCurPosition) ;
  392.             goto EXIT ;
  393.             }
  394.          if (!(FileRead (pLog->hFile,
  395.             pLog->pBaseCounterName,
  396.             CounterNameRecord.lUnmatchCounterNames)))
  397.             {
  398.             MemoryFree (pLog->pBaseCounterName) ;
  399.             pLog->pBaseCounterName = NULL ;
  400.             FileSeekBegin (pLog->hFile,
  401.                lCurPosition) ;
  402.             goto EXIT ;
  403.             }
  404.          // we got the data, fill in other info
  405.          pLog->lBaseCounterNameSize =
  406.             CounterNameRecord.lUnmatchCounterNames ;
  407.          pLog->lBaseCounterNameOffset =
  408.             LogFileHeader.lBaseCounterNameOffset ;
  409.                
  410.          FileSeekBegin (pLog->hFile,
  411.             lCurPosition) ;
  412.          }
  413.       }
  414. EXIT:
  415.    return (0) ;
  416.    }  // CreateLogFile
  417. void LogWriteIndexBlock (PLOG pLog)
  418.    {
  419.    FileSeekBegin (pLog->hFile, 
  420.                   pLog->lIndexBlockOffset) ;
  421.    pLogIndexBlock->lNextBlockOffset = 0 ;
  422.    FileWrite (pLog->hFile,
  423.               (LPSTR) pLogIndexBlock,
  424.               sizeof (LOGINDEXBLOCK)) ;
  425.    }  // LogWriteIndexBlock
  426. BOOL LogWriteIndex (PLOG pLog,
  427.                     UINT uFlags,
  428.                     SYSTEMTIME *pSystemTime,
  429.                     LONG lDataOffset,
  430.                     int iSystemsLogged) 
  431.    {  // LogWriteIndex
  432.    LOGINDEX       Index ;
  433.    long           lNextBlockOffset ;
  434.    BOOL           WriteOK ;
  435.    //=============================//
  436.    // Add Index Block Entry       //
  437.    //=============================//
  438.    //=============================//
  439.    // Index Block Full?           //
  440.    //=============================//
  441.    WriteOK = TRUE ;
  442.    if (pLog->iIndex == LogFileBlockMaxIndexes - 1)
  443.       {
  444.       lNextBlockOffset = FileTell (pLog->hFile) ;
  445.       pLogIndexBlock->lNextBlockOffset = lNextBlockOffset ;
  446.       FileSeekBegin (pLog->hFile, 
  447.                      pLog->lIndexBlockOffset) ;
  448.       WriteOK = FileWrite (pLog->hFile,
  449.                            (LPSTR) pLogIndexBlock,
  450.                            sizeof (LOGINDEXBLOCK)) ;
  451.       if (WriteOK)
  452.          {
  453.          FileSeekBegin (pLog->hFile,
  454.                         lNextBlockOffset) ;
  455.          // Fake file end until we really write the block
  456.          pLogIndexBlock->iNumIndexes = 0 ;
  457.          pLogIndexBlock->lNextBlockOffset = 0 ;
  458.          WriteOK = FileWrite (pLog->hFile,
  459.                               (LPSTR) pLogIndexBlock,
  460.                               sizeof (LOGINDEXBLOCK)) ;
  461.          if (WriteOK)
  462.             {
  463.             pLog->lIndexBlockOffset = lNextBlockOffset ;
  464.             pLog->iIndex = 0 ;
  465.             pLog->lFileSize += sizeof (LOGINDEXBLOCK) ;
  466.             }
  467.          }
  468.       }  // if
  469.    //=============================//
  470.    // Add Index Block Entry       //
  471.    //=============================//
  472.    Index.uFlags = uFlags ;
  473.    Index.SystemTime = *pSystemTime ;
  474.    Index.lDataOffset = lDataOffset ;
  475.    Index.iSystemsLogged = iSystemsLogged ;
  476.     
  477.    pLogIndexBlock->aIndexes [pLog->iIndex] = Index ;
  478.    pLog->iIndex++ ;
  479.    pLogIndexBlock->iNumIndexes++ ;
  480.    // write out the index block if the log interval if too large
  481.    if (pLog->iIntervalMSecs >= LARGE_INTERVAL * 1000 )
  482.       {
  483.       LONG           lCurPosition ;
  484.    
  485.       // save the current file position
  486.       lCurPosition = FileTell (pLog->hFile) ;
  487.       // flush the index block to the file
  488.       LogWriteIndexBlock (pLog) ;
  489.       // restore previous file position since
  490.       // LogWriteIndexBlock has messed it up
  491.       FileSeekBegin (pLog->hFile, lCurPosition) ;
  492.       }
  493.    return (WriteOK) ;
  494.    }  // LogWriteIndex
  495. BOOL LogWritePerfData (HWND hWnd,
  496.                        PLOG pLog,
  497.                        PPERFDATA pPerfData,
  498.                        SYSTEMTIME *pSystemTime,
  499.                        DWORD iNumSystems,
  500.                        BOOL bWriteIndex)
  501.    {  // LogWritePerfData
  502.    LONG           lSize ;
  503.    BOOL           WriteOK ;
  504.    LONG           lCurPosition ;
  505.    
  506.    lSize = pPerfData->TotalByteLength ;
  507.    lCurPosition = FileTell (pLog->hFile) ;
  508.    //=============================//
  509.    // Write Perf Data             //
  510.    //=============================//
  511.    WriteOK = FileWrite (pLog->hFile, (LPSTR) pPerfData, lSize) ;
  512.    if (WriteOK)
  513.       {
  514.       pLog->lFileSize += lSize ;
  515.       if (bWriteIndex)
  516.          {
  517.          WriteOK = LogWriteIndex (pLog,
  518.                                   LogFileIndexData,
  519.                                   pSystemTime,
  520.                                   lCurPosition,
  521.                                   iNumSystems) ;
  522.          }
  523.       }
  524.    if ( !WriteOK )
  525.       {
  526.       CloseLog (hWnd, pLog) ;
  527.       PrepareMenu (GetMenu (hWndMain)) ;
  528.       UpdateLogDisplay (hWnd) ;   
  529.       DlgErrorBox (hWnd, ERR_LOG_FILE, pLog->szFilePath) ;
  530.       }
  531.    return (WriteOK) ;
  532.    }  // LogWritePerfData
  533. //==========================================================================//
  534. //                              Message Handlers                            //
  535. //==========================================================================//
  536. void static OnSize (HWND hDlg,
  537.                     int xWidth,
  538.                     int yHeight)
  539. /*
  540.    Effect:        Perform any actions necessary when the log window (dialog)
  541.                   is resized. In particular, move and resize some of the
  542.                   dialogs controls.
  543.    Internals:     The rightmost control, the log status, contains one of
  544.                   only several values. These values are all within 
  545.                   xStatusWidth, computed at init time. Put this control
  546.                   one scroll width away from the right edge at fixed
  547.                   width. Move its associated text prompt with it. Then
  548.                   use the remaining space for the filename control, which
  549.                   can probably use it.
  550.    To Do:         Need to consider minimum first.
  551. */
  552.    {  // OnSize
  553.    int            xStatusPos ;
  554.    int            xStatusTextPos ;
  555.    int            xNameWidth ;
  556.    int            xMinWidth ;
  557.    //=============================//
  558.    // Enough space for minimums?  //
  559.    //=============================//
  560.    xMinWidth = 
  561.       xScrollWidth +                         // margin before prompt
  562.       DialogWidth (hDlg, IDD_LOGFILETEXT) +  // width of prompt
  563.       xNameMinWidth +                        // width of name
  564.       xScrollWidth +
  565.       DialogWidth (hDlg, IDD_LOGSTATUSTEXT) +
  566.       DialogWidth (hDlg, IDD_LOGSTATUS) + 
  567.       xScrollWidth ;
  568.    xStatusPos = xWidth - xStatusWidth - xScrollWidth ;   
  569.    DialogMove (hDlg, IDD_LOGSTATUS,
  570.                xStatusPos, NOCHANGE,
  571.                xStatusWidth, NOCHANGE) ;
  572.    xStatusTextPos = xStatusPos - 
  573.                     DialogWidth (hDlg, IDD_LOGSTATUSTEXT) - 
  574.                     xScrollWidth ;
  575.    DialogMove (hDlg, IDD_LOGSTATUSTEXT, 
  576.                xStatusTextPos, NOCHANGE,
  577.                NOCHANGE, NOCHANGE) ;
  578.    xNameWidth = xStatusTextPos - 
  579.                 DialogWidth (hDlg, IDD_LOGFILETEXT) -
  580.                 2 * xScrollWidth ;
  581.    DialogMove (hDlg, IDD_LOGFILE,
  582.                NOCHANGE, NOCHANGE,
  583.                xNameWidth, NOCHANGE) ;
  584.    DialogMove (hDlg, IDD_LOGSIZE,
  585.                DialogXPos (hDlg, IDD_LOGFILE), NOCHANGE,
  586.                DialogWidth (hDlg, IDD_LOGFILE), NOCHANGE) ;
  587.    DialogMove (hDlg, IDD_LOGINTERVALTEXT,
  588.                DialogXPos (hDlg, IDD_LOGSTATUSTEXT), NOCHANGE,
  589.                DialogWidth (hDlg, IDD_LOGSTATUSTEXT), NOCHANGE) ;
  590.    DialogMove (hDlg, IDD_LOGINTERVAL,
  591.                DialogXPos (hDlg, IDD_LOGSTATUS), NOCHANGE,
  592.                DialogWidth (hDlg, IDD_LOGSTATUS), NOCHANGE) ;
  593.    DialogMove (hDlg, IDD_LOGENTRIESTEXT,
  594.                xScrollWidth, NOCHANGE, NOCHANGE, NOCHANGE) ;
  595.    DialogMove (hDlg, IDD_LOGENTRIES, 
  596.                xScrollWidth, NOCHANGE,
  597.                xWidth - 2 * xScrollWidth,
  598.                yHeight - DialogYPos (hDlg, IDD_LOGENTRIES) - yScrollHeight) ;
  599.    WindowInvalidate (hDlg) ;
  600.    }  // OnSize
  601. int OnCtlColor (HWND hDlg,
  602.                        HDC hDC)
  603.    {
  604.    SetTextColor (hDC, crBlack) ;
  605.    SetBkColor (hDC, crLightGray) ;
  606.    return ((int) hbLightGray) ;
  607.    }
  608. void static OnInitDialog (HWND hDlg)
  609.    {
  610.    HDC            hDC ;
  611.    PLOG           pLog ;
  612.    hWndLogEntries = DialogControl (hDlg, IDD_LOGENTRIES) ;
  613.    pLog = AllocateLogData (hDlg) ;
  614.    if (!pLog)
  615.       return ;
  616.    StringLoad (IDS_CLOSED, szClosed) ;
  617. //   StringLoad (IDS_PAUSED, szPaused) ;
  618.    StringLoad (IDS_COLLECTING, szCollecting) ;
  619.    UpdateLogDisplay (hDlg) ;
  620.    hDC = GetDC (hDlg) ;
  621.    xStatusWidth = max (TextWidth (hDC, szClosed), 
  622.                        TextWidth (hDC, szCollecting)) ;
  623. //                       max (TextWidth (hDC, szPaused),
  624. //                            TextWidth (hDC, szCollecting))) ;
  625.    xStatusWidth += xScrollWidth ;
  626.    xNameMinWidth = TextAvgWidth (hDC, LogNameMinLen) ;
  627.    ReleaseDC (hDlg, hDC) ;
  628.    }
  629. void static OnDestroy (HWND hWnd)
  630. /*
  631.    Effect:        Perform any actions necessary when a LogDisplay window
  632.                   is being destroyed. In particular, free the instance
  633.                   data for the log.  
  634.                   Since we really only have one log window and one global
  635.                   log data structure, we don't free the structure. We do,
  636.                   however, delete the objects allocated within the structure.
  637. */
  638.    {  // OnDestroy
  639.    PLOG           pLog ;
  640.    pLog = LogData (hWnd) ;
  641.    FreeLogData (pLog) ;
  642.    }  // OnDestroy
  643. void static OnDrawItem (HWND hWnd, LPDRAWITEMSTRUCT lpDI)
  644.    {  // OnDrawItem
  645.    HDC            hDC ;
  646.    RECT           rectComputer, rectObject ;
  647.    PLOGENTRY      pLogEntry ;
  648.    PLOG           pLog ;
  649.    COLORREF       preBkColor ;
  650.    COLORREF       preTextColor ;
  651.    pLog = LogData (hWnd) ;
  652.    pLogEntry = LogEntryN (hWndLogEntries, DIIndex (lpDI)) ;
  653.    // LogEntryN (SendMessage) will return LB_ERR for error, have to
  654.    // check for that case
  655.    if (!pLogEntry || pLogEntry == (PLOGENTRY)LB_ERR)
  656.       {
  657.       return ;
  658.       }
  659.    hDC = lpDI->hDC ;
  660.    SelectFont (hDC, hFontScales) ;
  661.    if (DISelected (lpDI)) 
  662.       {  // if
  663.       preTextColor = SetTextColor (hDC, GetSysColor (COLOR_HIGHLIGHTTEXT)) ;
  664.       preBkColor = SetBkColor (hDC, GetSysColor (COLOR_HIGHLIGHT)) ;
  665.       }  // if
  666.    rectObject.left = lpDI->rcItem.left ;
  667.    rectObject.top = lpDI->rcItem.top ;
  668.    rectObject.right = rectObject.left + pLog->xCol1Width ;
  669.    rectObject.bottom = lpDI->rcItem.bottom ;
  670.    ExtTextOut (hDC,  
  671.                rectObject.left + xScrollWidth, rectObject.top,   
  672.                ETO_OPAQUE,
  673.                &rectObject,
  674.                pLogEntry->szObject,
  675.                lstrlen (pLogEntry->szObject),
  676.                NULL) ;
  677.    rectComputer.left = rectObject.right ;
  678.    rectComputer.top = lpDI->rcItem.top ;
  679.    rectComputer.right = lpDI->rcItem.right ;
  680.    rectComputer.bottom = lpDI->rcItem.bottom ;
  681.    ExtTextOut (hDC,  
  682.                rectComputer.left, rectComputer.top,
  683.                ETO_OPAQUE,
  684.                &rectComputer,
  685.                pLogEntry->szComputer,
  686.                lstrlen (pLogEntry->szComputer),
  687.                NULL) ;
  688.    if (DIFocus (lpDI))
  689.       DrawFocusRect (hDC, &(lpDI->rcItem)) ;
  690.    if (DISelected (lpDI))
  691.       {  // if
  692.       preTextColor = SetTextColor (hDC, preTextColor) ;
  693.       preBkColor = SetBkColor (hDC, preBkColor) ;
  694.       }  // if
  695. //   RestoreDC (hDC, -1) ;
  696.    }  // OnDrawItem
  697.    
  698. //==========================================================================//
  699. //                             Exported Functions                           //
  700. //==========================================================================//
  701. int APIENTRY LogDisplayDlgProc (HWND hDlg,
  702.                                 unsigned iMessage,
  703.                                 WPARAM wParam,
  704.                                 LONG lParam)
  705. /*
  706.    Note:          This function must be exported in the application's
  707.                   linker-definition file, perfmon.def.
  708. */
  709.    {  // LogDisplayDlgProc
  710. //   HDC            hDC ;
  711.    switch (iMessage)
  712.       {
  713.       case WM_INITDIALOG:
  714.          OnInitDialog (hDlg) ;
  715.          break ;
  716.       case WM_CTLCOLORDLG:
  717.       case WM_CTLCOLOREDIT:
  718.       case WM_CTLCOLORBTN:
  719.       case WM_CTLCOLORSTATIC:
  720.          return (OnCtlColor (hDlg, (HDC) wParam)) ;
  721.          break ;
  722.       case WM_DRAWITEM:
  723.          OnDrawItem (hDlg, (LPDRAWITEMSTRUCT) lParam) ;
  724.          break ;
  725.       case WM_LBUTTONDBLCLK:
  726.          SendMessage (hWndMain, WM_LBUTTONDBLCLK, wParam, lParam) ;
  727.          break ;
  728.       case WM_LBUTTONDOWN:
  729.          DoWindowDrag (hDlg, lParam) ;
  730.          break ;
  731.       case WM_SIZE:
  732.          OnSize (hDlg, LOWORD (lParam), HIWORD (lParam)) ;
  733.          break ;
  734.       case WM_TIMER:
  735.          LogTimer (hDlg, FALSE) ;
  736.          break ;
  737.       case WM_SETFOCUS:
  738.          SetFocus (hWndLogEntries) ;
  739.          break ;
  740.       case WM_START_LOGGING:
  741.          {
  742.          PLOG        pLog ;
  743.          pLog = LogData (hDlg) ;
  744.          if (StartLog (hDlg, pLog, FALSE))
  745.             {
  746.             UpdateLogDisplay (hDlg) ;
  747.             PrepareMenu (GetMenu (hWndMain)) ;
  748.             }
  749.          }
  750.          break ;
  751.       case WM_DESTROY:
  752.          OnDestroy (hDlg) ;
  753.          return (FALSE) ;
  754.          break ;
  755.       default:
  756.          return (FALSE) ;
  757.       } // switch
  758.    return (TRUE) ;
  759.    }  // LogDisplayDlgProc
  760. #if 0
  761. PLOG LogData (HWND hWndLog)
  762.    {
  763.    return (&Log) ;
  764.    }
  765. #endif
  766. HWND CreateLogWindow (HWND hWndParent)
  767. /*
  768.    Effect:        Create the Log window. This window is a child of 
  769.                   hWndMain.
  770.    Note:          We dont worry about the size here, as this window
  771.                   will be resized whenever the main window is resized.
  772. */
  773.    {  // CreateLogWindow
  774.    HWND           hWnd ;
  775.    hWnd = CreateDialog (hInstance,
  776.                         MAKEINTRESOURCE (idDlgLogDisplay),
  777.                         hWndParent,
  778.                         (DLGPROC) LogDisplayDlgProc) ;
  779.    return (hWnd) ;
  780.    }  // CreateLogWindow
  781. void UpdateLogDisplay (HWND hWnd)
  782. /*
  783.    Effect:        Set the values for the various controls in the log
  784.                   display.
  785.    Called By:     OnInitDialog, any other routines that change these
  786.                   values.
  787. */
  788.    {  // UpdateLogDisplay
  789.    PLOG           pLog ;
  790.    WCHAR          szSize [MiscTextLen + 1] ;
  791.    pLog = LogData (hWnd) ;
  792.    DialogSetString (hWnd, IDD_LOGFILE, pLog->szFilePath) ;
  793.    // position the cursor at the end of the text
  794.    EditSetTextEndPos (hWnd, IDD_LOGFILE) ;
  795.    DialogSetString (hWnd, IDD_LOGSTATUS, StatusText (pLog->iStatus)) ;
  796.    LongToCommaString (pLog->lFileSize, szSize) ;
  797.    DialogSetString (hWnd, IDD_LOGSIZE, szSize) ;
  798.    DialogSetInterval (hWnd, IDD_LOGINTERVAL, pLog->iIntervalMSecs) ;
  799.    }  // UpdateLogDisplay
  800. BOOL LogInitializeApplication (void)
  801.    {
  802.    return (TRUE) ;
  803.    }  // LogInitializeApplication
  804. void SetLogTimer (HWND hWnd,
  805.                   int iIntervalMSecs)
  806.    {
  807.    PLOG           pLog ;
  808.    pLog = LogData (hWnd) ;
  809.    pLog->iIntervalMSecs = iIntervalMSecs ;
  810.    KillTimer (hWnd, LogTimerID) ;
  811.    SetTimer (hWnd, LogTimerID, pLog->iIntervalMSecs, NULL) ;
  812.    }
  813. void ClearLogTimer (HWND hWnd)
  814.    {
  815.    KillTimer (hWnd, LogTimerID) ;
  816.    }
  817. BOOL CloseLogStopTimer (HWND hWnd, PLOG pLog)
  818.    {
  819.    CloseHandle (pLog->hFile) ;
  820.    pLog->hFile = 0 ;
  821.    pLog->iStatus = iPMStatusClosed ;
  822.    ClearLogTimer (hWnd) ;
  823.    return (TRUE) ;
  824.    }
  825. BOOL CloseLog (HWND hWnd, PLOG pLog)
  826.    {  // CloseLog
  827.    LogWriteIndexBlock (pLog) ;
  828.    CloseLogStopTimer (hWnd, pLog) ;
  829.    WindowInvalidate (hWndStatus) ;
  830.    return (TRUE) ;
  831.    } // CloseLog
  832. BOOL StartLog (HWND hWnd, PLOG pLog, BOOL bSameFile)
  833.    {
  834.    int            RetCode ;
  835.    SYSTEMTIME     SystemTime ; 
  836.    if ((RetCode = CreateLogFile (pLog, TRUE, bSameFile)) == 0)
  837.       {
  838.       pLog->iStatus = iPMStatusCollecting ;
  839.       GetLocalTime (&SystemTime) ;
  840.       // write a dummy record.
  841.       // this is needed because when playingback log
  842.       // it will skip the first index from the first
  843.       // index block.
  844.       LogWriteIndex (pLog, 0, &SystemTime, 0, 0) ;
  845.       if (!PlayingBackLog())
  846.          {
  847.          // write out a bookmark to indicate start of new data
  848.          if (!LogWriteStartBookmark (hWnd, &SystemTime))
  849.             {
  850.             RetCode = 0 ;
  851.             goto ErrorExit ;
  852.             }
  853.          
  854.          if (!(pLog->bManualRefresh))
  855.             {
  856.             SetLogTimer (hWnd, pLog->iIntervalMSecs) ;
  857.             WindowInvalidate (hWndStatus) ;
  858.             }
  859.          }
  860.       else
  861.          {
  862.          // check if time if OK
  863.          LOGPOSITION    LP ;
  864.          SYSTEMTIME     FirstSystemTime ;
  865.          int            TimeDiff ;
  866.          LP = PlaybackLog.StartIndexPos ;
  867.          if (LogPositionSystemTime (&LP, &FirstSystemTime))
  868.             {
  869.             // we don't want to append data to the log file if
  870.             // the time is not in order.  So, forget it if the
  871.             // last log time in the Log file is greater than the First
  872.             // log time of the playback log file.
  873.             TimeDiff = SystemTimeDifference (&(FirstSystemTime),
  874.                                              &(pLog->LastLogTime)) ;
  875.             if (TimeDiff > 0)
  876.                {
  877.                // error , time not in order
  878.                CloseHandle (pLog->hFile) ;
  879.                RetCode = ERR_CANT_RELOG_DATA ;
  880.                }
  881.             }
  882.          }
  883.       
  884.       if (RetCode == 0)
  885.          {
  886.          // write counter names if needed
  887.          LogWriteSystemCounterNames (hWnd, pLog) ;
  888.          return (TRUE) ;
  889.          }
  890.       }
  891. ErrorExit:
  892.    pLog->hFile = 0 ;
  893.    CloseLogStopTimer(hWnd, pLog);
  894.    PrepareMenu (GetMenu (hWndMain)) ;
  895.    UpdateLogDisplay (hWnd) ;
  896.    if (RetCode)
  897.       {
  898.       DlgErrorBox (hWnd, RetCode, pLog->szFilePath);
  899.       }
  900.    return (FALSE) ;
  901.    }
  902. DWORD LogFindEntry(LPTSTR lpszComputer, DWORD ObjectTitleIndex)
  903. /*
  904.    Effect:         Returns the index of the specified Computer/Object
  905.                    if it already exists in the Entries List Box,
  906.                    otherwise returns LOG_ENTRY_NOT_FOUND
  907. */
  908.    {
  909.    DWORD          iLogEntry ;
  910.    DWORD          iLogNum ;
  911.    PLOGENTRY      pLogEntry ;
  912.    iLogNum = (DWORD) LBNumItems(hWndLogEntries) ;
  913.    for (iLogEntry = 0;
  914.         iLogEntry < iLogNum ;
  915.         iLogEntry++)
  916.       {
  917.       pLogEntry = (PLOGENTRY) LBData(hWndLogEntries, iLogEntry) ;
  918.       if (pLogEntry->ObjectTitleIndex == ObjectTitleIndex &&
  919.           strsamei(pLogEntry->szComputer, lpszComputer))
  920.          {
  921.          return iLogEntry ;
  922.          }
  923.       }
  924.    return (DWORD) LOG_ENTRY_NOT_FOUND;
  925.    }
  926. BOOL LogAddEntry (HWND hWndLog,
  927.                   LPTSTR lpszComputer,
  928.                   LPTSTR lpszObject,
  929.                   DWORD ObjectTitleIndex,
  930.                   BOOL  bGetObjectTitleIndex)
  931. /*
  932.    Effect:        Add an entry in the log structure for the computer and
  933.                   object to be logged.
  934.    Returns:       Whether the operation could be performed.
  935. */
  936.    {  // LogAddEntry
  937.    PLOG           pLog ;
  938.    PLOGENTRY      pLogEntry ;
  939.    UINT           iIndex ;
  940.    PPERFSYSTEM    pCurrentSystem = NULL ;
  941.    DWORD          CurrentObjectTitleIndex ;
  942.    pLog = LogData (hWndLog) ;
  943.    
  944.    pCurrentSystem = SystemAdd (&(pLog->pSystemFirst), lpszComputer) ;
  945.    pLogEntry = MemoryAllocate (sizeof (LOGENTRY)) ;
  946.    if (!pLogEntry)
  947.       return (FALSE) ;
  948.    lstrcpy (pLogEntry->szComputer, lpszComputer) ;
  949.    lstrcpy (pLogEntry->szObject, lpszObject) ;
  950.    pLogEntry->ObjectTitleIndex = ObjectTitleIndex ;
  951.    // if reading from a log setting file, get the 
  952.    // latest Object index by the perfdata itself.
  953.    // There may be case that the id has been changed
  954.    if (bGetObjectTitleIndex &&
  955.       pCurrentSystem &&
  956.       pCurrentSystem->pSystemPerfData)
  957.       {
  958.       if (pCurrentSystem->pSystemPerfData->Signature[0] == TEXT(''))
  959.          {
  960.          UpdateSystemData (
  961.             pCurrentSystem,
  962.             &(pCurrentSystem->pSystemPerfData)) ;
  963.          }
  964.       if (CurrentObjectTitleIndex = GetObjectIdByName(
  965.          pCurrentSystem,
  966.          pCurrentSystem->pSystemPerfData,
  967.          lpszObject))
  968.          {
  969.          pLogEntry->ObjectTitleIndex = CurrentObjectTitleIndex ;
  970.          }
  971.       }
  972.    iIndex = LBAdd (hWndLogEntries, pLogEntry) ;
  973.    if (!bDelayAddAction)
  974.       {
  975.       if (iIndex == LB_ERR)
  976.          {
  977.          iIndex = 0 ;
  978.          }
  979.       LBSetSelection (hWndLogEntries, iIndex) ;
  980.       LBSetVisible (hWndLogEntries, iIndex) ;
  981.       LogEntriesChanged (hWndLogEntries) ;
  982.       }
  983.    LogAddEntryToList (&(pLog->pLogEntryFirst), pLogEntry) ;
  984.    }  // LogAddEntry
  985. BOOL ToggleLogRefresh (HWND hWnd)
  986.    {  // ToggleLogRefresh
  987.    PLOG        pLog ;
  988.    pLog = LogData (hWnd) ;
  989.    if (pLog->bManualRefresh)
  990.       SetLogTimer (hWnd, pLog->iIntervalMSecs) ;
  991.    else
  992.       ClearLogTimer (hWnd) ;
  993.    pLog->bManualRefresh = !pLog->bManualRefresh ;
  994.    return (pLog->bManualRefresh) ;
  995.    }  // ToggleLogRefresh
  996. BOOL LogRefresh (HWND hWnd)
  997.    {  // LogRefresh
  998.    PLOG        pLog ;
  999.    pLog = LogData (hWnd) ;
  1000.    return (pLog->bManualRefresh) ;
  1001.    }  // LogRefresh
  1002. BOOL  CheckUnusedSystem (LPTSTR      lpszComputer)
  1003. {
  1004.    BOOL  bStillUse = FALSE ;
  1005.    PLOGENTRY      pLogEntry ;
  1006.    PLOG           pLog ;
  1007.    pLog = LogData (hWndLog) ;
  1008.    for (pLogEntry = pLog->pLogEntryFirst ;
  1009.         pLogEntry ;
  1010.         pLogEntry = pLogEntry->pNextLogEntry)
  1011.       { // for
  1012.       if (strsamei(pLogEntry->szComputer, lpszComputer))
  1013.          {
  1014.          bStillUse = TRUE ;
  1015.          break ;
  1016.          }
  1017.       }
  1018.    return (bStillUse) ;
  1019. }
  1020. int SelectLogObjects(LPTSTR      lpszComputer,
  1021.                      PPERFDATA   pPerfData,
  1022.                      PPERFDATA   *ppLogData)
  1023. /*
  1024.    Effect:        This routine copies the header from pPerfData
  1025.                   to pLogData and initializes the byte length and the
  1026.                   number of objects.  It then copies the previously
  1027.                   selected objects from pPerfData to pLogData.  If
  1028.                   pLogData must be enlarged to accomodate the new data,
  1029.                   this routine will enlarge it.
  1030.    Returns:       An updated pLogData, and TRUE if at least one object
  1031.                   was copied.
  1032. */
  1033.    {
  1034.    PLOGENTRY      pLogEntry ;
  1035.    PPERF_OBJECT_TYPE
  1036.                   pObject ;
  1037.    DWORD          TotalBytes ;
  1038.    DWORD          NumObjects ;
  1039.    PBYTE          pNextObject ;
  1040.    DWORD          MaxLogDataSize ;
  1041.    PLOG           pLog ;
  1042.    if (!*ppLogData || !pPerfData)
  1043.       return -1 ;
  1044.    memcpy (*ppLogData, pPerfData, pPerfData->HeaderLength) ;
  1045.    TotalBytes = pPerfData->HeaderLength ;
  1046.    MaxLogDataSize = MemorySize(*ppLogData) ;
  1047.    NumObjects = 0;
  1048.    
  1049.    pLog = LogData (hWndLog) ;
  1050.    for (pLogEntry = pLog->pLogEntryFirst ;
  1051.         pLogEntry ;
  1052.         pLogEntry = pLogEntry->pNextLogEntry)
  1053.       { // for
  1054.       if (strsamei(pLogEntry->szComputer, lpszComputer))
  1055.          {
  1056.          pObject = GetObjectDefByTitleIndex(pPerfData,
  1057.             pLogEntry->ObjectTitleIndex) ;
  1058.          if (pObject)
  1059.             {
  1060.             if (MaxLogDataSize < TotalBytes + pObject->TotalByteLength)
  1061.                {
  1062.                *ppLogData = MemoryResize(*ppLogData,
  1063.                                          TotalBytes + pObject->TotalByteLength) ;
  1064.                if (!*ppLogData)
  1065.                   return -1 ;
  1066.                }
  1067.             pNextObject = (PBYTE) *ppLogData + TotalBytes ;
  1068.             memcpy (pNextObject, pObject, pObject->TotalByteLength);
  1069.             TotalBytes += pObject->TotalByteLength ;
  1070.             NumObjects++;
  1071.             }
  1072.          else
  1073.             {
  1074.             }
  1075.          }
  1076.       } // for
  1077.    if (!NumObjects)
  1078.       return 1 ;
  1079.    (*ppLogData)->TotalByteLength = TotalBytes ;
  1080.    (*ppLogData)->NumObjectTypes = NumObjects ;
  1081.    return 0 ;
  1082.    }
  1083. void LogTimer (HWND hWnd, BOOL bForce)
  1084. /*
  1085.    Effect:        Perform all actions necessary when the log window 
  1086.                   receives a timer tic. In particular, if we are
  1087.                   collecting data, get a new perf_data_block and add a 
  1088.                   header entry. If the header block is full, write the
  1089.                   data to disk.
  1090.    Called By:     LogDisplayDlgProc, in response to a WM_TIMER message.
  1091. */
  1092.    {  // OnTimer
  1093.    PLOG           pLog ;
  1094.    PPERFSYSTEM       pSystem ;
  1095.    BOOL           bWriteIndex ;
  1096.    DWORD          iNumSystems ;
  1097.    SYSTEMTIME     SystemTime ;
  1098.    int            iNoUseSystemDetected = 0 ;
  1099.    int               NumberOfSystems = 0 ;
  1100.    DWORD             WaitStatus ;
  1101.    BOOL              bNeedToStoreName = FALSE ;
  1102.    HANDLE            *lpPacketHandles ;
  1103.    pLog = LogData (hWnd) ;
  1104.    if (pLog->iStatus != iPMStatusCollecting)
  1105.       return ;
  1106.    if (bForce || !pLog->bManualRefresh) 
  1107.       {
  1108.       if (pLog->NumberOfHandles == 0)
  1109.          {
  1110.          pLog->NumberOfHandles = MAXIMUM_WAIT_OBJECTS ;
  1111.          pLog->lpHandles = (HANDLE *) MemoryAllocate (pLog->NumberOfHandles * sizeof (HANDLE)) ;
  1112.          if (!pLog->lpHandles)
  1113.             {
  1114.             // out of memory, can't go on
  1115.             pLog->NumberOfHandles = 0 ;
  1116.             return ;
  1117.             }
  1118.          }
  1119.       iNumSystems = SystemCount(pLog->pSystemFirst) ;
  1120.       bWriteIndex = TRUE ;
  1121.       for (pSystem = pLog->pSystemFirst ;
  1122.            pSystem ;
  1123.            pSystem = pSystem->pSystemNext)
  1124.          {  // for
  1125.       
  1126.          if (pSystem->hStateDataMutex == 0)
  1127.             continue ;
  1128.          // lock the state data mutex
  1129.          WaitStatus = WaitForSingleObject(pSystem->hStateDataMutex, 100L);
  1130.          if (WaitStatus == WAIT_OBJECT_0)
  1131.             {
  1132.             ResetEvent (pSystem->hPerfDataEvent) ;
  1133.             pSystem->StateData = WAIT_FOR_PERF_DATA ;
  1134.             if (NumberOfSystems >= pLog->NumberOfHandles)
  1135.                {
  1136.                pLog->NumberOfHandles += MAXIMUM_WAIT_OBJECTS ;
  1137.                pLog->lpHandles = (HANDLE *) MemoryResize (
  1138.                   pLog->lpHandles,
  1139.                   pLog->NumberOfHandles * sizeof (HANDLE)) ;
  1140.                if (!pLog->lpHandles)
  1141.                   {
  1142.                   // out of memory, can't go on
  1143.                   pLog->NumberOfHandles = 0 ;
  1144.                   return ;
  1145.                   }
  1146.                }
  1147.             // add this to the wait
  1148.             pLog->lpHandles [NumberOfSystems] = pSystem->hPerfDataEvent ;
  1149.             NumberOfSystems++ ;
  1150.             }
  1151.          // Send Message to thread to take a data sample
  1152.          PostThreadMessage (
  1153.             pSystem->dwThreadID,
  1154.             WM_GET_PERF_DATA,
  1155.             (WPARAM)0,
  1156.             (LPARAM)0) ;
  1157.          ReleaseMutex(pSystem->hStateDataMutex);
  1158.          }  // for each system
  1159.       // wait for all the data 
  1160.       if (NumberOfSystems)
  1161.          {
  1162.          // increase timeout if we are monitoring lots of systems
  1163.          // For every additional 5 systems, add five more seconds
  1164.          lpPacketHandles = pLog->lpHandles ;
  1165.          do
  1166.             {
  1167.             WaitStatus = WaitForMultipleObjects (
  1168.                min (NumberOfSystems, MAXIMUM_WAIT_OBJECTS),
  1169.                lpPacketHandles,
  1170.                TRUE,       // wait for all objects
  1171.                DataTimeOut + (NumberOfSystems / 5) * DEFAULT_DATA_TIMEOUT);
  1172.          
  1173.             if (WaitStatus == WAIT_TIMEOUT ||
  1174.                NumberOfSystems <= MAXIMUM_WAIT_OBJECTS)
  1175.                {
  1176. //if (WaitStatus == WAIT_TIMEOUT)
  1177. //mike2(TEXT("WaitTimeOut for %ld systemsn"), NumberOfSystems) ;
  1178.                break ;
  1179.                }
  1180.             // more systems --> more to wait
  1181.             NumberOfSystems -= MAXIMUM_WAIT_OBJECTS ;
  1182.             lpPacketHandles += MAXIMUM_WAIT_OBJECTS ;
  1183.             } while (TRUE) ;
  1184.          for (pSystem = pLog->pSystemFirst ;
  1185.               pSystem ;
  1186.               pSystem = pSystem->pSystemNext)
  1187.             {  // for
  1188.       
  1189.             if (pSystem->hStateDataMutex == 0)
  1190.                continue ;
  1191.             // lock the state data mutex
  1192.             WaitStatus = WaitForSingleObject(pSystem->hStateDataMutex, 100L);
  1193.             if (WaitStatus == WAIT_OBJECT_0)
  1194.                {
  1195.                // check for system disconnect/reconnect
  1196.                if (pSystem->dwSystemState == SYSTEM_DOWN ||
  1197.                    pSystem->dwSystemState == SYSTEM_RECONNECT)
  1198.                   {
  1199.                   BOOL  bDisconnected ;
  1200.                   GetLocalTime (&SystemTime) ;
  1201.                   if (bDisconnected = (pSystem->dwSystemState == SYSTEM_DOWN))
  1202.                      {
  1203.                      pSystem->dwSystemState = SYSTEM_DOWN_RPT ;
  1204.                      }
  1205.                   else
  1206.                      {
  1207.                      pSystem->dwSystemState = SYSTEM_RECONNECT_RPT ;
  1208.                      }
  1209.                   if (!LogWriteSystemBookmark (
  1210.                      hWnd,
  1211.                      pSystem->sysName,
  1212.                      bDisconnected,
  1213.                      &SystemTime))
  1214.                      {
  1215.                      pSystem->StateData = IDLE_STATE ;
  1216.                      ReleaseMutex(pSystem->hStateDataMutex);
  1217.                      return ;
  1218.                      }
  1219.                   }
  1220.                if (pSystem->StateData == PERF_DATA_READY)
  1221.                   {
  1222.                   if (pSystem->bSystemCounterNameSaved == FALSE)
  1223.                      {
  1224.                      // we have not written the system name to log file.  This
  1225.                      // is the case when this system is down when we first
  1226.                      // start logging data...
  1227.                      bNeedToStoreName = TRUE ;
  1228.                      }
  1229.                   if (bWriteIndex)
  1230.                      {
  1231.                      GetLocalTime (&SystemTime) ;
  1232.                      }
  1233.                   if (SelectLogObjects(pSystem->sysName,
  1234.                      pSystem->pSystemPerfData,
  1235.                      &pLog->pLogData) == 0)
  1236.                      {
  1237.                      if ( !LogWritePerfData (hWnd, pLog, pLog->pLogData, &SystemTime,
  1238.                         iNumSystems, bWriteIndex) )
  1239.                         {
  1240.                         CloseLogStopTimer(hWnd, pLog) ;
  1241.                         pSystem->StateData = IDLE_STATE ;
  1242.                         ReleaseMutex(pSystem->hStateDataMutex);
  1243.                         return ;
  1244.                         }
  1245.                      // write an index for only the first system
  1246.                      bWriteIndex = FALSE ;
  1247.                      }
  1248.                   else
  1249.                      {
  1250.                      if (!bAddLineInProgress)
  1251.                         {
  1252.                         pSystem->bSystemNoLongerNeeded = TRUE ;
  1253.                         iNoUseSystemDetected ++ ;
  1254.                         }
  1255.                      }
  1256.                   }  // if PERF_DATA_READY
  1257.                else if (!bAddLineInProgress &&
  1258.                   CheckUnusedSystem (pSystem->sysName) == FALSE)
  1259.                   {
  1260.                   // we don't need this system any more
  1261.                   pSystem->bSystemNoLongerNeeded = TRUE ;
  1262.                   iNoUseSystemDetected ++ ;
  1263.                   }
  1264.                pSystem->StateData = IDLE_STATE ;
  1265.                ReleaseMutex(pSystem->hStateDataMutex);
  1266.                }  // wait for StateDataMutex
  1267.             }  // For each system
  1268.          }  // if NumberOfSystems
  1269.       if (!bWriteIndex)
  1270.          {
  1271.          UpdateLogSize (hWnd) ;
  1272.          }
  1273.       }  // if
  1274.    if (iNoUseSystemDetected)
  1275.       {
  1276.       DeleteUnusedSystems (&(pLog->pSystemFirst), iNoUseSystemDetected) ;
  1277.       }
  1278.    if (bNeedToStoreName == TRUE)
  1279.       {
  1280.       LogWriteSystemCounterNames (hWnd, pLog) ;
  1281.       }
  1282.    }  // LogTimer
  1283. BOOL NextIntervalIndexPosition (PLOG pLog, PLOGPOSITION pLP, int *pNumTics)
  1284.    { 
  1285.    SYSTEMTIME     SystemTime1 ;
  1286.    SYSTEMTIME     SystemTime2 ;
  1287.    LOGPOSITION    LP ;
  1288.    PLOGINDEX      pIndex ;
  1289.    DWORD          TimeDiff ;
  1290.    LogPositionSystemTime (pLP, &SystemTime1) ;
  1291.    LP = *pLP ;
  1292.    while (NextReLogIndexPosition (&LP))
  1293.       {  // while
  1294.       *pNumTics = *pNumTics - 1 ;
  1295.       pIndex = IndexFromPosition (&LP) ;
  1296.       if (pIndex && IsBookmarkIndex (pIndex))
  1297.          {
  1298.          *pLP = LP ;
  1299.          return TRUE ;
  1300.          }
  1301.       LogPositionSystemTime (&LP, &SystemTime2) ;
  1302.       TimeDiff = (DWORD) SystemTimeDifference (&SystemTime1, &SystemTime2) ;
  1303.       if (TimeDiff * 1000 >= pLog->iIntervalMSecs)
  1304.          {  // if
  1305.          *pLP = LP ;
  1306.          return (TRUE) ;
  1307.          }  // if
  1308.       }  // while
  1309.    return (FALSE) ;
  1310.    }  // NextIntervalIndexPosition
  1311. BOOL ReLogTimer (HWND hWnd,
  1312.                  PLOG pLog,
  1313.                  LOGPOSITION lp,
  1314.                  BOOL *pWriteBookmark)
  1315.    {  // ReLogTimer
  1316.    PPERFSYSTEM    pSystem ;
  1317.    BOOL           bWriteIndex ;
  1318.    DWORD          iNumSystems ;
  1319.    SYSTEMTIME     SystemTime ;
  1320.    PPERFDATA      pPerfData ;
  1321.    bWriteIndex = TRUE ;
  1322.    // First count number of systems to be logged
  1323.    iNumSystems = 0;
  1324.    for (pSystem = pLog->pSystemFirst ;
  1325.         pSystem ;
  1326.         pSystem = pSystem->pSystemNext)
  1327.       {  // for
  1328.       pPerfData = LogDataFromPosition (pSystem, &lp) ;
  1329.       if (pPerfData)
  1330.          {
  1331.          if (SelectLogObjects(pSystem->sysName,
  1332.                               pPerfData,
  1333.                               &pLog->pLogData) == 0)
  1334.             {
  1335.             iNumSystems++;
  1336.             }
  1337.          }
  1338.       }  // for
  1339.    // Now we can log the data
  1340.    for (pSystem = pLog->pSystemFirst ;
  1341.         pSystem ;
  1342.         pSystem = pSystem->pSystemNext)
  1343.       {  // for
  1344.       pPerfData = LogDataFromPosition (pSystem, &lp) ;
  1345.       if (pPerfData)
  1346.          {
  1347.          // write an index for only the first system
  1348.          LogPositionSystemTime (&lp, &SystemTime) ;
  1349.          if (SelectLogObjects(pSystem->sysName,
  1350.                               pPerfData,
  1351.                               &pLog->pLogData) == 0)
  1352.             {
  1353.             if (*pWriteBookmark)
  1354.                {
  1355.                // only need to write the start bookmark once.
  1356.                *pWriteBookmark = FALSE ;
  1357.                LogWriteStartBookmark (hWnd, &SystemTime) ;
  1358.                }
  1359.             if ( !LogWritePerfData (hWnd, pLog, pLog->pLogData, &SystemTime,
  1360.                                     iNumSystems, bWriteIndex) )
  1361.                {
  1362.                CloseLogStopTimer(hWnd, pLog) ;
  1363.                return FALSE ;
  1364.                }
  1365.             else
  1366.                {
  1367.                // write the index for only the first system logged
  1368.                bWriteIndex = FALSE ;
  1369.                }
  1370.             }
  1371.          }
  1372.       }  // for
  1373.    return TRUE ;
  1374.    }  // ReLogTimer
  1375. void ReLog (HWND hWndLog, BOOL bSameFile)
  1376.    {  // PlaybackLog
  1377.    PLOG           pLog ;
  1378.    LOGPOSITION    lp ;
  1379. //   SYSTEMTIME     SystemTime ;
  1380.    PLOGINDEX      pIndex ;
  1381.    PBOOKMARK      pBookmark;
  1382.    int            iDisplayTics ;
  1383.    // bWriteBookmark tell relogtimer to write start bookmark
  1384.    BOOL           bWriteBookmark = TRUE ;    
  1385.    pLog = LogData (hWndLog) ;
  1386.    if (StartLog (hWndLog, pLog, bSameFile) == FALSE)
  1387.       {
  1388.       return ;
  1389.       }
  1390.    lp = PlaybackLog.StartIndexPos ;
  1391.    iDisplayTics = PlaybackLog.iSelectedTics;
  1392.    while (iDisplayTics > 0)
  1393.       {
  1394.       pIndex = IndexFromPosition (&lp) ;
  1395.       if (pIndex)
  1396.          {
  1397.          if (IsBookmarkIndex (pIndex))
  1398.             {
  1399.             pBookmark = (PBOOKMARK) PlaybackSeek (pIndex->lDataOffset) ;
  1400.             if (!LogWriteBookmarkData (hWndLog, pBookmark))
  1401.                break;
  1402.             }
  1403.          else if (!ReLogTimer (hWndLog, pLog, lp, &bWriteBookmark))
  1404.             break ;
  1405.          }
  1406.       
  1407.       if (!NextIntervalIndexPosition (pLog, &lp, &iDisplayTics))
  1408.          break ;
  1409.       
  1410.       }  // while
  1411.    UpdateLogSize (hWndLog) ;
  1412.    CloseLog (hWndLog, pLog) ;
  1413.    }  // ReLog
  1414. // SaveLog is diff than other because we are not saving a "Line"
  1415. // We are actually saving an entry in the hWndLogEntries listbox.
  1416. // It only contains the system & object name.
  1417. BOOL SaveLog (HWND hWndLog, HANDLE hInputFile, BOOL bGetFileName)
  1418.    {
  1419.    int         iIndex, iIndexNum ;
  1420.    PLOG        pLog ;
  1421.    PLOGENTRY   pLogEntry ;
  1422.    LOGENTRY       tempLogEntry ;
  1423.    HANDLE         hFile ;
  1424.    DISKLOG        DiskLog ;
  1425.    PERFFILEHEADER FileHeader ;
  1426.    TCHAR          szFileName [256] ;
  1427.    BOOL           newFileName = FALSE ;
  1428.    pLog = LogData (hWndLog) ;
  1429.    if (!pLog)
  1430.       {
  1431.       return (FALSE) ;
  1432.       }
  1433.    if (hInputFile)
  1434.       {
  1435.       // use the input file handle if it is available
  1436.       // this is the case for saving workspace data
  1437.       hFile = hInputFile ;
  1438.       }
  1439.    else
  1440.       {
  1441.       if (pLogFullFileName)
  1442.          {
  1443.          lstrcpy (szFileName, pLogFullFileName) ;
  1444.          }
  1445.       if (bGetFileName || pLogFullFileName == NULL)
  1446.          {
  1447. //         if (pLogFullFileName == NULL)
  1448. //            {
  1449. //            StringLoad (IDS_LOG_FNAME, szFileName) ;
  1450. //            }
  1451.          if (!FileGetName (hWndLog, IDS_LOGFILE, szFileName))
  1452.             {
  1453.             return (FALSE) ;
  1454.             }
  1455.          newFileName = TRUE ;
  1456.          }
  1457.       hFile = FileHandleCreate (szFileName) ;
  1458.       if (hFile && newFileName)
  1459.          {
  1460.          ChangeSaveFileName (szFileName, IDM_VIEWLOG) ;
  1461.          }
  1462.       else if (!hFile)
  1463.          {
  1464.          DlgErrorBox (hWndLog, ERR_CANT_OPEN, szFileName) ;
  1465.          }
  1466.       }
  1467.    if (!hFile)
  1468.       return (FALSE) ;
  1469.    iIndexNum = LBNumItems (hWndLogEntries) ;
  1470.    if (!hInputFile)
  1471.       {
  1472.       memset (&FileHeader, 0, sizeof (FileHeader)) ;
  1473.       lstrcpy (FileHeader.szSignature, szPerfLogSignature) ;
  1474.       FileHeader.dwMajorVersion = LogMajorVersion ;
  1475.       FileHeader.dwMinorVersion = LogMinorVersion ;
  1476.    
  1477.       if (!FileWrite (hFile, &FileHeader, sizeof (PERFFILEHEADER)))
  1478.          {
  1479.          goto Exit0 ;
  1480.          }
  1481.       }
  1482.    DiskLog.dwIntervalSecs = pLog->iIntervalMSecs ;
  1483.    DiskLog.dwNumLines = iIndexNum ;
  1484.    DiskLog.bManualRefresh = pLog->bManualRefresh ;
  1485.    DiskLog.perfmonOptions = Options ;
  1486.    lstrcpy(DiskLog.LogFileName, pLog->szFilePath) ;
  1487.    if (!FileWrite (hFile, &DiskLog, sizeof (DISKLOG)))
  1488.       {
  1489.       goto Exit0 ;
  1490.       }
  1491.    for (iIndex = 0 ;
  1492.         iIndex < iIndexNum ;
  1493.         iIndex++)
  1494.       {  // for
  1495.       pLogEntry = LogEntryN (hWndLogEntries, iIndex) ;
  1496.       if (pstrsamei (pLogEntry->szComputer, LocalComputerName))
  1497.          {
  1498.          tempLogEntry = *pLogEntry ;
  1499.          lstrcpy (tempLogEntry.szComputer, LOCAL_SYS_CODE_NAME) ;
  1500.          if (!FileWrite (hFile,
  1501.                &tempLogEntry,
  1502.                sizeof(LOGENTRY)-sizeof(pLogEntry->pNextLogEntry)))
  1503.             {
  1504.             goto Exit0 ;
  1505.             }
  1506.          }
  1507.       else
  1508.          {
  1509.          if (!FileWrite (hFile,
  1510.                pLogEntry,
  1511.                sizeof(LOGENTRY)-sizeof(pLogEntry->pNextLogEntry)))
  1512.             {
  1513.             goto Exit0 ;
  1514.             }
  1515.          }
  1516.       }  // for
  1517.    if (!hInputFile)
  1518.       {
  1519.       CloseHandle (hFile) ;
  1520.       }
  1521.    return (TRUE) ;
  1522. Exit0:
  1523.    if (!hInputFile)
  1524.       {
  1525.       CloseHandle (hFile) ;
  1526.       // only need to report error if not workspace 
  1527.       DlgErrorBox (hWndLog, ERR_SETTING_FILE, szFileName) ;
  1528.       }
  1529.    return (FALSE) ;
  1530.    }
  1531. BOOL OpenLogVer1 (HWND hWndLog, HANDLE hFile, DISKLOG *pDiskLog, PLOG
  1532.    pLog, DWORD dwMinorVersion)
  1533.    {
  1534.    int            iIndex, iIndexNum ;
  1535.    PLOGENTRY      pLogEntry ;
  1536.    LOGENTRY       LogEntry ;
  1537.    PPERFSYSTEM    pSystem;
  1538.    pLog->iIntervalMSecs = pDiskLog->dwIntervalSecs ;
  1539.    if (dwMinorVersion < 3)
  1540.       {
  1541.       pLog->iIntervalMSecs *= 1000 ;
  1542.       }
  1543.    pLog->lFileSize = 0L ;
  1544.    if (dwMinorVersion >= 5)
  1545.       {
  1546.       lstrcpy (pLog->szFilePath, pDiskLog->LogFileName) ;
  1547.       }
  1548.    else
  1549.       {
  1550.       strclr (pLog->szFilePath) ;
  1551.       // fixed the file pointer for backward compatible with older version.
  1552. //      FileSeekCurrent (hFile, -((int) (sizeof (pDiskLog->LogFileName)))) ;
  1553.       }
  1554.    pLog->bManualRefresh = pDiskLog->bManualRefresh ;
  1555.    iIndexNum = pDiskLog->dwNumLines ;
  1556.    LBSetRedraw (hWndLogEntries, FALSE) ;
  1557.    bDelayAddAction = TRUE ;
  1558.    for (iIndex = 0 ; iIndex < iIndexNum ; iIndex++)
  1559.       {
  1560.       if (!FileRead (hFile,
  1561.             &LogEntry,
  1562.             sizeof(LOGENTRY)-sizeof(LogEntry.pNextLogEntry)))
  1563.          {
  1564.          break ;
  1565.          }
  1566.       if (pstrsame (LogEntry.szComputer, LOCAL_SYS_CODE_NAME))
  1567.          {
  1568.          // convert it back to the local name
  1569.          lstrcpy (LogEntry.szComputer, LocalComputerName) ;
  1570.          }
  1571.       LogAddEntry (hWndLog,
  1572.                   LogEntry.szComputer,
  1573.                   LogEntry.szObject,
  1574.                   LogEntry.ObjectTitleIndex,
  1575.                   TRUE) ;
  1576.       }
  1577.    
  1578.    bDelayAddAction = FALSE ;
  1579.    LBSetSelection (hWndLogEntries, 0) ;
  1580.    LBSetVisible (hWndLogEntries, 0) ;
  1581.    LogEntriesChanged (hWndLogEntries) ;
  1582.    LBSetRedraw (hWndLogEntries, TRUE) ;
  1583.    for (pSystem = pLog->pSystemFirst ;
  1584.       pSystem ;
  1585.       pSystem = pSystem->pSystemNext)
  1586.       {
  1587.       if (pSystem)
  1588.          {
  1589.          RemoveObjectsFromSystem (pSystem);
  1590.          }
  1591.       }
  1592.    for (iIndex = 0 ;
  1593.         iIndex < iIndexNum ;
  1594.         iIndex++)
  1595.       {  // for all items in the list
  1596.       pLogEntry = LogEntryN (hWndLogEntries, iIndex) ;
  1597.       pSystem = SystemGet (pLog->pSystemFirst, pLogEntry->szComputer);
  1598.       if (pSystem)
  1599.          {
  1600.          AppendObjectToValueList (
  1601.                 pLogEntry->ObjectTitleIndex,
  1602.                 pSystem->lpszValue);
  1603.          } 
  1604.       }  // for
  1605.    if (!strempty(pLog->szFilePath))
  1606.       {
  1607.       if (pLog->pLogEntryFirst &&
  1608.           pLog->pSystemFirst)
  1609.          {
  1610.          // PostMessage so it will start logging
  1611.          PostMessage (
  1612.             hWndLog,
  1613.             WM_START_LOGGING,
  1614.             0,
  1615.             0) ;
  1616.          }
  1617.       else
  1618.          {
  1619.          HANDLE   hLogFile ;
  1620.          // get the file size.
  1621.          hLogFile = FileHandleOpen (pLog->szFilePath) ;
  1622.          if (hLogFile && hLogFile != INVALID_HANDLE_VALUE)
  1623.             {
  1624.             pLog->lFileSize = GetFileSize (hLogFile, NULL);
  1625.             CloseHandle (hLogFile) ;
  1626.             }
  1627.          }
  1628.       }
  1629.    return (TRUE) ;
  1630.    }
  1631. BOOL OpenLog (HWND hWndLog,
  1632.               HANDLE hFile,
  1633.               DWORD dwMajorVersion,
  1634.               DWORD dwMinorVersion,
  1635.               BOOL bLogFile)
  1636.    {
  1637.    PLOG        pLog ;
  1638.    DISKLOG     DiskLog ;
  1639.    BOOL        bSuccess = TRUE ;
  1640.    pLog = LogData (hWndLog) ;
  1641.    if (!pLog)
  1642.       {
  1643.       bSuccess = FALSE ;
  1644.       goto Exit0 ;
  1645.       }
  1646.    if (!FileRead (hFile, &DiskLog, sizeof (DISKLOG) - sizeof(DiskLog.LogFileName)))
  1647.       {
  1648.       bSuccess = FALSE ;
  1649.       goto Exit0 ;
  1650.       }
  1651.    if (dwMajorVersion == 1 && dwMinorVersion >= 5 ||
  1652.       dwMajorVersion > 1)
  1653.       {
  1654.       // read LogFileName
  1655.       if (!FileRead (hFile, DiskLog.LogFileName, sizeof (DiskLog.LogFileName)))
  1656.          {
  1657.          bSuccess = FALSE ;
  1658.          goto Exit0 ;
  1659.          }
  1660.       }
  1661.    switch (dwMajorVersion)
  1662.       {  
  1663.       case (1):
  1664.          SetHourglassCursor() ;
  1665.          
  1666.          ResetLogView (hWndLog) ;
  1667.          OpenLogVer1 (hWndLog, hFile, &DiskLog, pLog, dwMinorVersion) ;
  1668.          // change to log view if we are opening a 
  1669.          // log file
  1670.          if (bLogFile && iPerfmonView != IDM_VIEWLOG)
  1671.             {
  1672.             SendMessage (hWndMain, WM_COMMAND, (LONG)IDM_VIEWLOG, 0L) ;
  1673.             }
  1674.  
  1675.          if (iPerfmonView == IDM_VIEWLOG)
  1676.             {
  1677.             SetPerfmonOptions (&DiskLog.perfmonOptions) ;
  1678.             }
  1679.          
  1680.          UpdateLogDisplay (hWndLog) ;   
  1681.          
  1682.          SetArrowCursor() ;
  1683.          
  1684.          break ;
  1685.       }
  1686. Exit0:
  1687.    if (bLogFile)
  1688.       {
  1689.       CloseHandle (hFile) ;
  1690.       }
  1691.    return (bSuccess) ;
  1692.    }  // OpenLog
  1693. BOOL LogCollecting (HWND hWndLog)
  1694. /*
  1695.    Effect:        Return whether the log associated with hWndLog is currently
  1696.                   collecting data (writing performance values to disk).
  1697. */
  1698.    {  // LogCollecting
  1699.    PLOG           pLog ;
  1700.    pLog = LogData (hWndLog) ;
  1701.    return (pLog->iStatus == iPMStatusCollecting) ;
  1702.    }  // LogCollecting
  1703. int LogFileSize (HWND hWndLog)
  1704.    {
  1705.    PLOG           pLog ;
  1706.    pLog = LogData (hWndLog) ;
  1707.    return (pLog->lFileSize) ;
  1708.    }
  1709. BOOL LogWriteSystemBookmark (
  1710.    HWND     hWnd,
  1711.    LPTSTR   lpSystemName,
  1712.    BOOL     bDisconnected,
  1713.    SYSTEMTIME *pSystemTime)
  1714.    {
  1715.    BOOKMARK       Bookmark ;
  1716.    TCHAR    NewSystemBookmark [MiscTextLen * 2] ;
  1717.    memset (&Bookmark, 0, sizeof (BOOKMARK)) ;
  1718.    NewSystemBookmark [0] = TEXT('') ;
  1719.    StringLoad (
  1720.       bDisconnected ?
  1721.          IDS_SYSTEM_DOWN :
  1722.          IDS_SYSTEM_UP,
  1723.       NewSystemBookmark) ;
  1724.    lstrcat (NewSystemBookmark, TEXT(" - ")) ;
  1725.    lstrcat (NewSystemBookmark, lpSystemName) ;
  1726.    Bookmark.SystemTime = *pSystemTime ;
  1727.    lstrcpy (Bookmark.szComment, NewSystemBookmark) ;
  1728.    return (LogWriteBookmarkData (hWndLog, &Bookmark)) ;
  1729.    }
  1730. BOOL LogWriteStartBookmark (HWND hWnd, SYSTEMTIME *pSystemTime)
  1731.    {
  1732.    BOOKMARK       Bookmark ;
  1733.    TCHAR    NewDataBookmark [MiscTextLen] ;
  1734.    memset (&Bookmark, 0, sizeof (BOOKMARK)) ;
  1735.    NewDataBookmark [0] = TEXT('') ;
  1736.    StringLoad (IDS_NEWDATA_BOOKMARK, NewDataBookmark) ;
  1737.    Bookmark.SystemTime = *pSystemTime ;
  1738.    lstrcpy (Bookmark.szComment, NewDataBookmark) ;
  1739.    return (LogWriteBookmarkData (hWndLog, &Bookmark)) ;
  1740.    }
  1741. BOOL LogWriteBookmarkData (HWND hWnd, PBOOKMARK pBookmark)
  1742.    {
  1743.    PLOG           pLog ;
  1744.    LONG           lDataOffset ;
  1745.    BOOL           WriteOK ;
  1746.    pLog = LogData (hWndLog) ;
  1747.    if (!pLog)
  1748.       return (FALSE) ;
  1749.    lDataOffset = FileTell (pLog->hFile) ;
  1750.    WriteOK = FileWrite (pLog->hFile, pBookmark, sizeof (BOOKMARK)) ;
  1751.    if ( WriteOK )
  1752.       {
  1753.       pLog->lFileSize += sizeof (BOOKMARK) ;
  1754.       UpdateLogSize (hWndLog) ;
  1755.       WriteOK = LogWriteIndex (pLog, LogFileIndexBookmark,
  1756.                                &(pBookmark->SystemTime),
  1757.                                lDataOffset,
  1758.                                0) ;
  1759.       }
  1760.    if ( !WriteOK )
  1761.       {
  1762.       CloseLog (hWndLog, pLog) ;
  1763.       PrepareMenu (GetMenu (hWndMain)) ;
  1764.       UpdateLogDisplay (hWndLog) ;   
  1765.       DlgErrorBox (hWndLog, ERR_LOG_FILE, pLog->szFilePath);
  1766.       }
  1767.    return WriteOK ;
  1768.    }
  1769. BOOL LogWriteBookmark (HWND hWndLog,
  1770.                        LPCTSTR lpszComment)
  1771.    {  // LogWriteBookmark
  1772.    BOOKMARK       Bookmark ;
  1773.    memset (&Bookmark, 0, sizeof (BOOKMARK)) ;
  1774.    GetLocalTime (&Bookmark.SystemTime) ;
  1775.    lstrcpy (Bookmark.szComment, lpszComment) ;
  1776.    return (LogWriteBookmarkData (hWndLog, &Bookmark)) ;
  1777.    }  // LogWriteBookmark
  1778.    
  1779. BOOL AnyLogLine (void)
  1780. {  // CurrentLogLine
  1781.    int iIndex ;
  1782.    iIndex = LBSelection (hWndLogEntries) ;
  1783.    if (iIndex == LB_ERR)
  1784.       {
  1785.       return (FALSE) ;
  1786.       }
  1787.    else
  1788.       {
  1789.       return (TRUE) ;
  1790.       }
  1791. }
  1792. void ResetLogView (HWND hWndLog)
  1793. {
  1794.    PLOG        pLog ;
  1795.    pLog = LogData (hWndLog) ;
  1796.    ChangeSaveFileName (NULL, IDM_VIEWLOG) ;
  1797.    if (pLog && pLog->pSystemFirst)
  1798.       {
  1799.       ResetLog (hWndLog) ;
  1800.       }
  1801. }  // ResetLogView
  1802. BOOL ResetLog (HWND hWndLog)
  1803. {
  1804.    int         iIndex ;
  1805.    PLOG        pLog ;
  1806.    int         iEntriesNum ;
  1807.    pLog = LogData (hWndLog) ;
  1808.    if (LogCollecting (hWndLog))
  1809.       {
  1810.       CloseLog (hWndLog, pLog) ;
  1811.       }
  1812.  
  1813.    LBSetRedraw (hWndLogEntries, FALSE) ;
  1814.    iEntriesNum = LBNumItems (hWndLogEntries) ;
  1815.    // only need to zero out the list head
  1816.    // each item will be deleted by LogDeleteIndex via the listbox
  1817.    pLog->pLogEntryFirst = NULL ;
  1818.    // delete each line
  1819.    for (iIndex = iEntriesNum - 1 ;
  1820.         iIndex >= 0 ;
  1821.         iIndex-- )
  1822.       {
  1823.       LogDeleteIndex (hWndLogEntries, iIndex) ;
  1824.       }
  1825.    LBSetRedraw (hWndLogEntries, TRUE) ;
  1826.    if (pLog->pSystemFirst)
  1827.       {
  1828.       FreeSystems (pLog->pSystemFirst) ;
  1829.       pLog->pSystemFirst = NULL ;
  1830.       }
  1831.    MemoryFree (pLog->pLogData) ;
  1832.    pLog->pLogData = (PPERFDATA) MemoryAllocate (STARTING_SYSINFO_SIZE) ;
  1833.    LogEntriesChanged (hWndLogEntries) ;
  1834.    pLog->iStatus = iPMStatusClosed ;
  1835.    UpdateLogDisplay (hWndLog) ;
  1836.    return (TRUE) ;
  1837. }
  1838. BOOL LogDeleteEntry (HWND hWndLog)
  1839. {
  1840.    int         iIndex ;
  1841.    PLOG        pLog ;
  1842.    BOOL        retCode ;
  1843.    int         iEntriesNum ;
  1844.    pLog = LogData (hWndLog) ;
  1845.    iIndex = LBSelection (hWndLogEntries) ;
  1846.    if (iIndex == LB_ERR)
  1847.       {
  1848.       retCode = FALSE ;
  1849.       }
  1850.    else
  1851.       {
  1852.       // remove the current selection
  1853.       LogDeleteIndex (hWndLogEntries, iIndex) ;
  1854.       iEntriesNum = LBNumItems (hWndLogEntries) ;
  1855.       if (iEntriesNum == 0 || iEntriesNum == LB_ERR)
  1856.          {
  1857.          // delete the last line or something bad happened, 
  1858.          // then reset the window.
  1859.          ResetLog (hWndLog) ;
  1860.          }
  1861.       else
  1862.          {
  1863.          // set selection on the item above the deleted item.
  1864.          iIndex-- ;
  1865.          if (iIndex < 0)
  1866.             {
  1867.             iIndex = 0 ;
  1868.             }
  1869.          LBSetSelection (hWndLogEntries, iIndex) ;
  1870.          LBSetVisible (hWndLogEntries, iIndex) ;
  1871.          }
  1872.       LogEntriesChanged (hWndLogEntries) ;
  1873.       retCode = TRUE ;
  1874.       }
  1875.    return (retCode) ;
  1876. }
  1877. void ExportLog (void)
  1878. {
  1879.    HANDLE      hFile ;
  1880.    PLOG        pLog ;
  1881.    PLOGENTRY   pLogEntry ;
  1882.    int         iIndex ;
  1883.    int         iIndexNum ;
  1884.    CHAR        TempBuff [LongTextLen * 2] ;
  1885.    TCHAR       UnicodeBuff [LongTextLen] ;
  1886.    TCHAR       UnicodeBuff1 [MiscTextLen] ;
  1887.    int         StringLen ;
  1888.    LPTSTR      pFileName = NULL ;
  1889.    INT         ErrCode = 0 ;
  1890.    if (!(pLog = LogData (hWndLog)))
  1891.       {
  1892.       return ;
  1893.       }
  1894.    // see if there is anything to export..
  1895.    iIndexNum = LBNumItems (hWndLogEntries) ;
  1896.    if (iIndexNum == 0 || iIndexNum == LB_ERR)
  1897.       {
  1898.       return ;
  1899.       }
  1900.    if (!FileGetName (hWndLog, IDS_EXPORTFILE, UnicodeBuff))
  1901.       {
  1902.       // user cancel 
  1903.       return ;
  1904.       }
  1905.    pFileName = StringAllocate (UnicodeBuff) ;
  1906.    // open the file..
  1907.    if (!(hFile = FileHandleCreate (UnicodeBuff)))
  1908.       {
  1909.       // can't open the file
  1910.       ErrCode = ERR_CANT_OPEN ;
  1911.       return ;
  1912.       }
  1913.    SetHourglassCursor() ;
  1914.    // get header
  1915.    StringLoad (IDS_REPORT_HEADER, UnicodeBuff) ;
  1916.    ConvertUnicodeStr (TempBuff, UnicodeBuff) ;
  1917.    StringLen = strlen (TempBuff) ;
  1918.    ConvertUnicodeStr (&TempBuff[StringLen], LocalComputerName) ;
  1919.    strcat (TempBuff, LineEndStr) ;
  1920.    if (!FileWrite (hFile, TempBuff, strlen(TempBuff)))
  1921.       {
  1922.       ErrCode = ERR_EXPORT_FILE ;
  1923.       goto Exit0 ;
  1924.       }
  1925.    if (!(strempty(pLog->szFilePath)))
  1926.       {
  1927.       // export filename is there is one
  1928.       StringLoad (IDS_REPORT_LOGFILE, UnicodeBuff) ;
  1929.       ConvertUnicodeStr (TempBuff, UnicodeBuff) ;
  1930.       StringLen = strlen (TempBuff) ;
  1931.       ConvertUnicodeStr (&TempBuff[StringLen], pLog->szFilePath) ;
  1932.       strcat (TempBuff, LineEndStr) ;
  1933.       if (!FileWrite (hFile, TempBuff, strlen(TempBuff)))
  1934.          {
  1935.          ErrCode = ERR_EXPORT_FILE ;
  1936.          goto Exit0 ;
  1937.          }
  1938.       }
  1939.    // export interval 
  1940.    StringLoad (IDS_CHARTINT_FORMAT, UnicodeBuff1) ;
  1941.    TSPRINTF (UnicodeBuff, UnicodeBuff1,
  1942.        (FLOAT) pLog->iIntervalMSecs / (FLOAT) 1000.0) ;
  1943.    ConvertDecimalPoint (UnicodeBuff) ;
  1944.    ConvertUnicodeStr (TempBuff, UnicodeBuff) ;
  1945.    strcat (TempBuff, LineEndStr) ;
  1946.    strcat (TempBuff, LineEndStr) ;
  1947.    if (!FileWrite (hFile, TempBuff, strlen(TempBuff)))
  1948.       {
  1949.       ErrCode = ERR_EXPORT_FILE ;
  1950.       goto Exit0 ;
  1951.       }
  1952.    // export Labels
  1953.    StringLoad (IDS_LABELOBJECT, UnicodeBuff) ;
  1954.    ConvertUnicodeStr (TempBuff, UnicodeBuff) ;
  1955.    strcat (TempBuff, pDelimiter) ;
  1956.    if (!FileWrite (hFile, TempBuff, strlen(TempBuff)))
  1957.       {
  1958.       ErrCode = ERR_EXPORT_FILE ;
  1959.       goto Exit0 ;
  1960.       }
  1961.    StringLoad (IDS_LABELSYSTEM, UnicodeBuff) ;
  1962.    ConvertUnicodeStr (TempBuff, UnicodeBuff) ;
  1963.    strcat (TempBuff, LineEndStr) ;
  1964.    if (!FileWrite (hFile, TempBuff, strlen(TempBuff)))
  1965.       {
  1966.       ErrCode = ERR_EXPORT_FILE ;
  1967.       goto Exit0 ;
  1968.       }
  1969.    // export each counter
  1970.    for (iIndex = 0 ; iIndex < iIndexNum ; iIndex++)
  1971.       {  // for
  1972.       
  1973.       pLogEntry = LogEntryN (hWndLogEntries, iIndex) ;
  1974.       
  1975.       if (!pLogEntry || pLogEntry == (PLOGENTRY)LB_ERR)
  1976.          {
  1977.          continue ;
  1978.          }
  1979.       ConvertUnicodeStr (TempBuff, pLogEntry->szObject) ;
  1980.       strcat (TempBuff, pDelimiter) ;
  1981.       if (!FileWrite (hFile, TempBuff, strlen(TempBuff)))
  1982.          {
  1983.          ErrCode = ERR_EXPORT_FILE ;
  1984.          break ;
  1985.          }
  1986.       ConvertUnicodeStr (TempBuff, pLogEntry->szComputer) ;
  1987.       strcat (TempBuff, LineEndStr) ;
  1988.       if (!FileWrite (hFile, TempBuff, strlen(TempBuff)))
  1989.          {
  1990.          ErrCode = ERR_EXPORT_FILE ;
  1991.          break ;
  1992.          }
  1993.       }
  1994. Exit0:
  1995.    SetArrowCursor() ;
  1996.    CloseHandle (hFile) ;
  1997.    if (pFileName)
  1998.       {
  1999.       if (ErrCode)
  2000.          {
  2001.          DlgErrorBox (hWndGraph, ErrCode, pFileName) ;
  2002.          }
  2003.       MemoryFree (pFileName) ;
  2004.       }
  2005. }  // ExportLog
  2006. LPTSTR   MatchSystemCounters (LPTSTR pBaseSysCounter,
  2007.    long   lBaseSysSize,
  2008.    LPTSTR pSysCounter,
  2009.    long   lSysSize,
  2010.    long   *pMatchPortion)
  2011. {
  2012.    LPTSTR   pNotMatch = NULL ;
  2013.    long     i, lSizeToCompare ;
  2014.    *pMatchPortion = 0 ;
  2015.    lSizeToCompare = min (lBaseSysSize, lSysSize) / sizeof (TCHAR) ;
  2016.    for (i = 0 ; i < lSizeToCompare ; i++, pBaseSysCounter++, pSysCounter++)
  2017.       {
  2018.       if (*pBaseSysCounter != *pSysCounter)
  2019.          {
  2020.          pNotMatch = pSysCounter ;
  2021.          break ;
  2022.          }
  2023.       }
  2024.    if (pNotMatch == NULL)
  2025.       {
  2026.       if (lBaseSysSize < lSysSize)
  2027.          {
  2028.          // the new system has longer counter names than base system
  2029.          // setup the extra portion.
  2030.          pNotMatch = pSysCounter ;
  2031.          }
  2032.       else
  2033.          {
  2034.          // new system counter name is shorter than or equal to
  2035.          // the base system counter names
  2036.          *pMatchPortion = lSysSize ;
  2037.          }
  2038.       }
  2039.    return (pNotMatch) ;
  2040. }
  2041.  
  2042. void LogWriteSystemCounterNames (HWND hWnd, PLOG pLog)
  2043.    {
  2044.    long           dwArraySize ;
  2045.    PPERFSYSTEM    pSystem = pLog->pSystemFirst ;
  2046.    LPTSTR         pMatchLen ;
  2047.    LPTSTR         pCounterName ;
  2048.    long           lMatchLen, lMatchPortion ;
  2049.    for (pSystem = pLog->pSystemFirst ;
  2050.         pSystem ;
  2051.         pSystem = pSystem->pSystemNext)
  2052.       {
  2053.       if (pSystem->bSystemCounterNameSaved == TRUE ||
  2054.           pSystem->CounterInfo.dwLastId == 0)
  2055.          {
  2056.          // we have either wrote out the counter name for 
  2057.          // this system, or this system is not connect when
  2058.          // reading in the setting file,  skip it then.
  2059.          continue ;
  2060.          }
  2061.       dwArraySize = (pSystem->CounterInfo.dwLastId + 1 ) ;
  2062.       if (!pLog->lBaseCounterNameOffset)
  2063.          {
  2064.          LogWriteCounterName (hWnd, pSystem, pLog,
  2065.             (LPTSTR)(pSystem->CounterInfo.TextString + dwArraySize),
  2066.             0,
  2067.             pSystem->CounterInfo.dwCounterSize,
  2068.             0 ) ;
  2069.          }
  2070.       else
  2071.          {
  2072.          // check for matched characters between this system and the 
  2073.          // base system
  2074.          pCounterName = (LPTSTR)(pSystem->CounterInfo.TextString + dwArraySize) ;
  2075.          pMatchLen = MatchSystemCounters (pLog->pBaseCounterName,
  2076.                         pLog->lBaseCounterNameSize,
  2077.                         pCounterName,
  2078.                         pSystem->CounterInfo.dwCounterSize,
  2079.                         &lMatchPortion) ;
  2080.          if (pMatchLen)
  2081.             {
  2082.             // This system matches part of the base system
  2083.             // (all if it has more names)
  2084.             lMatchLen = (long) (pMatchLen - pCounterName) * sizeof (TCHAR) ;
  2085.             LogWriteCounterName (hWnd, pSystem, pLog,
  2086.                pMatchLen,
  2087.                lMatchLen,
  2088.                pSystem->CounterInfo.dwCounterSize - lMatchLen,
  2089.                0 ) ;
  2090.             }
  2091.          else
  2092.             {
  2093.             // This system matches the based system
  2094.             LogWriteCounterName (hWnd, pSystem, pLog,
  2095.                NULL,
  2096.                lMatchPortion,
  2097.                0,
  2098.                0 ) ;
  2099.             }
  2100.          }
  2101.       }
  2102.    } // LogWriteSystemCounterNames
  2103. BOOL LogWriteCounterName (HWND hWnd,
  2104.                           PPERFSYSTEM pSystem,
  2105.                           PLOG   pLog,
  2106.                           LPTSTR pCounterName,
  2107.                           long sizeMatched,
  2108.                           long sizeOfData,
  2109.                           BOOL bBaseCounterName)
  2110.    {
  2111.    BOOL                 ReadOK ;
  2112.    BOOL                 WriteOK ;
  2113.    SYSTEMTIME           SystemTime ;
  2114.    LOGFILECOUNTERNAME   CounterNameRecord ;
  2115.    LOGHEADER            LogFileHeader ;
  2116.    long                 lDataOffset, lCurPosition ;
  2117.    TCHAR                Dummy [sizeof(DWORD)] ;
  2118.    int                  PatchBytes ;
  2119.    if (pSystem->bSystemCounterNameSaved == TRUE)
  2120.       return FALSE ;
  2121.    GetLocalTime (&SystemTime) ;
  2122.    lCurPosition = FileTell (pLog->hFile) ;
  2123.    
  2124.    lstrcpy (CounterNameRecord.szComputer, pSystem->sysName) ;
  2125.    CounterNameRecord.lBaseCounterNameOffset = pLog->lBaseCounterNameOffset ;
  2126.    CounterNameRecord.lCurrentCounterNameOffset =
  2127.       lCurPosition + sizeof (LOGFILECOUNTERNAME) ;
  2128.    CounterNameRecord.lMatchLength = sizeMatched ;
  2129.    CounterNameRecord.lUnmatchCounterNames = sizeOfData ;
  2130.    CounterNameRecord.dwLastCounterId = pSystem->CounterInfo.dwLastId ;
  2131.    CounterNameRecord.dwLangId = pSystem->CounterInfo.dwLangId ;
  2132.    WriteOK = FileWrite (pLog->hFile, &CounterNameRecord,
  2133.       sizeof (CounterNameRecord)) ;
  2134.    if (WriteOK)
  2135.       {
  2136.       pLog->lFileSize += sizeof (LOGFILECOUNTERNAME) ;
  2137.       if (sizeOfData)
  2138.          {
  2139.       
  2140.          WriteOK = FileWrite (pLog->hFile, pCounterName, sizeOfData) ;
  2141.          
  2142.          if (WriteOK && (PatchBytes = sizeOfData % sizeof(DWORD)) > 0)
  2143.             {
  2144.             // ensure the file is in DWORD boundary.
  2145.             WriteOK = FileWrite (pLog->hFile, Dummy, PatchBytes) ;
  2146.             }
  2147.          if (WriteOK)
  2148.             {
  2149.             pLog->lFileSize += sizeOfData + PatchBytes ;
  2150.             if (!pLog->lBaseCounterNameOffset)
  2151.                {
  2152.                // this is the first counter name data block
  2153.                // then update the log file header
  2154.                lDataOffset = FileTell (pLog->hFile) ;
  2155.                FileSeekBegin (pLog->hFile, 0L) ;
  2156.                ReadOK = FileRead (pLog->hFile,
  2157.                   &LogFileHeader,
  2158.                   sizeof (LogFileHeader)) ;
  2159.                if (ReadOK)
  2160.                   {
  2161.                   LogFileHeader.lBaseCounterNameOffset = lCurPosition ;
  2162.                   FileSeekBegin (pLog->hFile, 0L) ;
  2163.                   WriteOK = FileWrite (pLog->hFile,
  2164.                      &LogFileHeader,
  2165.                      sizeof (LogFileHeader)) ;
  2166.                   }
  2167.                else
  2168.                   {
  2169.                   // flag an error
  2170.                   WriteOK = FALSE ; 
  2171.                   }
  2172.                // retore back to current file position
  2173.                FileSeekBegin (pLog->hFile, lDataOffset) ;
  2174.                if (ReadOK && WriteOK)
  2175.                   {
  2176.                   // allocate memory to save the base system counter names
  2177.                   if (pLog->pBaseCounterName)
  2178.                      {
  2179.                      MemoryFree (pLog->pBaseCounterName) ;
  2180.                      }
  2181.                   if (pLog->pBaseCounterName = MemoryAllocate (sizeOfData))
  2182.                      {
  2183.                      memcpy (pLog->pBaseCounterName,
  2184.                         pCounterName,
  2185.                         sizeOfData) ;
  2186.                      pLog->lBaseCounterNameOffset = lCurPosition ;
  2187.                      pLog->lBaseCounterNameSize = sizeOfData ;
  2188.                      }
  2189.                   }
  2190.                }  // if (!pLog->lBaseCounterNameOffset)
  2191.             }
  2192.          }  // if (sizeOfData)
  2193.       }
  2194.    if ( WriteOK )
  2195.       {
  2196.       WriteOK = LogWriteIndex (pLog, LogFileIndexCounterName,
  2197.                                &SystemTime,
  2198.                                lCurPosition,
  2199.                                0) ;
  2200.       }
  2201.    if ( !WriteOK )
  2202.       {
  2203.       CloseLog (hWndLog, pLog) ;
  2204.       PrepareMenu (GetMenu (hWndMain)) ;
  2205.       UpdateLogDisplay (hWndLog) ;   
  2206.       DlgErrorBox (hWndLog, ERR_LOG_FILE, pLog->szFilePath);
  2207.       }
  2208.    else
  2209.       {
  2210.       UpdateLogSize (hWnd) ;
  2211.       pSystem->bSystemCounterNameSaved = TRUE ;
  2212.       }
  2213.    return (TRUE) ;
  2214.    }
  2215.