gpt4 book ai didi

macos - Mac OS X : Execute scripts with hooks from an application

转载 作者:行者123 更新时间:2023-12-03 17:54:24 26 4
gpt4 key购买 nike

我正在构建一个 cocoa 应用程序来监视某些内容™,并且我计划为用户提供一些钩子(Hook)。因此,我希望用户能够将具有指定名称(例如 after_event)的脚本(Bash、Ruby、Python,您可以命名)放入应用程序支持目录中,并且该脚本在我的代码中的某个事件之后执行。理想情况下,我可以将一些变量传递给脚本,以便脚本知道发生了什么。

对此有什么想法吗?

所以问题一是:如何获取应用程序支持“SDK方式”的路径?问题二是:如何使用 THAT_APPEND="foo"等变量执行脚本?

谢谢,菲利普

最佳答案

因为共享这里关心的是执行脚本的方法:

-(void) runScript:(NSString*)scriptName withVariables:(NSDictionary *)variables
{
NSString *appSupportPath = [NSFileManager defaultManager] applicationSupportDirectory];

NSArray *arguments;
NSString* newpath = [NSString stringWithFormat:@"%@/%@",appSupportPath, scriptName];
if ([[NSFileManager defaultManager]fileExistsAtPath:newpath]){
NSTask *task = [[NSTask alloc] init];
[task setLaunchPath: newpath];

NSLog(@"Executing hook: %@",newpath);
arguments = [NSArray arrayWithObjects:newpath, nil];
[task setArguments: arguments];

[task setEnvironment:variables];

NSPipe *pipe;
pipe = [NSPipe pipe];
[task setStandardOutput: pipe];

NSFileHandle *file;
file = [pipe fileHandleForReading];

[task launch];

NSData *data;
data = [file readDataToEndOfFile];

NSString *string;
string = [[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding];
NSLog (@"script returned:\n%@", string);
}

}

}

更新:我更新了代码以使其更加通用。现在 NSTask 会告诉内核直接执行脚本,这样你的用户就不能在线使用 Bash 脚本,也可以使用 python、perl、php 等她喜欢的语言。她唯一需要使用的是Shebang在该文件中。

NSFileManager 类别可以找到 here .

关于macos - Mac OS X : Execute scripts with hooks from an application,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16015415/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com