私の目標は、clang-format を実行する拡張機能を作成することです。私のコードは次のようになります。
- (void)performCommandWithInvocation:(XCSourceEditorCommandInvocation *)invocation completionHandler:(void (^)(NSError * _Nullable nilOrError))completionHandler
{
NSError *error = nil;
NSURL *executableURL = [[self class] executableURL];
if (!executableURL)
{
NSString *errorDescription = [NSString stringWithFormat:@"Failed to find clang-format. Ensure it is installed at any of these locations\n%@", [[self class] clangFormatUrls]];
completionHandler([NSError errorWithDomain:SourceEditorCommandErrorDomain
code:1
userInfo:@{NSLocalizedDescriptionKey: errorDescription}]);
return;
}
NSMutableArray *args = [NSMutableArray array];
[args addObject:@"-style=LLVM"];
[args addObject:@"someFile.m"];
NSPipe *outputPipe = [NSPipe pipe];
NSPipe *errorPipe = [NSPipe pipe];
NSTask *task = [[NSTask alloc] init];
task.launchPath = executableURL.path;
task.arguments = args;
task.standardOutput = outputPipe;
task.standardError = errorPipe;
@try
{
[task launch];
}
@catch (NSException *exception)
{
completionHandler([NSError errorWithDomain:SourceEditorCommandErrorDomain
code:2
userInfo:@{NSLocalizedDescriptionKey: [NSString stringWithFormat:@"Failed to run clang-format: %@", exception.reason]}]);
return;
}
[task waitUntilExit];
NSString *output = [[NSString alloc] initWithData:[[outputPipe fileHandleForReading] readDataToEndOfFile]
encoding:NSUTF8StringEncoding];
NSString *errorOutput = [[NSString alloc] initWithData:[[errorPipe fileHandleForReading] readDataToEndOfFile]
encoding:NSUTF8StringEncoding];
[[outputPipe fileHandleForReading] closeFile];
[[errorPipe fileHandleForReading] closeFile];
int status = [task terminationStatus];
if (status == 0)
{
NSLog(@"Success: %@", output);
}
else
{
error = [NSError errorWithDomain:SourceEditorCommandErrorDomain
code:3
userInfo:@{NSLocalizedDescriptionKey: errorOutput}];
}
completionHandler(error);
}
この try-catch ブロックが必要な理由は、このコードを実行しようとすると例外がスローされるためです。例外の理由は次のとおりです。
エラー: 起動パスにアクセスできません
私のclang-formatのパスは/usr/local/bin/clang-formatです。私が発見したのは、/usr/local/bin にあるアプリケーションにアクセスしようとしても、/bin は問題ないということです (たとえば、/bin/ls を実行しようとしても問題ありません)。
私が試した別の解決策は、次のように起動パスと引数を設定して /bin/bash を実行することでした。
task.launchPath = [[[NSProcessInfo processInfo] environment] objectForKey:@"SHELL"];
task.arguments = @[@"-l", @"-c", @"/usr/local/bin/clang-format -style=LLVM someFile.m"];
これにより、タスクが正常に起動されますが、次のエラー出力で失敗します。
/bin/bash: /etc/profile: 操作は許可されていません /bin/bash: /usr/local/bin/clang-format: 操作は許可されていません
最初のエラー メッセージは、ユーザーとしてログインしようとする bash で -l パラメータを呼び出そうとしたことが原因です。
これらの他のフォルダーへのアクセスを有効にする方法はありますか? 有効にする必要がある何らかのサンドボックス環境設定はありますか?