我正在研究一个我将用于自己的调试目的的课程。我打算将它作为调试器控制台的设备版本。大多数情况下我关心捕获NSLog()语句。
无论我登录到控制台,我只从fgetc()
获得0xFF。我希望从fgetc()
看到的是自上次调用update
以来发送给stderr的字符。下面是UITextView的子类:
stdErrFP
在标头中定义为:FILE* stdErrFP;
- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
stdErrFP = fdopen (fileno (stderr) , "w");
if (!stdErrFP)
NSLog(@"errno - %s", strerror(errno));
[self update];
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(makeSomeNoise) userInfo:nil repeats:YES];
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(update) userInfo:nil repeats:YES];
}
return self;
}
-(void) update{
char errBuff[2] = {0x00, '\0'};
do{
errBuff[0] = fgetc(stdErrFP);
self.text = [NSString stringWithFormat:@"%@%@", self.text, [NSString stringWithCString:errBuff]];
}while (errBuff[0] != EOF);
}
-(void) makeSomeNoise{
CFShow([NSString stringWithString:@"noisy CFFunction"]);
NSLog(@"noisy NSLog");
char message[] = "noisy fprintf";
fprintf(stderr, message);
}
-(void)makeSomeNoise
有很多不同的日志类型,因为Eric Sadun wrote that NSLog doesn't log to stderr,所以我想把它作为一种可能性来排除。我不确定这是否与我的问题有关,但我注意到fdopen()
总是失败,除非标志是“w”,这可能不对。
更新:对于fdopen()
我错了,并不只是“w”有效,只有“r”不起作用。 (即“a”和“w”都工作)。我使用“r”时的错误是:No such file or directory
。所以看起来我没有正确连接到stderr。 StackOverflow Genius,请帮忙。
答案 0 :(得分:0)
最好我可以编码,你不能从stderr读取。 stderr缓冲区就像一个firehose,试图抓住任何有意义的东西都是非常依赖时间的。