在我获得Error Domain = NSPOSIXErrorDomain Code = 57后,NSURLConnection将不会响应

时间:2012-05-11 13:32:21

标签: iphone objective-c ios websocket socket.io

以下是该问题的简要说明:

我有一个使用Web套接字的应用程序SocketRocket - 客户端,Nodejs + Socket.io - 服务器端。  我在启动应用程序时建立套接字连接,一切正常。如果我暂停应用程序(转到后台,锁定屏幕等),我可以在进入前台时重新连接  但是,如果我失去连接(例如,如果我在路由器上阻止自己(我在5-10秒内收到套接字故障错误),然后解锁我自己) - 我将无法连接到任何网址{{1 }}。 (为什么我要为此烦恼?好吧,人们往往会在移动设备上松动,所以我必须处理这个错误)

如果以前有连接恢复,则会在连接恢复/进入前台时调用此代码。

NSURLConnection

这就是我在正常情况下得到的结果:

 -(void) connectToHost:(NSString *)host onPort:(NSInteger)port withParams:(NSDictionary*)params withNamespace:(NSString *)endpoint
{    

  if (!_isConnected && !_isConnecting) 
  {
    _isConnecting = YES;

    _host = host;
    _port = port;
    _endpoint = [endpoint copy];

    NSMutableString *query = [[NSMutableString alloc] initWithString:@""];
    [params enumerateKeysAndObjectsUsingBlock: ^(id key, id value, BOOL *stop) {
        [query appendFormat:@"&%@=%@",key,value];
    }];

    NSString *s = [NSString stringWithFormat:HANDSHAKE_URL, _host, _port, rand(), query];
    [self log:[NSString stringWithFormat:@"Connecting to socket with URL: %@",s]];        

    _timeout = [NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(disconnect) userInfo:nil repeats:NO];

    [[LRResty client] get:s withBlock:^(LRRestyResponse *response) {
        [_timeout invalidate], _timeout = nil;                                
        if ( response.status == 200 )
        {
            NSString *responseString = [response asString];

            [self log:[NSString stringWithFormat:@"requestFinished() %@", responseString]];
            NSArray *data = [responseString componentsSeparatedByString:@":"];

            _sid = [data objectAtIndex:0];
            [self log:[NSString stringWithFormat:@"sid: %@", _sid]];

            _heartbeatTimeout = [[data objectAtIndex:1] floatValue] + 7.0;
            [self log:[NSString stringWithFormat:@"heartbeatTimeout: %f", _heartbeatTimeout]];

            NSString *t = [data objectAtIndex:3];
            NSArray *transports = [t componentsSeparatedByString:@","];
            [self log:[NSString stringWithFormat:@"transports: %@", transports]];

            [self openSocket];                 
        }
        else
        {
            [_delegate socketIOHandshakeFailed:self];
        }
    }];                       
  }                 
}

如果我在连接失败后尝试重新连接:

Connecting to socket with URL: https://example.com:9001/socket.io/1/?t=282442 
requestFinished() ==> 843717395328441553:60:60:websocket
debug: Finished request GET https://example.com:9001/socket.io/1/?t=282442 <LRRestyRequest>

我尝试运行同步请求,但它会阻止我的UI,永远不会完成。因此,实际上请求可能正在尝试启动,但永远不会到达执行点。

如果我在调试器中暂停一个应用程序,这就是我得到的:  你可以在这里看到截图 - &gt; http://avvs.co/static/app_paused.jpg
检查线程7 -

Connecting to socket with URL: https://example.com:9001/socket.io/1/?t=282475249

更新
这是这个主题的完整操作列表,如果你能指出这里的错误,那将非常高兴

#0 0x9855fc22 in mach_msg_trap ()
#7 0x026852d3 in -[NSRunLoop(NSRunLoop) run] ()
#8 0x00019b1b in -[LRURLRequestOperation start]
#9 0x00016670 in -[LRRestyRequest start] 

1 个答案:

答案 0 :(得分:2)

我终于找到了解决方案。实际问题不在NSURLConnection中,而是在套接字实现中。失去连接时,app正在关闭输入和输出流,但它们没有从正在运行的循环中删除,也没有被调度。通过修复它,我能够恢复连接。