Issue 376: re-set camera params after first auto-focus callback to make it work on...
[zxing.git] / android / src / com / google / zxing / client / android / camera / AutoFocusCallback.java
1 /*
2  * Copyright (C) 2010 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.camera;
18
19 import android.hardware.Camera;
20 import android.os.Handler;
21 import android.os.Message;
22
23 final class AutoFocusCallback implements Camera.AutoFocusCallback {
24
25   private static final long AUTOFOCUS_INTERVAL_MS = 1500L;
26
27   private final CameraConfigurationManager configManager;
28   private boolean reinitCamera;
29   private Handler autoFocusHandler;
30   private int autoFocusMessage;
31
32   AutoFocusCallback(CameraConfigurationManager configManager) {
33     this.configManager = configManager;
34   }
35
36   void setHandler(Handler autoFocusHandler, int autoFocusMessage) {
37     this.autoFocusHandler = autoFocusHandler;
38     this.autoFocusMessage = autoFocusMessage;
39   }
40
41   public void onAutoFocus(boolean success, Camera camera) {
42     if (autoFocusHandler != null) {
43       Message message = autoFocusHandler.obtainMessage(autoFocusMessage, success);
44       // Simulate continuous autofocus by sending a focus request every
45       // AUTOFOCUS_INTERVAL_MS milliseconds.
46       autoFocusHandler.sendMessageDelayed(message, AUTOFOCUS_INTERVAL_MS);
47       autoFocusHandler = null;
48       if (!reinitCamera) {
49         reinitCamera = true;
50         configManager.setDesiredCameraParameters(camera);
51       }
52     }
53   }
54
55 }