RSCodeReaderViewController.swift 14 KB
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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
//
//  RSCodeReaderViewController.swift
//  RSBarcodesSample
//
//  Created by R0CKSTAR on 6/12/14.
//  Copyright (c) 2014 P.D.Q. All rights reserved.
//

import AVFoundation
import UIKit

open class RSCodeReaderViewController: UIViewController, AVCaptureMetadataOutputObjectsDelegate {
   @objc open var device = AVCaptureDevice.default(for: AVMediaType.video)
   @objc open var output = AVCaptureMetadataOutput()
   @objc open var session = AVCaptureSession()
   @objc var videoPreviewLayer: AVCaptureVideoPreviewLayer?
	
   @objc open var focusMarkLayer = RSFocusMarkLayer()
   @objc open var cornersLayer = RSCornersLayer()
	
   @objc open var tapHandler: ((CGPoint) -> Void)?
   @objc open var barcodesHandler: (([AVMetadataMachineReadableCodeObject]) -> Void)?
	
   @objc var ticker: Timer?
	
   @objc open var isCrazyMode = false
   @objc var isCrazyModeStarted = false
   @objc var lensPosition: Float = 0
	
   fileprivate enum Platform {
      static let isSimulator: Bool = {
         var isSim = false
         #if arch(i386) || arch(x86_64)
            isSim = true
         #endif
         return isSim
      }()
   }
	
   // MARK: Public methods
	
   @objc open func hasFlash() -> Bool {
      if let device = self.device {
         return device.hasFlash
      }
      return false
   }
	
   @objc open func hasTorch() -> Bool {
      if let device = self.device {
         return device.hasTorch
      }
      return false
   }
	
   @objc open func switchCamera() -> AVCaptureDevice.Position {
      if !Platform.isSimulator {
         self.session.stopRunning()
         let captureDevice = self.captureDevice()
         if let device = captureDevice {
            self.device = device
         }
         self.setupCamera()
         self.view.setNeedsLayout()
         self.session.startRunning()
         if let device = self.device {
            return device.position
         } else {
            return .unspecified
         }
      } else {
         return .unspecified
      }
   }

   @discardableResult
   @objc open func toggleTorch() -> Bool {
      if self.hasTorch() {
         self.session.beginConfiguration()
         if let device = self.device {
            do {
               try device.lockForConfiguration()
            } catch _ {}
				
            if device.torchMode == .off {
               device.torchMode = .on
            } else if device.torchMode == .on {
               device.torchMode = .off
            }
				
            device.unlockForConfiguration()
            self.session.commitConfiguration()
				
            return device.torchMode == .on
         }
      }
      return false
   }
	
   // MARK: Private methods
   
   @objc func captureDevice() -> AVCaptureDevice? {
      if let device = self.device {
         guard device.position == .back || device.position == .front else {
            return nil
         }
         let position = device.position == .back ? AVCaptureDevice.Position.front : AVCaptureDevice.Position.back
         if #available(iOS 10.0, *) {
            let devices = AVCaptureDevice.DiscoverySession(deviceTypes: [AVCaptureDevice.DeviceType.builtInWideAngleCamera], mediaType: AVMediaType.video, position: position).devices
            return devices.first
         } else {
            for device: AVCaptureDevice in AVCaptureDevice.devices(for: AVMediaType.video) {
               if device.position == position {
                  return device
               }
            }
         }
      }
      return nil
   }
	
   @objc func setupCamera() {
      var error: NSError?
      let input: AVCaptureDeviceInput!
      do {
         guard let device = self.device else { return }
         input = try AVCaptureDeviceInput(device: device)
      } catch let error1 as NSError {
         error = error1
         input = nil
      }
      if let error = error {
         print(error.description)
         return
      }
		
      if let device = self.device {
         do {
            try device.lockForConfiguration()
            if device.isFocusModeSupported(.continuousAutoFocus) {
               device.focusMode = .continuousAutoFocus
            }
            if device.isAutoFocusRangeRestrictionSupported {
               device.autoFocusRangeRestriction = .near
            }
            device.unlockForConfiguration()
         } catch _ {}
      }
		
      // Remove previous added inputs from session
      for input in self.session.inputs {
         self.session.removeInput(input)
      }
      if self.session.canAddInput(input) {
         self.session.addInput(input)
      }
		
      if let videoPreviewLayer = self.videoPreviewLayer {
         videoPreviewLayer.removeFromSuperlayer()
      }
      self.videoPreviewLayer = AVCaptureVideoPreviewLayer(session: self.session)
      if let videoPreviewLayer = self.videoPreviewLayer {
         videoPreviewLayer.videoGravity = AVLayerVideoGravity.resizeAspectFill
         videoPreviewLayer.frame = self.view.bounds
         self.view.layer.insertSublayer(videoPreviewLayer, at: 0)
      }
		
      if self.output.metadataObjectsDelegate == nil
         || self.output.metadataObjectsCallbackQueue == nil
      {
         let queue = DispatchQueue(label: "com.pdq.rsbarcodes.metadata", attributes: DispatchQueue.Attributes.concurrent)
         self.output.setMetadataObjectsDelegate(self, queue: queue)
      }
      // Remove previous added outputs from session
      var metadataObjectTypes: [AVMetadataObject.ObjectType]?
      for output in self.session.outputs {
         if let output = output as? AVCaptureMetadataOutput {
            metadataObjectTypes = output.metadataObjectTypes
         }
         self.session.removeOutput(output)
      }
      if self.session.canAddOutput(self.output) {
         self.session.addOutput(self.output)
         if let metadataObjectTypes = metadataObjectTypes {
            self.output.metadataObjectTypes = metadataObjectTypes
         } else {
            self.output.metadataObjectTypes = self.output.availableMetadataObjectTypes
         }
      }
		
      self.reloadVideoOrientation()
   }
	
   @objc class func interfaceOrientationToVideoOrientation(_ orientation: UIInterfaceOrientation) -> AVCaptureVideoOrientation {
      switch orientation {
      case .unknown:
         fallthrough
      case .portrait:
         return AVCaptureVideoOrientation.portrait
      case .portraitUpsideDown:
         return AVCaptureVideoOrientation.portraitUpsideDown
      case .landscapeLeft:
         return AVCaptureVideoOrientation.landscapeLeft
      case .landscapeRight:
         return AVCaptureVideoOrientation.landscapeRight
      @unknown default:
         return AVCaptureVideoOrientation.portrait
      }
   }
	
   @objc func reloadVideoOrientation() {
      guard let videoPreviewLayer = self.videoPreviewLayer else {
         return
      }
      guard (videoPreviewLayer.connection?.isVideoOrientationSupported)! else {
         print("isVideoOrientationSupported is false")
         return
      }
		
      let statusBarOrientation = UIApplication.shared.statusBarOrientation
      let videoOrientation = RSCodeReaderViewController.interfaceOrientationToVideoOrientation(statusBarOrientation)
		
      if videoPreviewLayer.connection?.videoOrientation == videoOrientation {
         print("no change to videoOrientation")
         return
      }
		
      videoPreviewLayer.connection?.videoOrientation = videoOrientation
      videoPreviewLayer.removeAllAnimations()
   }
	
   @objc func autoUpdateLensPosition() {
      self.lensPosition += 0.01
      if self.lensPosition > 1 {
         self.lensPosition = 0
      }
      if let device = self.device {
         do {
            try device.lockForConfiguration()
            device.setFocusModeLocked(lensPosition: self.lensPosition, completionHandler: nil)
            device.unlockForConfiguration()
         } catch _ {}
      }
      if self.session.isRunning {
         let when = DispatchTime.now() + Double(Int64(10 * Double(USEC_PER_SEC))) / Double(NSEC_PER_SEC)
         DispatchQueue.main.asyncAfter(deadline: when) {
            self.autoUpdateLensPosition()
         }
      }
   }
	
   @objc func onTick() {
      if let ticker = self.ticker {
         ticker.invalidate()
      }
      self.cornersLayer.cornersArray = []
   }
	
   @objc func onTap(_ gesture: UITapGestureRecognizer) {
      let tapPoint = gesture.location(in: self.view)
      let focusPoint = CGPoint(
         x: tapPoint.x / self.view.bounds.size.width,
         y: tapPoint.y / self.view.bounds.size.height)
		
      if let device = self.device {
         do {
            try device.lockForConfiguration()
            if device.isFocusPointOfInterestSupported {
               device.focusPointOfInterest = focusPoint
            } else {
               print("Focus point of interest not supported.")
            }
            if self.isCrazyMode {
               if device.isFocusModeSupported(.locked) {
                  device.focusMode = .locked
               } else {
                  print("Locked focus not supported.")
               }
               if !self.isCrazyModeStarted {
                  self.isCrazyModeStarted = true
                  DispatchQueue.main.async { () -> Void in
                     self.autoUpdateLensPosition()
                  }
               }
            } else {
               if device.isFocusModeSupported(.continuousAutoFocus) {
                  device.focusMode = .continuousAutoFocus
               } else if device.isFocusModeSupported(.autoFocus) {
                  device.focusMode = .autoFocus
               } else {
                  print("Auto focus not supported.")
               }
            }
            if device.isAutoFocusRangeRestrictionSupported {
               device.autoFocusRangeRestriction = .none
            } else {
               print("Auto focus range restriction not supported.")
            }
            device.unlockForConfiguration()
            self.focusMarkLayer.point = tapPoint
         } catch _ {}
      }
		
      if let tapHandler = self.tapHandler {
         tapHandler(tapPoint)
      }
   }
	
   @objc func onApplicationWillEnterForeground() {
      if !Platform.isSimulator {
         self.session.startRunning()
      }
   }
	
   @objc func onApplicationDidEnterBackground() {
      if !Platform.isSimulator {
         self.session.stopRunning()
      }
   }
	
   // MARK: Deinitialization
	
   deinit {
      print("RSCodeReaderViewController deinit")
   }
	
   // MARK: View lifecycle
	
   override open func viewDidLayoutSubviews() {
      super.viewDidLayoutSubviews()
      let frame = self.view.bounds
      self.videoPreviewLayer?.frame = frame
      self.focusMarkLayer.frame = frame
      self.cornersLayer.frame = frame
   }
	
   override open func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
      super.viewWillTransition(to: size, with: coordinator)
      coordinator.animate(alongsideTransition: nil, completion: { [weak self] _ in
         DispatchQueue.main.async {
            self?.reloadVideoOrientation()
         }
      })
   }
	
   override open func viewDidLoad() {
      super.viewDidLoad()
		
      self.view.backgroundColor = UIColor.clear
		
      self.setupCamera()
		
      let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(RSCodeReaderViewController.onTap(_:)))
      self.view.addGestureRecognizer(tapGestureRecognizer)
		
      self.focusMarkLayer.frame = self.view.bounds
      self.view.layer.insertSublayer(self.focusMarkLayer, above: self.videoPreviewLayer)
		
      self.cornersLayer.frame = self.view.bounds
      self.view.layer.insertSublayer(self.cornersLayer, above: self.videoPreviewLayer)
   }
	
   override open func viewWillAppear(_ animated: Bool) {
      super.viewWillAppear(animated)
		
      NotificationCenter.default.addObserver(self, selector: #selector(RSCodeReaderViewController.onApplicationWillEnterForeground), name: UIApplication.willEnterForegroundNotification, object: nil)
      NotificationCenter.default.addObserver(self, selector: #selector(RSCodeReaderViewController.onApplicationDidEnterBackground), name: UIApplication.didEnterBackgroundNotification, object: nil)
		
      if !Platform.isSimulator {
         self.session.startRunning()
      }
   }
	
   override open func viewDidDisappear(_ animated: Bool) {
      super.viewDidDisappear(animated)

      NotificationCenter.default.removeObserver(self, name: UIApplication.willEnterForegroundNotification, object: nil)
      NotificationCenter.default.removeObserver(self, name: UIApplication.didEnterBackgroundNotification, object: nil)
      if !Platform.isSimulator {
         self.session.stopRunning()
      }
   }
	
   // MARK: AVCaptureMetadataOutputObjectsDelegate

   public func metadataOutput(_ output: AVCaptureMetadataOutput, didOutput metadataObjects: [AVMetadataObject], from connection: AVCaptureConnection) {
      var barcodeObjects: [AVMetadataMachineReadableCodeObject] = []
      var cornersArray: [[Any]] = []
      for metadataObject in metadataObjects {
         if let videoPreviewLayer = self.videoPreviewLayer {
            if let transformedMetadataObject = videoPreviewLayer.transformedMetadataObject(for: metadataObject) {
               if transformedMetadataObject.isKind(of: AVMetadataMachineReadableCodeObject.self) {
                  let barcodeObject = transformedMetadataObject as! AVMetadataMachineReadableCodeObject
                  barcodeObjects.append(barcodeObject)
                  #if !targetEnvironment(simulator)
                     cornersArray.append(barcodeObject.corners)
                  #endif
               }
            }
         }
      }
		
      self.cornersLayer.cornersArray = cornersArray
		
      if barcodeObjects.count > 0 {
         if let barcodesHandler = self.barcodesHandler {
            barcodesHandler(barcodeObjects)
         }
      }
		
      DispatchQueue.main.async { () -> Void in
         if let ticker = self.ticker {
            ticker.invalidate()
         }
         self.ticker = Timer.scheduledTimer(timeInterval: 0.4, target: self, selector: #selector(RSCodeReaderViewController.onTick), userInfo: nil, repeats: true)
      }
   }
}