我已经通过使用输入和输出流实现了套接字。外部架构负责一次发送一个请求以进行写入。
但是,如果任何请求没有返回 noHasBytesAvailable
我需要从队列中删除该请求并通知请求超时。
对于所有其他请求,我能够正确发送/接收数据,但如果任何一个请求超时,那么之后就HasSpaceAvailable
永远不会被调用。
我的代码如下:
@implementation CCCommandSocket
@synthesize 连接超时定时器;@synthesize requestTimeoutTimer;
/* * init * * @params * ipAddress :摄像头socket的ip地址 * portNumber :摄像头socket的端口地址 * * @return * Socket类型的对象,它将向ipAddress,portNumber发送连接请求 * */ - (id)初始化 { self = [超级初始化]; if (self) { ip = @"192.168.42.1"; 端口 = 7878;
[self performSelectorOnMainThread:@selector(connectToCamera) withObject:nil waitUntilDone:YES];
bytesReceivedCondition = [[NSCondition alloc] init];
requestCompletedCondition = [[NSCondition alloc] init];
requestReadyToProcess = [[NSCondition alloc] init];
isBytesReceived = false;
isRequestCompleted = false;
isRequestReadyToProcess = false;
responseString = [[NSString alloc] init];
openBracesCount = 0;
mutex = [[NSLock alloc] init];
}
return self;
}
语用标记-
pragma 建立套接字通信。
/* * connectToCamera * */ - (void) connectToCamera { NSString *urlStr = ip;
if (![urlStr isEqualToString:@""])
{
NSURL *website = [NSURL URLWithString:urlStr];
if (!website)
{
NSString* messageString = [NSString stringWithFormat:@"%@ is not a valid URL",website];
CCLog(LOG_ERROR, messageString);
return;
}
CFStreamCreatePairWithSocketToHost(NULL, (__bridge CFStringRef)(urlStr), port, &readStream, &writeStream);
//cast the CFStreams to NSStreams
inputStream = (__bridge_transfer NSInputStream *)readStream;
outputStream = (__bridge_transfer NSOutputStream *)writeStream;
//set the delegate
[inputStream setDelegate:self];
[outputStream setDelegate:self];
//schedule the stream on a run loop
[inputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[outputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
//open the stream
[inputStream open];
[outputStream open];
if(readStream==NULL)
{
CCLog(LOG_INFO, @"readstream NULL");
}
if(writeStream == NULL)
{
CCLog(LOG_INFO, @"writeStream NULL");
}
[self startConnectionTimeoutTimer];
}
}
语用标记 -
杂注获取方法
/* * getIP * * @return * 套接字连接的IP地址 */ -(NSString *) getIP { return ip; }
/* * getPort * * @return * 套接字连接的端口号 */ -(int) getPort { return port; }
语用标记-
pragma 处理套接字回调。
(void)stream:(NSStream *)stream handleEvent:(NSStreamEvent)eventCode {
NSMutableArray *array = [[NSMutableArray alloc] init]; [数组添加对象:流];[数组 addObject:[NSNumber numberWithInt:eventCode]];
[self performSelectorInBackground:@selector(myStream:) withObject:array]; }
(void)myStream:(NSMutableArray*) array { NSNumber *number = [array objectAtIndex:1]; int eventCode = [number intValue];
switch(eventCode) { case NSStreamEventErrorOccurred: { CCLog(LOG_ERROR, @"In Command Socket NSStreamEventErrorOccurred"); //[自我断开]; //[[ErrorDetails getInstance] reportError:NSStreamEventErrorOccurred]; 休息; }
//Read from stream case NSStreamEventHasBytesAvailable: { CCLog(LOG_INFO, @"In Command Socket NSStreamEventHasBytesAvailable"); [self handleCommandPortDataReceived]; break; } //Write to stream case NSStreamEventHasSpaceAvailable: { @synchronized(self) { [requestReadyToProcess lock]; while (isRequestReadyToProcess == false) { [requestReadyToProcess wait]; } [requestReadyToProcess unlock]; CCLog(LOG_INFO,@"In Command Socket NSStreamEventHasSpaceAvailable"); @try { @synchronized(requestString) { if(requestString != nil) { if(outputStream != nil) { int dataSent; uint8_t* data = (uint8_t *)[requestString cStringUsingEncoding:NSUTF8StringEncoding]; responseString = @""; //[requestReadyToProcess lock]; isRequestReadyToProcess = false; //[requestReadyToProcess signal]; dataSent = [outputStream write:data maxLength:strlen((char*)data)]; if(dataSent != -1) { NSString* message = [NSString stringWithFormat:@"Bytes written %d for request\n %@",dataSent, requestString]; CCLog(LOG_REQUEST, message); requestString = nil; isBytesReceived = false; [bytesReceivedCondition lock]; while (isBytesReceived ==false) { [bytesReceivedCondition wait]; } [requestCompletedCondition lock]; isRequestCompleted = true; [requestCompletedCondition signal]; [requestCompletedCondition unlock]; [bytesReceivedCondition unlock]; } else { CCLog(LOG_INFO, @"Command Socket : Request not sent (dataSent == -1)"); responseString = @"{ \"rval\": -104}"; CCLog(LOG_RESPONSE, responseString); [self removeRequestFromQueue]; } } else { CCLog(LOG_INFO, @"in else :(outputStream != nil)"); } } } } @catch (NSException *e) { CCLog(LOG_WARNING, e.description); } } break; } case NSStreamEventNone: { CCLog(LOG_INFO, @"In Command Socket NSStreamEventNone"); break; } case NSStreamEventOpenCompleted: { CCLog(LOG_INFO, @"In Command Socket NSStreamEventOpenCompleted"); [self stopConnectionTimeoutTimer]; break; } case NSStreamEventEndEncountered: { CCLog(LOG_INFO, @"Command Socket NSStreamEventEndEncountered"); [self disconnectWithNotification:YES]; break; }
} }
/* * 执行 * * @param * 请求:通过套接字发送到相机的命令 * * @return * 响应:从相机接收到的响应 * */ -(NSString *) executeRequest :(NSString *)request { CCLog(LOG_INFO, @"命令套接字执行请求");
[self performSelectorOnMainThread:@selector(startRequestTimeoutTimer) withObject:nil waitUntilDone:NO];
isRequestCompleted = false;
requestString = request;
responseString = @"";
[requestReadyToProcess lock];
isRequestReadyToProcess = true;
[requestReadyToProcess signal];
[requestReadyToProcess unlock];
[requestCompletedCondition lock];
while (isRequestCompleted ==false)
{
[requestCompletedCondition wait];
}
CCLog(LOG_INFO, @"Command Socket Execute request : request completed");
[requestCompletedCondition unlock];
CCLog(LOG_RESPONSE, responseString);
return responseString;
}
语用标记-
pragma 处理连接超时
// 启动连接时调用它 - (void)startConnectionTimeoutTimer { [self stopConnectionTimeoutTimer]; // 或者确保在调用此方法之前停止任何现有的计时器
NSTimeInterval interval = 10.0; // Measured in seconds, is a double
self.connectionTimeoutTimer = [NSTimer scheduledTimerWithTimeInterval:interval
target:self
selector:@selector(handleConnectionTimeout)
userInfo:nil
repeats:NO];
}
(void)handleConnectionTimeout { responseString = @"{ \"rval\": -103}"; CCLog(LOG_RESPONSE, responseString);
[自我 removeRequestFromQueue];
[自我disconnectWithNotification:是];[self stopConnectionTimeoutTimer]; }
// 启动连接时调用它 - (void)startRequestTimeoutTimer { [self stopRequestTimeoutTimer]; // 或者确保在调用此方法之前停止任何现有的计时器
NSTimeInterval interval = 20.0; // Measured in seconds, is a double
self.requestTimeoutTimer = [NSTimer scheduledTimerWithTimeInterval:interval
target:self
selector:@selector(handleRequestTimeout)
userInfo:nil
repeats:NO];
}
(void)handleRequestTimeout { responseString = @"{ \"rval\": -103}"; CCLog(LOG_RESPONSE, responseString);
[自我连接相机]; [self stopRequestTimeoutTimer]; [自我 removeRequestFromQueue]; }
// 成功连接后调用 - (void)stopRequestTimeoutTimer { if (requestTimeoutTimer) { [requestTimeoutTimer invalidate]; requestTimeoutTimer = nil; } }
-(void) disconnectWithNotification:(BOOL)showNotification { CCLog(LOG_INFO, @"Socket Disconnected"); [输入流关闭]; [inputStream setDelegate:nil]; [inputStream removeFromRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode]; 输入流 = 零;
[outputStream close];
[outputStream setDelegate:nil];
[outputStream removeFromRunLoop:[NSRunLoop currentRunLoop]
forMode:NSDefaultRunLoopMode];
outputStream = nil;
[[CCCore getInstance] disconnectWithNotification:showNotification];
}
// 成功连接后调用 - (void)stopConnectionTimeoutTimer { if (connectionTimeoutTimer) { [connectionTimeoutTimer invalidate]; 连接超时定时器 = 无;} if (requestTimeoutTimer) { [requestTimeoutTimer 无效]; requestTimeoutTimer = nil; } }
-(void) handleCommandPortDataReceived { [互斥锁]; [self stopRequestTimeoutTimer]; @try { 长尺寸 = 1024; uint8_t buf[大小];无符号整数长度 = 0;
do
{
// read input stream into buffer
strcpy((char *)buf, "\0");
len = [inputStream read:buf maxLength:size];
//NSLog(@"Size = %ld Len = %d, Buf = %s",size, len, (char *)buf);
// Following code checks if we have received complete response by matching "{" and "}"
// from input stream. We continue to form response string unless braces are matched.
if (len > 0)
{
// Create nsdata from buffer
NSMutableData *_data = [[NSMutableData alloc] init];
[_data appendBytes:(const void *)buf length:len];
// create temporary string form nsdata
NSString* currentString = [[NSString alloc] initWithData:_data encoding:NSUTF8StringEncoding];
// check the occurances of { and } in current string
int currentOpeningBraceCount = [[currentString componentsSeparatedByString:@"{"] count] - 1;
int currentClosingBraceCount = [[currentString componentsSeparatedByString:@"}"] count] - 1;
openBracesCount = (openBracesCount + currentOpeningBraceCount) - currentClosingBraceCount;
responseString = [responseString stringByAppendingString:currentString];
// NSLog(@"Total:%d currentOpen:%d currentClose:%d\n\n",openBracesCount, currentOpeningBraceCount, currentClosingBraceCount);
// NSLog(@"Current String : %@\n\n",currentString);
// NSLog(@"Final String : %@",finalString);
// NSLog(@"+++++++++++++++++++++++++++++");
}
else
break;
} while (openBracesCount != 0);
NSRange range = [responseString rangeOfString:@"get_file_complete"];
if(range.location == NSNotFound)
{
//remove it from queue
[bytesReceivedCondition lock];
isBytesReceived = true;
[bytesReceivedCondition signal];
[bytesReceivedCondition unlock];
}
//responseString = @"";
}
@catch (NSException* e)
{
[self connectToCamera];
}
[mutex unlock];
}
-(void) removeRequestFromQueue { //从队列中移除 requestString = nil;
[requestReadyToProcess lock];
isRequestReadyToProcess = false;
[requestReadyToProcess unlock];
[requestCompletedCondition lock];
isRequestCompleted = true;
[requestCompletedCondition signal];
[requestCompletedCondition unlock];
}
@结尾