react-native-vision-camera/ios/VideoCaptureDelegate.swift

49 lines
1.7 KiB
Swift
Raw Normal View History

2021-02-19 08:28:05 -07:00
//
// VideoCaptureDelegate.swift
// Cuvent
//
// Created by Marc Rousavy on 14.01.21.
// Copyright © 2021 Facebook. All rights reserved.
//
import AVFoundation
// Functions like `startRecording(delegate: ...)` only maintain a weak reference on the delegates to prevent memory leaks.
// In our use case, we exit from the function which will deinit our recording delegate since no other references are being held.
// That's why we're keeping a strong reference to the delegate by appending it to the `delegateReferences` list and removing it
// once the delegate has been triggered once.
private var delegateReferences: [NSObject] = []
2021-03-09 02:53:29 -07:00
// MARK: - RecordingDelegateWithCallback
2021-02-19 08:28:05 -07:00
class RecordingDelegateWithCallback: NSObject, AVCaptureFileOutputRecordingDelegate {
2021-03-09 02:53:29 -07:00
// MARK: Lifecycle
2021-02-19 08:28:05 -07:00
init(callback: @escaping RCTResponseSenderBlock, resetTorchMode: @escaping () -> Void) {
self.callback = callback
self.resetTorchMode = resetTorchMode
super.init()
delegateReferences.append(self)
}
2021-03-09 02:53:29 -07:00
// MARK: Internal
2021-02-19 08:28:05 -07:00
func fileOutput(_ output: AVCaptureFileOutput, didFinishRecordingTo outputFileURL: URL, from _: [AVCaptureConnection], error: Error?) {
defer {
self.resetTorchMode()
delegateReferences.removeAll(where: { $0 == self })
}
if let error = error {
return callback([NSNull(), makeReactError(.capture(.unknown(message: error.localizedDescription)), cause: error as NSError)])
}
let seconds = CMTimeGetSeconds(output.recordedDuration)
return callback([["path": outputFileURL.absoluteString, "duration": seconds, "size": output.recordedFileSize], NSNull()])
}
2021-03-09 02:53:29 -07:00
// MARK: Private
private let callback: RCTResponseSenderBlock // (video?, error?) => void
private let resetTorchMode: () -> Void
2021-02-19 08:28:05 -07:00
}