Commit good fix for race condition Daniel noted
[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 import java.util.concurrent.CountDownLatch;
31
32 /**
33  * This thread does all the heavy lifting of decoding the images.
34  *
35  * @author dswitkin@google.com (Daniel Switkin)
36  */
37 final class DecodeThread extends Thread {
38
39   public static final String BARCODE_BITMAP = "barcode_bitmap";
40
41   private final CaptureActivity activity;
42   private final Hashtable<DecodeHintType, Object> hints;
43   private Handler handler;
44   private final CountDownLatch handlerInitLatch;
45
46   DecodeThread(CaptureActivity activity,
47                Vector<BarcodeFormat> decodeFormats,
48                String characterSet,
49                ResultPointCallback resultPointCallback) {
50
51     this.activity = activity;
52     handlerInitLatch = new CountDownLatch(1);
53
54     hints = new Hashtable<DecodeHintType, Object>(3);
55
56     // The prefs can't change while the thread is running, so pick them up once here.
57     if (decodeFormats == null || decodeFormats.isEmpty()) {
58       SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
59       boolean decode1D = prefs.getBoolean(PreferencesActivity.KEY_DECODE_1D, true);
60       boolean decodeQR = prefs.getBoolean(PreferencesActivity.KEY_DECODE_QR, true);
61       if (decode1D && decodeQR) {
62         hints.put(DecodeHintType.POSSIBLE_FORMATS, CaptureActivity.ALL_FORMATS);
63       } else if (decode1D) {
64         hints.put(DecodeHintType.POSSIBLE_FORMATS, CaptureActivity.ONE_D_FORMATS);
65       } else if (decodeQR) {
66         hints.put(DecodeHintType.POSSIBLE_FORMATS, CaptureActivity.QR_CODE_FORMATS);
67       }
68     } else {
69       hints.put(DecodeHintType.POSSIBLE_FORMATS, decodeFormats);
70     }
71
72     if (characterSet != null) {
73       hints.put(DecodeHintType.CHARACTER_SET, characterSet);
74     }
75
76     hints.put(DecodeHintType.NEED_RESULT_POINT_CALLBACK, resultPointCallback);
77   }
78
79   Handler getHandler() {
80     try {
81       handlerInitLatch.await();
82     } catch (InterruptedException ie) {
83       // continue?
84     }
85     return handler;
86   }
87
88   @Override
89   public void run() {
90     Looper.prepare();
91     handler = new DecodeHandler(activity, hints);
92     handlerInitLatch.countDown();
93     Looper.loop();
94   }
95
96 }