-
Notifications
You must be signed in to change notification settings - Fork 43
/
ECVController.m
executable file
·214 lines (177 loc) · 7.51 KB
/
ECVController.m
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
/* Copyright (c) 2009, Ben Trask
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* 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 BEN TRASK ''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 BEN TRASK 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. */
#import "ECVController.h"
#import <IOKit/usb/IOUSBLib.h>
// Models
#import "ECVCaptureDocument.h"
// Controllers
#import "ECVConfigController.h"
#import "ECVErrorLogController.h"
// Other Sources
#import "ECVAppKitAdditions.h"
#import "ECVDebug.h"
static NSArray *ECVUSBDevices(void) // TODO: Put this somewhere better.
{
NSMutableArray *const devices = [NSMutableArray array];
io_iterator_t iterator = IO_OBJECT_NULL;
if(kIOReturnSuccess != ECVIOReturn(IOServiceGetMatchingServices(kIOMasterPortDefault, IOServiceMatching(kIOUSBDeviceClassName), &iterator))) return devices;
io_service_t service = IO_OBJECT_NULL;
while((service = IOIteratorNext(iterator))) {
NSMutableDictionary *properties = nil;
if(kIOReturnSuccess != ECVIOReturn(IORegistryEntryCreateCFProperties(service, (CFMutableDictionaryRef *)&properties, kCFAllocatorDefault, kNilOptions))) break;
[properties autorelease];
[devices addObject:[NSString stringWithFormat:@"(%04x:%04x) %@ - %@",
[[properties objectForKey:[NSString stringWithUTF8String:kUSBVendorID]] unsignedIntValue],
[[properties objectForKey:[NSString stringWithUTF8String:kUSBProductID]] unsignedIntValue],
[properties objectForKey:[NSString stringWithUTF8String:kUSBVendorString]] ?: @"????",
[properties objectForKey:[NSString stringWithUTF8String:kUSBProductString]] ?: @"????"
]];
IOObjectRelease(service);
}
return devices;
}
static ECVController *ECVSharedController;
@interface ECVController(Private)
- (void)_userActivity;
@end
static void ECVDeviceAdded(Class deviceClass, io_iterator_t iterator)
{
[[deviceClass devicesWithIterator:iterator] makeObjectsPerformSelector:@selector(ECV_display)];
// Don't release the iterator because we want to continue receiving notifications.
}
@implementation ECVController
#pragma mark +ECVController
+ (id)sharedController
{
return ECVSharedController;
}
#pragma mark -ECVController
- (IBAction)configureDevice:(id)sender
{
[[ECVConfigController sharedConfigController] ECV_toggleWindow:sender];
}
- (IBAction)showErrorLog:(id)sender
{
[[ECVErrorLogController sharedErrorLogController] ECV_toggleWindow:sender];
}
#pragma mark -
@synthesize notificationPort = _notificationPort;
- (BOOL)playing
{
return !!_playCount;
}
- (void)setPlaying:(BOOL)flag
{
if(flag) {
if(_playCount < NSUIntegerMax) _playCount++;
if(1 == _playCount) _userActivityTimer = [NSTimer scheduledTimerWithTimeInterval:30.0f target:self selector:@selector(_userActivity) userInfo:nil repeats:YES];
} else {
NSParameterAssert(_playCount);
_playCount--;
if(!_playCount) {
[_userActivityTimer invalidate];
_userActivityTimer = nil;
}
}
}
#pragma mark -
- (void)noteCaptureDocumentStartedPlaying:(ECVCaptureDocument *)document
{
[self setPlaying:YES];
}
- (void)noteCaptureDocumentStoppedPlaying:(ECVCaptureDocument *)document
{
[self setPlaying:NO];
}
#pragma mark -
- (void)workspaceDidWake:(NSNotification *)aNotif
{
for(NSNumber *const notif in _notifications) IOObjectRelease([notif unsignedIntValue]);
[_notifications removeAllObjects];
NSMutableArray *const devices = [NSMutableArray array];
for(Class const class in [ECVCaptureDevice deviceClasses]) {
NSDictionary *const matchingDict = [class matchingDictionary];
io_iterator_t iterator = IO_OBJECT_NULL;
if(kIOReturnSuccess != ECVIOReturn(IOServiceAddMatchingNotification(_notificationPort, kIOFirstMatchNotification, (CFDictionaryRef)[matchingDict retain], (IOServiceMatchingCallback)ECVDeviceAdded, class, &iterator))) continue;
[devices addObjectsFromArray:[class devicesWithIterator:iterator]];
[_notifications addObject:[NSNumber numberWithUnsignedInt:iterator]];
}
ECVLog(ECVNotice, @"USB Devices: %@", ECVUSBDevices());
if([devices count]) return [devices makeObjectsPerformSelector:@selector(ECV_display)];
NSAlert *const alert = [[[NSAlert alloc] init] autorelease];
[alert setMessageText:NSLocalizedString(@"No supported capture hardware was found.", nil)];
[alert setInformativeText:NSLocalizedString(@"Please connect an EasyCap DC60 to your computer. Please note that the DC60+ is not supported.", nil)];
[alert addButtonWithTitle:NSLocalizedString(@"OK", nil)];
[alert addButtonWithTitle:NSLocalizedString(@"Show Error Log", nil)];
if(NSAlertSecondButtonReturn == [alert runModal]) [[ECVErrorLogController sharedErrorLogController] showWindow:nil];
}
#pragma mark -ECVController(Private)
- (void)_userActivity
{
UpdateSystemActivity(UsrActivity);
}
#pragma mark -NSObject
- (id)init
{
if((self = [super init])) {
if(!ECVSharedController) ECVSharedController = [self retain];
_notificationPort = IONotificationPortCreate(kIOMasterPortDefault);
_notifications = [[NSMutableArray alloc] init];
CFRunLoopAddSource(CFRunLoopGetCurrent(), IONotificationPortGetRunLoopSource(_notificationPort), kCFRunLoopDefaultMode);
}
return self;
}
- (void)dealloc
{
CFRunLoopRemoveSource(CFRunLoopGetCurrent(), IONotificationPortGetRunLoopSource(_notificationPort), kCFRunLoopCommonModes);
for(NSNumber *const notif in _notifications) IOObjectRelease([notif unsignedIntValue]);
[_notifications release];
IONotificationPortDestroy(_notificationPort);
[_userActivityTimer invalidate];
[super dealloc];
}
#pragma mark -NSObject(NSNibAwaking)
- (void)awakeFromNib
{
[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(workspaceDidWake:) name:NSWorkspaceDidWakeNotification object:[NSWorkspace sharedWorkspace]];
[self workspaceDidWake:nil];
}
@end
@implementation ECVCaptureDevice(ECVDisplaying)
- (void)ECV_display
{
[self performSelector:@selector(ECV_createDocument) withObject:nil afterDelay:1.0 inModes:[NSArray arrayWithObject:(NSString *)kCFRunLoopCommonModes]]; // This is the easiest and most sensible way to ensure that the device is entirely reset before we start using it. In particular, calling SetConfiguration() causes any audio devices associated with the hardware to be lost, and we don't know if there are any or when they will be found.
}
- (void)ECV_createDocument
{
if(![self isValid]) return;
ECVCaptureDocument *const doc = [[[ECVCaptureDocument alloc] init] autorelease];
[doc setVideoDevice:self];
[[NSDocumentController sharedDocumentController] addDocument:doc];
[doc makeWindowControllers];
[doc showWindows];
}
@end
@implementation NSError(ECVDisplaying)
- (void)ECV_display
{
[[NSAlert alertWithError:self] runModal];
}
@end