blob: dc4287287b038a3957c5c123c7b3b488ff356c80 [file] [log] [blame]
Adrian Roosd35d4ca2017-04-19 14:31:03 -07001/*
2 * Copyright (C) 2017 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.systemui.doze;
18
19import android.annotation.NonNull;
Adrian Roosd35d4ca2017-04-19 14:31:03 -070020
21/**
22 * A rudimentary fake for DozeHost.
23 */
24class DozeHostFake implements DozeHost {
25 Callback callback;
Adrian Roos28f90c72017-05-08 17:24:26 -070026 boolean pulseExtended;
27 boolean animateWakeup;
Lucas Dupin43d0d732017-11-16 11:23:49 -080028 boolean animateScreenOff;
Adrian Roos540b5282017-05-15 13:29:49 -070029 boolean dozing;
Adrian Roos25c7a582017-06-02 12:50:38 -070030 float doubleTapX;
31 float doubleTapY;
Adrian Roosc7fd6962017-09-06 16:46:46 +020032 float aodDimmingScrimOpacity;
Adrian Roosd35d4ca2017-04-19 14:31:03 -070033
34 @Override
35 public void addCallback(@NonNull Callback callback) {
36 this.callback = callback;
37 }
38
39 @Override
40 public void removeCallback(@NonNull Callback callback) {
41 this.callback = null;
42 }
43
44 @Override
45 public void startDozing() {
Adrian Roos540b5282017-05-15 13:29:49 -070046 dozing = true;
Adrian Roosd35d4ca2017-04-19 14:31:03 -070047 }
48
49 @Override
50 public void pulseWhileDozing(@NonNull PulseCallback callback, int reason) {
51 throw new RuntimeException("not implemented");
52 }
53
54 @Override
55 public void stopDozing() {
Adrian Roos540b5282017-05-15 13:29:49 -070056 dozing = false;
Adrian Roosd35d4ca2017-04-19 14:31:03 -070057 }
58
59 @Override
60 public void dozeTimeTick() {
Lucas Dupin4df92c32018-01-08 10:21:52 -080061 // Nothing to do in here. Real host would just update the UI.
Adrian Roosd35d4ca2017-04-19 14:31:03 -070062 }
63
64 @Override
65 public boolean isPowerSaveActive() {
66 return false;
67 }
68
69 @Override
70 public boolean isPulsingBlocked() {
71 return false;
72 }
73
74 @Override
Adrian Roosf2d545e2017-07-05 16:45:42 +020075 public boolean isProvisioned() {
76 return false;
77 }
78
79 @Override
Adrian Roos710a0b12017-07-07 19:02:34 +020080 public boolean isBlockingDoze() {
81 return false;
82 }
83
84 @Override
Adrian Roosa6c03f82017-07-26 16:20:30 +020085 public void onIgnoreTouchWhilePulsing(boolean ignore) {
86 }
87
88 @Override
Adrian Roosd35d4ca2017-04-19 14:31:03 -070089 public void extendPulse() {
90 pulseExtended = true;
91 }
Adrian Roos28f90c72017-05-08 17:24:26 -070092
93 @Override
TYM Tsai2fc027d2018-12-04 19:28:19 +080094 public void stopPulsing() {}
95
96 @Override
Adrian Roos28f90c72017-05-08 17:24:26 -070097 public void setAnimateWakeup(boolean animateWakeup) {
98 this.animateWakeup = animateWakeup;
99 }
Adrian Roos25c7a582017-06-02 12:50:38 -0700100
101 @Override
Lucas Dupin43d0d732017-11-16 11:23:49 -0800102 public void setAnimateScreenOff(boolean animateScreenOff) {
103 this.animateScreenOff = animateScreenOff;
104 }
105
106 @Override
Lucas Dupind43bf702019-01-15 13:40:42 -0800107 public void onSlpiTap(float x, float y) {
Adrian Roos25c7a582017-06-02 12:50:38 -0700108 doubleTapX = y;
109 doubleTapY = y;
110 }
Adrian Roos3e23eb52017-07-07 15:58:57 +0200111
112 @Override
113 public void setDozeScreenBrightness(int value) {
114 }
Adrian Roosc7fd6962017-09-06 16:46:46 +0200115
116 @Override
117 public void setAodDimmingScrim(float scrimOpacity) {
118 aodDimmingScrimOpacity = scrimOpacity;
119 }
Adrian Roosd35d4ca2017-04-19 14:31:03 -0700120}