转载出处:http://blog.csdn.net/allen315410/article/details/42555415
在上一篇博客中,我们讲了一个小小的案例,用NDK监听应用程序自身卸载,并且打开内置浏览器加载用户调用页面。关于监听应用程序自身卸载的原理和实现方案可以在上篇博客中找到,地址是:http://blog.csdn.net/allen315410/article/details/42521251,这里就不再复述了。
值得注意的是,在上篇博客中我也已经引述了一个案例中存在的问题,就是在监听应用程序安装目录是否被删除时,使用了while(true)这种死循环,让C代码每隔1秒钟去自动执行一次检查应用程序安装目录是否还存在,这样做效果是完全可以实现的,但是弊端也是显而易见的,由于使用了死循环,这样代码是不环保的,不可避免的重复执行,重复打印LOG,占用cpu计算资源,这是一种不太好的解决方案。
在这里,我来介绍一个比较好的解决方案,就是使用Linux系统的一个内核特性——Inotify,来监听应用程序安装目录的变化,inotify 是一种文件系统的变化通知机制,如文件增加、删除等事件可以立刻让用户态得知,这种机制是为了弥补Linux系统在桌面领域的不足而产生,在Linux2,.6内核中被添加,值得庆幸的是我们伟大的Android系统就是构建在Linux2.6内核的基础上的,所以Android里也就包含了Inotify机制。
关于Inotify:
在用户态,inotify 通过三个系统调用和在返回的文件描述符上的文件 I/O 操作来使用,使用 inotify 的第一步是创建 inotify 实例:
- int fd = inotify_init ();
文件系统的变化事件被称做 watches 的一个对象管理,每一个 watch 是一个二元组(目标,事件掩码),目标可以是文件或目录,事件掩码表示应用希望关注的 inotify 事件,每一个位对应一个 inotify 事件。Watch 对象通过 watch描述符引用,watches 通过文件或目录的路径名来添加。目录 watches 将返回在该目录下的所有文件上面发生的事件。
下面函数用于添加一个 watch:
- int wd = inotify_add_watch (fd, path, mask);
下面是mask事件掩码的可选值:
IN_ACCESS,即文件被访问
IN_MODIFY,文件被 write
IN_ATTRIB,文件属性被修改,如 chmod、chown、touch 等
IN_CLOSE_WRITE,可写文件被 close
IN_CLOSE_NOWRITE,不可写文件被 close
IN_OPEN,文件被 open
IN_MOVED_FROM,文件被移走,如 mv
IN_MOVED_TO,文件被移来,如 mv、cp
IN_CREATE,创建新文件
IN_DELETE,文件被删除,如 rm
IN_DELETE_SELF,自删除,即一个可执行文件在执行时删除自己
IN_MOVE_SELF,自移动,即一个可执行文件在执行时移动自己
IN_UNMOUNT,宿主文件系统被 umount
IN_CLOSE,文件被关闭,等同于(IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
IN_MOVE,文件被移动,等同于(IN_MOVED_FROM | IN_MOVED_TO)
注:上面所说的文件也包括目录。
下面的函数用于删除一个 watch:
- int ret = inotify_rm_watch (fd, wd);
文件事件用一个 inotify_event 结构表示,它通过由 inotify_init() 返回的文件描述符使用通常文件读取函数 read 来获得:
- struct inotify_event {
- __s32 wd; /* watch descriptor */
- __u32 mask; /* watch mask */
- __u32 cookie; /* cookie to synchronize two events */
- __u32 len; /* length (including nulls) of name */
- char name[0]; /* stub for possible name */
- };
通过 read 调用可以一次获得多个事件,只要提供的 buf 足够大。
- size_t len = read (fd, buf, BUF_LEN);
可以在函数 inotify_init() 返回的文件描述符 fd 上使用 select() 或poll(), 也可以在 fd 上使用 ioctl 命令 FIONREAD 来得到当前队列的长度。close(fd)将删除所有添加到 fd 中的 watch 并做必要的清理。
- int inotify_init (void);
- int inotify_add_watch (int fd, const char *path, __u32 mask);
- int inotify_rm_watch (int fd, __u32 mask);
代码实现:
关于代码的编写,大部分可以参考上篇博客的案例代码,因为大部分代码和配置文件以及编译步骤在上篇博客中以及写的比较详尽了,这里就不重复编写了,唯一需要改的部分就是,将C代码中的while(true)死循环部分删掉,改成用Inotify机制去监听应用目录的变化:
编译的头文件:
- /* DO NOT EDIT THIS FILE - it is machine generated */
- #include <jni.h>
- /* Header for class com_example_appuninstalldemo_MainActivity */
- #ifndef _Included_com_example_appuninstalldemo_MainActivity
- #define _Included_com_example_appuninstalldemo_MainActivity
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*
- * Class: com_example_appuninstalldemo_MainActivity
- * Method: uninstall
- * Signature: (Ljava/lang/String;I)V
- */
- JNIEXPORT void JNICALL Java_com_example_appuninstalldemo_MainActivity_uninstall
- (JNIEnv *, jobject, jstring, jint);
- #ifdef __cplusplus
- }
- #endif
- #endif
- #include <stdio.h>
- #include <jni.h>
- #include <malloc.h>
- #include <string.h>
- #include <strings.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <sys/inotify.h>
- #include <fcntl.h>
- #include <stdint.h>
- #include "com_example_appuninstalldemo_MainActivity.h"
- #include <android/log.h>
- #define LOG_TAG "System.out.c"
- #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
- #define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)
- /**
- * 返回值 char* 这个代表char数组的首地址
- * Jstring2CStr 把java中的jstring的类型转化成一个c语言中的char 字符串
- */
- char* Jstring2CStr(JNIEnv* env, jstring jstr) {
- char* rtn = NULL;
- jclass clsstring = (*env)->FindClass(env, "java/lang/String"); //String
- jstring strencode = (*env)->NewStringUTF(env, "GB2312"); // 得到一个java字符串 "GB2312"
- jmethodID mid = (*env)->GetMethodID(env, clsstring, "getBytes",
- "(Ljava/lang/String;)[B"); //[ String.getBytes("gb2312");
- jbyteArray barr = (jbyteArray) (*env)->CallObjectMethod(env, jstr, mid,
- strencode); // String .getByte("GB2312");
- jsize alen = (*env)->GetArrayLength(env, barr); // byte数组的长度
- jbyte* ba = (*env)->GetByteArrayElements(env, barr, JNI_FALSE);
- if (alen > 0) {
- rtn = (char*) malloc(alen + 1); //"\0"
- memcpy(rtn, ba, alen);
- rtn[alen] = 0;
- }
- (*env)->ReleaseByteArrayElements(env, barr, ba, 0); //
- return rtn;
- }
- JNIEXPORT void JNICALL Java_com_example_appuninstalldemo_MainActivity_uninstall(
- JNIEnv * env, jobject obj, jstring packageDir, jint sdkVersion) {
- // 1,将传递过来的java的包名转为c的字符串
- char * pd = Jstring2CStr(env, packageDir);
- // 2,创建当前进程的克隆进程
- pid_t pid = fork();
- // 3,根据返回值的不同做不同的操作,<0,>0,=0
- if (pid < 0) {
- // 说明克隆进程失败
- LOGD("current crate process failure");
- } else if (pid > 0) {
- // 说明克隆进程成功,而且该代码运行在父进程中
- LOGD("crate process success,current parent pid = %d", pid);
- } else {
- // 说明克隆进程成功,而且代码运行在子进程中
- LOGD("crate process success,current child pid = %d", pid);
- // 4,在子进程中监视/data/data/包名这个目录
- //初始化inotify进程
- int fd = inotify_init();
- if (fd < 0) {
- LOGD("inotify_init failed !!!");
- exit(1);
- }
- //添加inotify监听器
- int wd = inotify_add_watch(fd, pd, IN_DELETE);
- if (wd < 0) {
- LOGD("inotify_add_watch failed !!!");
- exit(1);
- }
- //分配缓存,以便读取event,缓存大小=一个struct inotify_event的大小,这样一次处理一个event
- void *p_buf = malloc(sizeof(struct inotify_event));
- if (p_buf == NULL) {
- LOGD("malloc failed !!!");
- exit(1);
- }
- //开始监听
- LOGD("start observer");
- ssize_t readBytes = read(fd, p_buf,sizeof(struct inotify_event));
- //read会阻塞进程,走到这里说明收到目录被删除的事件,注销监听器
- free(p_buf);
- inotify_rm_watch(fd, IN_DELETE);
- // 应用被卸载了,通知系统打开用户反馈的网页
- LOGD("app uninstall,current sdkversion = %d", sdkVersion);
- if (sdkVersion >= 17) {
- // Android4.2系统之后支持多用户操作,所以得指定用户
- execlp("am", "am", "start", "--user", "0", "-a",
- "android.intent.action.VIEW", "-d", "http://www.baidu.com",
- (char*) NULL);
- } else {
- // Android4.2以前的版本无需指定用户
- execlp("am", "am", "start", "-a", "android.intent.action.VIEW",
- "-d", "http://www.baidu.com", (char*) NULL);
- }
- }
- }
Java层代码很简单,直接看:
- public class MainActivity extends Activity {
- static {
- System.loadLibrary("uninstall");
- }
- public native void uninstall(String packageDir, int sdkVersion);
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- String packageDir = "/data/data/" + getPackageName();
- int sdkVersion = android.os.Build.VERSION.SDK_INT;
- uninstall(packageDir, sdkVersion);
- }
- }
运行之后卸载应用程序,效果如下: