forked from OliverLetterer/CDZQRScanningViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCDZQRScanningViewController.m
More file actions
314 lines (249 loc) · 10.3 KB
/
Copy pathCDZQRScanningViewController.m
File metadata and controls
314 lines (249 loc) · 10.3 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
//
// CDZQRScanningViewController.m
//
// Created by Chris Dzombak on 10/27/13.
// Copyright (c) 2013 Chris Dzombak. All rights reserved.
//
#import "CDZQRScanningViewController.h"
#import <AVFoundation/AVFoundation.h>
static AVCaptureVideoOrientation CDZVideoOrientationFromInterfaceOrientation(UIInterfaceOrientation interfaceOrientation)
{
switch (interfaceOrientation) {
case UIInterfaceOrientationUnknown:
case UIInterfaceOrientationPortrait:
return AVCaptureVideoOrientationPortrait;
break;
case UIInterfaceOrientationLandscapeLeft:
return AVCaptureVideoOrientationLandscapeLeft;
break;
case UIInterfaceOrientationLandscapeRight:
return AVCaptureVideoOrientationLandscapeRight;
break;
case UIInterfaceOrientationPortraitUpsideDown:
return AVCaptureVideoOrientationPortraitUpsideDown;
break;
}
}
static const float CDZQRScanningTorchLevel = 0.25;
static const NSTimeInterval CDZQRScanningTorchActivationDelay = 0.25;
NSString * const CDZQRScanningErrorDomain = @"com.cdzombak.qrscanningviewcontroller";
@interface _CDZQRResult : NSObject <CDZQRResult>
@property (nonatomic, readonly) NSString *capturedString;
@property (nonatomic, copy, readonly) dispatch_block_t resumeHandler;
@property (nonatomic, copy, readonly) dispatch_block_t resetHandler;
- (instancetype)initWithResult:(NSString *)result resumeHandler:(dispatch_block_t)resumeHandler resetHandler:(dispatch_block_t)resetHandler;
@end
@implementation _CDZQRResult
- (instancetype)initWithResult:(NSString *)result resumeHandler:(dispatch_block_t)resumeHandler resetHandler:(dispatch_block_t)resetHandler
{
if (self = [super init]) {
_capturedString = result;
_resumeHandler = resumeHandler;
_resetHandler = resetHandler;
}
return self;
}
- (void)resumeScanning
{
self.resumeHandler();
}
- (void)reset {
self.resetHandler();
}
@end
@interface CDZQRScanningViewController () <AVCaptureMetadataOutputObjectsDelegate>
@property (nonatomic, readonly) NSMutableArray *overallCapturedStrings;
@property (nonatomic, readonly) AVCaptureSession *avSession;
@property (nonatomic, readonly) AVCaptureDevice *captureDevice;
@property (nonatomic, readonly) AVCaptureVideoPreviewLayer *previewLayer;
@end
@implementation CDZQRScanningViewController
+ (AVCaptureDevice *)frontFacingCamera
{
for (AVCaptureDevice *device in [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo]) {
if (device.position == AVCaptureDevicePositionFront) {
return device;
}
}
return [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
}
+ (AVCaptureDevice *)backFacingCamera
{
for (AVCaptureDevice *device in [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo]) {
if (device.position == AVCaptureDevicePositionBack) {
return device;
}
}
return [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
}
- (instancetype)initWithMetadataObjectTypes:(NSArray *)metadataObjectTypes
device:(CDZQRCameraDevice)cameraDevice
completion:(CDZQRCompletionHandler)completionHandler
{
if (self = [super init]) {
self.title = NSLocalizedString(@"Scan QR Code", @"");
_metadataObjectTypes = metadataObjectTypes;
_avSession = [[AVCaptureSession alloc] init];
_completionHandler = completionHandler;
_overallCapturedStrings = [NSMutableArray array];
AVCaptureDevice *captureDevice = nil;
switch (cameraDevice) {
case CDZQRCameraDeviceFrontFacing:
captureDevice = [CDZQRScanningViewController frontFacingCamera];
break;
case CDZQRCameraDeviceBackFacing:
captureDevice = [CDZQRScanningViewController backFacingCamera];
}
_captureDevice = captureDevice;
if ([_captureDevice isLowLightBoostSupported] && [_captureDevice lockForConfiguration:nil]) {
_captureDevice.automaticallyEnablesLowLightBoostWhenAvailable = YES;
[_captureDevice unlockForConfiguration];
}
}
return self;
}
- (instancetype)initWithDevice:(CDZQRCameraDevice)cameraDevice
completion:(CDZQRCompletionHandler)completionHandler
{
return [self initWithMetadataObjectTypes:@[ AVMetadataObjectTypeQRCode ] device:cameraDevice completion:completionHandler];
}
- (instancetype)initWithCompletion:(CDZQRCompletionHandler)completionHandler
{
return [self initWithDevice:CDZQRCameraDeviceBackFacing completion:completionHandler];
}
- (void)dealloc
{
[self.avSession stopRunning];
}
- (void)loadView
{
[super loadView];
_previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:self.avSession];
_previewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
_previewLayer.frame = self.view.bounds;
[self.view.layer addSublayer:_previewLayer];
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.view.backgroundColor = [UIColor blackColor];
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(_cancelTapped:)];
UILongPressGestureRecognizer *torchGestureRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleTorchRecognizerTap:)];
torchGestureRecognizer.minimumPressDuration = CDZQRScanningTorchActivationDelay;
[self.view addGestureRecognizer:torchGestureRecognizer];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{
[self.avSession beginConfiguration];
NSError *error = nil;
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:self.captureDevice error:&error];
if (input && [self.avSession canAddInput:input]) {
[self.avSession addInput:input];
} else {
NSLog(@"QRScanningViewController: Error getting input device: %@", error);
[self.avSession commitConfiguration];
dispatch_async(dispatch_get_main_queue(), ^{
self.completionHandler(nil, error);
});
return;
}
AVCaptureMetadataOutput *output = [[AVCaptureMetadataOutput alloc] init];
[self.avSession addOutput:output];
for (NSString *type in self.metadataObjectTypes) {
if (![output.availableMetadataObjectTypes containsObject:type]) {
[self.avSession commitConfiguration];
dispatch_async(dispatch_get_main_queue(), ^{
NSDictionary *userInfo = @{ NSLocalizedDescriptionKey: [NSString stringWithFormat:@"Unable to scan object of type %@", type] };
NSError *error = [NSError errorWithDomain:CDZQRScanningErrorDomain code:CDZQRScanningViewControllerErrorUnavailableMetadataObjectType userInfo:userInfo];
self.completionHandler(nil, error);
});
return;
}
}
output.metadataObjectTypes = self.metadataObjectTypes;
[output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
[self.avSession commitConfiguration];
dispatch_async(dispatch_get_main_queue(), ^{
[self.view setNeedsLayout];
[self.view layoutIfNeeded];
[self.avSession startRunning];
});
});
}
- (void)viewDidLayoutSubviews
{
[super viewDidLayoutSubviews];
CGRect layerRect = self.view.bounds;
self.previewLayer.bounds = layerRect;
self.previewLayer.position = CGPointMake(CGRectGetMidX(layerRect), CGRectGetMidY(layerRect));
if (self.previewLayer.connection.isVideoOrientationSupported) {
self.previewLayer.connection.videoOrientation = CDZVideoOrientationFromInterfaceOrientation([UIApplication sharedApplication].statusBarOrientation);
}
}
#pragma mark - UI Actions
- (void)_cancelTapped:(UIBarButtonItem *)sender
{
self.completionHandler(nil, nil);
}
#pragma mark - Torch
- (void)handleTorchRecognizerTap:(UIGestureRecognizer *)sender
{
switch(sender.state) {
case UIGestureRecognizerStateBegan:
[self _turnTorchOn];
break;
case UIGestureRecognizerStateChanged:
case UIGestureRecognizerStatePossible:
// no-op
break;
case UIGestureRecognizerStateEnded:
case UIGestureRecognizerStateFailed:
case UIGestureRecognizerStateCancelled:
[self _turnTorchOff];
break;
}
}
- (void)_turnTorchOn
{
if (self.captureDevice.hasTorch && self.captureDevice.torchAvailable && [self.captureDevice isTorchModeSupported:AVCaptureTorchModeOn] && [self.captureDevice lockForConfiguration:nil]) {
[self.captureDevice setTorchModeOnWithLevel:CDZQRScanningTorchLevel error:nil];
[self.captureDevice unlockForConfiguration];
}
}
- (void)_turnTorchOff
{
if (self.captureDevice.hasTorch && [self.captureDevice isTorchModeSupported:AVCaptureTorchModeOff] && [self.captureDevice lockForConfiguration:nil]) {
self.captureDevice.torchMode = AVCaptureTorchModeOff;
[self.captureDevice unlockForConfiguration];
}
}
- (void)resumeScanningQRCode
{
_capturedString = nil;
[self.avSession startRunning];
}
#pragma mark - AVCaptureMetadataOutputObjectsDelegate
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection
{
if (self.capturedString) {
return;
}
NSString *result = nil;
for (AVMetadataMachineReadableCodeObject *metadata in metadataObjects) {
if ([self.metadataObjectTypes containsObject:metadata.type]) {
result = metadata.stringValue;
break;
}
}
if (result && ![self.overallCapturedStrings containsObject:result]) {
_capturedString = result;
[self.overallCapturedStrings addObject:result];
[self.avSession stopRunning];
_CDZQRResult *result = [[_CDZQRResult alloc] initWithResult:_capturedString resumeHandler:^{
_capturedString = nil;
[self.avSession startRunning];
} resetHandler:^{
[self.overallCapturedStrings removeAllObjects];
}];
self.completionHandler(result, nil);
}
}
@end