我正在尝试创建一个可以创建,写入和读取命名管道的简单工具。这是代码。
int main(int argc, const char * argv[])
{
@autoreleasepool
{
//create pipe
system("rm /tmp/myPipe");
system("mkfifo /tmp/myPipe");
system("chmod 666 /tmp/myPipe");
// write to pipe
NSString *text = [NSString stringWithFormat:@"this is a test"];
NSFileManager *fileManager = [NSFileManager defaultManager];
if ([fileManager fileExistsAtPath:@"/tmp/myPipe" isDirectory:NO])
{
NSFileHandle *fileHandle=[NSFileHandle fileHandleForWritingAtPath:@"/tmp/myPipe"];
[fileHandle seekToEndOfFile];
[fileHandle writeData:[text dataUsingEncoding:NSUTF8StringEncoding]];
[fileHandle closeFile];
}
}
return 0;
}
正确创建了具有以下权限的文件
prw-rw-rw- 1 xxx wheel 0 May 17 09:48 myPipe |
当我运行该工具时,它挂在一行:
NSFileHandle *fileHandle=[NSFileHandle fileHandleForWritingAtPath:@"/tmp/myPipe"];
我在这里想念什么?
最佳答案
除了完全不了解代码的作用之外,这里没有什么错。仅在管道中等待外部msg的代码没有“挂起”。
我只需要启动终端并输入
echo "foo" > /tmp/myPipe
感谢所有协助...