免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1105 | 回复: 0
打印 上一主题 下一主题

扫描所有mount分区数据的commit [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-23 02:09 |只看该作者 |倒序浏览
https://github.com/CyanogenMod/android_packages_providers_MediaProvider/commit/aa20f4dbf99f9f11122e560a2087d8999728c71f


src/com/android/providers/media/MediaScannerReceiver.java View file @ aa20f4d
... ...
@@ -35,29 +35,27 @@ public class MediaScannerReceiver extends BroadcastReceiver
35 35
     public void onReceive(Context context, Intent intent) {
36 36
         String action = intent.getAction();
37 37
         Uri uri = intent.getData();
38
-        String externalStoragePath = Environment.getExternalStorageDirectory().getPath();
39 38
 
40 39
         if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
41 40
             // scan internal storage
42
-            scan(context, MediaProvider.INTERNAL_VOLUME);
  41
+            scan(context, MediaProvider.INTERNAL_VOLUME, null);
43 42
         } else {
44 43
             if (uri.getScheme().equals("file")) {
45 44
                 // handle intents related to external storage
46 45
                 String path = uri.getPath();
47
-                if (action.equals(Intent.ACTION_MEDIA_MOUNTED) && 
48
-                        externalStoragePath.equals(path)) {
49
-                    scan(context, MediaProvider.EXTERNAL_VOLUME);
50
-                } else if (action.equals(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE) &&
51
-                        path != null && path.startsWith(externalStoragePath + "/")) {
  46
+                if (action.equals(Intent.ACTION_MEDIA_MOUNTED)) {
  47
+                    scan(context, MediaProvider.EXTERNAL_VOLUME, path);
  48
+                } else if (action.equals(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE)) {
52 49
                     scanFile(context, path);
53 50
                 }
54 51
             }
55 52
         }
56 53
     }
57 54
 
58
-    private void scan(Context context, String volume) {
  55
+    private void scan(Context context, String volume, String path) {
59 56
         Bundle args = new Bundle();
60 57
         args.putString("volume", volume);
  58
+        args.putString("path", path);
61 59
         context.startService(
62 60
                 new Intent(context, MediaScannerService.class).putExtras(args));
63 61
     }    
src/com/android/providers/media/MediaScannerService.java View file @ aa20f4d
... ...
@@ -256,9 +256,13 @@ public class MediaScannerService extends Service implements Runnable
256 256
                         };
257 257
                     }
258 258
                     else if (MediaProvider.EXTERNAL_VOLUME.equals(volume)) {
  259
+                        String path = arguments.getString("path");
  260
+                        if (path == null) {
  261
+                            path = Environment.getExternalStorageDirectory().getPath();
  262
+                        }
259 263
                         // scan external storage
260 264
                         directories = new String[] {
261
-                                Environment.getExternalStorageDirectory().getPath(),
  265
+                                path,
262 266
                                 };
263 267
                     }
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP