-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASCM11AController.m
More file actions
424 lines (314 loc) · 10.3 KB
/
Copy pathASCM11AController.m
File metadata and controls
424 lines (314 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
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
419
420
421
422
423
424
//
// ASCM11AController.m
// Shion Framework
//
// Created by Chris Karr on 1/2/09.
// Copyright 2009 Audacious Software.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
#import "ASCM11AController.h"
#import "ASX10Address.h"
#include <termios.h>
#include <sys/ioctl.h>
#define WAITING 0x00
#define AWAITING_TRANSMISSION 0x01
#define AWAITING_CHECKSUM 0x02
#define AWAITING_ACK 0x03
@implementation ASCM11AController
- (void) processIncomingX10:(NSData *) data
{
unsigned char * bytes = (unsigned char *) [data bytes];
if ((bytes[1] & 0x01) == 0x01 && ((bytes[2] & 0x0f) == 0x0e) || ((bytes[2] & 0x0d) == 0x0d))
{
unsigned char function = bytes[2];
unsigned char bytes[] = {0x01, function};
NSData * x10Data = [NSData dataWithBytes:bytes length:2];
[self processX10Message:x10Data];
}
else if ((bytes[1] & 0x02) == 0x02)
{
currentX10Address = bytes[2];
unsigned char function = bytes[3];
unsigned char bytes[] = {0x01, function};
NSData * x10Data = [NSData dataWithBytes:bytes length:2];
[self processX10Message:x10Data];
}
else
ShionLog (@"Unknown Upload = %@", data);
}
- (void) read:(NSNotification *) theNote
{
NSData * data = [[theNote userInfo] valueForKey:NSFileHandleNotificationDataItem];
ShionLog (@"Read: %@", data);
if ([data length] > 0)
{
unsigned char * bytes = (unsigned char *) [data bytes];
unsigned int length = [data length];
if (state == WAITING)
{
if (length == 1)
{
if (bytes[0] == 0x5a)
{
unsigned char reply[] = {0xc3};
NSData * replyData = [[NSData alloc] initWithBytes:reply length:1];
[self write:replyData];
[replyData release];
state = AWAITING_TRANSMISSION;
[buffer setData:[NSData data]];
}
if (bytes[0] == 0xa5)
{
/* unsigned char reply[] = {0x9b};
NSData * replyData = [[NSData alloc] initWithBytes:reply length:1];
[self write:replyData];
[replyData release];
state = WAITING;
[buffer setData:[NSData data]]; */
NSMutableData * setTime = [NSMutableData data];
time_t t;
time(&t);
struct tm * lt = localtime(&t);
unsigned char b[8];
b[0]= 0x9b;
b[1] = lt->tm_sec;
b[2] = lt->tm_min + 60 * (lt->tm_hour & 1);
b[3] = lt->tm_hour >> 1;
b[4] = lt->tm_yday;
b[5] = 1 << lt->tm_wday;
if(lt->tm_yday & 0x100)
b[5] |= 0x80;
b[6] = 0x60;
b[7] = 0x00;
[setTime appendBytes:b length:8];
[self write:setTime];
return;
}
}
}
else if (state == AWAITING_TRANSMISSION)
{
unsigned char expected = 0;
[buffer appendBytes:bytes length:length];
if ([buffer length] >= 2)
{
unsigned char * bufBytes = (unsigned char *) [buffer bytes];
expected = bufBytes[0] + 1;
}
if (expected > 0 && [buffer length] >= expected)
{
[self processIncomingX10:[buffer subdataWithRange:NSMakeRange(0, expected)]];
// TODO: Do process upload.
// NSData * upload = [buffer subdataWithRange:NSMakeRange(0, expected)];
[buffer replaceBytesInRange:NSMakeRange(0, expected) withBytes:NULL length:0];
if ([buffer length] == 0)
state = WAITING;
}
}
else if (state == AWAITING_CHECKSUM)
{
if (bytes[0] == checksum)
{
unsigned char reply[] = {0x00};
NSData * replyData = [[NSData alloc] initWithBytes:reply length:1];
[self write:replyData];
[replyData release];
state = AWAITING_ACK;
}
else if (bytes[0] == 0x5a)
{
unsigned char reply[] = {0xc3};
NSData * replyData = [[NSData alloc] initWithBytes:reply length:1];
[self write:replyData];
[replyData release];
state = AWAITING_TRANSMISSION;
[buffer setData:[NSData data]];
}
else
{
[commandQueue insertObject:currentCommand atIndex:0];
state = WAITING;
}
}
else if (state == AWAITING_ACK)
{
if (bytes[0] == 0x55)
state = WAITING;
else if (bytes[0] == 0x5a)
{
unsigned char reply[] = {0xc3};
NSData * replyData = [[NSData alloc] initWithBytes:reply length:1];
[self write:replyData];
[replyData release];
state = AWAITING_TRANSMISSION;
[buffer setData:[NSData data]];
}
}
}
[NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.05]];
[handle readInBackgroundAndNotify];
}
- (void) write:(NSData *) data
{
ShionLog (@"Writing: %@", data);
[handle writeData:data];
[handle readInBackgroundAndNotify];
}
- (ASCM11AController *) initWithPath:(NSString *) path
{
if (self = [super init])
{
const char * deviceFilePath = [path cStringUsingEncoding:NSASCIIStringEncoding];
int fd = open (deviceFilePath, O_RDWR | O_NONBLOCK);
if (fd != -1)
{
struct termios options;
tcgetattr(fd, &options);
memset(&options, 0, sizeof(struct termios));
cfmakeraw(&options);
cfsetspeed(&options, 4800);
options.c_cflag = CREAD | CLOCAL | CS8;
tcsetattr(fd, TCSANOW, &options);
int modem = 0;
ioctl(fd, TIOCMGET, &modem);
modem |= TIOCM_DTR;
ioctl(fd, TIOCMSET, &modem);
handle = [[NSFileHandle alloc] initWithFileDescriptor:fd];
[handle readInBackgroundAndNotify];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(read:) name:NSFileHandleReadCompletionNotification object:handle];
wakeup = [[NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(checkQueue:) userInfo:nil repeats:YES] retain];
state = WAITING;
buffer = [[NSMutableData alloc] init];
return self;
}
}
return nil;
}
- (void) close
{
[handle closeFile];
}
- (void) dealloc
{
[handle release];
[wakeup invalidate];
[buffer release];
[super dealloc];
}
+ (ASCM11AController *) controllerWithPath:(NSString *) path
{
ASCM11AController * controller = nil;
controller = [[ASCM11AController alloc] initWithPath:path];
return [controller autorelease];
}
- (void) transmitBytes
{
if (state != WAITING)
return;
if ([commandQueue count] > 0)
{
currentCommand = [[commandQueue objectAtIndex:0] retain];
[commandQueue removeObjectAtIndex:0];
if ([currentCommand isMemberOfClass:[ASAggregateCommand class]])
{
NSArray * commands = [((ASAggregateCommand *) currentCommand) commands];
[commandQueue addObjectsFromArray:commands];
[self transmitBytes];
}
else
{
NSData * commandData = (NSData *) [currentCommand valueForKey:COMMAND_BYTES];
if (commandData != nil)
{
unsigned char * bytes = (unsigned char *) [commandData bytes];
unsigned int length = [commandData length];
if (bytes[0] == 0x04)
currentX10Address = bytes[1];
checksum = 0x00;
int i = 0;
for (i = 0; i < length; i++)
checksum += bytes[i];
checksum = checksum & 0xff;
ShionLog (@"*** CM11A: command to transmit: %@ (checksum: 0x%x)", [self stringForData:commandData], checksum);
[self write:commandData];
state = AWAITING_CHECKSUM;
}
}
}
}
- (ASCommand *) commandForDevice: (ASDevice *)device kind:(unsigned int) commandKind value:(NSObject *) value
{
ASCommand * command = nil;
ASAddress * deviceAddress = [device getAddress];
if ([deviceAddress isMemberOfClass:[ASX10Address class]])
{
command = [super commandForDevice:device kind:commandKind value:value];
unsigned char code = [((ASX10Address *) [device getAddress]) getAddressByte];
currentX10Address = code;
ASAggregateCommand * aggCommand = [[[ASAggregateCommand alloc] init] autorelease];
// Step 1: Address the target device.
ASCommand * unitCodeCommand = [[ASCommand alloc] init];
unsigned char bytes[] = {0x04, code};
NSMutableData * data = [NSMutableData dataWithBytes:bytes length:2];
[unitCodeCommand setValue:data forKey:COMMAND_BYTES];
[aggCommand addCommand:unitCodeCommand];
[unitCodeCommand release];
unsigned char commandByte = [self xtenCommandByteForDevice:device command:command];
// Step 2: Send command.
ASCommand * cmdCommand = [[ASCommand alloc] init];
unsigned char cmdBytes[] = {0x26, ((code & 0xf0) | commandByte)};
data = [NSMutableData dataWithBytes:cmdBytes length:2];
[cmdCommand setValue:data forKey:COMMAND_BYTES];
[aggCommand addCommand:cmdCommand];
[cmdCommand release];
command = aggCommand;
}
return command;
}
- (ASCommand *) commandForDevice:(ASDevice *) device kind:(unsigned int) commandKind
{
ASCommand * command = nil;
ASAddress * deviceAddress = [device getAddress];
if ([deviceAddress isMemberOfClass:[ASX10Address class]])
{
command = [super commandForDevice:device kind:commandKind];
unsigned char code = [((ASX10Address *) [device getAddress]) getAddressByte];
currentX10Address = code;
ASAggregateCommand * aggCommand = [[[ASAggregateCommand alloc] init] autorelease];
// Step 1: Address the target device.
ASCommand * unitCodeCommand = [[ASCommand alloc] init];
unsigned char bytes[] = {0x04, code};
NSMutableData * data = [NSMutableData dataWithBytes:bytes length:2];
[unitCodeCommand setValue:data forKey:COMMAND_BYTES];
[aggCommand addCommand:unitCodeCommand];
[unitCodeCommand release];
unsigned char commandByte = [self xtenCommandByteForDevice:device command:command];
// Step 2: Send command.
ASCommand * cmdCommand = [[ASCommand alloc] init];
unsigned char cmdBytes[] = {0x26, ((code & 0xf0) | commandByte)};
data = [NSMutableData dataWithBytes:cmdBytes length:2];
[cmdCommand setValue:data forKey:COMMAND_BYTES];
[aggCommand addCommand:cmdCommand];
[cmdCommand release];
command = aggCommand;
}
return command;
}
- (void) checkQueue:(NSTimer *) theTimer
{
[self transmitBytes];
}
@end