blob: 84adb13ec61eebc14d9a7e872e57e8ca471ba783 [file] [log] [blame]
Andy Huibers99a37d82014-08-14 22:24:41 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
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
17package com.android.camera.debug;
18
19import com.android.camera.util.SystemProperties;
20
21public class DebugPropertyHelper {
Andy Huibers99a37d82014-08-14 22:24:41 -070022 private static final String OFF_VALUE = "0";
23 private static final String ON_VALUE = "1";
24
25 private static final String PREFIX = "persist.camera";
26
27 /** Switch between PhotoModule and the new CaptureModule. */
28 private static final String PROP_ENABLE_CAPTURE_MODULE = PREFIX + ".newcapture";
Andy Huibers62b4c3c2014-08-25 15:01:25 -070029 /** Enable frame-by-frame focus logging. */
30 private static final String PROP_FRAME_LOG = PREFIX + ".frame_log";
31 /**
32 * Enable additional capture debug UI.
33 * For API1/Photomodule: show faces.
34 * For API2/Capturemodule: show faces, AF state, AE/AF precise regions.
35 */
36 private static final String PROP_CAPTURE_DEBUG_UI = PREFIX + ".debug_ui";
Puneet Lalle4ebe002014-08-27 13:38:29 -070037 /** Switch between OneCameraImpl and OneCameraZslImpl. */
Puneet Lall9cd94d72014-10-14 14:05:11 -070038 private static final String PROP_FORCE_LEGACY_ONE_CAMERA = PREFIX + ".legacy";
Andy Huibers99a37d82014-08-14 22:24:41 -070039 /** Write data about each capture request to disk. */
40 private static final String PROP_WRITE_CAPTURE_DATA = PREFIX + ".capture_write";
Sascha Haeberlingc6da1a12014-11-06 09:50:51 -080041 /** Is RAW support enabled. */
42 private static final String PROP_CAPTURE_DNG = PREFIX + ".capture_dng";
Andy Huibers99a37d82014-08-14 22:24:41 -070043
44 private static boolean isPropertyOn(String property) {
45 return ON_VALUE.equals(SystemProperties.get(property, OFF_VALUE));
46 }
47
48 public static boolean isCaptureModuleEnabled() {
Puneet Lall9cd94d72014-10-14 14:05:11 -070049 return isPropertyOn(PROP_ENABLE_CAPTURE_MODULE);
Puneet Lalle4ebe002014-08-27 13:38:29 -070050 }
51
Puneet Lall9cd94d72014-10-14 14:05:11 -070052 public static boolean forceLegacyOneCamera() {
53 return isPropertyOn(PROP_FORCE_LEGACY_ONE_CAMERA);
Andy Huibers99a37d82014-08-14 22:24:41 -070054 }
55
Andy Huibers62b4c3c2014-08-25 15:01:25 -070056 public static boolean showFrameDebugLog() {
Andy Huibersb8682742014-08-27 15:28:42 -070057 return isPropertyOn(PROP_FRAME_LOG);
Andy Huibers99a37d82014-08-14 22:24:41 -070058 }
59
Andy Huibers62b4c3c2014-08-25 15:01:25 -070060 public static boolean showCaptureDebugUI() {
Andy Huibersb8682742014-08-27 15:28:42 -070061 return isPropertyOn(PROP_CAPTURE_DEBUG_UI);
Andy Huibers99a37d82014-08-14 22:24:41 -070062 }
63
64 public static boolean writeCaptureData() {
65 return isPropertyOn(PROP_WRITE_CAPTURE_DATA);
66 }
Sascha Haeberlingc6da1a12014-11-06 09:50:51 -080067
68 public static boolean isCaptureDngEnabled() {
69 return isPropertyOn(PROP_CAPTURE_DNG);
70 }
Andy Huibers99a37d82014-08-14 22:24:41 -070071}