博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++判断android是否含有某个进程
阅读量:5244 次
发布时间:2019-06-14

本文共 2836 字,大约阅读时间需要 9 分钟。

Process.h

//// Created by wenlongbai on 8/14/17.//#ifndef BWL_PROCESS_H#define BWL_PROCESS_H#ifdef __cplusplusextern "C" {#endif// 验证是否含有指定的进程int checkProcess(char* processName);#ifdef __cplusplus};#endif#endif //BWL_PROCESS_H

 

Process.cpp

//// Created by wenlongbai on 8/14/17.//#include "Process.h"#include "Util.h"#include 
#include
#include
bool GetModuleBase(long long &ulModBase, pid_t pid, const char *pszModName) { bool bRet = false; FILE *fp = NULL; char szMapFilePath[32] = {
0}; char szMapFileLine[1024] = {
0}; if (pszModName == NULL) { return bRet; } if (pid < 0) { sprintf(szMapFilePath, "/proc/self/maps"); } else { sprintf(szMapFilePath, "/proc/%d/maps", pid); } fp = fopen(szMapFilePath, "r"); if (fp != NULL) { while (fgets(szMapFileLine, sizeof(szMapFileLine), fp) != NULL) { if (strstr(szMapFileLine, pszModName)) { char *pszModAddrStart = strtok(szMapFileLine, "-"); if (pszModAddrStart) { ulModBase = strtoul(pszModAddrStart, NULL, 16); if (ulModBase == 0x8000) ulModBase = 0; bRet = true; break; } } } fclose(fp); } return bRet;}bool GetModuleFullName(pid_t pid, const char *pszModName, char *pszFullModName, int nBuffSize) { bool bRet = false; FILE *fp = NULL; char szMapFilePath[32] = {
0}; char szMapFileLine[1024] = {
0}; char *pszFullName = NULL; if (pszModName == NULL || pszFullModName == NULL || nBuffSize <= 0) { return bRet; } if (pid < 0) { sprintf(szMapFilePath, "/proc/self/maps"); } else { sprintf(szMapFilePath, "/proc/%d/maps", pid); } fp = fopen(szMapFilePath, "r"); if (fp != NULL) { while (!bRet && fgets(szMapFileLine, sizeof(szMapFileLine), fp) != NULL) { if (strstr(szMapFileLine, pszModName)) { if (szMapFileLine[strlen(szMapFileLine) - 1] == '\n') { szMapFileLine[strlen(szMapFileLine) - 1] = 0; } pszFullName = strchr(szMapFileLine, '/'); if (pszFullName == NULL) { continue; } strncpy(pszFullModName, pszFullName, nBuffSize - 1); LOGD("pszFullName = %s", pszFullName); bRet = true; } } fclose(fp); } return bRet;}int checkProcess(char *processName) { LOGI("check: start"); long long ulCModBase = 0; if (GetModuleBase(ulCModBase, getpid(), processName)) { LOGI("check: finish"); return 1; } LOGI("check: finish"); return 0;}

 

转载于:https://www.cnblogs.com/bwlcool/p/8580685.html

你可能感兴趣的文章
python习题:unittest参数化-数据从文件或excel中读取
查看>>
在工程中要加入新的错误弹出方法
查看>>
PS 滤镜— — sparkle 效果
查看>>
snmpwalk命令常用方法总结
查看>>
网站产品设计
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
mybatis源代码分析:深入了解mybatis延迟加载机制
查看>>
Flask三剑客
查看>>
Hibernate-缓存
查看>>
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>