f297361c06efd7a611713600b0ac752226885a19
[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.DecodeHintType;
21 import com.google.zxing.ResultPointCallback;
22
23 import android.content.SharedPreferences;
24 import android.os.Handler;
25 import android.os.Looper;
26 import android.preference.PreferenceManager;
27
28 import java.util.Hashtable;
29 import java.util.Vector;
30
31 /**
32  * This thread does all the heavy lifting of decoding the images.
33  *
34  * @author dswitkin@google.com (Daniel Switkin)
35  */
36 final class DecodeThread extends Thread {
37
38   public static final String BARCODE_BITMAP = "barcode_bitmap";
39
40   private final CaptureActivity activity;
41   private final Hashtable<DecodeHintType, Object> hints;
42   private Handler handler;
43
44   DecodeThread(CaptureActivity activity,
45                Vector<BarcodeFormat> decodeFormats,
46                String characterSet,
47                ResultPointCallback resultPointCallback) {
48
49     this.activity = activity;
50
51     hints = new Hashtable<DecodeHintType, Object>(3);
52
53     // The prefs can't change while the thread is running, so pick them up once here.
54     if (decodeFormats == null || decodeFormats.isEmpty()) {
55       SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
56       boolean decode1D = prefs.getBoolean(PreferencesActivity.KEY_DECODE_1D, true);
57       boolean decodeQR = prefs.getBoolean(PreferencesActivity.KEY_DECODE_QR, true);
58       if (decode1D && decodeQR) {
59         hints.put(DecodeHintType.POSSIBLE_FORMATS, CaptureActivity.ALL_FORMATS);
60       } else if (decode1D) {
61         hints.put(DecodeHintType.POSSIBLE_FORMATS, CaptureActivity.ONE_D_FORMATS);
62       } else if (decodeQR) {
63         hints.put(DecodeHintType.POSSIBLE_FORMATS, CaptureActivity.QR_CODE_FORMATS);
64       }
65     } else {
66       hints.put(DecodeHintType.POSSIBLE_FORMATS, decodeFormats);
67     }
68
69     if (characterSet != null) {
70       hints.put(DecodeHintType.CHARACTER_SET, characterSet);
71     }
72
73     hints.put(DecodeHintType.NEED_RESULT_POINT_CALLBACK, resultPointCallback);
74   }
75
76   Handler getHandler() {
77     return handler;
78   }
79
80   @Override
81   public void run() {
82     Looper.prepare();
83     handler = new DecodeHandler(activity, hints);    
84     Looper.loop();
85   }
86
87 }