1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/*
* Copyright (C) 2018 Metrological Group B.V.
* Author: Thibault Saunier <tsaunier@igalia.com>
* Author: Alejandro G. Castro <alex@igalia.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* aint with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#if ENABLE(MEDIA_STREAM) && USE(GSTREAMER)
#include "GStreamerCaptureDeviceManager.h"
#include "GStreamerCommon.h"
#include "GStreamerMockDeviceProvider.h"
namespace WebCore {
GST_DEBUG_CATEGORY(webkitGStreamerCaptureDeviceManagerDebugCategory);
#define GST_CAT_DEFAULT webkitGStreamerCaptureDeviceManagerDebugCategory
static gint sortDevices(gconstpointer a, gconstpointer b)
{
GstDevice* adev = GST_DEVICE(a), *bdev = GST_DEVICE(b);
GUniquePtr<GstStructure> aprops(gst_device_get_properties(adev));
GUniquePtr<GstStructure> bprops(gst_device_get_properties(bdev));
gboolean aIsDefault = FALSE, bIsDefault = FALSE;
gst_structure_get_boolean(aprops.get(), "is-default", &aIsDefault);
gst_structure_get_boolean(bprops.get(), "is-default", &bIsDefault);
if (aIsDefault == bIsDefault) {
GUniquePtr<char> aName(gst_device_get_display_name(adev));
GUniquePtr<char> bName(gst_device_get_display_name(bdev));
return g_strcmp0(aName.get(), bName.get());
}
return aIsDefault > bIsDefault ? -1 : 1;
}
GStreamerAudioCaptureDeviceManager& GStreamerAudioCaptureDeviceManager::singleton()
{
static NeverDestroyed<GStreamerAudioCaptureDeviceManager> manager;
return manager;
}
GStreamerVideoCaptureDeviceManager& GStreamerVideoCaptureDeviceManager::singleton()
{
static NeverDestroyed<GStreamerVideoCaptureDeviceManager> manager;
return manager;
}
GStreamerCaptureDeviceManager::GStreamerCaptureDeviceManager()
{
ensureGStreamerInitialized();
static std::once_flag onceFlag;
std::call_once(onceFlag, [] {
GST_DEBUG_CATEGORY_INIT(webkitGStreamerCaptureDeviceManagerDebugCategory, "webkitcapturedevicemanager", 0, "WebKit Capture Device Manager");
gst_device_provider_register(nullptr, "mock-device-provider", GST_RANK_PRIMARY, GST_TYPE_MOCK_DEVICE_PROVIDER);
});
RealtimeMediaSourceCenter::singleton().addDevicesChangedObserver(*this);
}
GStreamerCaptureDeviceManager::~GStreamerCaptureDeviceManager()
{
stopMonitor();
RealtimeMediaSourceCenter::singleton().removeDevicesChangedObserver(*this);
}
void GStreamerCaptureDeviceManager::stopMonitor()
{
if (!m_deviceMonitor)
return;
auto bus = adoptGRef(gst_device_monitor_get_bus(m_deviceMonitor.get()));
gst_bus_remove_watch(bus.get());
gst_device_monitor_stop(m_deviceMonitor.get());
m_deviceMonitor.clear();
}
void GStreamerCaptureDeviceManager::devicesChanged()
{
GST_INFO_OBJECT(m_deviceMonitor.get(), "RealtimeMediaSourceCenter notified devices list update, clearing our internal cache");
stopMonitor();
m_gstreamerDevices.clear();
m_devices.clear();
}
void GStreamerCaptureDeviceManager::deviceWillBeRemoved(const String& persistentId)
{
stopCapturing(persistentId);
}
void GStreamerCaptureDeviceManager::registerCapturer(const RefPtr<GStreamerCapturer>& capturer)
{
m_capturers.append(capturer);
}
void GStreamerCaptureDeviceManager::unregisterCapturer(const GStreamerCapturer& capturer)
{
m_capturers.removeAllMatching([&](auto& item) -> bool {
return item.get() == &capturer;
});
}
void GStreamerCaptureDeviceManager::stopCapturing(const String& persistentId)
{
GST_DEBUG("Stopping capturer for device with persistent ID: %s", persistentId.ascii().data());
m_capturers.removeAllMatching([&persistentId](auto& capturer) -> bool {
GST_DEBUG("Checking capturer with device persistent ID: %s", capturer->devicePersistentId().ascii().data());
if (capturer->devicePersistentId() != persistentId)
return false;
capturer->stopDevice();
return true;
});
}
std::optional<GStreamerCaptureDevice> GStreamerCaptureDeviceManager::gstreamerDeviceWithUID(const String& deviceID)
{
captureDevices();
GST_DEBUG("Looking for device with UID %s", deviceID.ascii().data());
for (auto& device : m_gstreamerDevices) {
GST_LOG("Checking device with persistent ID: %s", device.persistentId().ascii().data());
if (device.persistentId() == deviceID)
return device;
}
GST_WARNING("Device not found");
return std::nullopt;
}
const Vector<CaptureDevice>& GStreamerCaptureDeviceManager::captureDevices()
{
if (m_devices.isEmpty())
refreshCaptureDevices();
return m_devices;
}
void GStreamerCaptureDeviceManager::addDevice(GRefPtr<GstDevice>&& device)
{
GUniquePtr<GstStructure> properties(gst_device_get_properties(device.get()));
const char* klass = gst_structure_get_string(properties.get(), "device.class");
if (klass && !g_strcmp0(klass, "monitor"))
return;
CaptureDevice::DeviceType type = deviceType();
GUniquePtr<char> deviceClassChar(gst_device_get_device_class(device.get()));
auto deviceClass = String::fromLatin1(deviceClassChar.get());
if (type == CaptureDevice::DeviceType::Microphone && !deviceClass.startsWith("Audio"_s))
return;
if (type == CaptureDevice::DeviceType::Camera && !deviceClass.startsWith("Video"_s))
return;
// This isn't really a UID but should be good enough (libwebrtc
// itself does that at least for pulseaudio devices).
GUniquePtr<char> deviceName(gst_device_get_display_name(device.get()));
GST_INFO("Registering device %s", deviceName.get());
gboolean isDefault = FALSE;
gst_structure_get_boolean(properties.get(), "is-default", &isDefault);
auto label = makeString(isDefault ? "default: "_s : ""_s, deviceName.get());
auto identifier = label;
bool isMock = false;
if (const char* persistentId = gst_structure_get_string(properties.get(), "persistent-id")) {
identifier = String::fromLatin1(persistentId);
isMock = true;
}
auto gstCaptureDevice = GStreamerCaptureDevice(WTFMove(device), identifier, type, label);
gstCaptureDevice.setEnabled(true);
gstCaptureDevice.setIsMockDevice(isMock);
m_gstreamerDevices.append(WTFMove(gstCaptureDevice));
m_devices.append(m_gstreamerDevices.last());
}
void GStreamerCaptureDeviceManager::removeDevice(GRefPtr<GstDevice>&& gstDevice)
{
m_gstreamerDevices.removeFirstMatching([&](auto& captureDevice) -> bool {
if (captureDevice.device() != gstDevice.get())
return false;
m_devices.removeFirstMatching([&](auto& device) -> bool {
return device.persistentId() == captureDevice.persistentId();
});
return true;
});
}
void GStreamerCaptureDeviceManager::refreshCaptureDevices()
{
m_devices.clear();
m_gstreamerDevices.clear();
if (!m_deviceMonitor) {
m_deviceMonitor = adoptGRef(gst_device_monitor_new());
switch (deviceType()) {
case CaptureDevice::DeviceType::Camera: {
gst_device_monitor_add_filter(m_deviceMonitor.get(), "Video/Source", nullptr);
break;
}
case CaptureDevice::DeviceType::Microphone: {
auto caps = adoptGRef(gst_caps_new_empty_simple("audio/x-raw"));
gst_device_monitor_add_filter(m_deviceMonitor.get(), "Audio/Source", caps.get());
break;
}
case CaptureDevice::DeviceType::SystemAudio:
case CaptureDevice::DeviceType::Speaker:
// FIXME: Add Audio/Sink filter. See https://bugs.webkit.org/show_bug.cgi?id=216880
case CaptureDevice::DeviceType::Screen:
case CaptureDevice::DeviceType::Window:
break;
case CaptureDevice::DeviceType::Unknown:
return;
}
if (!gst_device_monitor_start(m_deviceMonitor.get())) {
GST_WARNING_OBJECT(m_deviceMonitor.get(), "Could not start device monitor");
m_deviceMonitor = nullptr;
return;
}
}
GList* devices = g_list_sort(gst_device_monitor_get_devices(m_deviceMonitor.get()), sortDevices);
while (devices) {
addDevice(adoptGRef(GST_DEVICE_CAST(devices->data)));
devices = g_list_delete_link(devices, devices);
}
auto bus = adoptGRef(gst_device_monitor_get_bus(m_deviceMonitor.get()));
// Flush out device-added messages queued during initial probe of the device providers.
gst_bus_set_flushing(bus.get(), TRUE);
gst_bus_set_flushing(bus.get(), FALSE);
// Monitor the bus for future device-added and device-removed messages.
gst_bus_add_watch(bus.get(), reinterpret_cast<GstBusFunc>(+[](GstBus*, GstMessage* message, GStreamerCaptureDeviceManager* manager) -> gboolean {
GRefPtr<GstDevice> device;
#ifndef GST_DISABLE_GST_DEBUG
GUniquePtr<char> name;
#endif
switch (GST_MESSAGE_TYPE(message)) {
case GST_MESSAGE_DEVICE_ADDED:
gst_message_parse_device_added(message, &device.outPtr());
#ifndef GST_DISABLE_GST_DEBUG
name.reset(gst_device_get_display_name(device.get()));
GST_INFO("Device added: %s", name.get());
#endif
manager->addDevice(WTFMove(device));
break;
case GST_MESSAGE_DEVICE_REMOVED:
gst_message_parse_device_removed(message, &device.outPtr());
#ifndef GST_DISABLE_GST_DEBUG
name.reset(gst_device_get_display_name(device.get()));
GST_INFO("Device removed: %s", name.get());
#endif
manager->removeDevice(WTFMove(device));
break;
default:
break;
}
return G_SOURCE_CONTINUE;
}), this);
}
#undef GST_CAT_DEFAULT
} // namespace WebCore
#endif // ENABLE(MEDIA_STREAM) && USE(GSTREAMER)
|