mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
Add native Windows media SMTC metadata publishing
This commit is contained in:
parent
f2d3eb036b
commit
83a3972d44
4 changed files with 611 additions and 1 deletions
|
|
@ -25,12 +25,18 @@
|
|||
#ifndef __MINGW32__
|
||||
|
||||
#include <windows.ui.viewmanagement.h>
|
||||
#include <windows.media.h>
|
||||
#include <windows.foundation.h>
|
||||
#include <windows.storage.streams.h>
|
||||
#include <systemmediatransportcontrolsinterop.h>
|
||||
|
||||
#pragma comment(lib, "runtimeobject.lib")
|
||||
|
||||
using namespace mozilla;
|
||||
using namespace ABI::Windows::UI;
|
||||
using namespace ABI::Windows::UI::ViewManagement;
|
||||
using namespace ABI::Windows::Media;
|
||||
using namespace ABI::Windows::Storage::Streams;
|
||||
using namespace Microsoft::WRL;
|
||||
using namespace Microsoft::WRL::Wrappers;
|
||||
using namespace ABI::Windows::Foundation;
|
||||
|
|
@ -57,6 +63,32 @@ namespace ABI {
|
|||
#define RuntimeClass_Windows_UI_ViewManagement_UIViewSettings L"Windows.UI.ViewManagement.UIViewSettings"
|
||||
#endif
|
||||
|
||||
#ifndef RuntimeClass_Windows_Media_SystemMediaTransportControls
|
||||
#define RuntimeClass_Windows_Media_SystemMediaTransportControls L"Windows.Media.SystemMediaTransportControls"
|
||||
#endif
|
||||
|
||||
#ifndef RuntimeClass_Windows_Foundation_Uri
|
||||
#define RuntimeClass_Windows_Foundation_Uri L"Windows.Foundation.Uri"
|
||||
#endif
|
||||
|
||||
#ifndef RuntimeClass_Windows_Storage_Streams_RandomAccessStreamReference
|
||||
#define RuntimeClass_Windows_Storage_Streams_RandomAccessStreamReference L"Windows.Storage.Streams.RandomAccessStreamReference"
|
||||
#endif
|
||||
|
||||
// Some SDK configurations only forward-declare this interface unless newer
|
||||
// NTDDI guards are enabled. Provide a local fallback definition.
|
||||
#ifndef __ISystemMediaTransportControlsInterop_INTERFACE_DEFINED__
|
||||
MIDL_INTERFACE("ddb0472d-c911-4a1f-86d9-dc3d71a95f5a")
|
||||
ISystemMediaTransportControlsInterop : public IInspectable
|
||||
{
|
||||
public:
|
||||
virtual HRESULT STDMETHODCALLTYPE GetForWindow(
|
||||
HWND appWindow,
|
||||
REFIID riid,
|
||||
void** mediaTransportControl) = 0;
|
||||
};
|
||||
#endif
|
||||
|
||||
#if WINVER_MAXVER < 0x0A00
|
||||
namespace ABI {
|
||||
namespace Windows {
|
||||
|
|
@ -91,6 +123,151 @@ public:
|
|||
|
||||
#endif
|
||||
|
||||
#ifndef __MINGW32__
|
||||
namespace {
|
||||
ComPtr<ISystemMediaTransportControls> gSMTC;
|
||||
EventRegistrationToken gSMTCButtonPressedToken;
|
||||
|
||||
void
|
||||
NotifySMTCControlCommand(const char16_t* aCommand)
|
||||
{
|
||||
if (!aCommand) {
|
||||
return;
|
||||
}
|
||||
nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
||||
if (observerService) {
|
||||
observerService->NotifyObservers(nullptr, "smtc-control-command", aCommand);
|
||||
}
|
||||
}
|
||||
|
||||
nsresult
|
||||
GetHiddenWindowHWND(HWND* aHwnd)
|
||||
{
|
||||
if (!aHwnd) {
|
||||
return NS_ERROR_INVALID_ARG;
|
||||
}
|
||||
*aHwnd = nullptr;
|
||||
|
||||
nsCOMPtr<nsIAppShellService> appShell(do_GetService(NS_APPSHELLSERVICE_CONTRACTID));
|
||||
if (!appShell) {
|
||||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
|
||||
nsCOMPtr<nsIXULWindow> hiddenWindow;
|
||||
nsresult rv = appShell->GetHiddenWindow(getter_AddRefs(hiddenWindow));
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
NS_ENSURE_TRUE(hiddenWindow, NS_ERROR_FAILURE);
|
||||
|
||||
nsCOMPtr<nsIDocShell> docShell;
|
||||
rv = hiddenWindow->GetDocShell(getter_AddRefs(docShell));
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
NS_ENSURE_TRUE(docShell, NS_ERROR_FAILURE);
|
||||
|
||||
nsCOMPtr<nsIBaseWindow> baseWindow(do_QueryInterface(docShell));
|
||||
NS_ENSURE_TRUE(baseWindow, NS_ERROR_FAILURE);
|
||||
|
||||
nsCOMPtr<nsIWidget> widget;
|
||||
baseWindow->GetMainWidget(getter_AddRefs(widget));
|
||||
NS_ENSURE_TRUE(widget, NS_ERROR_FAILURE);
|
||||
|
||||
*aHwnd = reinterpret_cast<HWND>(widget->GetNativeData(NS_NATIVE_WINDOW));
|
||||
return *aHwnd ? NS_OK : NS_ERROR_FAILURE;
|
||||
}
|
||||
|
||||
nsresult
|
||||
GetSMTCTargetHWND(HWND* aHwnd)
|
||||
{
|
||||
if (!aHwnd) {
|
||||
return NS_ERROR_INVALID_ARG;
|
||||
}
|
||||
*aHwnd = nullptr;
|
||||
|
||||
// Prefer an interactive browser window for SMTC interop.
|
||||
HWND hwnd = ::GetForegroundWindow();
|
||||
if (!hwnd) {
|
||||
hwnd = ::GetActiveWindow();
|
||||
}
|
||||
if (hwnd) {
|
||||
*aHwnd = hwnd;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// Fall back to hidden window if no foreground window is available.
|
||||
return GetHiddenWindowHWND(aHwnd);
|
||||
}
|
||||
|
||||
nsresult
|
||||
EnsureSMTC()
|
||||
{
|
||||
if (gSMTC) {
|
||||
return NS_OK;
|
||||
}
|
||||
if (!IsWin10OrLater()) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
HWND hwnd = nullptr;
|
||||
nsresult rv = GetSMTCTargetHWND(&hwnd);
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
|
||||
ComPtr<ISystemMediaTransportControlsInterop> interop;
|
||||
HRESULT hr = GetActivationFactory(
|
||||
HStringReference(RuntimeClass_Windows_Media_SystemMediaTransportControls).Get(),
|
||||
&interop);
|
||||
if (FAILED(hr)) {
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
}
|
||||
|
||||
hr = interop->GetForWindow(hwnd, IID_PPV_ARGS(&gSMTC));
|
||||
if (FAILED(hr)) {
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
}
|
||||
|
||||
gSMTC->put_IsEnabled(TRUE);
|
||||
gSMTC->put_IsPlayEnabled(TRUE);
|
||||
gSMTC->put_IsPauseEnabled(TRUE);
|
||||
gSMTC->put_IsStopEnabled(TRUE);
|
||||
gSMTC->put_IsNextEnabled(TRUE);
|
||||
gSMTC->put_IsPreviousEnabled(TRUE);
|
||||
|
||||
auto buttonHandler = Callback<
|
||||
__FITypedEventHandler_2_Windows__CMedia__CSystemMediaTransportControls_Windows__CMedia__CSystemMediaTransportControlsButtonPressedEventArgs>(
|
||||
[](ABI::Windows::Media::ISystemMediaTransportControls*,
|
||||
ABI::Windows::Media::ISystemMediaTransportControlsButtonPressedEventArgs* aArgs) -> HRESULT {
|
||||
if (!aArgs) {
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
SystemMediaTransportControlsButton button;
|
||||
if (FAILED(aArgs->get_Button(&button))) {
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
switch (button) {
|
||||
case SystemMediaTransportControlsButton_Play:
|
||||
NotifySMTCControlCommand(u"play");
|
||||
break;
|
||||
case SystemMediaTransportControlsButton_Pause:
|
||||
NotifySMTCControlCommand(u"pause");
|
||||
break;
|
||||
case SystemMediaTransportControlsButton_Stop:
|
||||
NotifySMTCControlCommand(u"stop");
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return S_OK;
|
||||
});
|
||||
|
||||
if (buttonHandler) {
|
||||
gSMTC->add_ButtonPressed(buttonHandler.Get(), &gSMTCButtonPressedToken);
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
WindowsUIUtils::WindowsUIUtils() :
|
||||
mInTabletMode(eTabletModeUnknown)
|
||||
{
|
||||
|
|
@ -180,3 +357,169 @@ WindowsUIUtils::UpdateTabletModeState()
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
WindowsUIUtils::SetSMTCPlaybackState(bool aPlaying)
|
||||
{
|
||||
#ifndef __MINGW32__
|
||||
if (!IsWin10OrLater()) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsresult rv = EnsureSMTC();
|
||||
if (NS_FAILED(rv)) {
|
||||
return NS_OK;
|
||||
}
|
||||
if (!gSMTC) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
if (aPlaying) {
|
||||
gSMTC->put_IsEnabled(TRUE);
|
||||
gSMTC->put_PlaybackStatus(MediaPlaybackStatus_Playing);
|
||||
} else {
|
||||
gSMTC->put_IsEnabled(TRUE);
|
||||
gSMTC->put_PlaybackStatus(MediaPlaybackStatus_Paused);
|
||||
}
|
||||
#endif
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
WindowsUIUtils::SetSMTCMetadata(const nsAString& aTitle,
|
||||
const nsAString& aArtist,
|
||||
const nsAString& aAlbum)
|
||||
{
|
||||
#ifndef __MINGW32__
|
||||
if (!IsWin10OrLater()) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsresult rv = EnsureSMTC();
|
||||
if (NS_FAILED(rv)) {
|
||||
return NS_OK;
|
||||
}
|
||||
if (!gSMTC) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
ComPtr<ISystemMediaTransportControlsDisplayUpdater> updater;
|
||||
HRESULT hr = gSMTC->get_DisplayUpdater(&updater);
|
||||
if (FAILED(hr) || !updater) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
updater->put_Type(MediaPlaybackType_Music);
|
||||
|
||||
ComPtr<IMusicDisplayProperties> music;
|
||||
hr = updater->get_MusicProperties(&music);
|
||||
if (FAILED(hr) || !music) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsAutoString titleString(aTitle);
|
||||
nsAutoString artistString(aArtist);
|
||||
nsAutoString albumString(aAlbum);
|
||||
|
||||
HString title;
|
||||
HString artist;
|
||||
HString album;
|
||||
title.Set(titleString.get(), static_cast<UINT32>(titleString.Length()));
|
||||
artist.Set(artistString.get(), static_cast<UINT32>(artistString.Length()));
|
||||
album.Set(albumString.get(), static_cast<UINT32>(albumString.Length()));
|
||||
|
||||
music->put_Title(title.Get());
|
||||
music->put_Artist(artist.Get());
|
||||
music->put_AlbumArtist(album.Get());
|
||||
|
||||
updater->Update();
|
||||
#endif
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
WindowsUIUtils::SetSMTCThumbnailURL(const nsAString& aThumbnailURL)
|
||||
{
|
||||
#ifndef __MINGW32__
|
||||
if (!IsWin10OrLater()) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsresult rv = EnsureSMTC();
|
||||
if (NS_FAILED(rv)) {
|
||||
return NS_OK;
|
||||
}
|
||||
if (!gSMTC || aThumbnailURL.IsEmpty()) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
ComPtr<ISystemMediaTransportControlsDisplayUpdater> updater;
|
||||
HRESULT hr = gSMTC->get_DisplayUpdater(&updater);
|
||||
if (FAILED(hr) || !updater) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
ComPtr<IUriRuntimeClassFactory> uriFactory;
|
||||
hr = GetActivationFactory(HStringReference(RuntimeClass_Windows_Foundation_Uri).Get(), &uriFactory);
|
||||
if (FAILED(hr) || !uriFactory) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsAutoString urlString(aThumbnailURL);
|
||||
HString url;
|
||||
url.Set(urlString.get(), static_cast<UINT32>(urlString.Length()));
|
||||
|
||||
ComPtr<IUriRuntimeClass> uri;
|
||||
hr = uriFactory->CreateUri(url.Get(), &uri);
|
||||
if (FAILED(hr) || !uri) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
ComPtr<IRandomAccessStreamReferenceStatics> streamRefStatics;
|
||||
hr = GetActivationFactory(
|
||||
HStringReference(RuntimeClass_Windows_Storage_Streams_RandomAccessStreamReference).Get(),
|
||||
&streamRefStatics);
|
||||
if (FAILED(hr) || !streamRefStatics) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
ComPtr<IRandomAccessStreamReference> thumbnail;
|
||||
hr = streamRefStatics->CreateFromUri(uri.Get(), &thumbnail);
|
||||
if (FAILED(hr) || !thumbnail) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
updater->put_Thumbnail(thumbnail.Get());
|
||||
updater->Update();
|
||||
#endif
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
WindowsUIUtils::ClearSMTCMetadata()
|
||||
{
|
||||
#ifndef __MINGW32__
|
||||
if (!IsWin10OrLater()) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsresult rv = EnsureSMTC();
|
||||
if (NS_FAILED(rv)) {
|
||||
return NS_OK;
|
||||
}
|
||||
if (!gSMTC) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
ComPtr<ISystemMediaTransportControlsDisplayUpdater> updater;
|
||||
HRESULT hr = gSMTC->get_DisplayUpdater(&updater);
|
||||
if (SUCCEEDED(hr) && updater) {
|
||||
updater->ClearAll();
|
||||
updater->Update();
|
||||
}
|
||||
|
||||
gSMTC->put_PlaybackStatus(MediaPlaybackStatus_Stopped);
|
||||
gSMTC->put_IsEnabled(FALSE);
|
||||
#endif
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue