blob: 23451106a20c6333be5cafe44d7eecbee9dd9501 [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;
20import android.app.PendingIntent;
21
22/**
23 * A rudimentary fake for DozeHost.
24 */
25class DozeHostFake implements DozeHost {
26 Callback callback;
Adrian Roos28f90c72017-05-08 17:24:26 -070027 boolean pulseAborted;
28 boolean pulseExtended;
29 boolean animateWakeup;
Adrian Roos540b5282017-05-15 13:29:49 -070030 boolean dozing;
Adrian Roos25c7a582017-06-02 12:50:38 -070031 float doubleTapX;
32 float doubleTapY;
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() {
61 throw new RuntimeException("not implemented");
62 }
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
75 public void startPendingIntentDismissingKeyguard(PendingIntent intent) {
76 throw new RuntimeException("not implemented");
77 }
78
79 @Override
80 public void abortPulsing() {
81 pulseAborted = true;
82 }
83
84 @Override
85 public void extendPulse() {
86 pulseExtended = true;
87 }
Adrian Roos28f90c72017-05-08 17:24:26 -070088
89 @Override
90 public void setAnimateWakeup(boolean animateWakeup) {
91 this.animateWakeup = animateWakeup;
92 }
Adrian Roos25c7a582017-06-02 12:50:38 -070093
94 @Override
95 public void onDoubleTap(float x, float y) {
96 doubleTapX = y;
97 doubleTapY = y;
98 }
Adrian Roosd35d4ca2017-04-19 14:31:03 -070099}