现在的位置: 首页 > 综合 > 正文

【iPhone开发】ios统计流量代码

2018年02月13日 ⁄ 综合 ⁄ 共 2735字 ⁄ 字号 评论关闭

  1. #include <ifaddrs.h>  
  2. #include <sys/socket.h>  
  3. #include <net/if.h>  

1.3G/GPRS流量统计

  1. int getGprs3GFlowIOBytes()  
  2. {  
  3.     struct ifaddrs *ifa_list = 0, *ifa;  
  4.     if (getifaddrs(&ifa_list) == -1)  
  5.     {  
  6.         return 0;  
  7.     }  
  8.    
  9.     uint32_t iBytes = 0;  
  10.     uint32_t oBytes = 0;  
  11.    
  12.     for (ifa = ifa_list; ifa; ifa = ifa->ifa_next)  
  13.     {  
  14.         if (AF_LINK != ifa->ifa_addr->sa_family)  
  15.             continue;  
  16.    
  17.         if (!(ifa->ifa_flags & IFF_UP) && !(ifa->ifa_flags & IFF_RUNNING))  
  18.             continue;  
  19.    
  20.         if (ifa->ifa_data == 0)  
  21.             continue;  
  22.    
  23.         if (!strcmp(ifa->ifa_name, "pdp_ip0"))  
  24.         {  
  25.             struct if_data *if_data = (struct if_data *)ifa->ifa_data;  
  26.    
  27.             iBytes += if_data->ifi_ibytes;  
  28.             oBytes += if_data->ifi_obytes;  
  29.             NSLog(@"%s :iBytes is %d, oBytes is %d",  
  30.                   ifa->ifa_name, iBytes, oBytes);  
  31.         }  
  32.     }  
  33.     freeifaddrs(ifa_list);  
  34.    
  35.     return iBytes + oBytes;  
  36. }  


返回的结果为byte

2.WIFI流量统计功能

  1. - (long long int)getInterfaceBytes  
  2. {  
  3.     struct ifaddrs *ifa_list = 0, *ifa;  
  4.     if (getifaddrs(&ifa_list) == -1)  
  5.     {  
  6.         return 0;  
  7.     }  
  8.    
  9.     uint32_t iBytes = 0;  
  10.     uint32_t oBytes = 0;  
  11.    
  12.     for (ifa = ifa_list; ifa; ifa = ifa->ifa_next)  
  13.     {  
  14.         if (AF_LINK != ifa->ifa_addr->sa_family)  
  15.             continue;  
  16.    
  17.         if (!(ifa->ifa_flags & IFF_UP) && !(ifa->ifa_flags & IFF_RUNNING))  
  18.             continue;  
  19.    
  20.         if (ifa->ifa_data == 0)  
  21.             continue;  
  22.    
  23.         /* Not a loopback device. */  
  24.         if (strncmp(ifa->ifa_name, "lo"2))  
  25.         {  
  26.             struct if_data *if_data = (struct if_data *)ifa->ifa_data;  
  27.    
  28.             iBytes += if_data->ifi_ibytes;  
  29.             oBytes += if_data->ifi_obytes;  
  30.    
  31. //            NSLog(@"%s :iBytes is %d, oBytes is %d",  
  32. //                  ifa->ifa_name, iBytes, oBytes);  
  33.         }  
  34.     }  
  35.     freeifaddrs(ifa_list);  
  36.    
  37.     return iBytes+oBytes;  
  38. }  


以上获取的数据可以通过以下方式进行单位转换

  1. NSString *bytesToAvaiUnit(int bytes)  
  2. {  
  3.     if(bytes < 1024)     // B  
  4.     {  
  5.         return [NSString stringWithFormat:@"%dB", bytes];  
  6.     }  
  7.     else if(bytes >= 1024 && bytes < 1024 * 1024) // KB  
  8.     {  
  9.         return [NSString stringWithFormat:@"%.1fKB", (double)bytes / 1024];  
  10.     }  
  11.     else if(bytes >= 1024 * 1024 && bytes < 1024 * 1024 * 1024)   // MB  
  12.     {  
  13.         return [NSString stringWithFormat:@"%.2fMB", (double)bytes / (1024 * 1024)];  
  14.     }  
  15.     else    // GB  
  16.     {  
  17.         return [NSString stringWithFormat:@"%.3fGB", (double)bytes / (1024 * 1024 * 1024)];  
  18.     }  
  19. }  

转自:http://blog.csdn.net/jinzhu117/article/details/7950831

抱歉!评论已关闭.