3

我真的很想使用getBuffer:length:NSInputStream 的方法。经过大量研究,我找不到使用这种方法的有效示例,因为大多数人确实需要read: maxLength:.

所以现在关于环境的一些事实: * 我正在为 iPhone 开发一个应用程序,iOS 3.1.3 * 我已经通过套接字建立了网络通信 * 该网络连接确实有效;所以我没有忘记将一个流添加到 runloop 或一个有效的委托或类似的东西 - 它已经工作了 * 我只是通过网络发送和接收字符串。* 我设置了一个有效的委托来实现stream: handleEvent:正确(区分接收到的事件并采取适当的措施)。我不确定接收代码是否 100% 正确,因为我有时会收到两次消息。这也可能是我正在与之通信的设备上的错误实现引起的。为了弄清楚它是最后一个点中的哪一个,我试图找出当我收到“NSStreamEventHasBytesAvailable”事件时接收缓冲区上有多少字节。因为我不确定我的实现是否正确,但我想知道我收到的实际字节数,我想使用getBuffer: length:并查看之后的长度。奇怪的是:长度从未打印在控制台上,因为 [((NSInputStream *) stream) getBuffer: &buf length: &numBytes]总是评估为 FALSE。无论如何,之后的代码部分可以正常工作,在缓冲区中接收消息并正确转发 - 工作正常。问题仍然存在:为什么不起作用getBuffer: length:?感兴趣的代码在这里:

` 案例 NSStreamEventHasBytesAvailable: {

        uint8_t *buf;
        unsigned int numBytes;

        if ([((NSInputStream *) stream) getBuffer: &buf length: &numBytes]) {
            NSLog(@"\t\tBytes in the buffer: %i", &numBytes);
        }

        uint8_t buffer[BUFFER_SIZE];
        int len = [((NSInputStream *) stream) read: buffer 
                                         maxLength: BUFFER_SIZE];
        NSLog(@"\tread: %i bytes", len);

        /*
         if len > 0: len is equal to the filled byte elements
         if len == 0: end of buffer was reached while reading
         if len < 0: something terrible happened...
         */
        if (len > 0) {
            /* 1. create string from received byte buffer */
            NSString *msg = [[NSString alloc] initWithBytes: buffer length: len encoding: NSASCIIStringEncoding];
            NSLog(@"\tcontained message: %@", msg);
            /* 2. inform communicator about received message */
            [communicator received: msg];
            [msg release];
        }

        if (len < 0) {
            [communicator received: @"Error!"];
        }
        break;
    }

`

如果有人可以帮助我,那就太好了!

4

3 回答 3

10

达尔文是开源的,所以“真相就在那里”。NSStream 的源代码显示 GSInetInputStream 是为套接字实现 NSInputStream 的类,而该类的 getBuffer:length: 实现简洁地回答了这个问题:

- (BOOL) getBuffer: (uint8_t **)buffer length: (unsigned int *)len
{
  return NO;
}

在这里找到。

于 2010-12-15T20:29:01.947 回答
0

我认为 getBuffer 不起作用,因为还没有缓冲区,之后您正在读取缓冲区,所以它还无法获取指向缓​​冲区的指针......

于 2010-10-31T23:45:16.237 回答
0

啊,我想我明白你的意思了。但我想至少在读入缓冲区之后,下面的代码应该评估为 TRUE?我只是问,因为它没有,getBuffer:length:似乎仍然不起作用。使用可用字节的通信效果很好,但问题仍然存在......

        uint8_t *buf1;
        unsigned int numBytes1;
        if ([((NSInputStream *) stream) getBuffer: &buf length: &numBytes]) {
            NSLog(@"\t\tBytes are in the buffer before Op.");
        }

        uint8_t buffer[BUFFER_SIZE];
        int len = [((NSInputStream *) stream) read: buffer 
                                         maxLength: BUFFER_SIZE];

        uint8_t *buf2;
        unsigned int numBytes2;
        if ([((NSInputStream *) stream) getBuffer: &buf2 length: &numBytes2]) {
            NSLog(@"\t\tBytes in the buffer after Op.");
        }

很抱歉为我自己的问题创建了答案;但评论能够处理这么多代码......

于 2010-11-10T14:38:26.030 回答