5

如何跟踪通过我的应用发送和接收的数据的使用情况?

我只想记录我的应用程序运行时发送和接收的字节数。如果我能获得 Wifi 和蜂窝网络的单独信息,那会很棒,但不是优先事项。

我知道如何找到设备的总使用量 - https://stackoverflow.com/a/8014012/427969

另外,我知道我可以使用 Instruments 来收集网络活动数据,但我想在我的应用程序中记录这些数据,因此需要一种编程方式来做到这一点。

我试图搜索这个,但我发现的只是设备的网络使用情况,而不是特定应用程序的使用情况。

以下是 Whatsapp 的设置 -> 使用页面的屏幕截图,可以更好地了解我想要做什么:

在此处输入图像描述

AFNetworking用于 HTTP 请求和响应如下:

NSData* requestData = [NSJSONSerialization dataWithJSONObject:info options: NSJSONWritingPrettyPrinted error:&error];
if(error != nil) {
    NSLog(@"Error: converting JSON: %@, %@", error, error.userInfo);
}

[request setHTTPMethod:@"POST"];
[request setValue:@"application/x-www-form-urlencoded; charset=UTF-8" forHTTPHeaderField:@"Content-Type"];
[request setValue:[NSString stringWithFormat:@"%d", [requestData length]] forHTTPHeaderField:@"Content-Length"];
[request setHTTPBody: requestData];

/*
    ################### ----------------- ###################
    WILL [requestData length] BE THE NUMBER OF BYTES SEND ???
    ################### ----------------- ###################
*/
NSLog(@"data bytes: %d", [requestData length]); 

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL .....];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest: request                                                                                 
    success: ^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {

    } failure: ^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {

}];
[operation start];

我已经更新了我的问题。

有人可以回答:[requestData length]一个请求的发送字节数是多少?

4

2 回答 2

1

有几种方法取决于您使用哪个类来下载AFNetworking

AFHTTPRequestOperation例如有以下方法:

setDownloadProgressBlock:^(NSInteger bytesRead, NSInteger totalBytesRead, NSInteger totalBytesExpectedToRead)

反过来,有这样的方法:

setUploadProgressBlock:^(NSInteger bytesWritten,long long totalBytesWritten,long long totalBytesExpectedToWrite)

使用这种方法,您应该尝试跟踪所有上传和下载的数据。

AFJSONRequestOperation是 的子类AFHTTPRequestOperation,因此这些方法应该在任一类中都有效。

请注意,仅向网络服务器发送“json 请求”并不意味着您没有下载。当然,您必须获取内容 - json - 这将是您下载的数据。

此外,您询问是否[requestData length]告诉您发送到服务器的正确大小。这不是确切的大小,因为在您的 requestData 中您没有 HTTP 请求的附加标头,因此您的大小将比发送的原始字节小一点。

每次执行上述方法之一时,您应该将读取的字节结果添加到执行此方法之前读取的字节中。例如,您必须将当前的 bytesRead 永久保存在 coredata 或任何其他持久性存储中。

于 2013-01-22T07:41:16.120 回答
1

我使用亚历山大提到的方法如下:

AFJSONRequestOperation *operation = [[AFJSONRequestOperation alloc] initWithRequest: request];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
    // success
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    // failure
}];

[operation setDownloadProgressBlock:^(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead) {
    // bytes received - saved bytesRead variable to NSUserDefaults
}];
[operation setUploadProgressBlock:^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
    // bytes sent - saved bytesWritten variable to NSUserDefaults
}];
[operation start];
于 2013-02-13T05:14:03.657 回答