X-Git-Url: http://git.ithinksw.org/ITFoundation.git/blobdiff_plain/e49df79ca1b49ae546b2f8ad7744689979e5f6b7..2f7f84d62451875f15d4ae8242b58689eb2bd44c:/ITAppleEventCenter.m diff --git a/ITAppleEventCenter.m b/ITAppleEventCenter.m index 1fedec5..535154b 100755 --- a/ITAppleEventCenter.m +++ b/ITAppleEventCenter.m @@ -62,7 +62,7 @@ static ITAppleEventCenter *_sharedAECenter = nil; OSErr err2, err3; /* if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) { - NSLog(@"Error getting PID of application! Exiting."); + //NSLog(@"Error getting PID of application! Exiting."); return nil; } */ @@ -70,18 +70,18 @@ static ITAppleEventCenter *_sharedAECenter = 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]); + //NSLog(@"%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); + //NSLog(@"Send Error: %i",err); } else { unichar *result = 0; @@ -89,12 +89,12 @@ static ITAppleEventCenter *_sharedAECenter = nil; result = malloc(resultSize); if (err2) { - NSLog(@"Error After AESizeOfParam: %i", err2); + //NSLog(@"Error After AESizeOfParam: %i", err2); } else { err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, result, resultSize, &charResultSize); if (err3) { - NSLog(@"Error After AEGetParamPtr: %i", err3); + //NSLog(@"Error After AEGetParamPtr: %i", err3); } else { _finalString = [NSString stringWithCharacters:result length:charResultSize/sizeof(unichar)]; } @@ -127,7 +127,7 @@ static ITAppleEventCenter *_sharedAECenter = nil; OSErr err2, err3; /* if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) { - NSLog(@"Error getting PID of application! Exiting."); + //NSLog(@"Error getting PID of application! Exiting."); return nil; } */ @@ -135,18 +135,18 @@ static ITAppleEventCenter *_sharedAECenter = 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]); + //NSLog(@"%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); + //NSLog(@"Send Error: %i",err); } else { unichar *result = 0; @@ -154,12 +154,12 @@ static ITAppleEventCenter *_sharedAECenter = nil; result = malloc(resultSize); if (err2) { - NSLog(@"Error After AESizeOfParam: %i", err2); + //NSLog(@"Error After AESizeOfParam: %i", err2); } else { err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, result, resultSize, &charResultSize); if (err3) { - NSLog(@"Error After AEGetParamPtr: %i", err3); + //NSLog(@"Error After AEGetParamPtr: %i", err3); } else { _finalString = [NSString stringWithCharacters:result length:charResultSize/sizeof(unichar)]; } @@ -193,7 +193,7 @@ static ITAppleEventCenter *_sharedAECenter = nil; OSErr err2, err3; /* if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) { - NSLog(@"Error getting PID of application! Exiting."); + //NSLog(@"Error getting PID of application! Exiting."); return nil; } */ @@ -201,28 +201,28 @@ static ITAppleEventCenter *_sharedAECenter = 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]); + //NSLog(@"%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); + //NSLog(@"Send Error: %i",err); } else { err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize); if (err2) { - NSLog(@"Error After AESizeOfParam: %i", err2); + //NSLog(@"Error After AESizeOfParam: %i", err2); } else { err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, &result, resultSize, &charResultSize); if (err3) { - NSLog(@"Error After AEGetParamPtr: %i", err3); + //NSLog(@"Error After AEGetParamPtr: %i", err3); } } } @@ -253,7 +253,7 @@ static ITAppleEventCenter *_sharedAECenter = nil; OSErr err2, err3; /* if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) { - NSLog(@"Error getting PID of application! Exiting."); + //NSLog(@"Error getting PID of application! Exiting."); return nil; }*/ @@ -261,18 +261,18 @@ static ITAppleEventCenter *_sharedAECenter = 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]); + //NSLog(@"%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); + //NSLog(@"Send Error: %i",err); } else { unichar *result = 0; @@ -280,12 +280,12 @@ static ITAppleEventCenter *_sharedAECenter = nil; result = malloc(resultSize); if (err2) { - NSLog(@"Error After AESizeOfParam: %i", err2); + //NSLog(@"Error After AESizeOfParam: %i", err2); } else { err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, result, resultSize, &charResultSize); if (err3) { - NSLog(@"Error After AEGetParamPtr: %i", err3); + //NSLog(@"Error After AEGetParamPtr: %i", err3); } else { _finalString = [NSString stringWithCharacters:result length:charResultSize/sizeof(unichar)]; } @@ -319,36 +319,36 @@ static ITAppleEventCenter *_sharedAECenter = nil; OSErr err2, err3; /* if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) { - NSLog(@"Error getting PID of application! Exiting."); + //NSLog(@"Error getting PID of application! Exiting."); return nil; } */ - // NSLog(@"_sendString: %s", sendString); + // //NSLog(@"_sendString: %s", sendString); 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]); + //NSLog(@"%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); + //NSLog(@"Send Error: %i",err); } else { err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize); if (err2) { - NSLog(@"Error After AESizeOfParam: %i", err2); + //NSLog(@"Error After AESizeOfParam: %i", err2); } else { err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, &result, resultSize, &charResultSize); if (err3) { - NSLog(@"Error After AEGetParamPtr: %i", err3); + //NSLog(@"Error After AEGetParamPtr: %i", err3); } } } @@ -387,7 +387,7 @@ static ITAppleEventCenter *_sharedAECenter = nil; sendString = [buildString UTF8String]; /* if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) { - NSLog(@"Error getting PID of application! Exiting."); + //NSLog(@"Error getting PID of application! Exiting."); return nil; } */ @@ -395,18 +395,18 @@ static ITAppleEventCenter *_sharedAECenter = 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,[buildString substringToIndex:buildError.fErrorPos]); + //NSLog(@"%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); + //NSLog(@"Send Error: %i",err); } else { unichar *result = 0; @@ -414,11 +414,11 @@ static ITAppleEventCenter *_sharedAECenter = nil; result=malloc(resultSize); if (err2) { - NSLog(@"Error After AESizeOfParam: %i", err2); + //NSLog(@"Error After AESizeOfParam: %i", err2); } else { err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, result, resultSize, &charResultSize); if (err3) { - NSLog(@"Error After AEGetParamPtr: %i", err3); + //NSLog(@"Error After AEGetParamPtr: %i", err3); } else { _finalString = [NSString stringWithCharacters:result length:charResultSize/sizeof(unichar)]; } @@ -439,8 +439,9 @@ static ITAppleEventCenter *_sharedAECenter = nil; //AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, kAnyTransactionID, &event, nil, ""); AECreateDesc(typeProcessSerialNumber,(ProcessSerialNumber*)&psn,sizeof(ProcessSerialNumber),&dest); AECreateAppleEvent(eClass,eID,&dest,kAutoGenerateReturnID,kAnyTransactionID,&event); +//[self printCarbonDesc:&event]; AESend(&event, &reply, kAENoReply, kAENormalPriority, kAEDefaultTimeout, idleUPP, nil); - +//[self printCarbonDesc:&reply]; AEDisposeDesc(&dest); AEDisposeDesc(&event); AEDisposeDesc(&reply); @@ -474,18 +475,18 @@ static ITAppleEventCenter *_sharedAECenter = 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]); + //NSLog(@"%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); + //NSLog(@"Send Error: %i",err); } else { SInt32 count, resultCount; @@ -521,7 +522,7 @@ static ITAppleEventCenter *_sharedAECenter = nil; OSErr err2, err3; /* if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) { - NSLog(@"Error getting PID of application! Exiting."); + //NSLog(@"Error getting PID of application! Exiting."); return nil; } */ @@ -529,28 +530,28 @@ static ITAppleEventCenter *_sharedAECenter = 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,[string substringToIndex:buildError.fErrorPos]); + //NSLog(@"%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); + //NSLog(@"Send Error: %i",err); } else { err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize); if (err2) { - NSLog(@"Error After AESizeOfParam: %i", err2); + //NSLog(@"Error After AESizeOfParam: %i", err2); } else { err3 = AEGetParamPtr(&replyEvent, keyDirectObject, resultType, NULL, &result, resultSize, &charResultSize); if (err3) { - NSLog(@"Error After AEGetParamPtr: %i", err3); + //NSLog(@"Error After AEGetParamPtr: %i", err3); } } } @@ -558,7 +559,7 @@ static ITAppleEventCenter *_sharedAECenter = nil; AEDisposeDesc(&sendEvent); AEDisposeDesc(&replyEvent); -NSLog(@"waffles say %d",result); +//NSLog(@"waffles say %d",result); return result; } @@ -577,7 +578,7 @@ return result; OSStatus err; /* if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) { - NSLog(@"Error getting PID of application! Exiting."); + //NSLog(@"Error getting PID of application! Exiting."); return nil; } */ @@ -585,18 +586,18 @@ return result; 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,[string substringToIndex:buildError.fErrorPos]); + //NSLog(@"%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); + //NSLog(@"Send Error: %i",err); } else { SInt32 count, resultCount; @@ -612,4 +613,4 @@ return result; return result; } -@end +@end \ No newline at end of file