another playSound patch

Eric Pouech eric.pouech at wanadoo.fr
Tue May 21 14:51:03 CDT 2002


this is another patch for the PlaySound issues.
it fixes some deadlock cases and also implements registry lookup for the
searched sounds
it "should fix" #700 (even if MSVC still shows some crashes condition,
investigation continues)

A+
-------------- next part --------------
Name:          ps_a2w2
ChangeLog:     fixes bug #700: hangs in PlaySound in error cases; added registry lookup for sounds
License:       X11
GenDate:       2002/05/20 19:25:13 UTC
ModifiedFiles: dlls/winmm/mmsystem.c dlls/winmm/winemm.h
AddedFiles:    
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/dlls/winmm/mmsystem.c,v
retrieving revision 1.53
diff -u -u -r1.53 mmsystem.c
--- dlls/winmm/mmsystem.c	16 May 2002 20:28:26 -0000	1.53
+++ dlls/winmm/mmsystem.c	17 May 2002 19:16:27 -0000
@@ -220,8 +220,19 @@
 
 static HMMIO	get_mmioFromFile(LPCWSTR lpszName)
 {
-    return mmioOpenW((LPWSTR)lpszName, NULL,
-		     MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
+    HMMIO       ret;
+    WCHAR       buf[256];
+    LPWSTR      dummy;
+
+    ret = mmioOpenW((LPWSTR)lpszName, NULL,
+                    MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
+    if (ret != 0) return ret;
+    if (SearchPathW(NULL, lpszName, NULL, sizeof(buf)/sizeof(buf[0]), buf, &dummy))
+    {
+        return mmioOpenW(buf, NULL,
+                         MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
+    }
+    return 0;
 }
 
 static HMMIO	get_mmioFromProfile(UINT uFlags, LPCWSTR lpszName) 
@@ -229,24 +240,75 @@
     WCHAR	str[128];
     LPWSTR	ptr;
     HMMIO  	hmmio;
-static  WCHAR       wszSounds[] = {'S','o','u','n','d','s',0};
-static  WCHAR       wszDefault[] = {'D','e','f','a','u','l','t',0};
-static  WCHAR       wszNull[] = {0};
-    TRACE("searching in SystemSound List !\n");
+    HKEY        hRegSnd, hRegApp, hScheme, hSnd;
+    DWORD       err, type, count;
+
+    static  WCHAR       wszSounds[] = {'S','o','u','n','d','s',0};
+    static  WCHAR       wszDefault[] = {'D','e','f','a','u','l','t',0};
+    static  WCHAR       wszKey[] = {'A','p','p','E','v','e','n','t','s','\\','\\',
+                                    'S','c','h','e','m','e','s','\\','\\',
+                                    'A','p','p','s',0};
+    static  WCHAR       wszDotDefault[] = {'.','D','e','f','a','u','l','t',0};
+    static  WCHAR       wszNull[] = {0};
+
+    /* FIXME: we should also look up the registry under
+     *      HKCU\AppEvents\Schemes\Apps\.Default
+     *      HKCU\AppEvents\Schemes\Apps\<AppName>
+     */
+
+    TRACE("searching in SystemSound list for %s\n", debugstr_w(lpszName));
     GetProfileStringW(wszSounds, (LPWSTR)lpszName, wszNull, str, sizeof(str)/sizeof(str[0]));
-    if (lstrlenW(str) == 0) {
-	if (uFlags & SND_NODEFAULT) return 0;
+    if (lstrlenW(str) == 0) 
+    {
+	if (uFlags & SND_NODEFAULT) goto next;
 	GetProfileStringW(wszSounds, wszDefault, wszNull, str, sizeof(str)/sizeof(str[0]));
-	if (lstrlenW(str) == 0) return 0;
+	if (lstrlenW(str) == 0) goto next;
     }
     for (ptr = str; *ptr && *ptr != ','; ptr++);
     if (*ptr) *ptr = 0;
     hmmio = mmioOpenW(str, NULL, MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
-    if (hmmio == 0) {
-	WARN("can't find SystemSound='%s' !\n", debugstr_w(str));
-	return 0;
+    if (hmmio != 0) return hmmio;
+ next:
+    if (RegOpenKeyW(HKEY_CURRENT_USER, wszKey, &hRegSnd) != 0) goto none;
+    if (uFlags & SND_APPLICATION)
+    {
+        err = 1;
+        if (GetModuleFileNameW(0, str, sizeof(str)/sizeof(str[0])))
+        {
+            LPWSTR  ptr;
+        
+            for (ptr = str + lstrlenW(str) - 1; ptr >= str; ptr--)
+            {
+                if (*ptr == '.') *ptr = 0;
+                if (*ptr == '\\')
+                {
+                    err = RegOpenKeyW(hRegSnd, str, &hRegApp);
+                    break;
+                }
+            }
+        }
+    }
+    else
+    {
+        err = RegOpenKeyW(hRegSnd, wszDotDefault, &hRegApp);
     }
-    return hmmio;
+    RegCloseKey(hRegSnd);
+    if (err != 0) goto none;
+    err = RegOpenKeyW(hRegApp, lpszName, &hScheme);
+    RegCloseKey(hRegApp);
+    if (err != 0) goto none;
+    err = RegOpenKeyW(hScheme, wszDotDefault, &hSnd);
+    RegCloseKey(hScheme);
+    if (err != 0) goto none;
+    count = sizeof(str)/sizeof(str[0]);
+    err = RegQueryValueExW(hSnd, NULL, 0, &type, (LPBYTE)str, &count);
+    RegCloseKey(hSnd);
+    if (err != 0) goto none;
+    hmmio = mmioOpenW(str, NULL, MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
+    if (hmmio) return hmmio;
+ none:
+    WARN("can't find SystemSound='%s' !\n", debugstr_w(lpszName));
+    return 0;
 }
 
 struct playsound_data 
@@ -312,19 +374,20 @@
         HGLOBAL	hGlob;
         
         if ((hRes = FindResourceW(wps->hMod, wps->pszSound, wszWave)) == 0 ||
-            (hGlob = LoadResource(wps->hMod, hRes)) == 0) {
-            return FALSE;
-        }
+            (hGlob = LoadResource(wps->hMod, hRes)) == 0)
+            goto errCleanUp;
         if ((data = LockResource(hGlob)) == NULL) {
             FreeResource(hGlob);
-            return FALSE;
+            goto errCleanUp;
         }
         FreeResource(hGlob);
     } else
         data = (void*)wps->pszSound;
 
     /* construct an MMIO stream (either in memory, or from a file */
-    if (wps->fdwSound & SND_MEMORY) { /* NOTE: SND_RESOURCE has the SND_MEMORY bit set */
+/*    hmmio = 0; */ /* to catch errors */
+    if (wps->fdwSound & SND_MEMORY)
+    { /* NOTE: SND_RESOURCE has the SND_MEMORY bit set */
 	MMIOINFO	mminfo;
 
 	memset(&mminfo, 0, sizeof(mminfo));
@@ -333,28 +396,26 @@
 	mminfo.cchBuffer = -1; /* FIXME: when a resource, could grab real size */
 	TRACE("Memory sound %p\n", data);
 	hmmio = mmioOpenW(NULL, &mminfo, MMIO_READ);
-    } else {
-	hmmio = 0;
-	if (wps->fdwSound & SND_ALIAS)
-	    if ((hmmio = get_mmioFromProfile(wps->fdwSound, wps->pszSound)) == 0) 
-		return FALSE;
-	
-	if (wps->fdwSound & SND_FILENAME)
-	    if ((hmmio = get_mmioFromFile(wps->pszSound)) == 0) return FALSE;
-	
-	switch (wps->searchMode) {
-        case 1:
-	    if ((hmmio = get_mmioFromFile(wps->pszSound)) == 0) 
-		hmmio = get_mmioFromProfile(wps->fdwSound, wps->pszSound);
-            break;
-        case 2:
-	    if ((hmmio = get_mmioFromProfile(wps->fdwSound | SND_NODEFAULT, wps->pszSound)) == 0) 
-		if ((hmmio = get_mmioFromFile(wps->pszSound)) == 0)	
-		    hmmio = get_mmioFromProfile(wps->fdwSound, wps->pszSound);
-            break;
+    }
+    else if (wps->fdwSound & SND_ALIAS)
+    {
+        hmmio = get_mmioFromProfile(wps->fdwSound, wps->pszSound);
+    }
+    else if (wps->fdwSound & SND_FILENAME)
+    {
+        hmmio = get_mmioFromFile(wps->pszSound);
+    }
+    else
+    {
+        if ((hmmio = get_mmioFromProfile(wps->fdwSound | SND_NODEFAULT, wps->pszSound)) == 0) 
+        {
+            if ((hmmio = get_mmioFromFile(wps->pszSound)) == 0)	
+            {
+                hmmio = get_mmioFromProfile(wps->fdwSound, wps->pszSound);
+            }
         }
     }
-    if (hmmio == 0) return FALSE;
+    if (hmmio == 0) goto errCleanUp;
 
     if (mmioDescend(hmmio, &ckMainRIFF, NULL, 0))
 	goto errCleanUp;
@@ -447,17 +508,17 @@
     waveOutUnprepareHeader(hWave, &waveHdr[1], sizeof(WAVEHDR));
 
 errCleanUp:
-    TRACE("Done playing='%s' !\n", debugstr_w(wps->pszSound));
+    TRACE("Done playing='%s' => %s!\n", debugstr_w(wps->pszSound), bRet ? "ok" : "ko");
     CloseHandle(s.hEvent);
-    HeapFree(GetProcessHeap(), 0, waveHdr);
-    HeapFree(GetProcessHeap(), 0, lpWaveFormat);
+    if (waveHdr)        HeapFree(GetProcessHeap(), 0, waveHdr);
+    if (lpWaveFormat)   HeapFree(GetProcessHeap(), 0, lpWaveFormat);
     if (hWave)		while (waveOutClose(hWave) == WAVERR_STILLPLAYING) Sleep(100);
     if (hmmio) 		mmioClose(hmmio, 0);
 
     SetEvent(wps->hReadyEvent);
     iData->lpPlaySound = NULL;
 
-    /* when filename: HeapFree(GetProcessHeap(), 0, wps->pszSound); */
+    if (wps->bAlloc) HeapFree(GetProcessHeap(), 0, (void*)wps->pszSound);
     CloseHandle(wps->hReadyEvent);
     HeapFree(GetProcessHeap(), 0, wps);
 
@@ -469,17 +530,18 @@
     /* SND_RESOURCE is 0x40004 while
      * SND_MEMORY is 0x00004
      */
-    switch (fdwSound & SND_RESOURCE)
+    switch (fdwSound & (SND_RESOURCE|SND_ALIAS|SND_FILENAME))
     {
     case SND_RESOURCE:  return HIWORD(psz) != 0; /* by name or by ID ? */
     case SND_MEMORY:    return FALSE;
-    /* any other case (SND_ALIAS, SND_FILENAME... shall drop into this one) */
+    case SND_ALIAS:     /* what about ALIAS_ID ??? */
+    case SND_FILENAME:
     case 0:             return TRUE; 
     default:            FIXME("WTF\n"); return FALSE;
     }
 }
 
-static BOOL MULTIMEDIA_PlaySound(LPCWSTR pszSound, HMODULE hmod, DWORD fdwSound, DWORD search)
+static BOOL MULTIMEDIA_PlaySound(const void* pszSound, HMODULE hmod, DWORD fdwSound, BOOL bUnicode)
 {
     WINE_PLAYSOUND*     wps = NULL;
     DWORD	        id;
@@ -521,27 +583,40 @@
             wps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*wps));
             if (!wps) return FALSE;
             
-            wps->searchMode = search;
             wps->hMod = hmod;
             wps->fdwSound = fdwSound;
-            wps->pszSound = pszSound;
+            wps->bAlloc = FALSE;
+            if (MULTIMEDIA_IsString(fdwSound, pszSound))
+            {
+                if (bUnicode)
+                {
+                    if (fdwSound & SND_ASYNC)
+                    {
+                        wps->pszSound = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(pszSound)+1) * sizeof(WCHAR));
+                        lstrcpyW((LPWSTR)wps->pszSound, pszSound);
+                        wps->bAlloc = TRUE;
+                    }
+                    else
+                        wps->pszSound = pszSound;
+                }
+                else
+                {
+                    wps->pszSound = HEAP_strdupAtoW(GetProcessHeap(), 0, pszSound);
+                    wps->bAlloc = TRUE;
+                }
+            }
+            else
+                wps->pszSound = pszSound;
             if ((wps->hReadyEvent = CreateEventA(NULL, TRUE, FALSE, NULL)) == 0)
                 goto cleanup;
         }
     } while (InterlockedCompareExchangePointer((void**)&iData->lpPlaySound, wps, NULL) != NULL);
 
-    if (fdwSound & SND_ASYNC) {
-	if (MULTIMEDIA_IsString(fdwSound, pszSound))
-        {
-	    wps->pszSound = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(pszSound)+1) * sizeof(WCHAR));
-	    lstrcpyW((LPWSTR)wps->pszSound, pszSound);
-	}
+    if (fdwSound & SND_ASYNC) 
+    {
 	wps->bLoop = fdwSound & SND_LOOP;
-        /* FIXME: memory leak in case of error & cs is still lock */
-        if ((wps->hThread = CreateThread(NULL, 0, proc_PlaySound, wps, 0, &id)) == 0) 
-            return FALSE;
-    
-	return TRUE;
+        /* FIXME: memory leak in case of error & cs is still locked */
+        return ((wps->hThread = CreateThread(NULL, 0, proc_PlaySound, wps, 0, &id)) != 0);
     }
 
     bRet = proc_PlaySound(wps);
@@ -554,24 +629,15 @@
  */
 BOOL WINAPI PlaySoundA(LPCSTR pszSoundA, HMODULE hmod, DWORD fdwSound)
 {
-    LPWSTR 	pszSoundW;
-    BOOL	bSound;
-
-    pszSoundW = (MULTIMEDIA_IsString(fdwSound, pszSoundA)) ?
-        HEAP_strdupAtoW(GetProcessHeap(), 0, pszSoundA) : (LPWSTR)pszSoundA;
-    
-    bSound = PlaySoundW(pszSoundW, hmod, fdwSound);
-    if ((void*)pszSoundW != (void*)pszSoundA) HeapFree(GetProcessHeap(), 0, pszSoundW);
-
-    return bSound;
+    return MULTIMEDIA_PlaySound(pszSoundA, hmod, fdwSound, FALSE);
 }
 
 /**************************************************************************
  * 				PlaySoundW		[WINMM.@]
  */
-BOOL WINAPI PlaySoundW(LPCWSTR pszSound, HMODULE hmod, DWORD fdwSound)
+BOOL WINAPI PlaySoundW(LPCWSTR pszSoundW, HMODULE hmod, DWORD fdwSound)
 {
-    return MULTIMEDIA_PlaySound(pszSound, hmod, fdwSound, 2);
+    return MULTIMEDIA_PlaySound(pszSoundW, hmod, fdwSound, TRUE);
 }
 
 /**************************************************************************
@@ -594,17 +660,8 @@
  */
 BOOL WINAPI sndPlaySoundA(LPCSTR pszSoundA, UINT uFlags)
 {
-    LPWSTR 	pszSoundW;
-    BOOL	bSound;
-    
-    pszSoundW = (MULTIMEDIA_IsString(uFlags, pszSoundA)) ?
-        HEAP_strdupAtoW(GetProcessHeap(), 0, pszSoundA) : (LPWSTR)pszSoundA;
-
-    bSound = sndPlaySoundW(pszSoundW, uFlags);
-    if ((void*)pszSoundW != (void*)pszSoundA)
-	HeapFree(GetProcessHeap(), 0, pszSoundW);
-    
-    return bSound;
+    uFlags &= ~(SND_ASYNC|SND_LOOP|SND_MEMORY|SND_NODEFAULT|SND_NOSTOP|SND_SYNC);
+    return MULTIMEDIA_PlaySound(pszSoundA, 0, uFlags, FALSE);
 }
 
 /**************************************************************************
@@ -612,7 +669,8 @@
  */
 BOOL WINAPI sndPlaySoundW(LPCWSTR pszSound, UINT uFlags)
 {
-    return MULTIMEDIA_PlaySound(pszSound, 0, uFlags, 1);
+    uFlags &= ~(SND_ASYNC|SND_LOOP|SND_MEMORY|SND_NODEFAULT|SND_NOSTOP|SND_SYNC);
+    return MULTIMEDIA_PlaySound(pszSound, 0, uFlags, TRUE);
 }
 
 /**************************************************************************
@@ -2458,8 +2516,17 @@
 
     TRACE("(%04X, %04X, %08lX, %08lX)\n", hMidiOut, uMessage, dwParam1, dwParam2);
 
-    if ((wmld = MMDRV_Get(hMidiOut, MMDRV_MIDIOUT, FALSE)) == NULL) 
+    if ((wmld = MMDRV_Get(hMidiOut, MMDRV_MIDIOUT, FALSE)) == NULL) {
+	/* HACK... */
+	if (uMessage == 0x0001) {
+	    *(LPDWORD)dwParam1 = 1;
+	    return 0;
+	}
+	if ((wmld = MMDRV_Get(hMidiOut, MMDRV_MIDIOUT, TRUE)) != NULL) {
+	    return MMDRV_PhysicalFeatures(wmld, uMessage, dwParam1, dwParam2);
+	}
 	return MMSYSERR_INVALHANDLE;
+    }
 
     switch (uMessage) {
     case MODM_OPEN:
Index: dlls/winmm/winemm.h
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/dlls/winmm/winemm.h,v
retrieving revision 1.11
diff -u -u -r1.11 winemm.h
--- dlls/winmm/winemm.h	12 May 2002 03:10:26 -0000	1.11
+++ dlls/winmm/winemm.h	17 May 2002 18:18:11 -0000
@@ -162,9 +162,8 @@
     LPCWSTR		pszSound;
     HMODULE		hMod;
     DWORD		fdwSound;
-    int		        bLoop;
-    int 		searchMode; /* 1 - sndPlaySound search order
-                                       2 - PlaySound order */
+    BOOL	        bLoop;
+    BOOL                bAlloc;
 } WINE_PLAYSOUND, *LPWINE_PLAYSOUND;
 
 typedef struct tagWINE_MM_IDATA {


More information about the wine-patches mailing list