Issue 338
[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
53   DecodeThread(CaptureActivity activity,
54                Vector<BarcodeFormat> decodeFormats,
55                String characterSet,
56                ResultPointCallback resultPointCallback) {
57     this.activity = activity;
58     multiFormatReader = new MultiFormatReader();
59     Hashtable<DecodeHintType, Object> hints = new Hashtable<DecodeHintType, Object>(3);
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         hints.put(DecodeHintType.POSSIBLE_FORMATS, CaptureActivity.ALL_FORMATS);
68       } else if (decode1D) {
69         hints.put(DecodeHintType.POSSIBLE_FORMATS, CaptureActivity.ONE_D_FORMATS);
70       } else if (decodeQR) {
71         hints.put(DecodeHintType.POSSIBLE_FORMATS, CaptureActivity.QR_CODE_FORMATS);
72       }
73     } else {
74       hints.put(DecodeHintType.POSSIBLE_FORMATS, decodeFormats);
75     }
76
77     if (characterSet != null) {
78       hints.put(DecodeHintType.CHARACTER_SET, characterSet);
79     }
80
81     hints.put(DecodeHintType.NEED_RESULT_POINT_CALLBACK, resultPointCallback);
82
83     multiFormatReader.setHints(hints);
84   }
85
86   Handler getHandler() {
87     return handler;
88   }
89
90   @Override
91   public void run() {
92     Looper.prepare();
93     handler = new Handler() {
94       @Override
95       public void handleMessage(Message message) {
96         switch (message.what) {
97           case R.id.decode:
98             decode((byte[]) message.obj, message.arg1, message.arg2);
99             break;
100           case R.id.quit:
101             Looper.myLooper().quit();
102             break;
103         }
104       }
105     };
106     Looper.loop();
107   }
108
109   /**
110    * Decode the data within the viewfinder rectangle, and time how long it took. For efficiency,
111    * reuse the same reader objects from one decode to the next.
112    *
113    * @param data   The YUV preview frame.
114    * @param width  The width of the preview frame.
115    * @param height The height of the preview frame.
116    */
117   private void decode(byte[] data, int width, int height) {
118     long start = System.currentTimeMillis();
119     Result rawResult = null;
120     PlanarYUVLuminanceSource source = CameraManager.get().buildLuminanceSource(data, width, height);
121     BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
122     try {
123       rawResult = multiFormatReader.decodeWithState(bitmap);
124     } catch (ReaderException re) {
125       // continue
126     } finally {
127       multiFormatReader.reset();
128     }
129
130     if (rawResult != null) {
131       long end = System.currentTimeMillis();
132       Log.v(TAG, "Found barcode (" + (end - start) + " ms):\n" + rawResult.toString());
133       Message message = Message.obtain(activity.getHandler(), R.id.decode_succeeded, rawResult);
134       Bundle bundle = new Bundle();
135       bundle.putParcelable(BARCODE_BITMAP, source.renderCroppedGreyscaleBitmap());
136       message.setData(bundle);
137       message.sendToTarget();
138     } else {
139       Message message = Message.obtain(activity.getHandler(), R.id.decode_failed);
140       message.sendToTarget();
141     }
142   }
143 }