#import "ITAppleEventCenter.h"
-//oh, wait, i forgot i had this open.
+#import "ITDebug.h"
+
static Boolean MyAEIdleCallback (
EventRecord * theEvent,
SInt32 * sleepTime,
OSErr berr, err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- //NSLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
-//joe add the ITFDEBUG stuff back?
- //[self printCarbonDesc:&sendEvent];
+ [self printCarbonDesc:&sendEvent];
- if (err) {
- //NSLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- //[self printCarbonDesc:&replyEvent];
+ [self printCarbonDesc:&replyEvent];
if (err) {
- //NSLog(@"Send Error: %i",err);
+ ITDebugLog(@"Send Error: %i",err);
} else {
unichar *result = 0;
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
- result = malloc(resultSize);
+ if (resultSize != 0) {
+ result = malloc(resultSize);
+ } else {
+ return nil;
+ }
if (err2) {
- //NSLog(@"Error After AESizeOfParam: %i", err2);
+ ITDebugLog(@"Error After AESizeOfParam: %i", err2);
} else {
err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, result, resultSize, &charResultSize);
if (err3) {
- //NSLog(@"Error After AEGetParamPtr: %i", err3);
+ ITDebugLog(@"Error After AEGetParamPtr: %i", err3);
} else {
_finalString = [NSString stringWithCharacters:result length:charResultSize/sizeof(unichar)];
}
OSErr err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- //NSLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
- NSLog(@"sending...");
if (!berr) [self printCarbonDesc:&sendEvent];
if (berr) {
- //NSLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- NSLog(@"replying...");
if (!err) [self printCarbonDesc:&replyEvent];
if (err) {
- //NSLog(@"Send Error: %i",err);
+ ITDebugLog(@"Send Error: %i",err);
} else {
unichar *result = 0;
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
- result = malloc(resultSize);
+ if (resultSize != 0) {
+ result = malloc(resultSize);
+ } else {
+ return nil;
+ }
if (err2) {
- //NSLog(@"Error After AESizeOfParam: %i", err2);
+ ITDebugLog(@"Error After AESizeOfParam: %i", err2);
} else {
err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, result, resultSize, &charResultSize);
if (err3) {
- //NSLog(@"Error After AEGetParamPtr: %i", err3);
+ ITDebugLog(@"Error After AEGetParamPtr: %i", err3);
} else {
_finalString = [NSString stringWithCharacters:result length:charResultSize/sizeof(unichar)];
}
OSErr berr, err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- //NSLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
- //[self printCarbonDesc:&sendEvent];
+ [self printCarbonDesc:&sendEvent];
- if (err) {
- //NSLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- //[self printCarbonDesc:&replyEvent];
+ [self printCarbonDesc:&replyEvent];
if (err) {
- //NSLog(@"Send Error: %i",err);
+ ITDebugLog(@"Send Error: %i",err);
} else {
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
if (err2) {
- //NSLog(@"Error After AESizeOfParam: %i", err2);
+ ITDebugLog(@"Error After AESizeOfParam: %i", err2);
} else {
err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, &result, resultSize, &charResultSize);
if (err3) {
- //NSLog(@"Error After AEGetParamPtr: %i", err3);
+ ITDebugLog(@"Error After AEGetParamPtr: %i", err3);
}
}
}
- (NSString*)sendTwoTierAEWithRequestedKey:(NSString*)key fromObjectByKey:(NSString*)object eventClass:(NSString*)eventClass eventID:(NSString*)eventID appPSN:(ProcessSerialNumber)psn
{
- //Add error checking...
AEEventClass eClass = *((unsigned long*)[eventClass UTF8String]);
AEEventID eID = *((unsigned long*)[eventID UTF8String]);
int pid;
OSErr err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
- //NSLog(@"_sendString: %s", sendString);
-
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
- //[self printCarbonDesc:&sendEvent];
+ [self printCarbonDesc:&sendEvent];
- if (err) {
- //NSLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- //[self printCarbonDesc:&replyEvent];
+ [self printCarbonDesc:&replyEvent];
if (err) {
- //NSLog(@"Send Error: %i",err);
+ ITDebugLog(@"Send Error: %i",err);
} else {
unichar *result = 0;
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
- result = malloc(resultSize);
-
+ if (resultSize != 0) {
+ result = malloc(resultSize);
+ } else {
+ return nil;
+ }
+
if (err2) {
- //NSLog(@"Error After AESizeOfParam: %i", err2);
+ ITDebugLog(@"Error After AESizeOfParam: %i", err2);
} else {
err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, result, resultSize, &charResultSize);
if (err3) {
- //NSLog(@"Error After AEGetParamPtr: %i", err3);
+ ITDebugLog(@"Error After AEGetParamPtr: %i", err3);
} else {
_finalString = [NSString stringWithCharacters:result length:charResultSize/sizeof(unichar)];
}
- (long)sendTwoTierAEWithRequestedKeyForNumber:(NSString*)key fromObjectByKey:(NSString*)object eventClass:(NSString*)eventClass eventID:(NSString*)eventID appPSN:(ProcessSerialNumber)psn
{
- //Add error checking...
AEEventClass eClass = *((unsigned long*)[eventClass UTF8String]);
AEEventID eID = *((unsigned long*)[eventID UTF8String]);
OSErr err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- // //NSLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
- //[self printCarbonDesc:&sendEvent];
+ [self printCarbonDesc:&sendEvent];
- if (err) {
- //NSLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- //[self printCarbonDesc:&replyEvent];
+ [self printCarbonDesc:&replyEvent];
if (err) {
- //NSLog(@"Send Error: %i",err);
+ ITDebugLog(@"Send Error: %i",err);
} else {
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
if (err2) {
- //NSLog(@"Error After AESizeOfParam: %i", err2);
+ ITDebugLog(@"Error After AESizeOfParam: %i", err2);
} else {
err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, &result, resultSize, &charResultSize);
if (err3) {
- //NSLog(@"Error After AEGetParamPtr: %i", err3);
+ ITDebugLog(@"Error After AEGetParamPtr: %i", err3);
}
}
}
sendString = [buildString UTF8String];
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- //NSLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
- //[self printCarbonDesc:&sendEvent];
+ [self printCarbonDesc:&sendEvent];
- if (err) {
- //NSLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[buildString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[buildString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- //[self printCarbonDesc:&replyEvent];
+ [self printCarbonDesc:&replyEvent];
if (err) {
- //NSLog(@"Send Error: %i",err);
+ ITDebugLog(@"Send Error: %i",err);
} else {
unichar *result = 0;
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
- result=malloc(resultSize);
-
+ if (resultSize != 0) {
+ result = malloc(resultSize);
+ } else {
+ return nil;
+ }
if (err2) {
- //NSLog(@"Error After AESizeOfParam: %i", err2);
+ ITDebugLog(@"Error After AESizeOfParam: %i", err2);
} else {
err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, result, resultSize, &charResultSize);
if (err3) {
- //NSLog(@"Error After AEGetParamPtr: %i", err3);
+ ITDebugLog(@"Error After AEGetParamPtr: %i", err3);
} else {
_finalString = [NSString stringWithCharacters:result length:charResultSize/sizeof(unichar)];
}
- (void)sendAEWithEventClass:(NSString*)eventClass eventID:(NSString*)eventID appPSN:(ProcessSerialNumber)psn
{
- //Add error checking...
AEEventClass eClass = *((unsigned long*)[eventClass UTF8String]);
AEEventID eID = *((unsigned long*)[eventID UTF8String]);
AEDesc dest;
OSStatus cerr,cerr2,err;
//AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, kAnyTransactionID, &event, nil, "");
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return;
}
cerr = AECreateDesc(typeProcessSerialNumber,(ProcessSerialNumber*)&psn,sizeof(ProcessSerialNumber),&dest);
cerr2 = AECreateAppleEvent(eClass,eID,&dest,kAutoGenerateReturnID,kAnyTransactionID,&event);
-//[self printCarbonDesc:&event];
+ [self printCarbonDesc:&event];
err = AESend(&event, &reply, kAENoReply, kAENormalPriority, kAEDefaultTimeout, idleUPP, nil);
-//[self printCarbonDesc:&reply];
+ [self printCarbonDesc:&reply];
if (!cerr2) AEDisposeDesc(&dest);
if (!cerr) AEDisposeDesc(&event);
if (!err) AEDisposeDesc(&reply);
- (void)printCarbonDesc:(AEDesc*)desc {
Handle xx;
AEPrintDescToHandle(desc,&xx);
- NSLog(@"Handle: %s", *xx);
+ ITDebugLog(@"AE Descriptor: %s", *xx);
DisposeHandle(xx);
}
- (AEArrayDataPointer)sendAEWithRequestedKeyForArray:(NSString*)key eventClass:(NSString*)eventClass eventID:(NSString*)eventID appPSN:(ProcessSerialNumber)psn
{
- //Add error checking...
AEEventClass eClass = *((unsigned long*)[eventClass UTF8String]);
AEEventID eID = *((unsigned long*)[eventID UTF8String]);
AEBuildError buildError;
OSStatus err;
- //NSLog(@"_sendString: %s", sendString);
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
err = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
- //[self printCarbonDesc:&sendEvent];
+ [self printCarbonDesc:&sendEvent];
if (err) {
- //NSLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- //[self printCarbonDesc:&replyEvent];
+ [self printCarbonDesc:&replyEvent];
if (err) {
- //NSLog(@"Send Error: %i",err);
+ ITDebugLog(@"Send Error: %i",err);
} else {
SInt32 count, resultCount;
AECountItems(&replyEvent,&count);
- result=malloc(sizeof(AEDesc)*count);
+ if ((sizeof(AEDesc)*count) != 0) {
+ result=malloc(sizeof(AEDesc)*count);
+ } else {
+ return nil;
+ }
AEGetArray(&replyEvent, kAEDescArray, result, sizeof(AEDesc)*count, NULL, NULL, &resultCount);
free(result);
OSErr err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- //NSLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
- //[self printCarbonDesc:&sendEvent];
+ [self printCarbonDesc:&sendEvent];
- if (err) {
- //NSLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[string substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[string substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- //[self printCarbonDesc:&replyEvent];
+ [self printCarbonDesc:&replyEvent];
if (err) {
- //NSLog(@"Send Error: %i",err);
+ ITDebugLog(@"Send Error: %i",err);
} else {
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
if (err2) {
- //NSLog(@"Error After AESizeOfParam: %i", err2);
+ ITDebugLog(@"Error After AESizeOfParam: %i", err2);
} else {
err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, &result, resultSize, &charResultSize);
if (err3) {
- //NSLog(@"Error After AEGetParamPtr: %i", err3);
+ ITDebugLog(@"Error After AEGetParamPtr: %i", err3);
}
}
}
if (!berr) AEDisposeDesc(&sendEvent);
if (!err) AEDisposeDesc(&replyEvent);
-//NSLog(@"waffles say %d",result);
+ITDebugLog(@"waffles say %d",result);
return result;
}
OSStatus berr, err;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- //NSLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- //NSLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
- //[self printCarbonDesc:&sendEvent];
+ [self printCarbonDesc:&sendEvent];
- if (err) {
- //NSLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[string substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[string substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- //[self printCarbonDesc:&replyEvent];
+ [self printCarbonDesc:&replyEvent];
if (err) {
- //NSLog(@"Send Error: %i",err);
+ ITDebugLog(@"Send Error: %i",err);
} else {
- SInt32 count, resultCount;
-
- AECountItems(&replyEvent,&count);
- result=malloc(sizeof(AEDesc)*count);
- AEGetArray(&replyEvent, kAEDescArray, result, sizeof(AEDesc)*count, NULL, NULL, &resultCount);
-
+ SInt32 count, resultCount;
+
+ AECountItems(&replyEvent,&count);
+ if ((sizeof(AEDesc)*count) != 0) {
+ result=malloc(sizeof(AEDesc)*count);
+ } else {
+ return nil;
+ }
+ AEGetArray(&replyEvent, kAEDescArray, result, sizeof(AEDesc)*count, NULL, NULL, &resultCount);
+
free(result);
}