wxdebug.cpp
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:45k
源码类别:

P2P编程

开发平台:

Visual C++

  1. //------------------------------------------------------------------------------
  2. // File: WXDebug.cpp
  3. //
  4. // Desc: DirectShow base classes - implements ActiveX system debugging
  5. //       facilities.    
  6. //
  7. // Copyright (c) Microsoft Corporation.  All rights reserved.
  8. //------------------------------------------------------------------------------
  9. #define _WINDLL
  10. #include <streams.h>
  11. #include <stdarg.h>
  12. #include <stdio.h>
  13. #ifdef DEBUG
  14. #ifdef UNICODE
  15. #ifndef _UNICODE
  16. #define _UNICODE
  17. #endif // _UNICODE
  18. #endif // UNICODE
  19. #endif // DEBUG
  20. #ifdef DEBUG
  21. // The Win32 wsprintf() function writes a maximum of 1024 characters to it's output buffer.
  22. // See the documentation for wsprintf()'s lpOut parameter for more information.
  23. const INT iDEBUGINFO = 1024;                 // Used to format strings
  24. /* For every module and executable we store a debugging level for each of
  25.    the five categories (eg LOG_ERROR and LOG_TIMING). This makes it easy
  26.    to isolate and debug individual modules without seeing everybody elses
  27.    spurious debug output. The keys are stored in the registry under the
  28.    HKEY_LOCAL_MACHINESOFTWAREDebug<Module Name><KeyName> key values
  29.    NOTE these must be in the same order as their enumeration definition */
  30. TCHAR *pKeyNames[] = {
  31.     TEXT("TIMING"),      // Timing and performance measurements
  32.     TEXT("TRACE"),       // General step point call tracing
  33.     TEXT("MEMORY"),      // Memory and object allocation/destruction
  34.     TEXT("LOCKING"),     // Locking/unlocking of critical sections
  35.     TEXT("ERROR"),       // Debug error notification
  36.     TEXT("CUSTOM1"),
  37.     TEXT("CUSTOM2"),
  38.     TEXT("CUSTOM3"),
  39.     TEXT("CUSTOM4"),
  40.     TEXT("CUSTOM5")
  41.     };
  42. const TCHAR CAutoTrace::_szEntering[] = TEXT("->: %s");
  43. const TCHAR CAutoTrace::_szLeaving[]  = TEXT("<-: %s");
  44. const INT iMAXLEVELS = NUMELMS(pKeyNames);  // Maximum debug categories
  45. HINSTANCE m_hInst;                          // Module instance handle
  46. TCHAR m_ModuleName[iDEBUGINFO];             // Cut down module name
  47. DWORD m_Levels[iMAXLEVELS];                 // Debug level per category
  48. CRITICAL_SECTION m_CSDebug;                 // Controls access to list
  49. DWORD m_dwNextCookie;                       // Next active object ID
  50. ObjectDesc *pListHead = NULL;               // First active object
  51. DWORD m_dwObjectCount;                      // Active object count
  52. BOOL m_bInit = FALSE;                       // Have we been initialised
  53. HANDLE m_hOutput = INVALID_HANDLE_VALUE;    // Optional output written here
  54. DWORD dwWaitTimeout = INFINITE;             // Default timeout value
  55. DWORD dwTimeOffset;     // Time of first DbgLog call
  56. bool g_fUseKASSERT = false;                 // don't create messagebox
  57. bool g_fDbgInDllEntryPoint = false;
  58. bool g_fAutoRefreshLevels = false;
  59. const TCHAR *pBaseKey = TEXT("SOFTWARE\Debug");
  60. const TCHAR *pGlobalKey = TEXT("GLOBAL");
  61. static CHAR *pUnknownName = "UNKNOWN";
  62. TCHAR *TimeoutName = TEXT("TIMEOUT");
  63. /* This sets the instance handle that the debug library uses to find
  64.    the module's file name from the Win32 GetModuleFileName function */
  65. void WINAPI DbgInitialise(HINSTANCE hInst)
  66. {
  67.     InitializeCriticalSection(&m_CSDebug);
  68.     m_bInit = TRUE;
  69.     m_hInst = hInst;
  70.     DbgInitModuleName();
  71.     if (GetProfileInt(m_ModuleName, TEXT("BreakOnLoad"), 0))
  72.        DebugBreak();
  73.     DbgInitModuleSettings(false);
  74.     DbgInitGlobalSettings(true);
  75.     dwTimeOffset = timeGetTime();
  76. }
  77. /* This is called to clear up any resources the debug library uses - at the
  78.    moment we delete our critical section and the object list. The values we
  79.    retrieve from the registry are all done during initialisation but we don't
  80.    go looking for update notifications while we are running, if the values
  81.    are changed then the application has to be restarted to pick them up */
  82. void WINAPI DbgTerminate()
  83. {
  84.     if (m_hOutput != INVALID_HANDLE_VALUE) {
  85.        EXECUTE_ASSERT(CloseHandle(m_hOutput));
  86.        m_hOutput = INVALID_HANDLE_VALUE;
  87.     }
  88.     DeleteCriticalSection(&m_CSDebug);
  89.     m_bInit = FALSE;
  90. }
  91. /* This is called by DbgInitLogLevels to read the debug settings
  92.    for each logging category for this module from the registry */
  93. void WINAPI DbgInitKeyLevels(HKEY hKey, bool fTakeMax)
  94. {
  95.     LONG lReturn;               // Create key return value
  96.     LONG lKeyPos;               // Current key category
  97.     DWORD dwKeySize;            // Size of the key value
  98.     DWORD dwKeyType;            // Receives it's type
  99.     DWORD dwKeyValue;           // This fields value
  100.     /* Try and read a value for each key position in turn */
  101.     for (lKeyPos = 0;lKeyPos < iMAXLEVELS;lKeyPos++) {
  102.         dwKeySize = sizeof(DWORD);
  103.         lReturn = RegQueryValueEx(
  104.             hKey,                       // Handle to an open key
  105.             pKeyNames[lKeyPos],         // Subkey name derivation
  106.             NULL,                       // Reserved field
  107.             &dwKeyType,                 // Returns the field type
  108.             (LPBYTE) &dwKeyValue,       // Returns the field's value
  109.             &dwKeySize );               // Number of bytes transferred
  110.         /* If either the key was not available or it was not a DWORD value
  111.            then we ensure only the high priority debug logging is output
  112.            but we try and update the field to a zero filled DWORD value */
  113.         if (lReturn != ERROR_SUCCESS || dwKeyType != REG_DWORD)  {
  114.             dwKeyValue = 0;
  115.             lReturn = RegSetValueEx(
  116.                 hKey,                   // Handle of an open key
  117.                 pKeyNames[lKeyPos],     // Address of subkey name
  118.                 (DWORD) 0,              // Reserved field
  119.                 REG_DWORD,              // Type of the key field
  120.                 (PBYTE) &dwKeyValue,    // Value for the field
  121.                 sizeof(DWORD));         // Size of the field buffer
  122.             if (lReturn != ERROR_SUCCESS) {
  123.                 DbgLog((LOG_ERROR,0,TEXT("Could not create subkey %s"),pKeyNames[lKeyPos]));
  124.                 dwKeyValue = 0;
  125.             }
  126.         }
  127.         if(fTakeMax)
  128.         {
  129.             m_Levels[lKeyPos] = max(dwKeyValue,m_Levels[lKeyPos]);
  130.         }
  131.         else
  132.         {
  133.             if((m_Levels[lKeyPos] & LOG_FORCIBLY_SET) == 0) {
  134.                 m_Levels[lKeyPos] = dwKeyValue;
  135.             }
  136.         }
  137.     }
  138.     /*  Read the timeout value for catching hangs */
  139.     dwKeySize = sizeof(DWORD);
  140.     lReturn = RegQueryValueEx(
  141.         hKey,                       // Handle to an open key
  142.         TimeoutName,                // Subkey name derivation
  143.         NULL,                       // Reserved field
  144.         &dwKeyType,                 // Returns the field type
  145.         (LPBYTE) &dwWaitTimeout,    // Returns the field's value
  146.         &dwKeySize );               // Number of bytes transferred
  147.     /* If either the key was not available or it was not a DWORD value
  148.        then we ensure only the high priority debug logging is output
  149.        but we try and update the field to a zero filled DWORD value */
  150.     if (lReturn != ERROR_SUCCESS || dwKeyType != REG_DWORD)  {
  151.         dwWaitTimeout = INFINITE;
  152.         lReturn = RegSetValueEx(
  153.             hKey,                   // Handle of an open key
  154.             TimeoutName,            // Address of subkey name
  155.             (DWORD) 0,              // Reserved field
  156.             REG_DWORD,              // Type of the key field
  157.             (PBYTE) &dwWaitTimeout, // Value for the field
  158.             sizeof(DWORD));         // Size of the field buffer
  159.         if (lReturn != ERROR_SUCCESS) {
  160.             DbgLog((LOG_ERROR,0,TEXT("Could not create subkey %s"),TimeoutName));
  161.             dwWaitTimeout = INFINITE;
  162.         }
  163.     }
  164. }
  165. void WINAPI DbgOutString(LPCTSTR psz)
  166. {
  167.     if (m_hOutput != INVALID_HANDLE_VALUE) {
  168.         UINT  cb = lstrlen(psz);
  169.         DWORD dw;
  170. #ifdef UNICODE
  171.         CHAR szDest[2048];
  172.         WideCharToMultiByte(CP_ACP, 0, psz, -1, szDest, NUMELMS(szDest), 0, 0);
  173.         WriteFile (m_hOutput, szDest, cb, &dw, NULL);
  174. #else
  175.         WriteFile (m_hOutput, psz, cb, &dw, NULL);
  176. #endif
  177.     } else {
  178.         OutputDebugString (psz);
  179.     }
  180. }
  181. /* Called by DbgInitGlobalSettings to setup alternate logging destinations
  182.  */
  183. void WINAPI DbgInitLogTo (
  184.     HKEY hKey)
  185. {
  186.     LONG  lReturn;
  187.     DWORD dwKeyType;
  188.     DWORD dwKeySize;
  189.     TCHAR szFile[MAX_PATH] = {0};
  190.     static const TCHAR cszKey[] = TEXT("LogToFile");
  191.     dwKeySize = MAX_PATH;
  192.     lReturn = RegQueryValueEx(
  193.         hKey,                       // Handle to an open key
  194.         cszKey,                     // Subkey name derivation
  195.         NULL,                       // Reserved field
  196.         &dwKeyType,                 // Returns the field type
  197.         (LPBYTE) szFile,            // Returns the field's value
  198.         &dwKeySize);                // Number of bytes transferred
  199.     // create an empty key if it does not already exist
  200.     //
  201.     if (lReturn != ERROR_SUCCESS || dwKeyType != REG_SZ)
  202.        {
  203.        dwKeySize = sizeof(TCHAR);
  204.        lReturn = RegSetValueEx(
  205.             hKey,                   // Handle of an open key
  206.             cszKey,                 // Address of subkey name
  207.             (DWORD) 0,              // Reserved field
  208.             REG_SZ,                 // Type of the key field
  209.             (PBYTE)szFile,          // Value for the field
  210.             dwKeySize);            // Size of the field buffer
  211.        }
  212.     // if an output-to was specified.  try to open it.
  213.     //
  214.     if (m_hOutput != INVALID_HANDLE_VALUE) {
  215.        EXECUTE_ASSERT(CloseHandle (m_hOutput));
  216.        m_hOutput = INVALID_HANDLE_VALUE;
  217.     }
  218.     if (szFile[0] != 0)
  219.        {
  220.        if (!lstrcmpi(szFile, TEXT("Console"))) {
  221.           m_hOutput = GetStdHandle (STD_OUTPUT_HANDLE);
  222.           if (m_hOutput == INVALID_HANDLE_VALUE) {
  223.              AllocConsole ();
  224.              m_hOutput = GetStdHandle (STD_OUTPUT_HANDLE);
  225.           }
  226.           SetConsoleTitle (TEXT("ActiveX Debug Output"));
  227.        } else if (szFile[0] &&
  228.                 lstrcmpi(szFile, TEXT("Debug")) &&
  229.                 lstrcmpi(szFile, TEXT("Debugger")) &&
  230.                 lstrcmpi(szFile, TEXT("Deb")))
  231.           {
  232.             m_hOutput = CreateFile(szFile, GENERIC_WRITE,
  233.                                  FILE_SHARE_READ,
  234.                                  NULL, OPEN_ALWAYS,
  235.                                  FILE_ATTRIBUTE_NORMAL,
  236.                                  NULL);
  237.           if (INVALID_HANDLE_VALUE != m_hOutput)
  238.               {
  239.               static const TCHAR cszBar[] = TEXT("rnrn=====DbgInitialize()=====rnrn");
  240.               SetFilePointer (m_hOutput, 0, NULL, FILE_END);
  241.               DbgOutString (cszBar);
  242.               }
  243.           }
  244.        }
  245. }
  246. /* This is called by DbgInitLogLevels to read the global debug settings for
  247.    each logging category for this module from the registry. Normally each
  248.    module has it's own values set for it's different debug categories but
  249.    setting the global SOFTWAREDebugGlobal applies them to ALL modules */
  250. void WINAPI DbgInitGlobalSettings(bool fTakeMax)
  251. {
  252.     LONG lReturn;               // Create key return value
  253.     TCHAR szInfo[iDEBUGINFO];   // Constructs key names
  254.     HKEY hGlobalKey;            // Global override key
  255.     /* Construct the global base key name */
  256.     (void)StringCchPrintf(szInfo,NUMELMS(szInfo),TEXT("%s\%s"),pBaseKey,pGlobalKey);
  257.     /* Create or open the key for this module */
  258.     lReturn = RegCreateKeyEx(HKEY_LOCAL_MACHINE,   // Handle of an open key
  259.                              szInfo,               // Address of subkey name
  260.                              (DWORD) 0,            // Reserved value
  261.                              NULL,                 // Address of class name
  262.                              (DWORD) 0,            // Special options flags
  263.                              KEY_ALL_ACCESS,       // Desired security access
  264.                              NULL,                 // Key security descriptor
  265.                              &hGlobalKey,          // Opened handle buffer
  266.                              NULL);                // What really happened
  267.     if (lReturn != ERROR_SUCCESS) {
  268.         DbgLog((LOG_ERROR,0,TEXT("Could not access GLOBAL module key")));
  269.         return;
  270.     }
  271.     DbgInitKeyLevels(hGlobalKey, fTakeMax);
  272.     RegCloseKey(hGlobalKey);
  273. }
  274. /* This sets the debugging log levels for the different categories. We start
  275.    by opening (or creating if not already available) the SOFTWAREDebug key
  276.    that all these settings live under. We then look at the global values
  277.    set under SOFTWAREDebugGlobal which apply on top of the individual
  278.    module settings. We then load the individual module registry settings */
  279. void WINAPI DbgInitModuleSettings(bool fTakeMax)
  280. {
  281.     LONG lReturn;               // Create key return value
  282.     TCHAR szInfo[iDEBUGINFO];   // Constructs key names
  283.     HKEY hModuleKey;            // Module key handle
  284.     /* Construct the base key name */
  285.     (void)StringCchPrintf(szInfo,NUMELMS(szInfo), TEXT("%s\%s"),pBaseKey,m_ModuleName);
  286.     /* Create or open the key for this module */
  287.     lReturn = RegCreateKeyEx(HKEY_LOCAL_MACHINE,   // Handle of an open key
  288.                              szInfo,               // Address of subkey name
  289.                              (DWORD) 0,            // Reserved value
  290.                              NULL,                 // Address of class name
  291.                              (DWORD) 0,            // Special options flags
  292.                              KEY_ALL_ACCESS,       // Desired security access
  293.                              NULL,                 // Key security descriptor
  294.                              &hModuleKey,          // Opened handle buffer
  295.                              NULL);                // What really happened
  296.     if (lReturn != ERROR_SUCCESS) {
  297.         DbgLog((LOG_ERROR,0,TEXT("Could not access module key")));
  298.         return;
  299.     }
  300.     DbgInitLogTo(hModuleKey);
  301.     DbgInitKeyLevels(hModuleKey, fTakeMax);
  302.     RegCloseKey(hModuleKey);
  303. }
  304. /* Initialise the module file name */
  305. void WINAPI DbgInitModuleName()
  306. {
  307.     TCHAR FullName[iDEBUGINFO];     // Load the full path and module name
  308.     TCHAR *pName;                   // Searches from the end for a backslash
  309.     GetModuleFileName(m_hInst,FullName,iDEBUGINFO);
  310.     pName = _tcsrchr(FullName,'\');
  311.     if (pName == NULL) {
  312.         pName = FullName;
  313.     } else {
  314.         pName++;
  315.     }
  316.     (void)StringCchCopy(m_ModuleName,NUMELMS(m_ModuleName), pName);
  317. }
  318. struct MsgBoxMsg
  319. {
  320.     HWND hwnd;
  321.     TCHAR *szTitle;
  322.     TCHAR *szMessage;
  323.     DWORD dwFlags;
  324.     INT iResult;
  325. };
  326. //
  327. // create a thread to call MessageBox(). calling MessageBox() on
  328. // random threads at bad times can confuse the host (eg IE).
  329. //
  330. DWORD WINAPI MsgBoxThread(
  331.   LPVOID lpParameter   // thread data
  332.   )
  333. {
  334.     MsgBoxMsg *pmsg = (MsgBoxMsg *)lpParameter;
  335.     pmsg->iResult = MessageBox(
  336.         pmsg->hwnd,
  337.         pmsg->szTitle,
  338.         pmsg->szMessage,
  339.         pmsg->dwFlags);
  340.     
  341.     return 0;
  342. }
  343. INT MessageBoxOtherThread(
  344.     HWND hwnd,
  345.     TCHAR *szTitle,
  346.     TCHAR *szMessage,
  347.     DWORD dwFlags)
  348. {
  349.     if(g_fDbgInDllEntryPoint)
  350.     {
  351.         // can't wait on another thread because we have the loader
  352.         // lock held in the dll entry point.
  353.         return MessageBox(hwnd, szTitle, szMessage, dwFlags);
  354.     }
  355.     else
  356.     {
  357.         MsgBoxMsg msg = {hwnd, szTitle, szMessage, dwFlags, 0};
  358.         DWORD dwid;
  359.         HANDLE hThread = CreateThread(
  360.             0,                      // security
  361.             0,                      // stack size
  362.             MsgBoxThread,
  363.             (void *)&msg,           // arg
  364.             0,                      // flags
  365.             &dwid);
  366.         if(hThread)
  367.         {
  368.             WaitForSingleObject(hThread, INFINITE);
  369.             CloseHandle(hThread);
  370.             return msg.iResult;
  371.         }
  372.         // break into debugger on failure.
  373.         return IDCANCEL;
  374.     }
  375. }
  376. /* Displays a message box if the condition evaluated to FALSE */
  377. void WINAPI DbgAssert(const TCHAR *pCondition,const TCHAR *pFileName,INT iLine)
  378. {
  379.     if(g_fUseKASSERT)
  380.     {
  381.         DbgKernelAssert(pCondition, pFileName, iLine);
  382.     }
  383.     else
  384.     {
  385.         TCHAR szInfo[iDEBUGINFO];
  386.         (void)StringCchPrintf(szInfo, NUMELMS(szInfo), TEXT("%s nAt line %d of %snContinue? (Cancel to debug)"),
  387.                  pCondition, iLine, pFileName);
  388.         INT MsgId = MessageBoxOtherThread(NULL,szInfo,TEXT("ASSERT Failed"),
  389.                                           MB_SYSTEMMODAL |
  390.                                           MB_ICONHAND |
  391.                                           MB_YESNOCANCEL |
  392.                                           MB_SETFOREGROUND);
  393.         switch (MsgId)
  394.         {
  395.           case IDNO:              /* Kill the application */
  396.               FatalAppExit(FALSE, TEXT("Application terminated"));
  397.               break;
  398.           case IDCANCEL:          /* Break into the debugger */
  399.               DebugBreak();
  400.               break;
  401.           case IDYES:             /* Ignore assertion continue execution */
  402.               break;
  403.         }
  404.     }
  405. }
  406. /* Displays a message box at a break point */
  407. void WINAPI DbgBreakPoint(const TCHAR *pCondition,const TCHAR *pFileName,INT iLine)
  408. {
  409.     if(g_fUseKASSERT)
  410.     {
  411.         DbgKernelAssert(pCondition, pFileName, iLine);
  412.     }
  413.     else
  414.     {
  415.         TCHAR szInfo[iDEBUGINFO];
  416.         (void)StringCchPrintf(szInfo, NUMELMS(szInfo), TEXT("%s nAt line %d of %snContinue? (Cancel to debug)"),
  417.                  pCondition, iLine, pFileName);
  418.         INT MsgId = MessageBoxOtherThread(NULL,szInfo,TEXT("Hard coded break point"),
  419.                                           MB_SYSTEMMODAL |
  420.                                           MB_ICONHAND |
  421.                                           MB_YESNOCANCEL |
  422.                                           MB_SETFOREGROUND);
  423.         switch (MsgId)
  424.         {
  425.           case IDNO:              /* Kill the application */
  426.               FatalAppExit(FALSE, TEXT("Application terminated"));
  427.               break;
  428.           case IDCANCEL:          /* Break into the debugger */
  429.               DebugBreak();
  430.               break;
  431.           case IDYES:             /* Ignore break point continue execution */
  432.               break;
  433.         }
  434.     }
  435. }
  436. void WINAPI DbgBreakPoint(const TCHAR *pFileName,INT iLine,const TCHAR* szFormatString,...)
  437. {
  438.     // A debug break point message can have at most 2000 characters if 
  439.     // ANSI or UNICODE characters are being used.  A debug break point message
  440.     // can have between 1000 and 2000 double byte characters in it.  If a 
  441.     // particular message needs more characters, then the value of this constant
  442.     // should be increased.
  443.     const DWORD MAX_BREAK_POINT_MESSAGE_SIZE = 2000;
  444.     TCHAR szBreakPointMessage[MAX_BREAK_POINT_MESSAGE_SIZE];
  445.     
  446.     const DWORD MAX_CHARS_IN_BREAK_POINT_MESSAGE = sizeof(szBreakPointMessage) / sizeof(TCHAR);
  447.     va_list va;
  448.     va_start( va, szFormatString );
  449.     HRESULT hr = StringCchVPrintf( szBreakPointMessage, MAX_CHARS_IN_BREAK_POINT_MESSAGE, szFormatString, va );
  450.     va_end(va);
  451.     
  452.     if( S_OK != hr ) {
  453.         DbgBreak( "ERROR in DbgBreakPoint().  The variable length debug message could not be displayed because _vsnprintf() failed." );
  454.         return;
  455.     }
  456.     ::DbgBreakPoint( szBreakPointMessage, pFileName, iLine );
  457. }
  458. /* When we initialised the library we stored in the m_Levels array the current
  459.    debug output level for this module for each of the five categories. When
  460.    some debug logging is sent to us it can be sent with a combination of the
  461.    categories (if it is applicable to many for example) in which case we map
  462.    the type's categories into their current debug levels and see if any of
  463.    them can be accepted. The function looks at each bit position in turn from
  464.    the input type field and then compares it's debug level with the modules.
  465.    A level of 0 means that output is always sent to the debugger.  This is
  466.    due to producing output if the input level is <= m_Levels.
  467. */
  468. BOOL WINAPI DbgCheckModuleLevel(DWORD Type,DWORD Level)
  469. {
  470.     if(g_fAutoRefreshLevels)
  471.     {
  472.         // re-read the registry every second. We cannot use RegNotify() to
  473.         // notice registry changes because it's not available on win9x.
  474.         static g_dwLastRefresh = 0;
  475.         DWORD dwTime = timeGetTime();
  476.         if(dwTime - g_dwLastRefresh > 1000) {
  477.             g_dwLastRefresh = dwTime;
  478.             // there's a race condition: multiple threads could update the
  479.             // values. plus read and write not synchronized. no harm
  480.             // though.
  481.             DbgInitModuleSettings(false);
  482.         }
  483.     }
  484.     DWORD Mask = 0x01;
  485.     // If no valid bits are set return FALSE
  486.     if ((Type & ((1<<iMAXLEVELS)-1))) {
  487. // speed up unconditional output.
  488. if (0==Level)
  489.     return(TRUE);
  490.         for (LONG lKeyPos = 0;lKeyPos < iMAXLEVELS;lKeyPos++) {
  491.             if (Type & Mask) {
  492.                 if (Level <= (m_Levels[lKeyPos] & ~LOG_FORCIBLY_SET)) {
  493.                     return TRUE;
  494.                 }
  495.             }
  496.             Mask <<= 1;
  497.         }
  498.     }
  499.     return FALSE;
  500. }
  501. /* Set debug levels to a given value */
  502. void WINAPI DbgSetModuleLevel(DWORD Type, DWORD Level)
  503. {
  504.     DWORD Mask = 0x01;
  505.     for (LONG lKeyPos = 0;lKeyPos < iMAXLEVELS;lKeyPos++) {
  506.         if (Type & Mask) {
  507.             m_Levels[lKeyPos] = Level | LOG_FORCIBLY_SET;
  508.         }
  509.         Mask <<= 1;
  510.     }
  511. }
  512. /* whether to check registry values periodically. this isn't turned
  513.    automatically because of the potential performance hit. */
  514. void WINAPI DbgSetAutoRefreshLevels(bool fAuto)
  515. {
  516.     g_fAutoRefreshLevels = fAuto;
  517. }
  518. #ifdef UNICODE
  519. // 
  520. // warning -- this function is implemented twice for ansi applications
  521. // linking to the unicode library
  522. // 
  523. void WINAPI DbgLogInfo(DWORD Type,DWORD Level,const CHAR *pFormat,...)
  524. {
  525.     /* Check the current level for this type combination */
  526.     BOOL bAccept = DbgCheckModuleLevel(Type,Level);
  527.     if (bAccept == FALSE) {
  528.         return;
  529.     }
  530.     TCHAR szInfo[2000];
  531.     /* Format the variable length parameter list */
  532.     va_list va;
  533.     va_start(va, pFormat);
  534.     (void)StringCchCopy(szInfo,NUMELMS(szInfo),m_ModuleName);
  535.     size_t len = lstrlen(szInfo);
  536.     (void)StringCchPrintf(szInfo + len,
  537.              NUMELMS(szInfo) - len,
  538.              TEXT("(tid %x) %8d : "),
  539.              GetCurrentThreadId(), timeGetTime() - dwTimeOffset);
  540.     CHAR szInfoA[2000];
  541.     WideCharToMultiByte(CP_ACP, 0, szInfo, -1, szInfoA, NUMELMS(szInfoA), 0, 0);
  542.     len = lstrlenA(szInfoA);
  543.     (void)StringCchVPrintfA(szInfoA + len, NUMELMS(szInfoA) - len, pFormat, va);
  544.     len = lstrlenA(szInfoA);
  545.     (void)StringCchCatA(szInfoA, NUMELMS(szInfoA) - len,  "rn");
  546.     WCHAR wszOutString[2000];
  547.     MultiByteToWideChar(CP_ACP, 0, szInfoA, -1, wszOutString, NUMELMS(wszOutString));
  548.     DbgOutString(wszOutString);
  549.     va_end(va);
  550. }
  551. void WINAPI DbgAssert(const CHAR *pCondition,const CHAR *pFileName,INT iLine)
  552. {
  553.     if(g_fUseKASSERT)
  554.     {
  555.         DbgKernelAssert(pCondition, pFileName, iLine);
  556.     }
  557.     else
  558.     {
  559.         TCHAR szInfo[iDEBUGINFO];
  560.         (void)StringCchPrintf(szInfo, NUMELMS(szInfo),TEXT("%S nAt line %d of %SnContinue? (Cancel to debug)"),
  561.                  pCondition, iLine, pFileName);
  562.         INT MsgId = MessageBoxOtherThread(NULL,szInfo,TEXT("ASSERT Failed"),
  563.                                           MB_SYSTEMMODAL |
  564.                                           MB_ICONHAND |
  565.                                           MB_YESNOCANCEL |
  566.                                           MB_SETFOREGROUND);
  567.         switch (MsgId)
  568.         {
  569.           case IDNO:              /* Kill the application */
  570.               FatalAppExit(FALSE, TEXT("Application terminated"));
  571.               break;
  572.           case IDCANCEL:          /* Break into the debugger */
  573.               DebugBreak();
  574.               break;
  575.           case IDYES:             /* Ignore assertion continue execution */
  576.               break;
  577.         }
  578.     }
  579. }
  580. /* Displays a message box at a break point */
  581. void WINAPI DbgBreakPoint(const CHAR *pCondition,const CHAR *pFileName,INT iLine)
  582. {
  583.     if(g_fUseKASSERT)
  584.     {
  585.         DbgKernelAssert(pCondition, pFileName, iLine);
  586.     }
  587.     else
  588.     {
  589.         TCHAR szInfo[iDEBUGINFO];
  590.         (void)StringCchPrintf(szInfo, NUMELMS(szInfo),TEXT("%S nAt line %d of %SnContinue? (Cancel to debug)"),
  591.                  pCondition, iLine, pFileName);
  592.         INT MsgId = MessageBoxOtherThread(NULL,szInfo,TEXT("Hard coded break point"),
  593.                                           MB_SYSTEMMODAL |
  594.                                           MB_ICONHAND |
  595.                                           MB_YESNOCANCEL |
  596.                                           MB_SETFOREGROUND);
  597.         switch (MsgId)
  598.         {
  599.           case IDNO:              /* Kill the application */
  600.               FatalAppExit(FALSE, TEXT("Application terminated"));
  601.               break;
  602.           case IDCANCEL:          /* Break into the debugger */
  603.               DebugBreak();
  604.               break;
  605.           case IDYES:             /* Ignore break point continue execution */
  606.               break;
  607.         }
  608.     }
  609. }
  610. void WINAPI DbgKernelAssert(const CHAR *pCondition,const CHAR *pFileName,INT iLine)
  611. {
  612.     DbgLog((LOG_ERROR,0,TEXT("Assertion FAILED (%hs) at line %d in file %hs"),
  613.            pCondition, iLine, pFileName));
  614.     DebugBreak();
  615. }
  616. #endif
  617. /* Print a formatted string to the debugger prefixed with this module's name
  618.    Because the COMBASE classes are linked statically every module loaded will
  619.    have their own copy of this code. It therefore helps if the module name is
  620.    included on the output so that the offending code can be easily found */
  621. // 
  622. // warning -- this function is implemented twice for ansi applications
  623. // linking to the unicode library
  624. // 
  625. void WINAPI DbgLogInfo(DWORD Type,DWORD Level,const TCHAR *pFormat,...)
  626. {
  627.     
  628.     /* Check the current level for this type combination */
  629.     BOOL bAccept = DbgCheckModuleLevel(Type,Level);
  630.     if (bAccept == FALSE) {
  631.         return;
  632.     }
  633.     TCHAR szInfo[2000];
  634.     /* Format the variable length parameter list */
  635.     va_list va;
  636.     va_start(va, pFormat);
  637.     (void)StringCchCopy(szInfo, NUMELMS(szInfo), m_ModuleName);
  638.     size_t len = lstrlen(szInfo);
  639.     (void)StringCchPrintf(szInfo + len, NUMELMS(szInfo) - len,
  640.              TEXT("(tid %x) %8d : "),
  641.              GetCurrentThreadId(), timeGetTime() - dwTimeOffset);
  642.     len = lstrlen(szInfo);
  643.     (void)StringCchVPrintf(szInfo + len, NUMELMS(szInfo) - len, pFormat, va);
  644.     (void)StringCchCat(szInfo, NUMELMS(szInfo), TEXT("rn"));
  645.     DbgOutString(szInfo);
  646.     va_end(va);
  647. }
  648. /* If we are executing as a pure kernel filter we cannot display message
  649.    boxes to the user, this provides an alternative which puts the error
  650.    condition on the debugger output with a suitable eye catching message */
  651. void WINAPI DbgKernelAssert(const TCHAR *pCondition,const TCHAR *pFileName,INT iLine)
  652. {
  653.     DbgLog((LOG_ERROR,0,TEXT("Assertion FAILED (%s) at line %d in file %s"),
  654.            pCondition, iLine, pFileName));
  655.     DebugBreak();
  656. }
  657. /* Each time we create an object derived from CBaseObject the constructor will
  658.    call us to register the creation of the new object. We are passed a string
  659.    description which we store away. We return a cookie that the constructor
  660.    uses to identify the object when it is destroyed later on. We update the
  661.    total number of active objects in the DLL mainly for debugging purposes */
  662. DWORD WINAPI DbgRegisterObjectCreation(const CHAR *szObjectName,
  663.                                        const WCHAR *wszObjectName)
  664. {
  665.     /* If this fires you have a mixed DEBUG/RETAIL build */
  666.     ASSERT(!!szObjectName ^ !!wszObjectName);
  667.     /* Create a place holder for this object description */
  668.     ObjectDesc *pObject = new ObjectDesc;
  669.     ASSERT(pObject);
  670.     /* It is valid to pass a NULL object name */
  671.     if (pObject == NULL) {
  672.         return FALSE;
  673.     }
  674.     /* Check we have been initialised - we may not be initialised when we are
  675.        being pulled in from an executable which has globally defined objects
  676.        as they are created by the C++ run time before WinMain is called */
  677.     if (m_bInit == FALSE) {
  678.         DbgInitialise(GetModuleHandle(NULL));
  679.     }
  680.     /* Grab the list critical section */
  681.     EnterCriticalSection(&m_CSDebug);
  682.     /* If no name then default to UNKNOWN */
  683.     if (!szObjectName && !wszObjectName) {
  684.         szObjectName = pUnknownName;
  685.     }
  686.     /* Put the new description at the head of the list */
  687.     pObject->m_szName = szObjectName;
  688.     pObject->m_wszName = wszObjectName;
  689.     pObject->m_dwCookie = ++m_dwNextCookie;
  690.     pObject->m_pNext = pListHead;
  691.     pListHead = pObject;
  692.     m_dwObjectCount++;
  693.     DWORD ObjectCookie = pObject->m_dwCookie;
  694.     ASSERT(ObjectCookie);
  695.     if(wszObjectName) {
  696.         DbgLog((LOG_MEMORY,2,TEXT("Object created   %d (%ls) %d Active"),
  697.                 pObject->m_dwCookie, wszObjectName, m_dwObjectCount));
  698.     } else {
  699.         DbgLog((LOG_MEMORY,2,TEXT("Object created   %d (%hs) %d Active"),
  700.                 pObject->m_dwCookie, szObjectName, m_dwObjectCount));
  701.     }
  702.     LeaveCriticalSection(&m_CSDebug);
  703.     return ObjectCookie;
  704. }
  705. /* This is called by the CBaseObject destructor when an object is about to be
  706.    destroyed, we are passed the cookie we returned during construction that
  707.    identifies this object. We scan the object list for a matching cookie and
  708.    remove the object if successful. We also update the active object count */
  709. BOOL WINAPI DbgRegisterObjectDestruction(DWORD dwCookie)
  710. {
  711.     /* Grab the list critical section */
  712.     EnterCriticalSection(&m_CSDebug);
  713.     ObjectDesc *pObject = pListHead;
  714.     ObjectDesc *pPrevious = NULL;
  715.     /* Scan the object list looking for a cookie match */
  716.     while (pObject) {
  717.         if (pObject->m_dwCookie == dwCookie) {
  718.             break;
  719.         }
  720.         pPrevious = pObject;
  721.         pObject = pObject->m_pNext;
  722.     }
  723.     if (pObject == NULL) {
  724.         DbgBreak("Apparently destroying a bogus object");
  725.         LeaveCriticalSection(&m_CSDebug);
  726.         return FALSE;
  727.     }
  728.     /* Is the object at the head of the list */
  729.     if (pPrevious == NULL) {
  730.         pListHead = pObject->m_pNext;
  731.     } else {
  732.         pPrevious->m_pNext = pObject->m_pNext;
  733.     }
  734.     /* Delete the object and update the housekeeping information */
  735.     m_dwObjectCount--;
  736.     if(pObject->m_wszName) {
  737.         DbgLog((LOG_MEMORY,2,TEXT("Object destroyed %d (%ls) %d Active"),
  738.                 pObject->m_dwCookie, pObject->m_wszName, m_dwObjectCount));
  739.     } else {
  740.         DbgLog((LOG_MEMORY,2,TEXT("Object destroyed %d (%hs) %d Active"),
  741.                 pObject->m_dwCookie, pObject->m_szName, m_dwObjectCount));
  742.     }
  743.     delete pObject;
  744.     LeaveCriticalSection(&m_CSDebug);
  745.     return TRUE;
  746. }
  747. /* This runs through the active object list displaying their details */
  748. void WINAPI DbgDumpObjectRegister()
  749. {
  750.     TCHAR szInfo[iDEBUGINFO];
  751.     /* Grab the list critical section */
  752.     EnterCriticalSection(&m_CSDebug);
  753.     ObjectDesc *pObject = pListHead;
  754.     /* Scan the object list displaying the name and cookie */
  755.     DbgLog((LOG_MEMORY,2,TEXT("")));
  756.     DbgLog((LOG_MEMORY,2,TEXT("   ID             Object Description")));
  757.     DbgLog((LOG_MEMORY,2,TEXT("")));
  758.     while (pObject) {
  759.         if(pObject->m_wszName) {
  760.             #ifdef UNICODE
  761.             LPCTSTR FORMAT_STRING = TEXT("%5d (%8x) %30s");
  762.             #else 
  763.             LPCTSTR FORMAT_STRING = TEXT("%5d (%8x) %30S");
  764.             #endif 
  765.             (void)StringCchPrintf(szInfo,NUMELMS(szInfo), FORMAT_STRING, pObject->m_dwCookie, &pObject, pObject->m_wszName);
  766.         } else {
  767.             #ifdef UNICODE
  768.             LPCTSTR FORMAT_STRING = TEXT("%5d (%8x) %30S");
  769.             #else 
  770.             LPCTSTR FORMAT_STRING = TEXT("%5d (%8x) %30s");
  771.             #endif 
  772.             (void)StringCchPrintf(szInfo,NUMELMS(szInfo),FORMAT_STRING,pObject->m_dwCookie, &pObject, pObject->m_szName);
  773.         }
  774.         DbgLog((LOG_MEMORY,2,szInfo));
  775.         pObject = pObject->m_pNext;
  776.     }
  777.     (void)StringCchPrintf(szInfo,NUMELMS(szInfo),TEXT("Total object count %5d"),m_dwObjectCount);
  778.     DbgLog((LOG_MEMORY,2,TEXT("")));
  779.     DbgLog((LOG_MEMORY,1,szInfo));
  780.     LeaveCriticalSection(&m_CSDebug);
  781. }
  782. /*  Debug infinite wait stuff */
  783. DWORD WINAPI DbgWaitForSingleObject(HANDLE h)
  784. {
  785.     DWORD dwWaitResult;
  786.     do {
  787.         dwWaitResult = WaitForSingleObject(h, dwWaitTimeout);
  788.         ASSERT(dwWaitResult == WAIT_OBJECT_0);
  789.     } while (dwWaitResult == WAIT_TIMEOUT);
  790.     return dwWaitResult;
  791. }
  792. DWORD WINAPI DbgWaitForMultipleObjects(DWORD nCount,
  793.                                 CONST HANDLE *lpHandles,
  794.                                 BOOL bWaitAll)
  795. {
  796.     DWORD dwWaitResult;
  797.     do {
  798.         dwWaitResult = WaitForMultipleObjects(nCount,
  799.                                               lpHandles,
  800.                                               bWaitAll,
  801.                                               dwWaitTimeout);
  802.         ASSERT((DWORD)(dwWaitResult - WAIT_OBJECT_0) < MAXIMUM_WAIT_OBJECTS);
  803.     } while (dwWaitResult == WAIT_TIMEOUT);
  804.     return dwWaitResult;
  805. }
  806. void WINAPI DbgSetWaitTimeout(DWORD dwTimeout)
  807. {
  808.     dwWaitTimeout = dwTimeout;
  809. }
  810. #endif /* DEBUG */
  811. #ifdef _OBJBASE_H_
  812.     /*  Stuff for printing out our GUID names */
  813.     GUID_STRING_ENTRY g_GuidNames[] = {
  814.     #define OUR_GUID_ENTRY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) 
  815.     { #name, { l, w1, w2, { b1, b2,  b3,  b4,  b5,  b6,  b7,  b8 } } },
  816.         #include <uuids.h>
  817.     };
  818.     CGuidNameList GuidNames;
  819.     int g_cGuidNames = sizeof(g_GuidNames) / sizeof(g_GuidNames[0]);
  820.     char *CGuidNameList::operator [] (const GUID &guid)
  821.     {
  822.         for (int i = 0; i < g_cGuidNames; i++) {
  823.             if (g_GuidNames[i].guid == guid) {
  824.                 return g_GuidNames[i].szName;
  825.             }
  826.         }
  827.         if (guid == GUID_NULL) {
  828.             return "GUID_NULL";
  829.         }
  830. // !!! add something to print FOURCC guids?
  831. // shouldn't this print the hex CLSID?
  832.         return "Unknown GUID Name";
  833.     }
  834. #endif /* _OBJBASE_H_ */
  835. /*  CDisp class - display our data types */
  836. // clashes with REFERENCE_TIME
  837. CDisp::CDisp(LONGLONG ll, int Format)
  838. {
  839.     // note: this could be combined with CDisp(LONGLONG) by
  840.     // introducing a default format of CDISP_REFTIME
  841.     LARGE_INTEGER li;
  842.     li.QuadPart = ll;
  843.     switch (Format) {
  844. case CDISP_DEC:
  845. {
  846.     TCHAR  temp[20];
  847.     int pos=20;
  848.     temp[--pos] = 0;
  849.     int digit;
  850.     // always output at least one digit
  851.     do {
  852. // Get the rightmost digit - we only need the low word
  853.         digit = li.LowPart % 10;
  854. li.QuadPart /= 10;
  855. temp[--pos] = (TCHAR) digit+L'0';
  856.     } while (li.QuadPart);
  857.     (void)StringCchPrintf(m_String, NUMELMS(m_String), TEXT("%s"), temp+pos);
  858.     break;
  859. }
  860. case CDISP_HEX:
  861. default:
  862.     (void)StringCchPrintf(m_String, NUMELMS(m_String), TEXT("0x%X%8.8X"), li.HighPart, li.LowPart);
  863.     }
  864. };
  865. CDisp::CDisp(REFCLSID clsid)
  866. {
  867.     WCHAR strClass[CHARS_IN_GUID+1];
  868.     StringFromGUID2(clsid, strClass, sizeof(strClass) / sizeof(strClass[0]));
  869.     ASSERT(sizeof(m_String)/sizeof(m_String[0]) >= CHARS_IN_GUID+1);
  870.     #ifdef UNICODE 
  871.     (void)StringCchPrintf(m_String, NUMELMS(m_String), TEXT("%s"), strClass);
  872.     #else
  873.     (void)StringCchPrintf(m_String, NUMELMS(m_String), TEXT("%S"), strClass);
  874.     #endif  
  875. };
  876. #ifdef __STREAMS__
  877. /*  Display stuff */
  878. CDisp::CDisp(CRefTime llTime)
  879. {
  880.     LPTSTR lpsz = m_String;
  881.     size_t len = NUMELMS(m_String);
  882.     LONGLONG llDiv;
  883.     if (llTime < 0) {
  884.         llTime = -llTime;
  885.         (void)StringCchPrintf(lpsz, len, TEXT("-"));
  886.         size_t t = lstrlen(lpsz);
  887.         lpsz += t;
  888.         len -= t;
  889.     }
  890.     llDiv = (LONGLONG)24 * 3600 * 10000000;
  891.     if (llTime >= llDiv) {
  892.         (void)StringCchPrintf(lpsz, len, TEXT("%d days "), (LONG)(llTime / llDiv));
  893.         size_t t = lstrlen(lpsz);
  894.         lpsz += t;
  895.         len -= t;
  896.         llTime = llTime % llDiv;
  897.     }
  898.     llDiv = (LONGLONG)3600 * 10000000;
  899.     if (llTime >= llDiv) {
  900.         (void)StringCchPrintf(lpsz, len, TEXT("%d hrs "), (LONG)(llTime / llDiv));
  901.         size_t t = lstrlen(lpsz);
  902.         lpsz += t;
  903.         len -= t;
  904.         llTime = llTime % llDiv;
  905.     }
  906.     llDiv = (LONGLONG)60 * 10000000;
  907.     if (llTime >= llDiv) {
  908.         (void)StringCchPrintf(lpsz, len,  TEXT("%d mins "), (LONG)(llTime / llDiv));
  909.         size_t t = lstrlen(lpsz);
  910.         lpsz += t;
  911.         len -= t;
  912.         llTime = llTime % llDiv;
  913.     }
  914.     (void)StringCchPrintf(lpsz, len, TEXT("%d.%3.3d sec"),
  915.              (LONG)llTime / 10000000,
  916.              (LONG)((llTime % 10000000) / 10000));
  917. };
  918. #endif // __STREAMS__
  919. /*  Display pin */
  920. CDisp::CDisp(IPin *pPin)
  921. {
  922.     PIN_INFO pi;
  923.     TCHAR str[MAX_PIN_NAME];
  924.     CLSID clsid;
  925.     if (pPin) {
  926.        pPin->QueryPinInfo(&pi);
  927.        pi.pFilter->GetClassID(&clsid);
  928.        QueryPinInfoReleaseFilter(pi);
  929.       #ifndef UNICODE
  930.        WideCharToMultiByte(GetACP(), 0, pi.achName, lstrlenW(pi.achName) + 1,
  931.                            str, MAX_PIN_NAME, NULL, NULL);
  932.       #else
  933.        (void)StringCchCopy(str, NUMELMS(str), pi.achName);
  934.       #endif
  935.     } else {
  936.        (void)StringCchCopy(str, NUMELMS(str), TEXT("NULL IPin"));
  937.     }
  938.     size_t len = lstrlen(str)+64;
  939.     m_pString = (PTCHAR) new TCHAR[len];
  940.     if (!m_pString) {
  941. return;
  942.     }
  943.     #ifdef UNICODE
  944.     LPCTSTR FORMAT_STRING = TEXT("%S(%s)");
  945.     #else
  946.     LPCTSTR FORMAT_STRING = TEXT("%s(%s)");
  947.     #endif 
  948.     (void)StringCchPrintf(m_pString, len, FORMAT_STRING, GuidNames[clsid], str);
  949. }
  950. /*  Display filter or pin */
  951. CDisp::CDisp(IUnknown *pUnk)
  952. {
  953.     IBaseFilter *pf;
  954.     HRESULT hr = pUnk->QueryInterface(IID_IBaseFilter, (void **)&pf);
  955.     if(SUCCEEDED(hr))
  956.     {
  957.         FILTER_INFO fi;
  958.         hr = pf->QueryFilterInfo(&fi);
  959.         if(SUCCEEDED(hr))
  960.         {
  961.             QueryFilterInfoReleaseGraph(fi);
  962.             size_t len = lstrlenW(fi.achName)  + 1;
  963.             m_pString = new TCHAR[len];
  964.             if(m_pString)
  965.             {
  966.                 #ifdef UNICODE
  967.                 LPCTSTR FORMAT_STRING = TEXT("%s");
  968.                 #else
  969.                 LPCTSTR FORMAT_STRING = TEXT("%S");
  970.                 #endif 
  971.                 (void)StringCchPrintf(m_pString, len, FORMAT_STRING, fi.achName);
  972.             }
  973.         }
  974.         pf->Release();
  975.         return;
  976.     }
  977.     IPin *pp;
  978.     hr = pUnk->QueryInterface(IID_IPin, (void **)&pp);
  979.     if(SUCCEEDED(hr))
  980.     {
  981.         CDisp::CDisp(pp);
  982.         pp->Release();
  983.         return;
  984.     }
  985. }
  986. CDisp::~CDisp()
  987. {
  988. }
  989. CDispBasic::~CDispBasic()
  990. {
  991.     if (m_pString != m_String) {
  992. delete [] m_pString;
  993.     }
  994. }
  995. CDisp::CDisp(double d)
  996. {
  997. #ifdef DEBUG
  998.     (void)StringCchPrintf(m_String, NUMELMS(m_String), TEXT("%.16g"), d);
  999. #else
  1000.     (void)StringCchPrintf(m_String, NUMELMS(m_String), TEXT("%d.%03d"), (int) d, (int) ((d - (int) d) * 1000));
  1001. #endif
  1002. }
  1003. /* If built for debug this will display the media type details. We convert the
  1004.    major and subtypes into strings and also ask the base classes for a string
  1005.    description of the subtype, so MEDIASUBTYPE_RGB565 becomes RGB 565 16 bit
  1006.    We also display the fields in the BITMAPINFOHEADER structure, this should
  1007.    succeed as we do not accept input types unless the format is big enough */
  1008. #ifdef DEBUG
  1009. void WINAPI DisplayType(LPTSTR label, const AM_MEDIA_TYPE *pmtIn)
  1010. {
  1011.     /* Dump the GUID types and a short description */
  1012.     DbgLog((LOG_TRACE,5,TEXT("")));
  1013.     DbgLog((LOG_TRACE,2,TEXT("%s  M type %hs  S type %hs"), label,
  1014.     GuidNames[pmtIn->majortype],
  1015.     GuidNames[pmtIn->subtype]));
  1016.     DbgLog((LOG_TRACE,5,TEXT("Subtype description %s"),GetSubtypeName(&pmtIn->subtype)));
  1017.     /* Dump the generic media types */
  1018.     if (pmtIn->bTemporalCompression) {
  1019. DbgLog((LOG_TRACE,5,TEXT("Temporally compressed")));
  1020.     } else {
  1021. DbgLog((LOG_TRACE,5,TEXT("Not temporally compressed")));
  1022.     }
  1023.     if (pmtIn->bFixedSizeSamples) {
  1024. DbgLog((LOG_TRACE,5,TEXT("Sample size %d"),pmtIn->lSampleSize));
  1025.     } else {
  1026. DbgLog((LOG_TRACE,5,TEXT("Variable size samples")));
  1027.     }
  1028.     if (pmtIn->formattype == FORMAT_VideoInfo) {
  1029. /* Dump the contents of the BITMAPINFOHEADER structure */
  1030. BITMAPINFOHEADER *pbmi = HEADER(pmtIn->pbFormat);
  1031. VIDEOINFOHEADER *pVideoInfo = (VIDEOINFOHEADER *)pmtIn->pbFormat;
  1032. DbgLog((LOG_TRACE,5,TEXT("Source rectangle (Left %d Top %d Right %d Bottom %d)"),
  1033.        pVideoInfo->rcSource.left,
  1034.        pVideoInfo->rcSource.top,
  1035.        pVideoInfo->rcSource.right,
  1036.        pVideoInfo->rcSource.bottom));
  1037. DbgLog((LOG_TRACE,5,TEXT("Target rectangle (Left %d Top %d Right %d Bottom %d)"),
  1038.        pVideoInfo->rcTarget.left,
  1039.        pVideoInfo->rcTarget.top,
  1040.        pVideoInfo->rcTarget.right,
  1041.        pVideoInfo->rcTarget.bottom));
  1042. DbgLog((LOG_TRACE,5,TEXT("Size of BITMAPINFO structure %d"),pbmi->biSize));
  1043. if (pbmi->biCompression < 256) {
  1044.     DbgLog((LOG_TRACE,2,TEXT("%dx%dx%d bit  (%d)"),
  1045.     pbmi->biWidth, pbmi->biHeight,
  1046.     pbmi->biBitCount, pbmi->biCompression));
  1047. } else {
  1048.     DbgLog((LOG_TRACE,2,TEXT("%dx%dx%d bit '%4.4hs'"),
  1049.     pbmi->biWidth, pbmi->biHeight,
  1050.     pbmi->biBitCount, &pbmi->biCompression));
  1051. }
  1052. DbgLog((LOG_TRACE,2,TEXT("Image size %d"),pbmi->biSizeImage));
  1053. DbgLog((LOG_TRACE,5,TEXT("Planes %d"),pbmi->biPlanes));
  1054. DbgLog((LOG_TRACE,5,TEXT("X Pels per metre %d"),pbmi->biXPelsPerMeter));
  1055. DbgLog((LOG_TRACE,5,TEXT("Y Pels per metre %d"),pbmi->biYPelsPerMeter));
  1056. DbgLog((LOG_TRACE,5,TEXT("Colours used %d"),pbmi->biClrUsed));
  1057.     } else if (pmtIn->majortype == MEDIATYPE_Audio) {
  1058. DbgLog((LOG_TRACE,2,TEXT("     Format type %hs"),
  1059.     GuidNames[pmtIn->formattype]));
  1060. DbgLog((LOG_TRACE,2,TEXT("     Subtype %hs"),
  1061.     GuidNames[pmtIn->subtype]));
  1062. if ((pmtIn->subtype != MEDIASUBTYPE_MPEG1Packet)
  1063.   && (pmtIn->cbFormat >= sizeof(PCMWAVEFORMAT)))
  1064. {
  1065.     /* Dump the contents of the WAVEFORMATEX type-specific format structure */
  1066.     WAVEFORMATEX *pwfx = (WAVEFORMATEX *) pmtIn->pbFormat;
  1067.             DbgLog((LOG_TRACE,2,TEXT("wFormatTag %u"), pwfx->wFormatTag));
  1068.             DbgLog((LOG_TRACE,2,TEXT("nChannels %u"), pwfx->nChannels));
  1069.             DbgLog((LOG_TRACE,2,TEXT("nSamplesPerSec %lu"), pwfx->nSamplesPerSec));
  1070.             DbgLog((LOG_TRACE,2,TEXT("nAvgBytesPerSec %lu"), pwfx->nAvgBytesPerSec));
  1071.             DbgLog((LOG_TRACE,2,TEXT("nBlockAlign %u"), pwfx->nBlockAlign));
  1072.             DbgLog((LOG_TRACE,2,TEXT("wBitsPerSample %u"), pwfx->wBitsPerSample));
  1073.             /* PCM uses a WAVEFORMAT and does not have the extra size field */
  1074.             if (pmtIn->cbFormat >= sizeof(WAVEFORMATEX)) {
  1075.                 DbgLog((LOG_TRACE,2,TEXT("cbSize %u"), pwfx->cbSize));
  1076.             }
  1077. } else {
  1078. }
  1079.     } else {
  1080. DbgLog((LOG_TRACE,2,TEXT("     Format type %hs"),
  1081.     GuidNames[pmtIn->formattype]));
  1082. // !!!! should add code to dump wave format, others
  1083.     }
  1084. }
  1085. void WINAPI DumpGraph(IFilterGraph *pGraph, DWORD dwLevel)
  1086. {
  1087.     if( !pGraph )
  1088.     {
  1089.         return;
  1090.     }
  1091.     IEnumFilters *pFilters;
  1092.     DbgLog((LOG_TRACE,dwLevel,TEXT("DumpGraph [%x]"), pGraph));
  1093.     if (FAILED(pGraph->EnumFilters(&pFilters))) {
  1094. DbgLog((LOG_TRACE,dwLevel,TEXT("EnumFilters failed!")));
  1095.     }
  1096.     IBaseFilter *pFilter;
  1097.     ULONG n;
  1098.     while (pFilters->Next(1, &pFilter, &n) == S_OK) {
  1099. FILTER_INFO info;
  1100. if (FAILED(pFilter->QueryFilterInfo(&info))) {
  1101.     DbgLog((LOG_TRACE,dwLevel,TEXT("    Filter [%x]  -- failed QueryFilterInfo"), pFilter));
  1102. } else {
  1103.     QueryFilterInfoReleaseGraph(info);
  1104.     // !!! should QueryVendorInfo here!
  1105.     DbgLog((LOG_TRACE,dwLevel,TEXT("    Filter [%x]  '%ls'"), pFilter, info.achName));
  1106.     IEnumPins *pins;
  1107.     if (FAILED(pFilter->EnumPins(&pins))) {
  1108. DbgLog((LOG_TRACE,dwLevel,TEXT("EnumPins failed!")));
  1109.     } else {
  1110. IPin *pPin;
  1111. while (pins->Next(1, &pPin, &n) == S_OK) {
  1112.     PIN_INFO info;
  1113.     if (FAILED(pPin->QueryPinInfo(&info))) {
  1114. DbgLog((LOG_TRACE,dwLevel,TEXT("          Pin [%x]  -- failed QueryPinInfo"), pPin));
  1115.     } else {
  1116. QueryPinInfoReleaseFilter(info);
  1117. IPin *pPinConnected = NULL;
  1118. HRESULT hr = pPin->ConnectedTo(&pPinConnected);
  1119. if (pPinConnected) {
  1120.     DbgLog((LOG_TRACE,dwLevel,TEXT("          Pin [%x]  '%ls' [%sput]")
  1121.    TEXT("  Connected to pin [%x]"),
  1122.     pPin, info.achName,
  1123.     info.dir == PINDIR_INPUT ? TEXT("In") : TEXT("Out"),
  1124.     pPinConnected));
  1125.     pPinConnected->Release();
  1126.     // perhaps we should really dump the type both ways as a sanity
  1127.     // check?
  1128.     if (info.dir == PINDIR_OUTPUT) {
  1129. AM_MEDIA_TYPE mt;
  1130. hr = pPin->ConnectionMediaType(&mt);
  1131. if (SUCCEEDED(hr)) {
  1132.     DisplayType(TEXT("Connection type"), &mt);
  1133.     FreeMediaType(mt);
  1134. }
  1135.     }
  1136. } else {
  1137.     DbgLog((LOG_TRACE,dwLevel,
  1138.     TEXT("          Pin [%x]  '%ls' [%sput]"),
  1139.     pPin, info.achName,
  1140.     info.dir == PINDIR_INPUT ? TEXT("In") : TEXT("Out")));
  1141. }
  1142.     }
  1143.     pPin->Release();
  1144. }
  1145. pins->Release();
  1146.     }
  1147. }
  1148. pFilter->Release();
  1149.     }
  1150.     pFilters->Release();
  1151. }
  1152. #endif