Issue 112
[zxing.git] / android / src / com / google / zxing / client / android / DecodeThread.java
1 /*
2  * Copyright (C) 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android;
18
19 import com.google.zxing.BarcodeFormat;
20 import com.google.zxing.BinaryBitmap;
21 import com.google.zxing.DecodeHintType;
22 import com.google.zxing.MultiFormatReader;
23 import com.google.zxing.ReaderException;
24 import com.google.zxing.Result;
25 import com.google.zxing.ResultPointCallback;
26 import com.google.zxing.common.HybridBinarizer;
27
28 import android.content.SharedPreferences;
29 import android.os.Bundle;
30 import android.os.Handler;
31 import android.os.Looper;
32 import android.os.Message;
33 import android.preference.PreferenceManager;
34 import android.util.Log;
35
36 import java.util.Hashtable;
37 import java.util.Vector;
38
39 /**
40  * This thread does all the heavy lifting of decoding the images.
41  *
42  * @author dswitkin@google.com (Daniel Switkin)
43  */
44 final class DecodeThread extends Thread {
45
46   public static final String BARCODE_BITMAP = "barcode_bitmap";
47   private static final String TAG = "DecodeThread";
48
49   private Handler handler;
50   private final CaptureActivity activity;
51   private final MultiFormatReader multiFormatReader;
52   private final ResultPointCallback resultPointCallback;
53
54   DecodeThread(CaptureActivity activity,
55                Vector<BarcodeFormat> decodeFormats,
56                ResultPointCallback resultPointCallback) {
57     this.activity = activity;
58     multiFormatReader = new MultiFormatReader();
59     this.resultPointCallback = resultPointCallback;
60
61     // The prefs can't change while the thread is running, so pick them up once here.
62     if (decodeFormats == null || decodeFormats.isEmpty()) {
63       SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
64       boolean decode1D = prefs.getBoolean(PreferencesActivity.KEY_DECODE_1D, true);
65       boolean decodeQR = prefs.getBoolean(PreferencesActivity.KEY_DECODE_QR, true);
66       if (decode1D && decodeQR) {
67         doSetDecodeMode(CaptureActivity.ALL_FORMATS);
68       } else if (decode1D) {
69         doSetDecodeMode(CaptureActivity.ONE_D_FORMATS);
70       } else if (decodeQR) {
71         doSetDecodeMode(CaptureActivity.QR_CODE_FORMATS);
72       }
73     } else {
74       doSetDecodeMode(decodeFormats);
75     }
76   }
77
78   Handler getHandler() {
79     return handler;
80   }
81
82   @Override
83   public void run() {
84     Looper.prepare();
85     handler = new Handler() {
86       @Override
87       public void handleMessage(Message message) {
88         switch (message.what) {
89           case R.id.decode:
90             decode((byte[]) message.obj, message.arg1, message.arg2);
91             break;
92           case R.id.quit:
93             Looper.myLooper().quit();
94             break;
95         }
96       }
97     };
98     Looper.loop();
99   }
100
101   private void doSetDecodeMode(Vector<BarcodeFormat> vector) {
102     Hashtable<DecodeHintType, Object> hints = new Hashtable<DecodeHintType, Object>(3);
103     if (vector != null) {
104       hints.put(DecodeHintType.POSSIBLE_FORMATS, vector);
105     }
106     hints.put(DecodeHintType.NEED_RESULT_POINT_CALLBACK, resultPointCallback);
107     multiFormatReader.setHints(hints);
108   }
109
110   /**
111    * Decode the data within the viewfinder rectangle, and time how long it took. For efficiency,
112    * reuse the same reader objects from one decode to the next.
113    *
114    * @param data   The YUV preview frame.
115    * @param width  The width of the preview frame.
116    * @param height The height of the preview frame.
117    */
118   private void decode(byte[] data, int width, int height) {
119     long start = System.currentTimeMillis();
120     Result rawResult = null;
121     PlanarYUVLuminanceSource source = CameraManager.get().buildLuminanceSource(data, width, height);
122     BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
123     try {
124       rawResult = multiFormatReader.decodeWithState(bitmap);
125     } catch (ReaderException re) {
126       // continue
127     } finally {
128       multiFormatReader.reset();
129     }
130
131     if (rawResult != null) {
132       long end = System.currentTimeMillis();
133       Log.v(TAG, "Found barcode (" + (end - start) + " ms):\n" + rawResult.toString());
134       Message message = Message.obtain(activity.getHandler(), R.id.decode_succeeded, rawResult);
135       Bundle bundle = new Bundle();
136       bundle.putParcelable(BARCODE_BITMAP, source.renderCroppedGreyscaleBitmap());
137       message.setData(bundle);
138       message.sendToTarget();
139     } else {
140       Message message = Message.obtain(activity.getHandler(), R.id.decode_failed);
141       message.sendToTarget();
142     }
143   }
144 }