2021-03-26 09:20:57 -06:00
|
|
|
//
|
|
|
|
// CameraView+AVCaptureSession.swift
|
|
|
|
// VisionCamera
|
|
|
|
//
|
|
|
|
// Created by Marc Rousavy on 26.03.21.
|
|
|
|
// Copyright © 2021 Facebook. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import AVFoundation
|
2021-03-26 09:28:08 -06:00
|
|
|
import Foundation
|
2021-03-26 09:20:57 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
Extension for CameraView that sets up the AVCaptureSession, Device and Format.
|
|
|
|
*/
|
|
|
|
extension CameraView {
|
|
|
|
/**
|
|
|
|
Configures the Capture Session.
|
|
|
|
*/
|
2021-03-26 09:28:08 -06:00
|
|
|
final func configureCaptureSession() {
|
2021-03-26 09:20:57 -06:00
|
|
|
ReactLogger.logJS(level: .info, message: "Configuring Session...")
|
|
|
|
isReady = false
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
#if targetEnvironment(simulator)
|
2021-03-26 09:28:08 -06:00
|
|
|
return invokeOnError(.device(.notAvailableOnSimulator))
|
2021-03-26 09:20:57 -06:00
|
|
|
#endif
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
guard cameraId != nil else {
|
|
|
|
return invokeOnError(.device(.noDevice))
|
|
|
|
}
|
|
|
|
let cameraId = self.cameraId! as String
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
ReactLogger.log(level: .info, message: "Initializing Camera with device \(cameraId)...")
|
|
|
|
captureSession.beginConfiguration()
|
|
|
|
defer {
|
|
|
|
captureSession.commitConfiguration()
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
if let preset = self.preset {
|
|
|
|
var sessionPreset: AVCaptureSession.Preset?
|
|
|
|
do {
|
|
|
|
sessionPreset = try AVCaptureSession.Preset(withString: preset)
|
|
|
|
} catch let EnumParserError.unsupportedOS(supportedOnOS: os) {
|
|
|
|
return invokeOnError(.parameter(.unsupportedOS(unionName: "Preset", receivedValue: preset, supportedOnOs: os)))
|
|
|
|
} catch {
|
|
|
|
return invokeOnError(.parameter(.invalid(unionName: "Preset", receivedValue: preset)))
|
|
|
|
}
|
|
|
|
if sessionPreset != nil {
|
|
|
|
if captureSession.canSetSessionPreset(sessionPreset!) {
|
|
|
|
captureSession.sessionPreset = sessionPreset!
|
|
|
|
} else {
|
|
|
|
// non-fatal error, so continue with configuration
|
|
|
|
invokeOnError(.format(.invalidPreset(preset: preset)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
// INPUTS
|
|
|
|
// Video Input
|
|
|
|
do {
|
|
|
|
if let videoDeviceInput = self.videoDeviceInput {
|
|
|
|
captureSession.removeInput(videoDeviceInput)
|
|
|
|
}
|
|
|
|
guard let videoDevice = AVCaptureDevice(uniqueID: cameraId) else {
|
|
|
|
return invokeOnError(.device(.invalid))
|
|
|
|
}
|
|
|
|
zoom = NSNumber(value: Double(videoDevice.neutralZoomPercent))
|
|
|
|
videoDeviceInput = try AVCaptureDeviceInput(device: videoDevice)
|
|
|
|
guard captureSession.canAddInput(videoDeviceInput!) else {
|
|
|
|
return invokeOnError(.parameter(.unsupportedInput(inputDescriptor: "video-input")))
|
|
|
|
}
|
|
|
|
captureSession.addInput(videoDeviceInput!)
|
|
|
|
} catch {
|
|
|
|
return invokeOnError(.device(.invalid))
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
// OUTPUTS
|
|
|
|
if let photoOutput = self.photoOutput {
|
|
|
|
captureSession.removeOutput(photoOutput)
|
|
|
|
}
|
|
|
|
// Photo Output
|
|
|
|
photoOutput = AVCapturePhotoOutput()
|
|
|
|
photoOutput!.isDepthDataDeliveryEnabled = photoOutput!.isDepthDataDeliverySupported && enableDepthData
|
|
|
|
if let enableHighResolutionCapture = self.enableHighResolutionCapture?.boolValue {
|
|
|
|
photoOutput!.isHighResolutionCaptureEnabled = enableHighResolutionCapture
|
|
|
|
}
|
|
|
|
if #available(iOS 12.0, *) {
|
|
|
|
photoOutput!.isPortraitEffectsMatteDeliveryEnabled = photoOutput!.isPortraitEffectsMatteDeliverySupported && self.enablePortraitEffectsMatteDelivery
|
|
|
|
}
|
|
|
|
guard captureSession.canAddOutput(photoOutput!) else {
|
|
|
|
return invokeOnError(.parameter(.unsupportedOutput(outputDescriptor: "photo-output")))
|
|
|
|
}
|
|
|
|
captureSession.addOutput(photoOutput!)
|
|
|
|
if videoDeviceInput!.device.position == .front {
|
|
|
|
photoOutput!.mirror()
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
// Video Output
|
|
|
|
if let movieOutput = self.movieOutput {
|
|
|
|
captureSession.removeOutput(movieOutput)
|
|
|
|
}
|
|
|
|
movieOutput = AVCaptureMovieFileOutput()
|
|
|
|
guard captureSession.canAddOutput(movieOutput!) else {
|
|
|
|
return invokeOnError(.parameter(.unsupportedOutput(outputDescriptor: "movie-output")))
|
|
|
|
}
|
|
|
|
captureSession.addOutput(movieOutput!)
|
|
|
|
if videoDeviceInput!.device.position == .front {
|
|
|
|
movieOutput!.mirror()
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
// Barcode Scanning
|
|
|
|
if let metadataOutput = self.metadataOutput {
|
|
|
|
captureSession.removeOutput(metadataOutput)
|
|
|
|
}
|
|
|
|
if let scannableCodes = self.scannableCodes {
|
|
|
|
// scannableCodes prop is not nil, so enable barcode scanning.
|
|
|
|
guard onCodeScanned != nil else {
|
|
|
|
return invokeOnError(.parameter(.invalidCombination(provided: "scannableCodes", missing: "onCodeScanned")))
|
|
|
|
}
|
|
|
|
metadataOutput = AVCaptureMetadataOutput()
|
|
|
|
guard captureSession.canAddOutput(metadataOutput!) else {
|
|
|
|
return invokeOnError(.parameter(.unsupportedOutput(outputDescriptor: "metadata-output")))
|
|
|
|
}
|
|
|
|
captureSession.addOutput(metadataOutput!)
|
|
|
|
metadataOutput!.setMetadataObjectsDelegate(self, queue: queue)
|
|
|
|
var objectTypes: [AVMetadataObject.ObjectType] = []
|
|
|
|
scannableCodes.forEach { code in
|
|
|
|
do {
|
|
|
|
objectTypes.append(try AVMetadataObject.ObjectType(withString: code))
|
|
|
|
} catch let EnumParserError.unsupportedOS(supportedOnOS: os) {
|
|
|
|
invokeOnError(.parameter(.unsupportedOS(unionName: "CodeType", receivedValue: code, supportedOnOs: os)))
|
|
|
|
} catch {
|
|
|
|
invokeOnError(.parameter(.invalid(unionName: "CodeType", receivedValue: code)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
metadataOutput!.metadataObjectTypes = objectTypes
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
invokeOnInitialized()
|
|
|
|
isReady = true
|
|
|
|
ReactLogger.logJS(level: .info, message: "Session successfully configured!")
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
/**
|
|
|
|
Configures the Video Device with the given FPS, HDR and ColorSpace.
|
|
|
|
*/
|
2021-03-26 09:28:08 -06:00
|
|
|
final func configureDevice() {
|
2021-03-26 09:20:57 -06:00
|
|
|
ReactLogger.logJS(level: .info, message: "Configuring Device...")
|
|
|
|
guard let device = videoDeviceInput?.device else {
|
|
|
|
return invokeOnError(.session(.cameraNotReady))
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
do {
|
|
|
|
try device.lockForConfiguration()
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
if let fps = self.fps?.int32Value {
|
|
|
|
let duration = CMTimeMake(value: 1, timescale: fps)
|
|
|
|
device.activeVideoMinFrameDuration = duration
|
|
|
|
device.activeVideoMaxFrameDuration = duration
|
|
|
|
} else {
|
|
|
|
device.activeVideoMinFrameDuration = CMTime.invalid
|
|
|
|
device.activeVideoMaxFrameDuration = CMTime.invalid
|
|
|
|
}
|
|
|
|
if hdr != nil {
|
|
|
|
if hdr == true && !device.activeFormat.isVideoHDRSupported {
|
|
|
|
return invokeOnError(.format(.invalidHdr))
|
|
|
|
}
|
|
|
|
if !device.automaticallyAdjustsVideoHDREnabled {
|
|
|
|
if device.isVideoHDREnabled != hdr!.boolValue {
|
|
|
|
device.isVideoHDREnabled = hdr!.boolValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if lowLightBoost != nil {
|
|
|
|
if lowLightBoost == true && !device.isLowLightBoostSupported {
|
|
|
|
return invokeOnError(.device(.lowLightBoostNotSupported))
|
|
|
|
}
|
|
|
|
if device.automaticallyEnablesLowLightBoostWhenAvailable != lowLightBoost!.boolValue {
|
|
|
|
device.automaticallyEnablesLowLightBoostWhenAvailable = lowLightBoost!.boolValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if colorSpace != nil, let avColorSpace = try? AVCaptureColorSpace(string: String(colorSpace!)) {
|
|
|
|
device.activeColorSpace = avColorSpace
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
2021-03-26 09:20:57 -06:00
|
|
|
device.unlockForConfiguration()
|
|
|
|
ReactLogger.logJS(level: .info, message: "Device successfully configured!")
|
|
|
|
} catch let error as NSError {
|
|
|
|
return invokeOnError(.device(.configureError), cause: error)
|
|
|
|
}
|
|
|
|
}
|
2021-03-26 09:28:08 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
Configures the Video Device to find the best matching Format.
|
|
|
|
*/
|
|
|
|
final func configureFormat() {
|
|
|
|
ReactLogger.logJS(level: .info, message: "Configuring Format...")
|
|
|
|
guard let filter = self.format else {
|
|
|
|
// Format Filter was null. Ignore it.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
guard let device = videoDeviceInput?.device else {
|
|
|
|
return invokeOnError(.session(.cameraNotReady))
|
|
|
|
}
|
|
|
|
|
|
|
|
if device.activeFormat.matchesFilter(filter) {
|
|
|
|
ReactLogger.log(level: .info, message: "Active format already matches filter.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// get matching format
|
|
|
|
let matchingFormats = device.formats.filter { $0.matchesFilter(filter) }.sorted { $0.isBetterThan($1) }
|
|
|
|
guard let format = matchingFormats.first else {
|
|
|
|
return invokeOnError(.format(.invalidFormat))
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
try device.lockForConfiguration()
|
|
|
|
device.activeFormat = format
|
|
|
|
device.unlockForConfiguration()
|
|
|
|
ReactLogger.logJS(level: .info, message: "Format successfully configured!")
|
|
|
|
} catch let error as NSError {
|
|
|
|
return invokeOnError(.device(.configureError), cause: error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc
|
|
|
|
func sessionRuntimeError(notification: Notification) {
|
|
|
|
ReactLogger.log(level: .error, message: "Unexpected Camera Runtime Error occured!")
|
|
|
|
guard let error = notification.userInfo?[AVCaptureSessionErrorKey] as? AVError else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
invokeOnError(.unknown(message: error._nsError.description), cause: error._nsError)
|
|
|
|
|
|
|
|
if isActive {
|
|
|
|
// restart capture session after an error occured
|
|
|
|
queue.async {
|
|
|
|
self.captureSession.startRunning()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-26 09:20:57 -06:00
|
|
|
}
|