summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/ingest/data/MtpBitmapFetch.java
blob: 46a2051be11c8f3fafa5ed0a41a1372aa2ecf365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.gallery3d.ingest.data;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.mtp.MtpDevice;
import android.mtp.MtpObjectInfo;
import android.util.DisplayMetrics;
import android.view.WindowManager;

import com.android.camera.Exif;
import com.android.gallery3d.common.Utils;
import com.android.gallery3d.data.BitmapPool;

import java.util.ArrayList;

public class MtpBitmapFetch {
    private static final int BITMAP_POOL_SIZE = 32;
    private static BitmapPool sThumbnailPool = new BitmapPool(BITMAP_POOL_SIZE);
    private static int sMaxSize = 0;

    public static void recycleThumbnail(Bitmap b) {
        if (b != null) {
            sThumbnailPool.recycle(b);
        }
    }

    public static Bitmap getThumbnail(MtpDevice device, MtpObjectInfo info) {
        byte[] imageBytes = device.getThumbnail(info.getObjectHandle());
        if (imageBytes == null) return null;
        BitmapFactory.Options o = new BitmapFactory.Options();
        o.inJustDecodeBounds = true;
        BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o);
        if (o.outWidth == 0 || o.outHeight == 0) return null;
        o.inBitmap = sThumbnailPool.getBitmap(o.outWidth, o.outHeight);
        o.inMutable = true;
        o.inJustDecodeBounds = false;
        o.inSampleSize = 1;
        return BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o);
    }

    public static BitmapWithMetadata getFullsize(MtpDevice device, MtpObjectInfo info) {
        return getFullsize(device, info, sMaxSize);
    }

    public static BitmapWithMetadata getFullsize(MtpDevice device, MtpObjectInfo info, int maxSide) {
        byte[] imageBytes = device.getObject(info.getObjectHandle(), info.getCompressedSize());
        if (imageBytes == null) return null;
        Bitmap created;
        if (maxSide > 0) {
            BitmapFactory.Options o = new BitmapFactory.Options();
            o.inJustDecodeBounds = true;
            BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o);
            int w = o.outWidth;
            int h = o.outHeight;
            int comp = Math.max(h, w);
            int sampleSize = 1;
            while ((comp >> 1) >= maxSide) {
                comp = comp >> 1;
                sampleSize++;
            }
            o.inSampleSize = sampleSize;
            o.inJustDecodeBounds = false;
            created = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o);
        } else {
            created = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length);
        }
        if (created == null) return null;

        return new BitmapWithMetadata(created, Exif.getOrientation(imageBytes));
    }

    public static void onDeviceDisconnected(MtpDevice device) {
        sThumbnailPool.clear();
    }

    public static void configureForContext(Context context) {
        DisplayMetrics metrics = new DisplayMetrics();
        WindowManager wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
        wm.getDefaultDisplay().getMetrics(metrics);
        sMaxSize = Math.max(metrics.heightPixels, metrics.widthPixels);
    }
}