blob: 8f4ebeae40a757d76589edd6b65944f0f12e2c03 [file] [log] [blame]
/*
* Copyright (C) 2017-2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#if ENABLE(MEDIA_STREAM) && PLATFORM(COCOA)
#include "CaptureDevice.h"
#include "RealtimeMediaSource.h"
#include <wtf/Observer.h>
#include <wtf/RefCounted.h>
#include <wtf/RefPtr.h>
#include <wtf/RunLoop.h>
#include <wtf/UniqueRef.h>
#include <wtf/text/WTFString.h>
typedef struct CGImage *CGImageRef;
typedef struct __CVBuffer *CVPixelBufferRef;
typedef struct __IOSurface *IOSurfaceRef;
namespace WTF {
class MediaTime;
}
namespace WebCore {
class CaptureDeviceInfo;
class ImageTransferSessionVT;
class PixelBufferConformerCV;
class CapturerObserver : public CanMakeWeakPtr<CapturerObserver> {
public:
virtual ~CapturerObserver() = default;
virtual void capturerIsRunningChanged(bool) { }
virtual void capturerFailed() { };
};
class DisplayCaptureSourceCocoa final
: public RealtimeMediaSource
, public CapturerObserver {
public:
using DisplayFrameType = std::variant<RefPtr<NativeImage>, RetainPtr<IOSurfaceRef>, RetainPtr<CMSampleBufferRef>>;
class Capturer : public LoggerHelper {
WTF_MAKE_FAST_ALLOCATED;
public:
virtual ~Capturer() = default;
virtual bool start() = 0;
virtual void stop() = 0;
virtual DisplayFrameType generateFrame() = 0;
virtual CaptureDevice::DeviceType deviceType() const = 0;
virtual RealtimeMediaSourceSettings::DisplaySurfaceType surfaceType() const = 0;
virtual void commitConfiguration(const RealtimeMediaSourceSettings&) = 0;
virtual IntSize intrinsicSize() const = 0;
virtual void setLogger(const Logger&, const void*);
const Logger* loggerPtr() const { return m_logger.get(); }
const Logger& logger() const final { ASSERT(m_logger); return *m_logger.get(); }
const void* logIdentifier() const final { return m_logIdentifier; }
WTFLogChannel& logChannel() const final;
void setObserver(CapturerObserver*);
protected:
Capturer() = default;
void isRunningChanged(bool running)
{
if (m_observer)
m_observer->capturerIsRunningChanged(running);
}
void captureFailed()
{
if (m_observer)
m_observer->capturerFailed();
}
private:
WeakPtr<CapturerObserver> m_observer;
RefPtr<const Logger> m_logger;
const void* m_logIdentifier;
};
static CaptureSourceOrError create(const CaptureDevice&, String&&, const MediaConstraints*);
static CaptureSourceOrError create(Expected<UniqueRef<Capturer>, String>&&, const CaptureDevice&, String&&, const MediaConstraints*);
Seconds elapsedTime();
void updateFrameSize();
private:
DisplayCaptureSourceCocoa(UniqueRef<Capturer>&&, String&& name, String&& deviceID, String&& hashSalt);
virtual ~DisplayCaptureSourceCocoa();
// RealtimeMediaSource
void startProducingData() final;
void stopProducingData() final;
void settingsDidChange(OptionSet<RealtimeMediaSourceSettings::Flag>) final;
bool isCaptureSource() const final { return true; }
const RealtimeMediaSourceCapabilities& capabilities() final;
const RealtimeMediaSourceSettings& settings() final;
CaptureDevice::DeviceType deviceType() const { return m_capturer->deviceType(); }
void commitConfiguration() final { m_capturer->commitConfiguration(settings()); }
const char* logClassName() const final { return "DisplayCaptureSourceCocoa"; }
void setLogger(const Logger&, const void*) final;
// CapturerObserver
void capturerIsRunningChanged(bool isRunning) final { notifyMutedChange(!isRunning); }
void capturerFailed() final { captureFailed(); }
void emitFrame();
UniqueRef<Capturer> m_capturer;
std::optional<RealtimeMediaSourceCapabilities> m_capabilities;
std::optional<RealtimeMediaSourceSettings> m_currentSettings;
RealtimeMediaSourceSupportedConstraints m_supportedConstraints;
MonotonicTime m_startTime { MonotonicTime::nan() };
Seconds m_elapsedTime { 0_s };
RunLoop::Timer<DisplayCaptureSourceCocoa> m_timer;
std::unique_ptr<ImageTransferSessionVT> m_imageTransferSession;
};
} // namespace WebCore
#endif // ENABLE(MEDIA_STREAM) && PLATFORM(COCOA)