我正在为iOS应用程序编写一个网络类。此类将处理所有日志记录和网络流量。我遇到了一个问题,我必须一次发送可能数千个请求,但NSURLConnection正在超时,因为在所有NSURLConnection启动之前,代理方法不会被调用,此时超时期已过期。我正在使用一个用于Drupal的rest API,不幸的是,我不知道用一个请求创建多个实例的方法。如何在发送回复的同时接收回复?如果我使用GCD来取消NSURLConnection的创建,这会解决问题吗?我想我必须通过对要发送的对象进行迭代并发送到GCD的整个操作,以释放主线程来响应响应。
-(BOOL)sendOperation:(NetworkOperation)op
NetworkDataType:(NetworkDataType)dataType
JsonToSend:(NSArray *)json
BackupData:(NSArray *)data
{
if(loggingMode)
{
return YES;
}
NSURLConnection *networkConnection;
NSData *send;
NSString *uuid = [self generateUUID];
NSMutableArray *connections = [[NSMutableArray alloc] init];
NSMutableURLRequest *networkRequest;
for (int i=0; i<[json count] && (data ? i<[data count] : YES); i++)
{
if(op == Login)
{
/*Grab all cookies from the server domain and delete them, this prevents login failure
because user was already logged in. Probably find a better solution like recovering
from the error*/
NSArray *cookies = [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookiesForURL:
[[NSURL alloc] initWithString:networkServerAddress]];
for (NSHTTPCookie *cookie in cookies)
{
[[NSHTTPCookieStorage sharedHTTPCookieStorage] deleteCookie:cookie];
}
networkRequest = [[NSMutableURLRequest alloc] initWithURL:
[NSURL URLWithString:[networkServerAddress stringByAppendingString:@"/user/login"]]];
}
else if(op == StartExperiment)
{
networkRequest = [[NSMutableURLRequest alloc] initWithURL:
[NSURL URLWithString:[networkServerAddress stringByAppendingString:@"/node"]]];
}
else if(op == Event || op == EndExperiment || op == SendAll)
{
networkRequest = [[NSMutableURLRequest alloc] initWithURL:
[NSURL URLWithString:[networkServerAddress stringByAppendingString:@"/node"]]];
}
else if(op == Logout)
{
networkRequest = [[NSMutableURLRequest alloc] initWithURL:
[NSURL URLWithString:[networkServerAddress stringByAppendingString:@"/user/logout"]]];
}
send = [[json objectAtIndex:i] dataUsingEncoding:NSUTF8StringEncoding];
//Set the headers appropriately
[networkRequest setHTTPMethod:@"POST"];
[networkRequest setValue:@"application/json"
forHTTPHeaderField: @"Content-type"];
[networkRequest setValue:[NSString stringWithFormat:@"%d", [send length]]
forHTTPHeaderField:@"Content-length"];
[networkRequest setValue:@"application/json"
forHTTPHeaderField:@"Accept"];
//Set the body to the json encoded string
[networkRequest setHTTPBody:send];
//Starts async request
networkConnection = [[NSURLConnection alloc] initWithRequest:networkRequest delegate:self];
//Successfully created, we are off
if(networkConnection)
{
[networkConnectionsAndData setValue:[[NSMutableArray alloc] initWithObjects:uuid,
[[NSNumber alloc] initWithInt:op], [[NSNumber alloc] initWithInt:dataType], [[NSMutableData alloc] init], (data ? [data objectAtIndex:i] : [NSNull null]), nil]
forKey:[networkConnection description]];
}
else //Failed to conn ect
{
NSLog(@"Failed to create NSURLConnection");
return NO;
}
}
[[self networkOperationAndConnections] setObject:[[NSMutableDictionary alloc] initWithObjectsAndKeys:[[NSMutableArray alloc] initWithObjects:connections, nil], @"connections", [[NSMutableArray alloc] init], @"errors", nil]
forKey:uuid];
return YES;
}
字典用于跟踪与每个NSURLConnection相关的数据,还用于将NSURLConnection分组为一组,以确定整个操作的最终成功或失败。
更新
AFNetworking是完成该项目的关键。它不仅大大清理了代码,还处理了发送这么多请求时继承的所有线程问题。更不用说使用AFNetworking,我可以将所有请求集中到一个操作中。使用块,就像AFNetworking使用的一样,是一个比NSURLConnection的标准代表更干净、更好的解决方案。
您肯定需要允许NSURLRequest/Connection在另一个线程上运行。(不是主线!)
为清晰起见进行了编辑**:我注意到你对"//Starts async request
"的评论,我想确保你意识到你的调用不是典型的"异步"函数所期望的。实际上,它只是同步地启动请求,但由于它是一个web请求,它本质上是异步的。实际上,您希望将这些请求放在另一个线程上以实现完全异步行为。
抛开其他不谈,我真的建议在这里深入研究苹果的网络示例项目:MVCNetworking
至于你问题的具体内容,有几种方法可以解决。
- 一种是使用
initWithRequest:<blah> delegate:<blah> startImmediately:FALSE
防止连接立即启动,然后使用:scheduleInRunLoop:forMode在另一个线程的运行循环上调度NSURLConnection
实例:- (注意:然后您必须通过调用start来启动连接——最好通过
NSOperation
+NSOperationQueue
来完成。)
- (注意:然后您必须通过调用start来启动连接——最好通过
- 或者在
NSURLConnection
上使用此静态方法来创建/启动连接,而不是执行alloc/init:sendAsynchronousRequest:queue:completeHandler:- (注意:这种方法与上面的方法几乎相同,但混淆了细节,并失去了一些控制权。)
老实说,我上面的快速回答不足以完成这类项目,您需要做一些研究来填补空白,尤其是对于NSOperationQueue,这就是MVCNetworking项目将帮助您的地方。
网络连接是一个变化无常的野兽——你可以暂停并杀死你的连接,即使它们只是在后台线程上运行,只需尝试同时执行太多的工作!我会认真考虑一次开放数千个NSURL连接,使用NSOperationQueue
将有助于解决这一问题。
其他资源:这里有一个第三方图书馆,可以让你的网络冒险不那么痛苦:
- https://github.com/AFNetworking/AFNetworking
- http://engineering.gowalla.com/2011/10/24/afnetworking/