X-Git-Url: http://git.ithinksw.org/ITFoundation.git/blobdiff_plain/edec93e8881d5d2ee8ddcd0e1894f4538cbee8fd..66f5b6df79892a68b1af28b6a1bfe7cf91f2cb56:/ITAppleEventTools.m diff --git a/ITAppleEventTools.m b/ITAppleEventTools.m index 9eaacb1..e28f222 100755 --- a/ITAppleEventTools.m +++ b/ITAppleEventTools.m @@ -57,6 +57,53 @@ NSAppleEventDescriptor *ITSendAEWithString(NSString *sendString, FourCharCode ev return recv; } +NSAppleEventDescriptor *ITSendAEWithStringAndObject(NSString *sendString, const AEDesc *object, FourCharCode evClass, FourCharCode evID,const ProcessSerialNumber *psn) +{ + //Add error checking... + pid_t pid; + + const char *usendString = [sendString UTF8String]; + + AppleEvent sendEvent, replyEvent; + NSAppleEventDescriptor *send, *recv; + AEDesc resultDesc; + DescType resultType; + Size resultSize; + + AEBuildError buildError; + OSStatus berr,err; + + if ((GetProcessPID(psn, &pid) == noErr) && (pid == 0)) { + ITDebugLog(@"Error getting PID of application."); + return nil; + } + + berr = AEBuildAppleEvent(evClass, evID, typeProcessSerialNumber,psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, usendString); + send = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&sendEvent] autorelease]; + if (!berr) [send logDesc]; + + if (berr) { + ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[sendString substringToIndex:buildError.fErrorPos]); + } + err = AEPutParamDesc(&sendEvent, keyDirectObject, object); + err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, NULL, NULL); + + err = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize); + if (resultSize == 0 || err != 0) { + return nil; + } + + AEGetParamDesc(&replyEvent, keyDirectObject, resultType, &resultDesc); + + recv = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&resultDesc] autorelease]; + if (!err) [recv logDesc]; + + if (err) { + ITDebugLog(@"Send Error: %i",err); + } + return recv; +} + NSAppleEventDescriptor *ITSendAEWithKey(FourCharCode reqKey, FourCharCode evClass, FourCharCode evID,const ProcessSerialNumber *psn) { return nil;