5 * Created by Alexander Strange on Wed Feb 11 2004.
6 * Copyright (c) 2004 __MyCompanyName__. All rights reserved.
11 #import "ITAppleEventTools.h"
13 NSAppleEventDescriptor *ITSendAEWithString(NSString *sendString, FourCharCode evClass, FourCharCode evID,const ProcessSerialNumber *psn)
15 //Add error checking...
18 const char *usendString = [sendString UTF8String];
20 AppleEvent sendEvent, replyEvent;
21 NSAppleEventDescriptor *send, *recv;
26 AEBuildError buildError;
29 if ((GetProcessPID(psn, &pid) == noErr) && (pid == 0)) {
30 ITDebugLog(@"Error getting PID of application.");
34 berr = AEBuildAppleEvent(evClass, evID, typeProcessSerialNumber,psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, usendString);
35 send = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&sendEvent] autorelease];
36 if (!berr) [send logDesc];
39 ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[sendString substringToIndex:buildError.fErrorPos]);
42 err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, /*kAEDefaultTimeout*/30, NULL, NULL);
44 err = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
45 if (resultSize == 0 || err != 0) {
49 AEGetParamDesc(&replyEvent, keyDirectObject, resultType, &resultDesc);
51 recv = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&resultDesc] autorelease];
52 if (!err) [recv logDesc];
55 ITDebugLog(@"Send Error: %i",err);
60 NSAppleEventDescriptor *ITSendAEWithStringAndObject(NSString *sendString, const AEDesc *object, FourCharCode evClass, FourCharCode evID,const ProcessSerialNumber *psn)
62 //Add error checking...
65 const char *usendString = [sendString UTF8String];
67 AppleEvent sendEvent, replyEvent;
68 NSAppleEventDescriptor *send, *recv;
73 AEBuildError buildError;
76 if ((GetProcessPID(psn, &pid) == noErr) && (pid == 0)) {
77 ITDebugLog(@"Error getting PID of application.");
81 berr = AEBuildAppleEvent(evClass, evID, typeProcessSerialNumber,psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, usendString);
82 send = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&sendEvent] autorelease];
83 if (!berr) [send logDesc];
86 ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[sendString substringToIndex:buildError.fErrorPos]);
88 err = AEPutParamDesc(&sendEvent, keyDirectObject, object);
89 err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, /*kAEDefaultTimeout*/30, NULL, NULL);
91 err = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
92 if (resultSize == 0 || err != 0) {
96 AEGetParamDesc(&replyEvent, keyDirectObject, resultType, &resultDesc);
98 recv = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&resultDesc] autorelease];
99 if (!err) [recv logDesc];
102 ITDebugLog(@"Send Error: %i",err);
107 NSAppleEventDescriptor *ITSendAEWithKey(FourCharCode reqKey, FourCharCode evClass, FourCharCode evID,const ProcessSerialNumber *psn)
109 //Add error checking...
112 unsigned char *chr = (unsigned char *)malloc(4*sizeof(unsigned char));
113 memcpy(chr, &reqKey, 4);
114 NSString *sendString = [NSString stringWithFormat:@"'----':obj { form:'prop', want:type('prop'), seld:type('%s'), from:'null'() }", chr];
116 const char *usendString = [sendString UTF8String];
118 AppleEvent sendEvent, replyEvent;
119 NSAppleEventDescriptor *send, *recv;
124 AEBuildError buildError;
127 if ((GetProcessPID(psn, &pid) == noErr) && (pid == 0)) {
128 ITDebugLog(@"Error getting PID of application.");
132 berr = AEBuildAppleEvent(evClass, evID, typeProcessSerialNumber,psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, usendString);
133 send = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&sendEvent] autorelease];
134 if (!berr) [send logDesc];
137 ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[sendString substringToIndex:buildError.fErrorPos]);
140 err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, /*kAEDefaultTimeout*/30, NULL, NULL);
142 err = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
143 if (resultSize == 0 || err != 0) {
147 AEGetParamDesc(&replyEvent, keyDirectObject, resultType, &resultDesc);
149 recv = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&resultDesc] autorelease];
150 if (!err) [recv logDesc];
153 ITDebugLog(@"Send Error: %i",err);
158 NSAppleEventDescriptor *ITSendAE(FourCharCode eClass, FourCharCode eID,const ProcessSerialNumber *psn)
163 AppleEvent event, reply;
164 OSStatus cerr,cerr2,err;
165 NSAppleEventDescriptor *nsd, *nse, *nsr;
166 if ((GetProcessPID(psn, &pid) == noErr) && (pid == 0)) {
167 ITDebugLog(@"Error getting PID of application.");
170 cerr = AECreateDesc(typeProcessSerialNumber,psn,sizeof(ProcessSerialNumber),&dest);
171 nsd = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&dest] autorelease];
172 cerr2 = AECreateAppleEvent(eClass,eID,&dest,kAutoGenerateReturnID,kAnyTransactionID,&event);
173 nse = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&event] autorelease];
174 if (!cerr2) [nse logDesc];
175 err = AESend(&event, &reply, kAENoReply, kAENormalPriority, /*kAEDefaultTimeout*/30, NULL, NULL);
176 nsr = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&reply] autorelease];
181 @implementation NSAppleEventDescriptor (ITAELogging)
185 AEPrintDescToHandle([self aeDesc],&xx);
186 ITDebugLog(@"AE Descriptor: %s", *xx);