IOS开发~开机启动&无限后台运行&监听进程
非越狱情况下实现:
开机启动:App安装到IOS设备设备之后,无论App是否开启过,只要IOS设备重启,App就会随之启动;
无限后台运行:应用进入后台状态,可以无限后台运行,不被系统kill;
监听进程:可获IOS设备运行除系统外的App(包括正在运行和后台运行);
配置项目 plist文件
添加:
<key>UIBackgroundModes</key>
<array>
<string>voip</string>
</array>
功能类:ProccessHelper
- #import <Foundation/Foundation.h>
- @interface ProccessHelper : NSObject
- + (NSArray *)runningProcesses;
- @end
- #import "ProccessHelper.h"
- //#include<objc/runtime.h>
- #include <sys/sysctl.h>
- #include <stdbool.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include <sys/sysctl.h>
- @implementation ProccessHelper
- //You can determine if your app is being run under the debugger with the following code from
- static bool AmIBeingDebugged(void)
- // Returns true if the current process is being debugged (either
- // running under the debugger or has a debugger attached post facto).
- {
- int junk;
- int mib[4];
- struct kinfo_proc info;
- size_t size;
- // Initialize the flags so that, if sysctl fails for some bizarre
- // reason, we get a predictable result.
- info.kp_proc.p_flag = 0;
- // Initialize mib, which tells sysctl the info we want, in this case
- // we're looking for information about a specific process ID.
- mib[0] = CTL_KERN;
- mib[1] = KERN_PROC;
- mib[2] = KERN_PROC_PID;
- mib[3] = getpid();
- // Call sysctl.
- size = sizeof(info);
- junk = sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, NULL, 0);
- assert(junk == 0);
- // We're being debugged if the P_TRACED flag is set.
- return ( (info.kp_proc.p_flag & P_TRACED) != 0 );
- }
- //返回所有正在运行的进程的 id,name,占用cpu,运行时间
- //使用函数int sysctl(int *, u_int, void *, size_t *, void *, size_t)
- + (NSArray *)runningProcesses
- {
- //指定名字参数,按照顺序第一个元素指定本请求定向到内核的哪个子系统,第二个及其后元素依次细化指定该系统的某个部分。
- //CTL_KERN,KERN_PROC,KERN_PROC_ALL 正在运行的所有进程
- int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL ,0};
- size_t miblen = 4;
- //值-结果参数:函数被调用时,size指向的值指定该缓冲区的大小;函数返回时,该值给出内核存放在该缓冲区中的数据量
- //如果这个缓冲不够大,函数就返回ENOMEM错误
- size_t size;
- //返回0,成功;返回-1,失败
- int st = sysctl(mib, miblen, NULL, &size, NULL, 0);
- struct kinfo_proc * process = NULL;
- struct kinfo_proc * newprocess = NULL;
- do
- {
- size += size / 10;
- newprocess = realloc(process, size);
- if (!newprocess)
- {
- if (process)
- {
- free(process);
- process = NULL;
- }
- return nil;
- }
- process = newprocess;
- st = sysctl(mib, miblen, process, &size, NULL, 0);
- } while (st == -1 && errno == ENOMEM);
- if (st == 0)
- {
- if (size % sizeof(struct kinfo_proc) == 0)
- {
- int nprocess = size / sizeof(struct kinfo_proc);
- if (nprocess)
- {
- NSMutableArray * array = [[NSMutableArray alloc] init];
- for (int i = nprocess - 1; i >= 0; i--)
- {
- NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
- NSString * processID = [[NSString alloc] initWithFormat:@"%d", process[i].kp_proc.p_pid];
- NSString * processName = [[NSString alloc] initWithFormat:@"%s", process[i].kp_proc.p_comm];
- NSString * proc_CPU = [[NSString alloc] initWithFormat:@"%d", process[i].kp_proc.p_estcpu];
- double t = [[NSDate date] timeIntervalSince1970] - process[i].kp_proc.p_un.__p_starttime.tv_sec;
- NSString * proc_useTiem = [[NSString alloc] initWithFormat:@"%f",t];
- NSString *startTime = [[NSString alloc] initWithFormat:@"%ld", process[i].kp_proc.p_un.__p_starttime.tv_sec];
- NSString * status = [[NSString alloc] initWithFormat:@"%d",process[i].kp_proc.p_flag];
- NSMutableDictionary *dic = [[NSMutableDictionary alloc] init];
- [dic setValue:processID forKey:@"ProcessID"];
- [dic setValue:processName forKey:@"ProcessName"];
- [dic setValue:proc_CPU forKey:@"ProcessCPU"];
- [dic setValue:proc_useTiem forKey:@"ProcessUseTime"];
- [dic setValue:proc_useTiem forKey:@"ProcessUseTime"];
- [dic setValue:startTime forKey:@"startTime"];
- // 18432 is the currently running application
- // 16384 is background
- [dic setValue:status forKey:@"status"];
- [processID release];
- [processName release];
- [proc_CPU release];
- [proc_useTiem release];
- [array addObject:dic];
- [startTime release];
- [status release];
- [dic release];
- [pool release];
- }
- free(process);
- process = NULL;
- //NSLog(@"array = %@",array);
- return array;
- }
- }
- }
- return nil;
- }
- @end
实现代码:
- systemprocessArray = [[NSMutableArray arrayWithObjects:
- @"kernel_task",
- @"launchd",
- @"UserEventAgent",
- @"wifid",
- @"syslogd",
- @"powerd",
- @"lockdownd",
- @"mediaserverd",
- @"mediaremoted",
- @"mDNSResponder",
- @"locationd",
- @"imagent",
- @"iapd",
- @"fseventsd",
- @"fairplayd.N81",
- @"configd",
- @"apsd",
- @"aggregated",
- @"SpringBoard",
- @"CommCenterClassi",
- @"BTServer",
- @"notifyd",
- @"MobilePhone",
- @"ptpd",
- @"afcd",
- @"notification_pro",
- @"notification_pro",
- @"syslog_relay",
- @"notification_pro",
- @"springboardservi",
- @"atc",
- @"sandboxd",
- @"networkd",
- @"lsd",
- @"securityd",
- @"lockbot",
- @"installd",
- @"debugserver",
- @"amfid",
- @"AppleIDAuthAgent",
- @"BootLaunch",
- @"MobileMail",
- @"BlueTool",
- nil] retain];
- - (void)applicationDidEnterBackground:(UIApplication *)application
- {
- while (1) {
- sleep(5);
- [self postMsg];
- }
- [[UIApplication sharedApplication] setKeepAliveTimeout:600 handler:^{
- NSLog(@"KeepAlive");
- }];
- }
- - (void)applicationWillResignActive:(UIApplication *)application
- {
- }
- - (void)applicationWillEnterForeground:(UIApplication *)application
- {
- }
- - (void)applicationDidBecomeActive:(UIApplication *)application
- {
- }
- - (void)applicationWillTerminate:(UIApplication *)application
- {
- }
- #pragma mark -
- #pragma mark - User Method
- - (void) postMsg
- {
- //上传到服务器
- NSURL *url = [self getURL];
- NSURLRequest *request = [[NSURLRequest alloc]initWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:10];
- NSError *error = nil;
- NSData *received = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&error];
- if (error) {
- NSLog(@"error:%@", [error localizedDescription]);
- }
- NSString *str = [[NSString alloc]initWithData:received encoding:NSUTF8StringEncoding];
- NSLog(@"%@",str);
- }
- - (NSURL *) getURL
- {
- UIDevice *device = [UIDevice currentDevice];
- NSString* uuid = @"TESTUUID";
- NSString* manufacturer = @"apple";
- NSString* model = [device model];
- NSString* mobile = [device systemVersion];
- NSString *msg = [NSString stringWithFormat:@"Msg:%@ Time:%@", [self processMsg], [self getTime]];
- CFShow(msg);
- / 省略部分代码 /
- NSString *urlStr = [strUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
- NSURL *url = [NSURL URLWithString:urlStr];
- return url;
- }
- - (BOOL) checkSystemProccess:(NSString *) proName
- {
- if ([systemprocessArray containsObject:proName]) {
- return YES;
- }
- return NO;
- }
- - (BOOL) checkFirst:(NSString *) string
- {
- NSString *str = [string substringToIndex:1];
- NSRange r = [@"ABCDEFGHIJKLMNOPQRSTUVWXWZ" rangeOfString:str];
- if (r.length > 0) {
- return YES;
- }
- return NO;
- }
- - (NSString *) processMsg
- {
- NSArray *proMsg = [ProccessHelper runningProcesses];
- if (proMsg == nil) {
- return nil;
- }
- NSMutableArray *proState = [NSMutableArray array];
- for (NSDictionary *dic in proMsg) {
- NSString *proName = [dic objectForKey:@"ProcessName"];
- if (![self checkSystemProccess:proName] && [self checkFirst:proName]) {
- NSString *proID = [dic objectForKey:@"ProcessID"];
- NSString *proStartTime = [dic objectForKey:@"startTime"];
- if ([[dic objectForKey:@"status"] isEqualToString:@"18432"]) {
- NSString *msg = [NSString stringWithFormat:@"ProcessName:%@ - ProcessID:%@ - StartTime:%@ Running:YES", proName, proID, proStartTime];
- [proState addObject:msg];
- } else {
- NSString *msg = [NSString stringWithFormat:@"ProcessName:%@ - ProcessID:%@ - StartTime:%@ Running:NO", proName, proID, proStartTime];
- [proState addObject:msg];
- }
- }
- }
- NSString *msg = [proState componentsJoinedByString:@"______"];
- return msg;
- }
- // 获取时间
- - (NSString *) getTime
- {
- NSDateFormatter *formatter =[[[NSDateFormatter alloc] init] autorelease];
- formatter.dateStyle = NSDateFormatterMediumStyle;
- formatter.timeStyle = NSDateFormatterMediumStyle;
- formatter.locale = [NSLocale currentLocale];
- NSDate *date = [NSDate date];
- [formatter setTimeStyle:NSDateFormatterMediumStyle];
- NSCalendar *calendar = [[[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar] autorelease];
- NSDateComponents *comps = [[[NSDateComponents alloc] init] autorelease];
- NSInteger unitFlags = NSYearCalendarUnit |
- NSMonthCalendarUnit |
- NSDayCalendarUnit |
- NSWeekdayCalendarUnit |
- NSHourCalendarUnit |
- NSMinuteCalendarUnit |
- NSSecondCalendarUnit;
- comps = [calendar components:unitFlags fromDate:date];
- int year = [comps year];
- int month = [comps month];
- int day = [comps day];
- int hour = [comps hour];
- int min = [comps minute];
- int sec = [comps second];
- NSString *time = [NSString stringWithFormat:@"%d-%d-%d %d:%d:%d", year, month, day, hour, min, sec];
- return time;
- }
- @end
IOS开发~开机启动&无限后台运行&监听进程的更多相关文章
- IOS高级开发~开机启动&无限后台运行&监听进程
一般来说, IOS很少给App后台运行的权限. 仅有的方式就是 VoIP. IOS少有的为VoIP应用提供了后台socket连接,定期唤醒并且随开机启动的权限.而这些就是IOS上实现VoIP App的 ...
- 安卓开机启动service后台运行
安卓开机启动service后台运行 Android开机启动时会发送一个广播android.intent.action.BOOT_COMPLETED,捕捉到这个广播,然后可以进行相应的操作,比如:通过捕 ...
- iOS开发UI篇—无限轮播(循环展示)
iOS开发UI篇—无限轮播(循环展示) 一.简单说明 之前的程序还存在一个问题,那就是不能循环展示,因为plist文件中只有五个数组,因此第一个和最后一个之后就没有了,下面介绍处理这种循环展示问题的小 ...
- iOS开发UI篇—无限轮播(功能完善)
iOS开发UI篇—无限轮播(功能完善) 一.自动滚动 添加并设置一个定时器,每个2.0秒,就跳转到下一条. 获取当前正在展示的位置. [self addNSTimer]; } -(void)addNS ...
- iOS开发UI篇—无限轮播(循环利用)
iOS开发UI篇—无限轮播(循环利用) 一.无限轮播 1.简单说明 在开发中常需要对广告或者是一些图片进行自动的轮播,也就是所谓的无限滚动. 在开发的时候,我们通常的做法是使用一个UIScrollV ...
- iOS开发UI篇—无限轮播(新闻数据展示)
iOS开发UI篇—无限轮播(新闻数据展示) 一.实现效果 二.实现步骤 1.前期准备 (1)导入数据转模型的第三方框架MJExtension (2)向项目中添加保存有“新闻”数据的pli ...
- 【iOS系列】-程序开启后台运行
[iOS系列]-程序开启后台运行 iOS程序是伪后台的运行,可是有时候我们需要让其在后台也要进行一些操作,我们可以让其伪装成音乐的APP,这样就可以让程序后台进行相关操作了,具体做法如下: 1:在Ap ...
- Android实训案例(六)——四大组件之一BroadcastReceiver的基本使用,拨号,短信,SD卡,开机,应用安装卸载监听
Android实训案例(六)--四大组件之一BroadcastReceiver的基本使用,拨号,短信,SD卡,开机,应用安装卸载监听 Android中四大组件的使用时重中之重,我这个阶段也不奢望能把他 ...
- asp.net core启动源码以及监听,到处理请求响应的过程
摘要 asp.net core发布至今已经将近6年了,很多人对于这一块还是有些陌生,或者说没接触过:接触过的,对于asp.net core整个启动过程,监听过程,以及请求过程,响应过程也是一知半解,可 ...
随机推荐
- 可实现一键分享到多个平台(微信,微博,qq空间,人人等)
友推是一款是面向移动应用的SDK分享组件,提供给开发者集成使用.通过友推,开发者可以轻松集成社会化分享功能,同时创建及管理推荐好友使用您应用的推荐奖励活动,用户推荐好友安装使用您的应用即可获得推荐奖励 ...
- Jquery 实现层的拖动,支持回调函数
最近在写一个CMS内容管理系统,前台基本是用ajax异步请求服务器,通过ashx处理,返回json格式处理.由于需要更加人性化的界面,所以采用到了拖动层的操作. 以下是拖动层的主要核心方法,本来想写成 ...
- 13、jQueryMobile知识总结
1.jQueryMobile与jQuery的区别 jQueryMobile是一个为触控优化的框架,用于创建移动Web应用程序:构建于jQuery之上,适用于流行的智能手机和平板 基于jQuery的手机 ...
- ogre3D学习基础15 -- 创建BSP Scene Manager
BSP(binary-space partitioning) Scene Manager(二叉空间分割)场景管理器比较适合用于室内场景. 第一,添加框架代码如下 #include "Exam ...
- BugKu-图穷匕见
拿到图片后,先放到winhex,看看文件头是不是和jpg匹配,看看文件尾,不是FFD9 ,说明后边肯定是藏了什么东西. 顺便找一下文件尾有没有flag(估计是签到题目才会这样吧). binwalk跑一 ...
- CSU-2046: sequence
CSU-2046: sequence Description 给出一个长度为N的正整数序列a,你有两种变换操作: 1.把数列中的某个数乘 2. 2.把数列中的所有数减 1. 现在你需要通过最少的变换操 ...
- Qt数据库查询之事务操作
在做借书系统的时候,用到了事务操作,不会使用qt中事务操作怎么写,查了一些博客帖子,并不起作用,后来发现,在进行事务成功判断时,出现问题,正确代码如下 if(QSqlDatabase::databas ...
- jquery版右下角弹窗效果
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...
- layer 体验
做后端的,前端一直不擅长,提示语以前也只会alert,非常难看,后来在别人代码看到lay.msg() https://pan.baidu.com/s/1eRHH59g <!DOCTYPE htm ...
- BZOJ 4326:NOIP2015 运输计划(二分+差分+lca)
NOIP2015 运输计划Description公元 2044 年,人类进入了宇宙纪元.L 国有 n 个星球,还有 n−1 条双向航道,每条航道建立在两个星球之间,这 n−1 条航道连通了 L 国的所 ...