- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个基本问题,在使用 NSOutputStream
时,我们是否应该等待 NSStreamEventHasSpaceAvailable
发送数据包,以便我们可以在需要时调用,[NSOutputStream write]
,
我相信 NSStream
应该负责写入功能...
如果这是不正确的,那么请提供您对以下逻辑的看法,
===== 在 NSOutputStream
上写入 =================有队列添加要发送的数据包 //StreamQueue.h
@interface StreamQueue : NSObject <NSCoding>
{
NSMutableArray * data;
NSRecursiveLock * theLock;
}
#pragma mark �Initialization & Deallocation�
- (id)init;
- (id)initWithQueue:(CommQueue *)queue;
- (id)initWithCoder:(NSCoder *)coder;
- (void)dealloc;
- (void)encodeWithCoder:(NSCoder *)coder;
#pragma mark
#pragma mark �Accessor Methods�
- (int)size;
- (BOOL)isEmpty;
- (id)top;
- (NSArray *)data;
#pragma mark
#pragma mark �Modifier Methods�
- (void)enqueue:(id)object;
- (id)dequeue;
- (void)removeAll;
@end
及其实现
#import "StreamQueue.h"
@implementation StreamQueue
#pragma mark �Initialization & Deallocation�
- (id)init
{
if (self = [super init]) {
data = [[NSMutableArray alloc] init];
theLock = [[NSRecursiveLock alloc] init];
}
return self;
}
- (id)initWithQueue:(StreamQueue *)queue
{
if (self = [super init]) {
data = [[NSMutableArray alloc] initWithArray:[queue data]];
theLock = [[NSRecursiveLock alloc] init];
}
return self;
}
- (id)initWithCoder:(NSCoder *)coder
{
if (self = [super init]) {
data = [[NSMutableArray alloc] initWithArray:[coder decodeObject]];
theLock = [[NSRecursiveLock alloc] init];
}
return self;
}
- (void)dealloc
{
[data release];
[theLock release];
[super dealloc];
}
- (void)encodeWithCoder:(NSCoder *)coder;
{
[coder encodeObject:data];
}
#pragma mark
#pragma mark �Accessor Methods�
- (int)size
{
int size;
[theLock lock];
size = [data count];
[theLock unlock];
return size;
}
- (BOOL)isEmpty
{
BOOL empty;
[theLock lock];
empty = ([data count] == 0);
[theLock unlock];
return empty;
}
- (id)top
{
id object = nil;
[theLock lock];
if (![self isEmpty])
object = [data objectAtIndex:0];
[theLock unlock];
return object;
}
- (NSArray *)data
{
NSArray * array;
[theLock lock];
array = [NSArray arrayWithArray:data];
[theLock unlock];
return array;
}
#pragma mark
#pragma mark �Modifier Methods�
- (void)enqueue:(id)object
{
[theLock lock];
[data addObject:object];
[theLock unlock];
}
- (id)dequeue
{
id object = [self top];
if (object != nil) {
[theLock lock];
[object retain];
[data removeObjectAtIndex:0];
[theLock unlock];
}
return [object autorelease];
}
- (void)removeAll
{
[theLock lock];
while (![self isEmpty])
[data removeObjectAtIndex:0];
[theLock unlock];
}
@end
现在,当应用程序有东西要通过套接字(NSStream
)发送时,它应该将其添加到队列中,
-(bool)sendRawData:(const uint8_t *)data length:(int)len{
// if still negotiating then don't send data
assert(!networkConnected);
NSData *pData = [NSData dataWithBytes:(const void *)data length:len];
// pToSendPacket is of type StreamQueue
[pToSendPacket enqueue:pData];
return;
}
当我们得到NSHasSpaceAvailableEvent
时这段代码
-(void)gotSpaceAvailable{
// is there any pending packets that to be send.
NSData *pData = (NSData *)[pToSendPacket dequeue];
if(pData == nil){
// no pending packets..
return;
}
const uint8_t *data = (const uint8_t *)[pData bytes];
int len = [pData length];
int sendlength = [pOutputStream write:data maxLength:len];
if(sendlength == -1 ){
NSError *theError = [pOutputStream streamError];
NSString *pString = [theError localizedDescription];
int errorCode = [theError code];
return ;
}
}
我期望每当 OutputStream
发送数据时应用程序将继续接收事件,但我只收到一次......:(请帮忙...
最佳答案
如果不等待该事件,写入调用将阻塞,直到有可用空间为止。一般来说,您希望将代码设计为异步工作,因此等待 NSStreamEventHasSpaceAvailable 是最好的解决方案。
至于您何时收到可用空间通知,see the documentation here :
If the delegate receives an NSStreamEventHasSpaceAvailable event and does not write anything to the stream, it does not receive further space-available events from the run loop until the NSOutputStream object receives more bytes. When this happens, the run loop is restarted for space-available events. If this scenario is likely in your implementation, you can have the delegate set a flag when it doesn’t write to the stream upon receiving an NSStreamEventHasSpaceAvailable event. Later, when your program has more bytes to write, it can check this flag and, if set, write to the output-stream instance directly.
There is no firm guideline on how many bytes to write at one time. Although it may be possible to write all the data to the stream in one event, this depends on external factors, such as the behavior of the kernel and device and socket characteristics. The best approach is to use some reasonable buffer size, such as 512 bytes, one kilobyte (as in the example above), or a page size (four kilobytes).
因此,只要您为每个事件写入数据,您就应该定期获取 NSStreamEventHasSpaceAvailable 事件。
关于cocoa - 写入问题 `NSOutputStream` 。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7038380/
我有一个基本问题,在使用 NSOutputStream 时,我们是否应该等待 NSStreamEventHasSpaceAvailable 发送数据包,以便我们可以在需要时调用,[NSOutputSt
我正在开发 iPhone 应用程序并希望使用: CFStreamCreatePairWithSocketToHost(NULL, url, port, &serverReadStream, &serv
使用 NSStreamEventHasSpace 可用事件,我试图将一个简单的 NSString 写入 NSOutputStream。以下是该事件的内容: uint8_t *readBytes = (
完全遵循 Apple 的文档:https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Streams/Strea
问题来了。当我的应用程序启动时,我在端口 5000 连接到 server1。我将数据发送到 server1。 Server1 发回数据。 Server1 关闭连接。 InputStream 发生 NS
我们目前正在开发 TLS-server-client-application。为了测试客户端发送内容为“0001”的命令,服务器发送一个应答。 客户端通过 NSOutputStream 的写入方法发送
我正在学习iOS网络编程来自this教程。我尝试修改代码,以便在连接成功后立即向服务器发送响应。我更改的代码的唯一部分是在此函数中。问题是应用程序停止并且在 [outputStream write:[
我是 Cocoa 的新手,但设法建立并运行了一个(到 FTP 的)连接,并且我已经为 NSInputStream iStream 设置了一个事件处理程序来提醒每个响应(这也有效)。 我设法得到的只是问
我想通过套接字将 UIImage 的数据发送到服务器,所以我: a) 打开 NSOutputStream - (IBAction)send:(id)sender { NSURL *websit
我将要发送到服务器的消息添加到队列中: typedef struct StreamOutputQueue{ char message[513]; struct StreamOutput
我正在尝试打断 [NSOutputstream write] 当连接丢失时。 但是,即使我使用 关闭流,它似乎仍然继续阻塞 [NSOutputstream close]. 我想要实现的只是在服务器连接
我尝试实现的基本问题: 我有两个流。 NSInputStream 和 NSOutputStream。现在我想从输入中获取一些数据处理它们(添加一些帧对它们进行编码等等)并传递给输出。到目前为止一切顺利
我必须将 8 字节数组发送到 IP 我的数据为 NSMutableArray 包含 0 到 255 之间的整数值据我所知我必须在发送之前将其转换为 nsdata。 NSString *error; N
如何通过 NSOutputStream 将下载的内容/数据保存在文档目录中的给定路径中。如果我用 DD 附加文件名,那么它可以工作(ex-DD/contentPath.zip),但是如果我附加一个像
我需要从网上下载大文件,并保存到本地磁盘。 一开始,我是这样保存数据的: - (void)saveToLocalFile:(NSData *)data withOffset:(unsigned lon
我正在尝试使用 NSInputStream 和 NSOutputStream 建立到 TCP 服务器的连接。永远不会收到 HasBytesAvailable 或 HasSpaceAvailable 事
所以我正在制作一个 iOS 应用程序,它不断地通过 NSStream 发送点数组,但是因为有时发送者在接收者接收一个之前写入两个数组,所以我决定先写长度,然后是数组数据本身,以便接收方知道要处理多少字
我正在尝试使用 NSStream 对象打开套接字,然后在套接字上进行读写,但我遇到了问题。 打开socket后不知道怎么写 这是我的做法 1) 首先打开套接字: NSURL *website = [
当 NSOutputStream 发送完数据时,如何关闭连接? 四处搜索后,我发现只有在服务器断开连接时才会调用事件 NSStreamEventEndEncountered。如果 OutputStre
我刚刚开始在 iOS 上进行套接字编程,我正在努力确定 NSOutputStreams 的 NSStreamEventHasSpaceAvailable 事件的使用。 一方面,Apple's offi
我是一名优秀的程序员,十分优秀!