blob: a98551752181af2f6bb2480421c533c7790a0fa5 [file] [log] [blame]
Dianne Hackborn8cc6a502009-08-05 21:29:42 -07001/*
2 * Copyright (C) 2009 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 android.service.wallpaper;
18
Dianne Hackborn067e5f62014-09-07 23:14:30 -070019import android.content.res.TypedArray;
Filip Gruszczynski4544b922015-04-16 13:18:58 -070020import android.graphics.Canvas;
Dianne Hackborn067e5f62014-09-07 23:14:30 -070021import android.view.WindowInsets;
Jeff Brown3d110b22014-11-21 19:01:13 -080022
Dianne Hackborn067e5f62014-09-07 23:14:30 -070023import com.android.internal.R;
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070024import com.android.internal.os.HandlerCaller;
Griff Hazena0938022015-03-13 10:01:41 -070025import com.android.internal.util.ScreenShapeHelper;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070026import com.android.internal.view.BaseIWindow;
27import com.android.internal.view.BaseSurfaceHolder;
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070028
Dianne Hackbornd6847842010-01-12 18:14:19 -080029import android.annotation.SdkConstant;
30import android.annotation.SdkConstant.SdkConstantType;
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070031import android.app.Service;
Dianne Hackborn759a39e2009-08-09 17:20:27 -070032import android.app.WallpaperManager;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070033import android.content.Context;
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070034import android.content.Intent;
Dianne Hackborne36d6e22010-02-17 19:46:25 -080035import android.content.res.Configuration;
Mathias Agopian62bf4a02010-09-08 16:32:27 -070036import android.graphics.PixelFormat;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070037import android.graphics.Rect;
Jeff Brown3d110b22014-11-21 19:01:13 -080038import android.hardware.display.DisplayManager;
39import android.hardware.display.DisplayManager.DisplayListener;
Dianne Hackborn75804932009-10-20 20:15:20 -070040import android.os.Bundle;
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070041import android.os.IBinder;
Dianne Hackborn19382ac2009-09-11 21:13:37 -070042import android.os.Looper;
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070043import android.os.Message;
44import android.os.RemoteException;
45import android.util.Log;
Craig Mautner6881a102012-07-27 13:04:51 -070046import android.view.Display;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070047import android.view.Gravity;
48import android.view.IWindowSession;
Jeff Brown46b9ac02010-04-22 18:58:52 -070049import android.view.InputChannel;
Jeff Brownc5ed5912010-07-14 18:48:53 -070050import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080051import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080052import android.view.InputEventReceiver;
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -070053import android.view.MotionEvent;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070054import android.view.SurfaceHolder;
55import android.view.View;
Dianne Hackborn72c82ab2009-08-11 21:13:54 -070056import android.view.ViewGroup;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070057import android.view.WindowManager;
Jeff Brown98365d72012-08-19 20:30:52 -070058import android.view.WindowManagerGlobal;
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070059
Dianne Hackborn527de8e2011-08-22 16:10:36 -070060import java.io.FileDescriptor;
61import java.io.PrintWriter;
Dianne Hackbornaf1f42b2009-11-20 16:27:27 -080062import java.util.ArrayList;
63
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070064/**
65 * A wallpaper service is responsible for showing a live wallpaper behind
Dianne Hackborn23ef7b42009-11-18 18:20:39 -080066 * applications that would like to sit on top of it. This service object
67 * itself does very little -- its only purpose is to generate instances of
Dianne Hackborne4260f42009-11-18 21:15:59 -080068 * {@link Engine} as needed. Implementing a wallpaper thus
Dianne Hackborn23ef7b42009-11-18 18:20:39 -080069 * involves subclassing from this, subclassing an Engine implementation,
70 * and implementing {@link #onCreateEngine()} to return a new instance of
71 * your engine.
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070072 */
73public abstract class WallpaperService extends Service {
74 /**
75 * The {@link Intent} that must be declared as handled by the service.
Dianne Hackbornd6847842010-01-12 18:14:19 -080076 * To be supported, the service must also require the
77 * {@link android.Manifest.permission#BIND_WALLPAPER} permission so
78 * that other applications can not abuse it.
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070079 */
Dianne Hackbornd6847842010-01-12 18:14:19 -080080 @SdkConstant(SdkConstantType.SERVICE_ACTION)
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070081 public static final String SERVICE_INTERFACE =
Dianne Hackbornd6847842010-01-12 18:14:19 -080082 "android.service.wallpaper.WallpaperService";
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070083
Dianne Hackborneb034652009-09-07 00:49:58 -070084 /**
85 * Name under which a WallpaperService component publishes information
86 * about itself. This meta-data must reference an XML resource containing
87 * a <code>&lt;{@link android.R.styleable#Wallpaper wallpaper}&gt;</code>
88 * tag.
89 */
90 public static final String SERVICE_META_DATA = "android.service.wallpaper";
Craig Mautnerb1ef3692012-11-16 17:31:04 -080091
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070092 static final String TAG = "WallpaperService";
Dianne Hackborn72c82ab2009-08-11 21:13:54 -070093 static final boolean DEBUG = false;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070094
95 private static final int DO_ATTACH = 10;
96 private static final int DO_DETACH = 20;
Dianne Hackborn284ac932009-08-28 10:34:25 -070097 private static final int DO_SET_DESIRED_SIZE = 30;
Dianne Hackborn067e5f62014-09-07 23:14:30 -070098 private static final int DO_SET_DISPLAY_PADDING = 40;
99
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700100 private static final int MSG_UPDATE_SURFACE = 10000;
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700101 private static final int MSG_VISIBILITY_CHANGED = 10010;
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700102 private static final int MSG_WALLPAPER_OFFSETS = 10020;
Dianne Hackborn75804932009-10-20 20:15:20 -0700103 private static final int MSG_WALLPAPER_COMMAND = 10025;
Dianne Hackborn7341d7a2009-08-14 11:37:52 -0700104 private static final int MSG_WINDOW_RESIZED = 10030;
Craig Mautner5702d4d2012-06-30 14:10:16 -0700105 private static final int MSG_WINDOW_MOVED = 10035;
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700106 private static final int MSG_TOUCH_EVENT = 10040;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700107
Dianne Hackbornaf1f42b2009-11-20 16:27:27 -0800108 private final ArrayList<Engine> mActiveEngines
109 = new ArrayList<Engine>();
Dianne Hackborn19382ac2009-09-11 21:13:37 -0700110
Dianne Hackborn75804932009-10-20 20:15:20 -0700111 static final class WallpaperCommand {
112 String action;
113 int x;
114 int y;
115 int z;
116 Bundle extras;
117 boolean sync;
118 }
119
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700120 /**
121 * The actual implementation of a wallpaper. A wallpaper service may
122 * have multiple instances running (for example as a real wallpaper
123 * and as a preview), each of which is represented by its own Engine
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700124 * instance. You must implement {@link WallpaperService#onCreateEngine()}
125 * to return your concrete Engine implementation.
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700126 */
127 public class Engine {
128 IWallpaperEngineWrapper mIWallpaperEngine;
129
130 // Copies from mIWallpaperEngine.
131 HandlerCaller mCaller;
132 IWallpaperConnection mConnection;
133 IBinder mWindowToken;
134
135 boolean mInitializing = true;
Dianne Hackborn284ac932009-08-28 10:34:25 -0700136 boolean mVisible;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700137 boolean mReportedVisible;
Dianne Hackborn284ac932009-08-28 10:34:25 -0700138 boolean mDestroyed;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700139
140 // Current window state.
141 boolean mCreated;
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700142 boolean mSurfaceCreated;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700143 boolean mIsCreating;
144 boolean mDrawingAllowed;
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700145 boolean mOffsetsChanged;
Jeff Sharkey35be7562012-04-18 19:16:15 -0700146 boolean mFixedSizeAllowed;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700147 int mWidth;
148 int mHeight;
149 int mFormat;
150 int mType;
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700151 int mCurWidth;
152 int mCurHeight;
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700153 int mWindowFlags = WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Chet Haasea8e5a2b2011-10-28 13:18:16 -0700154 int mWindowPrivateFlags =
155 WindowManager.LayoutParams.PRIVATE_FLAG_WANTS_OFFSET_NOTIFICATIONS;
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700156 int mCurWindowFlags = mWindowFlags;
Chet Haasea8e5a2b2011-10-28 13:18:16 -0700157 int mCurWindowPrivateFlags = mWindowPrivateFlags;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700158 final Rect mVisibleInsets = new Rect();
159 final Rect mWinFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800160 final Rect mOverscanInsets = new Rect();
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700161 final Rect mContentInsets = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700162 final Rect mStableInsets = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700163 final Rect mOutsets = new Rect();
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700164 final Rect mDispatchedOverscanInsets = new Rect();
165 final Rect mDispatchedContentInsets = new Rect();
166 final Rect mDispatchedStableInsets = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700167 final Rect mDispatchedOutsets = new Rect();
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700168 final Rect mFinalSystemInsets = new Rect();
169 final Rect mFinalStableInsets = new Rect();
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800170 final Rect mBackdropFrame = new Rect();
Dianne Hackborn694f79b2010-03-17 19:44:59 -0700171 final Configuration mConfiguration = new Configuration();
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700172
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700173 final WindowManager.LayoutParams mLayout
174 = new WindowManager.LayoutParams();
175 IWindowSession mSession;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700176 InputChannel mInputChannel;
Dianne Hackborn8cc6a502009-08-05 21:29:42 -0700177
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700178 final Object mLock = new Object();
179 boolean mOffsetMessageEnqueued;
180 float mPendingXOffset;
181 float mPendingYOffset;
Marco Nelissenbf6956b2009-11-09 15:21:13 -0800182 float mPendingXOffsetStep;
183 float mPendingYOffsetStep;
Dianne Hackborn19382ac2009-09-11 21:13:37 -0700184 boolean mPendingSync;
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700185 MotionEvent mPendingMove;
Jeff Brown3d110b22014-11-21 19:01:13 -0800186
187 DisplayManager mDisplayManager;
188 Display mDisplay;
Filip Gruszczynski4544b922015-04-16 13:18:58 -0700189 private int mDisplayState;
Jeff Brown3d110b22014-11-21 19:01:13 -0800190
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700191 final BaseSurfaceHolder mSurfaceHolder = new BaseSurfaceHolder() {
Mathias Agopian62bf4a02010-09-08 16:32:27 -0700192 {
Jeff Brown24572372011-06-09 19:05:15 -0700193 mRequestedFormat = PixelFormat.RGBX_8888;
Mathias Agopian62bf4a02010-09-08 16:32:27 -0700194 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700195
196 @Override
197 public boolean onAllowLockCanvas() {
198 return mDrawingAllowed;
199 }
200
201 @Override
202 public void onRelayoutContainer() {
203 Message msg = mCaller.obtainMessage(MSG_UPDATE_SURFACE);
204 mCaller.sendMessage(msg);
205 }
206
207 @Override
208 public void onUpdateSurface() {
209 Message msg = mCaller.obtainMessage(MSG_UPDATE_SURFACE);
210 mCaller.sendMessage(msg);
211 }
212
213 public boolean isCreating() {
214 return mIsCreating;
215 }
216
Dianne Hackborna48a37f2011-02-01 16:30:38 -0800217 @Override
218 public void setFixedSize(int width, int height) {
Jeff Sharkey35be7562012-04-18 19:16:15 -0700219 if (!mFixedSizeAllowed) {
Dianne Hackborna48a37f2011-02-01 16:30:38 -0800220 // Regular apps can't do this. It can only work for
221 // certain designs of window animations, so you can't
222 // rely on it.
223 throw new UnsupportedOperationException(
224 "Wallpapers currently only support sizing from layout");
225 }
Michael Jurkab8f939f2011-02-01 20:50:30 -0800226 super.setFixedSize(width, height);
Dianne Hackborna48a37f2011-02-01 16:30:38 -0800227 }
228
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700229 public void setKeepScreenOn(boolean screenOn) {
Dianne Hackborn284ac932009-08-28 10:34:25 -0700230 throw new UnsupportedOperationException(
231 "Wallpapers do not support keep screen on");
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700232 }
Filip Gruszczynski4544b922015-04-16 13:18:58 -0700233
234 @Override
235 public Canvas lockCanvas() {
236 if (mDisplayState == Display.STATE_DOZE
237 || mDisplayState == Display.STATE_DOZE_SUSPEND) {
238 try {
239 mSession.pokeDrawLock(mWindow);
240 } catch (RemoteException e) {
241 // System server died, can be ignored.
242 }
243 }
244 return super.lockCanvas();
245 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700246 };
Jeff Brown32cbc38552011-12-01 14:01:49 -0800247
248 final class WallpaperInputEventReceiver extends InputEventReceiver {
249 public WallpaperInputEventReceiver(InputChannel inputChannel, Looper looper) {
250 super(inputChannel, looper);
251 }
252
Jeff Brown46b9ac02010-04-22 18:58:52 -0700253 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -0800254 public void onInputEvent(InputEvent event) {
Jeff Brown3915bb82010-11-05 15:02:16 -0700255 boolean handled = false;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700256 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -0800257 if (event instanceof MotionEvent
258 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
Jeff Brown32cbc38552011-12-01 14:01:49 -0800259 MotionEvent dup = MotionEvent.obtainNoHistory((MotionEvent)event);
260 dispatchPointer(dup);
Jeff Brown3915bb82010-11-05 15:02:16 -0700261 handled = true;
Jeff Brownc5ed5912010-07-14 18:48:53 -0700262 }
Jeff Brown46b9ac02010-04-22 18:58:52 -0700263 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -0800264 finishInputEvent(event, handled);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700265 }
266 }
Jeff Brown32cbc38552011-12-01 14:01:49 -0800267 }
268 WallpaperInputEventReceiver mInputEventReceiver;
269
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700270 final BaseIWindow mWindow = new BaseIWindow() {
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700271 @Override
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800272 public void resized(Rect frame, Rect overscanInsets, Rect contentInsets,
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700273 Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw,
Jorim Jaggia4a58ef2016-01-27 02:10:08 -0800274 Configuration newConfig, Rect backDropRect, boolean forceLayout) {
Filip Gruszczynski03850592015-07-01 08:35:28 -0700275 Message msg = mCaller.obtainMessageIO(MSG_WINDOW_RESIZED,
276 reportDraw ? 1 : 0, outsets);
Dianne Hackborn7341d7a2009-08-14 11:37:52 -0700277 mCaller.sendMessage(msg);
278 }
Craig Mautner5702d4d2012-06-30 14:10:16 -0700279
280 @Override
281 public void moved(int newX, int newY) {
282 Message msg = mCaller.obtainMessageII(MSG_WINDOW_MOVED, newX, newY);
283 mCaller.sendMessage(msg);
284 }
285
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700286 @Override
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700287 public void dispatchAppVisibility(boolean visible) {
Dianne Hackborn284ac932009-08-28 10:34:25 -0700288 // We don't do this in preview mode; we'll let the preview
289 // activity tell us when to run.
290 if (!mIWallpaperEngine.mIsPreview) {
291 Message msg = mCaller.obtainMessageI(MSG_VISIBILITY_CHANGED,
292 visible ? 1 : 0);
293 mCaller.sendMessage(msg);
294 }
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700295 }
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700296
297 @Override
Marco Nelissenbf6956b2009-11-09 15:21:13 -0800298 public void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep,
299 boolean sync) {
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700300 synchronized (mLock) {
Dianne Hackborn19382ac2009-09-11 21:13:37 -0700301 if (DEBUG) Log.v(TAG, "Dispatch wallpaper offsets: " + x + ", " + y);
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700302 mPendingXOffset = x;
303 mPendingYOffset = y;
Marco Nelissenbf6956b2009-11-09 15:21:13 -0800304 mPendingXOffsetStep = xStep;
305 mPendingYOffsetStep = yStep;
Dianne Hackborn19382ac2009-09-11 21:13:37 -0700306 if (sync) {
307 mPendingSync = true;
308 }
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700309 if (!mOffsetMessageEnqueued) {
310 mOffsetMessageEnqueued = true;
311 Message msg = mCaller.obtainMessage(MSG_WALLPAPER_OFFSETS);
312 mCaller.sendMessage(msg);
313 }
314 }
315 }
Craig Mautner5702d4d2012-06-30 14:10:16 -0700316
317 @Override
Dianne Hackborn75804932009-10-20 20:15:20 -0700318 public void dispatchWallpaperCommand(String action, int x, int y,
319 int z, Bundle extras, boolean sync) {
320 synchronized (mLock) {
321 if (DEBUG) Log.v(TAG, "Dispatch wallpaper command: " + x + ", " + y);
322 WallpaperCommand cmd = new WallpaperCommand();
323 cmd.action = action;
324 cmd.x = x;
325 cmd.y = y;
326 cmd.z = z;
327 cmd.extras = extras;
328 cmd.sync = sync;
329 Message msg = mCaller.obtainMessage(MSG_WALLPAPER_COMMAND);
330 msg.obj = cmd;
331 mCaller.sendMessage(msg);
332 }
333 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700334 };
335
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700336 /**
337 * Provides access to the surface in which this wallpaper is drawn.
338 */
339 public SurfaceHolder getSurfaceHolder() {
340 return mSurfaceHolder;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700341 }
342
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700343 /**
344 * Convenience for {@link WallpaperManager#getDesiredMinimumWidth()
345 * WallpaperManager.getDesiredMinimumWidth()}, returning the width
346 * that the system would like this wallpaper to run in.
347 */
348 public int getDesiredMinimumWidth() {
349 return mIWallpaperEngine.mReqWidth;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700350 }
351
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700352 /**
353 * Convenience for {@link WallpaperManager#getDesiredMinimumHeight()
354 * WallpaperManager.getDesiredMinimumHeight()}, returning the height
355 * that the system would like this wallpaper to run in.
356 */
357 public int getDesiredMinimumHeight() {
358 return mIWallpaperEngine.mReqHeight;
359 }
360
361 /**
Dianne Hackborn284ac932009-08-28 10:34:25 -0700362 * Return whether the wallpaper is currently visible to the user,
363 * this is the last value supplied to
364 * {@link #onVisibilityChanged(boolean)}.
365 */
366 public boolean isVisible() {
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700367 return mReportedVisible;
Dianne Hackborn284ac932009-08-28 10:34:25 -0700368 }
369
370 /**
Dianne Hackborn3be63c02009-08-20 19:31:38 -0700371 * Returns true if this engine is running in preview mode -- that is,
372 * it is being shown to the user before they select it as the actual
373 * wallpaper.
374 */
375 public boolean isPreview() {
376 return mIWallpaperEngine.mIsPreview;
377 }
378
379 /**
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700380 * Control whether this wallpaper will receive raw touch events
381 * from the window manager as the user interacts with the window
382 * that is currently displaying the wallpaper. By default they
383 * are turned off. If enabled, the events will be received in
384 * {@link #onTouchEvent(MotionEvent)}.
385 */
386 public void setTouchEventsEnabled(boolean enabled) {
387 mWindowFlags = enabled
388 ? (mWindowFlags&~WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE)
389 : (mWindowFlags|WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);
390 if (mCreated) {
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700391 updateSurface(false, false, false);
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700392 }
393 }
Chet Haasea8e5a2b2011-10-28 13:18:16 -0700394
395 /**
396 * Control whether this wallpaper will receive notifications when the wallpaper
397 * has been scrolled. By default, wallpapers will receive notifications, although
398 * the default static image wallpapers do not. It is a performance optimization to
399 * set this to false.
400 *
401 * @param enabled whether the wallpaper wants to receive offset notifications
402 */
403 public void setOffsetNotificationsEnabled(boolean enabled) {
404 mWindowPrivateFlags = enabled
405 ? (mWindowPrivateFlags |
406 WindowManager.LayoutParams.PRIVATE_FLAG_WANTS_OFFSET_NOTIFICATIONS)
407 : (mWindowPrivateFlags &
408 ~WindowManager.LayoutParams.PRIVATE_FLAG_WANTS_OFFSET_NOTIFICATIONS);
409 if (mCreated) {
410 updateSurface(false, false, false);
411 }
412 }
Jeff Sharkey35be7562012-04-18 19:16:15 -0700413
414 /** {@hide} */
415 public void setFixedSizeAllowed(boolean allowed) {
416 mFixedSizeAllowed = allowed;
417 }
418
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700419 /**
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700420 * Called once to initialize the engine. After returning, the
421 * engine's surface will be created by the framework.
422 */
423 public void onCreate(SurfaceHolder surfaceHolder) {
424 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700425
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700426 /**
427 * Called right before the engine is going away. After this the
428 * surface will be destroyed and this Engine object is no longer
429 * valid.
430 */
431 public void onDestroy() {
432 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700433
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700434 /**
435 * Called to inform you of the wallpaper becoming visible or
436 * hidden. <em>It is very important that a wallpaper only use
437 * CPU while it is visible.</em>.
438 */
439 public void onVisibilityChanged(boolean visible) {
440 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700441
442 /**
443 * Called with the current insets that are in effect for the wallpaper.
444 * This gives you the part of the overall wallpaper surface that will
445 * generally be visible to the user (ignoring position offsets applied to it).
446 *
447 * @param insets Insets to apply.
448 */
449 public void onApplyWindowInsets(WindowInsets insets) {
450 }
451
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700452 /**
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700453 * Called as the user performs touch-screen interaction with the
454 * window that is currently showing this wallpaper. Note that the
455 * events you receive here are driven by the actual application the
Marco Nelissenae87bd02009-09-17 09:44:43 -0700456 * user is interacting with, so if it is slow you will get fewer
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700457 * move events.
458 */
459 public void onTouchEvent(MotionEvent event) {
460 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700461
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700462 /**
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700463 * Called to inform you of the wallpaper's offsets changing
464 * within its contain, corresponding to the container's
465 * call to {@link WallpaperManager#setWallpaperOffsets(IBinder, float, float)
466 * WallpaperManager.setWallpaperOffsets()}.
467 */
468 public void onOffsetsChanged(float xOffset, float yOffset,
Marco Nelissenbf6956b2009-11-09 15:21:13 -0800469 float xOffsetStep, float yOffsetStep,
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700470 int xPixelOffset, int yPixelOffset) {
471 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700472
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700473 /**
Dianne Hackborn75804932009-10-20 20:15:20 -0700474 * Process a command that was sent to the wallpaper with
Dianne Hackborn13bf82602009-11-05 21:45:51 -0800475 * {@link WallpaperManager#sendWallpaperCommand}.
Dianne Hackborn75804932009-10-20 20:15:20 -0700476 * The default implementation does nothing, and always returns null
477 * as the result.
478 *
479 * @param action The name of the command to perform. This tells you
480 * what to do and how to interpret the rest of the arguments.
481 * @param x Generic integer parameter.
482 * @param y Generic integer parameter.
483 * @param z Generic integer parameter.
484 * @param extras Any additional parameters.
485 * @param resultRequested If true, the caller is requesting that
486 * a result, appropriate for the command, be returned back.
487 * @return If returning a result, create a Bundle and place the
488 * result data in to it. Otherwise return null.
489 */
490 public Bundle onCommand(String action, int x, int y, int z,
491 Bundle extras, boolean resultRequested) {
492 return null;
493 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700494
Dianne Hackborn75804932009-10-20 20:15:20 -0700495 /**
Dianne Hackborn284ac932009-08-28 10:34:25 -0700496 * Called when an application has changed the desired virtual size of
497 * the wallpaper.
498 */
499 public void onDesiredSizeChanged(int desiredWidth, int desiredHeight) {
500 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700501
Dianne Hackborn284ac932009-08-28 10:34:25 -0700502 /**
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700503 * Convenience for {@link SurfaceHolder.Callback#surfaceChanged
504 * SurfaceHolder.Callback.surfaceChanged()}.
505 */
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700506 public void onSurfaceChanged(SurfaceHolder holder, int format, int width, int height) {
507 }
508
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700509 /**
Dianne Hackborn1d28f9c2010-07-13 20:38:06 -0700510 * Convenience for {@link SurfaceHolder.Callback2#surfaceRedrawNeeded
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700511 * SurfaceHolder.Callback.surfaceRedrawNeeded()}.
512 */
513 public void onSurfaceRedrawNeeded(SurfaceHolder holder) {
514 }
515
516 /**
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700517 * Convenience for {@link SurfaceHolder.Callback#surfaceCreated
518 * SurfaceHolder.Callback.surfaceCreated()}.
519 */
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700520 public void onSurfaceCreated(SurfaceHolder holder) {
521 }
522
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700523 /**
524 * Convenience for {@link SurfaceHolder.Callback#surfaceDestroyed
525 * SurfaceHolder.Callback.surfaceDestroyed()}.
526 */
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700527 public void onSurfaceDestroyed(SurfaceHolder holder) {
528 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700529
Dianne Hackborn527de8e2011-08-22 16:10:36 -0700530 protected void dump(String prefix, FileDescriptor fd, PrintWriter out, String[] args) {
531 out.print(prefix); out.print("mInitializing="); out.print(mInitializing);
532 out.print(" mDestroyed="); out.println(mDestroyed);
533 out.print(prefix); out.print("mVisible="); out.print(mVisible);
Dianne Hackborn527de8e2011-08-22 16:10:36 -0700534 out.print(" mReportedVisible="); out.println(mReportedVisible);
Jeff Brown3d110b22014-11-21 19:01:13 -0800535 out.print(prefix); out.print("mDisplay="); out.println(mDisplay);
Dianne Hackborn527de8e2011-08-22 16:10:36 -0700536 out.print(prefix); out.print("mCreated="); out.print(mCreated);
537 out.print(" mSurfaceCreated="); out.print(mSurfaceCreated);
538 out.print(" mIsCreating="); out.print(mIsCreating);
539 out.print(" mDrawingAllowed="); out.println(mDrawingAllowed);
540 out.print(prefix); out.print("mWidth="); out.print(mWidth);
541 out.print(" mCurWidth="); out.print(mCurWidth);
542 out.print(" mHeight="); out.print(mHeight);
543 out.print(" mCurHeight="); out.println(mCurHeight);
544 out.print(prefix); out.print("mType="); out.print(mType);
545 out.print(" mWindowFlags="); out.print(mWindowFlags);
546 out.print(" mCurWindowFlags="); out.println(mCurWindowFlags);
Dianne Hackbornd052a942014-11-21 15:23:13 -0800547 out.print(prefix); out.print("mWindowPrivateFlags="); out.print(mWindowPrivateFlags);
Chet Haasea8e5a2b2011-10-28 13:18:16 -0700548 out.print(" mCurWindowPrivateFlags="); out.println(mCurWindowPrivateFlags);
Dianne Hackborn527de8e2011-08-22 16:10:36 -0700549 out.print(prefix); out.print("mVisibleInsets=");
550 out.print(mVisibleInsets.toShortString());
551 out.print(" mWinFrame="); out.print(mWinFrame.toShortString());
552 out.print(" mContentInsets="); out.println(mContentInsets.toShortString());
553 out.print(prefix); out.print("mConfiguration="); out.println(mConfiguration);
554 out.print(prefix); out.print("mLayout="); out.println(mLayout);
555 synchronized (mLock) {
556 out.print(prefix); out.print("mPendingXOffset="); out.print(mPendingXOffset);
557 out.print(" mPendingXOffset="); out.println(mPendingXOffset);
558 out.print(prefix); out.print("mPendingXOffsetStep=");
559 out.print(mPendingXOffsetStep);
560 out.print(" mPendingXOffsetStep="); out.println(mPendingXOffsetStep);
561 out.print(prefix); out.print("mOffsetMessageEnqueued=");
562 out.print(mOffsetMessageEnqueued);
563 out.print(" mPendingSync="); out.println(mPendingSync);
564 if (mPendingMove != null) {
565 out.print(prefix); out.print("mPendingMove="); out.println(mPendingMove);
566 }
567 }
568 }
569
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700570 private void dispatchPointer(MotionEvent event) {
Jeff Brown33bbfd22011-02-24 20:55:35 -0800571 if (event.isTouchEvent()) {
572 synchronized (mLock) {
573 if (event.getAction() == MotionEvent.ACTION_MOVE) {
574 mPendingMove = event;
575 } else {
576 mPendingMove = null;
577 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700578 }
Jeff Brown33bbfd22011-02-24 20:55:35 -0800579 Message msg = mCaller.obtainMessageO(MSG_TOUCH_EVENT, event);
580 mCaller.sendMessage(msg);
Jeff Brown32cbc38552011-12-01 14:01:49 -0800581 } else {
582 event.recycle();
Jeff Brown00fa7bd2010-07-02 15:37:36 -0700583 }
584 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700585
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700586 void updateSurface(boolean forceRelayout, boolean forceReport, boolean redrawNeeded) {
Dianne Hackborn284ac932009-08-28 10:34:25 -0700587 if (mDestroyed) {
588 Log.w(TAG, "Ignoring updateSurface: destroyed");
589 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700590
591 boolean fixedSize = false;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700592 int myWidth = mSurfaceHolder.getRequestedWidth();
Romain Guy980a9382010-01-08 15:06:28 -0800593 if (myWidth <= 0) myWidth = ViewGroup.LayoutParams.MATCH_PARENT;
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700594 else fixedSize = true;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700595 int myHeight = mSurfaceHolder.getRequestedHeight();
Romain Guy980a9382010-01-08 15:06:28 -0800596 if (myHeight <= 0) myHeight = ViewGroup.LayoutParams.MATCH_PARENT;
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700597 else fixedSize = true;
598
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700599 final boolean creating = !mCreated;
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700600 final boolean surfaceCreating = !mSurfaceCreated;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700601 final boolean formatChanged = mFormat != mSurfaceHolder.getRequestedFormat();
Dianne Hackborn7341d7a2009-08-14 11:37:52 -0700602 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700603 boolean insetsChanged = !mCreated;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700604 final boolean typeChanged = mType != mSurfaceHolder.getRequestedType();
Chet Haasea8e5a2b2011-10-28 13:18:16 -0700605 final boolean flagsChanged = mCurWindowFlags != mWindowFlags ||
606 mCurWindowPrivateFlags != mWindowPrivateFlags;
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700607 if (forceRelayout || creating || surfaceCreating || formatChanged || sizeChanged
Dianne Hackbornbce0cbb2012-10-05 11:06:53 -0700608 || typeChanged || flagsChanged || redrawNeeded
609 || !mIWallpaperEngine.mShownReported) {
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700610
Dianne Hackborn284ac932009-08-28 10:34:25 -0700611 if (DEBUG) Log.v(TAG, "Changes: creating=" + creating
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700612 + " format=" + formatChanged + " size=" + sizeChanged);
613
614 try {
615 mWidth = myWidth;
616 mHeight = myHeight;
617 mFormat = mSurfaceHolder.getRequestedFormat();
618 mType = mSurfaceHolder.getRequestedType();
619
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700620 mLayout.x = 0;
621 mLayout.y = 0;
622 mLayout.width = myWidth;
623 mLayout.height = myHeight;
624
625 mLayout.format = mFormat;
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -0700626
627 mCurWindowFlags = mWindowFlags;
628 mLayout.flags = mWindowFlags
629 | WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS
630 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN
631 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
632 ;
Chet Haasea8e5a2b2011-10-28 13:18:16 -0700633 mCurWindowPrivateFlags = mWindowPrivateFlags;
634 mLayout.privateFlags = mWindowPrivateFlags;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700635
636 mLayout.memoryType = mType;
637 mLayout.token = mWindowToken;
638
639 if (!mCreated) {
Filip Gruszczynskid66ba062015-03-23 12:59:02 -0700640 // Retrieve watch round info
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700641 TypedArray windowStyle = obtainStyledAttributes(
642 com.android.internal.R.styleable.Window);
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700643 windowStyle.recycle();
644
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700645 // Add window
Dianne Hackborn3be63c02009-08-20 19:31:38 -0700646 mLayout.type = mIWallpaperEngine.mWindowType;
Fabrice Di Meglioaac0d4e2012-07-19 19:21:26 -0700647 mLayout.gravity = Gravity.START|Gravity.TOP;
Dianne Hackborn0586a1b2009-09-06 21:08:27 -0700648 mLayout.setTitle(WallpaperService.this.getClass().getName());
Dianne Hackborn284ac932009-08-28 10:34:25 -0700649 mLayout.windowAnimations =
650 com.android.internal.R.style.Animation_Wallpaper;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700651 mInputChannel = new InputChannel();
Craig Mautner6881a102012-07-27 13:04:51 -0700652 if (mSession.addToDisplay(mWindow, mWindow.mSeq, mLayout, View.VISIBLE,
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700653 Display.DEFAULT_DISPLAY, mContentInsets, mStableInsets, mOutsets,
Adrian Roos37d7a682014-11-06 18:15:16 +0100654 mInputChannel) < 0) {
Mattias Peterssond9463f52011-01-12 15:38:55 +0100655 Log.w(TAG, "Failed to add window while updating wallpaper surface.");
656 return;
657 }
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700658 mCreated = true;
Jeff Brown46b9ac02010-04-22 18:58:52 -0700659
Jeff Brown32cbc38552011-12-01 14:01:49 -0800660 mInputEventReceiver = new WallpaperInputEventReceiver(
661 mInputChannel, Looper.myLooper());
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700662 }
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700663
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700664 mSurfaceHolder.mSurfaceLock.lock();
665 mDrawingAllowed = true;
666
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700667 if (!fixedSize) {
668 mLayout.surfaceInsets.set(mIWallpaperEngine.mDisplayPadding);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700669 mLayout.surfaceInsets.left += mOutsets.left;
670 mLayout.surfaceInsets.top += mOutsets.top;
671 mLayout.surfaceInsets.right += mOutsets.right;
672 mLayout.surfaceInsets.bottom += mOutsets.bottom;
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700673 } else {
674 mLayout.surfaceInsets.set(0, 0, 0, 0);
675 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700676 final int relayoutResult = mSession.relayout(
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700677 mWindow, mWindow.mSeq, mLayout, mWidth, mHeight,
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800678 View.VISIBLE, 0, mWinFrame, mOverscanInsets, mContentInsets,
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800679 mVisibleInsets, mStableInsets, mOutsets, mBackdropFrame,
680 mConfiguration, mSurfaceHolder.mSurface);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700681
Dianne Hackborn284ac932009-08-28 10:34:25 -0700682 if (DEBUG) Log.v(TAG, "New surface: " + mSurfaceHolder.mSurface
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700683 + ", frame=" + mWinFrame);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700684
Adrian Roos2ae38052014-12-09 17:03:01 +0000685 int w = mWinFrame.width();
686 int h = mWinFrame.height();
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700687
688 if (!fixedSize) {
689 final Rect padding = mIWallpaperEngine.mDisplayPadding;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700690 w += padding.left + padding.right + mOutsets.left + mOutsets.right;
691 h += padding.top + padding.bottom + mOutsets.top + mOutsets.bottom;
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700692 mOverscanInsets.left += padding.left;
693 mOverscanInsets.top += padding.top;
694 mOverscanInsets.right += padding.right;
695 mOverscanInsets.bottom += padding.bottom;
696 mContentInsets.left += padding.left;
697 mContentInsets.top += padding.top;
698 mContentInsets.right += padding.right;
699 mContentInsets.bottom += padding.bottom;
700 mStableInsets.left += padding.left;
701 mStableInsets.top += padding.top;
702 mStableInsets.right += padding.right;
703 mStableInsets.bottom += padding.bottom;
704 }
705
Dianne Hackborn7341d7a2009-08-14 11:37:52 -0700706 if (mCurWidth != w) {
707 sizeChanged = true;
708 mCurWidth = w;
709 }
Dianne Hackborn7341d7a2009-08-14 11:37:52 -0700710 if (mCurHeight != h) {
711 sizeChanged = true;
712 mCurHeight = h;
713 }
Jeff Brown30bc34f2011-01-25 12:56:56 -0800714
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700715 if (DEBUG) {
716 Log.v(TAG, "Wallpaper size has changed: (" + mCurWidth + ", " + mCurHeight);
717 }
718
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700719 insetsChanged |= !mDispatchedOverscanInsets.equals(mOverscanInsets);
720 insetsChanged |= !mDispatchedContentInsets.equals(mContentInsets);
721 insetsChanged |= !mDispatchedStableInsets.equals(mStableInsets);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700722 insetsChanged |= !mDispatchedOutsets.equals(mOutsets);
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700723
Jeff Brown30bc34f2011-01-25 12:56:56 -0800724 mSurfaceHolder.setSurfaceFrameSize(w, h);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700725 mSurfaceHolder.mSurfaceLock.unlock();
726
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700727 if (!mSurfaceHolder.mSurface.isValid()) {
728 reportSurfaceDestroyed();
729 if (DEBUG) Log.v(TAG, "Layout: Surface destroyed");
730 return;
731 }
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700732
733 boolean didSurface = false;
734
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700735 try {
Dianne Hackborndc8a7f62010-05-10 11:29:34 -0700736 mSurfaceHolder.ungetCallbacks();
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700737
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700738 if (surfaceCreating) {
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700739 mIsCreating = true;
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700740 didSurface = true;
Dianne Hackborn284ac932009-08-28 10:34:25 -0700741 if (DEBUG) Log.v(TAG, "onSurfaceCreated("
742 + mSurfaceHolder + "): " + this);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700743 onSurfaceCreated(mSurfaceHolder);
Dianne Hackborndc8a7f62010-05-10 11:29:34 -0700744 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700745 if (callbacks != null) {
746 for (SurfaceHolder.Callback c : callbacks) {
747 c.surfaceCreated(mSurfaceHolder);
748 }
749 }
750 }
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700751
Jeff Brown98365d72012-08-19 20:30:52 -0700752 redrawNeeded |= creating || (relayoutResult
753 & WindowManagerGlobal.RELAYOUT_RES_FIRST_TIME) != 0;
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700754
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700755 if (forceReport || creating || surfaceCreating
756 || formatChanged || sizeChanged) {
Dianne Hackborncbf15042009-08-18 18:29:09 -0700757 if (DEBUG) {
758 RuntimeException e = new RuntimeException();
759 e.fillInStackTrace();
760 Log.w(TAG, "forceReport=" + forceReport + " creating=" + creating
761 + " formatChanged=" + formatChanged
762 + " sizeChanged=" + sizeChanged, e);
763 }
Dianne Hackborn284ac932009-08-28 10:34:25 -0700764 if (DEBUG) Log.v(TAG, "onSurfaceChanged("
765 + mSurfaceHolder + ", " + mFormat
766 + ", " + mCurWidth + ", " + mCurHeight
767 + "): " + this);
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700768 didSurface = true;
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700769 onSurfaceChanged(mSurfaceHolder, mFormat,
770 mCurWidth, mCurHeight);
Dianne Hackborndc8a7f62010-05-10 11:29:34 -0700771 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700772 if (callbacks != null) {
773 for (SurfaceHolder.Callback c : callbacks) {
Dianne Hackborn72c82ab2009-08-11 21:13:54 -0700774 c.surfaceChanged(mSurfaceHolder, mFormat,
775 mCurWidth, mCurHeight);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700776 }
777 }
778 }
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700779
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700780 if (insetsChanged) {
781 mDispatchedOverscanInsets.set(mOverscanInsets);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700782 mDispatchedOverscanInsets.left += mOutsets.left;
783 mDispatchedOverscanInsets.top += mOutsets.top;
784 mDispatchedOverscanInsets.right += mOutsets.right;
785 mDispatchedOverscanInsets.bottom += mOutsets.bottom;
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700786 mDispatchedContentInsets.set(mContentInsets);
787 mDispatchedStableInsets.set(mStableInsets);
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700788 mDispatchedOutsets.set(mOutsets);
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700789 mFinalSystemInsets.set(mDispatchedOverscanInsets);
790 mFinalStableInsets.set(mDispatchedStableInsets);
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700791 WindowInsets insets = new WindowInsets(mFinalSystemInsets,
Adam Powell01f280d2015-05-18 16:07:42 -0700792 null, mFinalStableInsets,
793 getResources().getConfiguration().isScreenRound());
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700794 if (DEBUG) {
795 Log.v(TAG, "dispatching insets=" + insets);
796 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700797 onApplyWindowInsets(insets);
798 }
799
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700800 if (redrawNeeded) {
801 onSurfaceRedrawNeeded(mSurfaceHolder);
802 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();
803 if (callbacks != null) {
804 for (SurfaceHolder.Callback c : callbacks) {
805 if (c instanceof SurfaceHolder.Callback2) {
806 ((SurfaceHolder.Callback2)c).surfaceRedrawNeeded(
807 mSurfaceHolder);
808 }
809 }
810 }
811 }
812
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700813 if (didSurface && !mReportedVisible) {
814 // This wallpaper is currently invisible, but its
815 // surface has changed. At this point let's tell it
816 // again that it is invisible in case the report about
817 // the surface caused it to start running. We really
818 // don't want wallpapers running when not visible.
819 if (mIsCreating) {
820 // Some wallpapers will ignore this call if they
821 // had previously been told they were invisble,
822 // so if we are creating a new surface then toggle
823 // the state to get them to notice.
824 if (DEBUG) Log.v(TAG, "onVisibilityChanged(true) at surface: "
825 + this);
826 onVisibilityChanged(true);
827 }
828 if (DEBUG) Log.v(TAG, "onVisibilityChanged(false) at surface: "
829 + this);
830 onVisibilityChanged(false);
831 }
832
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700833 } finally {
834 mIsCreating = false;
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700835 mSurfaceCreated = true;
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700836 if (redrawNeeded) {
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700837 mSession.finishDrawing(mWindow);
838 }
Dianne Hackbornbce0cbb2012-10-05 11:06:53 -0700839 mIWallpaperEngine.reportShown();
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700840 }
841 } catch (RemoteException ex) {
842 }
843 if (DEBUG) Log.v(
844 TAG, "Layout: x=" + mLayout.x + " y=" + mLayout.y +
845 " w=" + mLayout.width + " h=" + mLayout.height);
846 }
847 }
848
849 void attach(IWallpaperEngineWrapper wrapper) {
Dianne Hackborncbf15042009-08-18 18:29:09 -0700850 if (DEBUG) Log.v(TAG, "attach: " + this + " wrapper=" + wrapper);
Dianne Hackborn284ac932009-08-28 10:34:25 -0700851 if (mDestroyed) {
852 return;
853 }
854
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700855 mIWallpaperEngine = wrapper;
856 mCaller = wrapper.mCaller;
857 mConnection = wrapper.mConnection;
858 mWindowToken = wrapper.mWindowToken;
Dianne Hackborn284ac932009-08-28 10:34:25 -0700859 mSurfaceHolder.setSizeFromLayout();
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700860 mInitializing = true;
Jeff Brownf9e989d2013-04-04 23:04:03 -0700861 mSession = WindowManagerGlobal.getWindowSession();
Jeff Brown46b9ac02010-04-22 18:58:52 -0700862
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700863 mWindow.setSession(mSession);
Dianne Hackborn9fe6cb52011-09-09 13:02:43 -0700864
Filip Gruszczynski4544b922015-04-16 13:18:58 -0700865 mLayout.packageName = getPackageName();
866
Jeff Brown3d110b22014-11-21 19:01:13 -0800867 mDisplayManager = (DisplayManager)getSystemService(Context.DISPLAY_SERVICE);
868 mDisplayManager.registerDisplayListener(mDisplayListener, mCaller.getHandler());
869 mDisplay = mDisplayManager.getDisplay(Display.DEFAULT_DISPLAY);
Filip Gruszczynski4544b922015-04-16 13:18:58 -0700870 mDisplayState = mDisplay.getState();
Dianne Hackborn9fe6cb52011-09-09 13:02:43 -0700871
Dianne Hackborn284ac932009-08-28 10:34:25 -0700872 if (DEBUG) Log.v(TAG, "onCreate(): " + this);
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700873 onCreate(mSurfaceHolder);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700874
875 mInitializing = false;
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700876 mReportedVisible = false;
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700877 updateSurface(false, false, false);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700878 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700879
Dianne Hackborn284ac932009-08-28 10:34:25 -0700880 void doDesiredSizeChanged(int desiredWidth, int desiredHeight) {
881 if (!mDestroyed) {
882 if (DEBUG) Log.v(TAG, "onDesiredSizeChanged("
883 + desiredWidth + "," + desiredHeight + "): " + this);
Joe Onoratodcfae5c2010-10-28 18:03:23 -0700884 mIWallpaperEngine.mReqWidth = desiredWidth;
885 mIWallpaperEngine.mReqHeight = desiredHeight;
Dianne Hackborn284ac932009-08-28 10:34:25 -0700886 onDesiredSizeChanged(desiredWidth, desiredHeight);
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700887 doOffsetsChanged(true);
Dianne Hackborn284ac932009-08-28 10:34:25 -0700888 }
889 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700890
891 void doDisplayPaddingChanged(Rect padding) {
892 if (!mDestroyed) {
893 if (DEBUG) Log.v(TAG, "onDisplayPaddingChanged(" + padding + "): " + this);
894 if (!mIWallpaperEngine.mDisplayPadding.equals(padding)) {
895 mIWallpaperEngine.mDisplayPadding.set(padding);
896 updateSurface(true, false, false);
897 }
898 }
899 }
900
Dianne Hackborn284ac932009-08-28 10:34:25 -0700901 void doVisibilityChanged(boolean visible) {
Dianne Hackbornaf1f42b2009-11-20 16:27:27 -0800902 if (!mDestroyed) {
903 mVisible = visible;
904 reportVisibility();
905 }
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700906 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700907
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700908 void reportVisibility() {
Dianne Hackborn284ac932009-08-28 10:34:25 -0700909 if (!mDestroyed) {
Filip Gruszczynski4544b922015-04-16 13:18:58 -0700910 mDisplayState = mDisplay == null ? Display.STATE_UNKNOWN : mDisplay.getState();
911 boolean visible = mVisible && mDisplayState != Display.STATE_OFF;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700912 if (mReportedVisible != visible) {
913 mReportedVisible = visible;
914 if (DEBUG) Log.v(TAG, "onVisibilityChanged(" + visible
915 + "): " + this);
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700916 if (visible) {
917 // If becoming visible, in preview mode the surface
918 // may have been destroyed so now we need to make
919 // sure it is re-created.
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700920 doOffsetsChanged(false);
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700921 updateSurface(false, false, false);
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700922 }
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700923 onVisibilityChanged(visible);
924 }
Dianne Hackborn284ac932009-08-28 10:34:25 -0700925 }
926 }
927
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700928 void doOffsetsChanged(boolean always) {
Dianne Hackborn284ac932009-08-28 10:34:25 -0700929 if (mDestroyed) {
930 return;
931 }
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700932
933 if (!always && !mOffsetsChanged) {
934 return;
935 }
936
Dianne Hackborn284ac932009-08-28 10:34:25 -0700937 float xOffset;
938 float yOffset;
Marco Nelissenbf6956b2009-11-09 15:21:13 -0800939 float xOffsetStep;
940 float yOffsetStep;
Dianne Hackborn19382ac2009-09-11 21:13:37 -0700941 boolean sync;
Dianne Hackborn284ac932009-08-28 10:34:25 -0700942 synchronized (mLock) {
943 xOffset = mPendingXOffset;
944 yOffset = mPendingYOffset;
Marco Nelissenbf6956b2009-11-09 15:21:13 -0800945 xOffsetStep = mPendingXOffsetStep;
946 yOffsetStep = mPendingYOffsetStep;
Dianne Hackborn19382ac2009-09-11 21:13:37 -0700947 sync = mPendingSync;
948 mPendingSync = false;
Dianne Hackborn284ac932009-08-28 10:34:25 -0700949 mOffsetMessageEnqueued = false;
950 }
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700951
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700952 if (mSurfaceCreated) {
Dianne Hackborn9e4e7272011-08-30 14:06:51 -0700953 if (mReportedVisible) {
954 if (DEBUG) Log.v(TAG, "Offsets change in " + this
955 + ": " + xOffset + "," + yOffset);
956 final int availw = mIWallpaperEngine.mReqWidth-mCurWidth;
957 final int xPixels = availw > 0 ? -(int)(availw*xOffset+.5f) : 0;
958 final int availh = mIWallpaperEngine.mReqHeight-mCurHeight;
959 final int yPixels = availh > 0 ? -(int)(availh*yOffset+.5f) : 0;
960 onOffsetsChanged(xOffset, yOffset, xOffsetStep, yOffsetStep, xPixels, yPixels);
961 } else {
962 mOffsetsChanged = true;
963 }
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700964 }
Dianne Hackborn19382ac2009-09-11 21:13:37 -0700965
966 if (sync) {
967 try {
968 if (DEBUG) Log.v(TAG, "Reporting offsets change complete");
969 mSession.wallpaperOffsetsComplete(mWindow.asBinder());
970 } catch (RemoteException e) {
971 }
972 }
Dianne Hackborn284ac932009-08-28 10:34:25 -0700973 }
974
Dianne Hackborn75804932009-10-20 20:15:20 -0700975 void doCommand(WallpaperCommand cmd) {
976 Bundle result;
977 if (!mDestroyed) {
978 result = onCommand(cmd.action, cmd.x, cmd.y, cmd.z,
979 cmd.extras, cmd.sync);
980 } else {
981 result = null;
982 }
983 if (cmd.sync) {
984 try {
985 if (DEBUG) Log.v(TAG, "Reporting command complete");
986 mSession.wallpaperCommandComplete(mWindow.asBinder(), result);
987 } catch (RemoteException e) {
988 }
989 }
990 }
991
Dianne Hackborn18ee31e2010-04-27 15:54:02 -0700992 void reportSurfaceDestroyed() {
993 if (mSurfaceCreated) {
994 mSurfaceCreated = false;
Dianne Hackborndc8a7f62010-05-10 11:29:34 -0700995 mSurfaceHolder.ungetCallbacks();
996 SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();
997 if (callbacks != null) {
998 for (SurfaceHolder.Callback c : callbacks) {
999 c.surfaceDestroyed(mSurfaceHolder);
1000 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001001 }
Dianne Hackborn284ac932009-08-28 10:34:25 -07001002 if (DEBUG) Log.v(TAG, "onSurfaceDestroyed("
1003 + mSurfaceHolder + "): " + this);
1004 onSurfaceDestroyed(mSurfaceHolder);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001005 }
Dianne Hackborn18ee31e2010-04-27 15:54:02 -07001006 }
1007
1008 void detach() {
1009 if (mDestroyed) {
1010 return;
1011 }
1012
1013 mDestroyed = true;
Jeff Brown3d110b22014-11-21 19:01:13 -08001014
1015 if (mDisplayManager != null) {
1016 mDisplayManager.unregisterDisplayListener(mDisplayListener);
1017 }
1018
Dianne Hackborn18ee31e2010-04-27 15:54:02 -07001019 if (mVisible) {
1020 mVisible = false;
1021 if (DEBUG) Log.v(TAG, "onVisibilityChanged(false): " + this);
1022 onVisibilityChanged(false);
1023 }
1024
1025 reportSurfaceDestroyed();
Dianne Hackborn284ac932009-08-28 10:34:25 -07001026
1027 if (DEBUG) Log.v(TAG, "onDestroy(): " + this);
1028 onDestroy();
Jeff Brown3d110b22014-11-21 19:01:13 -08001029
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001030 if (mCreated) {
1031 try {
Dianne Hackbornba3e31d2010-04-22 18:59:03 -07001032 if (DEBUG) Log.v(TAG, "Removing window and destroying surface "
1033 + mSurfaceHolder.getSurface() + " of: " + this);
Jeff Brown46b9ac02010-04-22 18:58:52 -07001034
Jeff Brown32cbc38552011-12-01 14:01:49 -08001035 if (mInputEventReceiver != null) {
1036 mInputEventReceiver.dispose();
1037 mInputEventReceiver = null;
Jeff Brown46b9ac02010-04-22 18:58:52 -07001038 }
1039
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001040 mSession.remove(mWindow);
1041 } catch (RemoteException e) {
1042 }
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07001043 mSurfaceHolder.mSurface.release();
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001044 mCreated = false;
Jeff Brown349703e2010-06-22 01:27:15 -07001045
Jeff Brown00fa7bd2010-07-02 15:37:36 -07001046 // Dispose the input channel after removing the window so the Window Manager
1047 // doesn't interpret the input channel being closed as an abnormal termination.
1048 if (mInputChannel != null) {
1049 mInputChannel.dispose();
1050 mInputChannel = null;
Jeff Brown349703e2010-06-22 01:27:15 -07001051 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001052 }
1053 }
Jeff Brown3d110b22014-11-21 19:01:13 -08001054
1055 private final DisplayListener mDisplayListener = new DisplayListener() {
1056 @Override
1057 public void onDisplayChanged(int displayId) {
1058 if (mDisplay.getDisplayId() == displayId) {
1059 reportVisibility();
1060 }
1061 }
1062
1063 @Override
1064 public void onDisplayRemoved(int displayId) {
1065 }
1066
1067 @Override
1068 public void onDisplayAdded(int displayId) {
1069 }
1070 };
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001071 }
Jeff Brown3d110b22014-11-21 19:01:13 -08001072
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001073 class IWallpaperEngineWrapper extends IWallpaperEngine.Stub
1074 implements HandlerCaller.Callback {
1075 private final HandlerCaller mCaller;
1076
1077 final IWallpaperConnection mConnection;
1078 final IBinder mWindowToken;
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001079 final int mWindowType;
1080 final boolean mIsPreview;
Dianne Hackbornbce0cbb2012-10-05 11:06:53 -07001081 boolean mShownReported;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001082 int mReqWidth;
1083 int mReqHeight;
Dianne Hackborn067e5f62014-09-07 23:14:30 -07001084 final Rect mDisplayPadding = new Rect();
1085
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001086 Engine mEngine;
Dianne Hackborn067e5f62014-09-07 23:14:30 -07001087
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001088 IWallpaperEngineWrapper(WallpaperService context,
1089 IWallpaperConnection conn, IBinder windowToken,
Dianne Hackborn067e5f62014-09-07 23:14:30 -07001090 int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding) {
Mita Yunaa8dc2e2012-12-10 18:32:03 -08001091 mCaller = new HandlerCaller(context, context.getMainLooper(), this, true);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001092 mConnection = conn;
1093 mWindowToken = windowToken;
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001094 mWindowType = windowType;
1095 mIsPreview = isPreview;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001096 mReqWidth = reqWidth;
1097 mReqHeight = reqHeight;
Dianne Hackborn067e5f62014-09-07 23:14:30 -07001098 mDisplayPadding.set(padding);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001099
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001100 Message msg = mCaller.obtainMessage(DO_ATTACH);
1101 mCaller.sendMessage(msg);
1102 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -07001103
Dianne Hackborn284ac932009-08-28 10:34:25 -07001104 public void setDesiredSize(int width, int height) {
1105 Message msg = mCaller.obtainMessageII(DO_SET_DESIRED_SIZE, width, height);
1106 mCaller.sendMessage(msg);
1107 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -07001108
1109 public void setDisplayPadding(Rect padding) {
1110 Message msg = mCaller.obtainMessageO(DO_SET_DISPLAY_PADDING, padding);
1111 mCaller.sendMessage(msg);
1112 }
1113
Dianne Hackborn284ac932009-08-28 10:34:25 -07001114 public void setVisibility(boolean visible) {
1115 Message msg = mCaller.obtainMessageI(MSG_VISIBILITY_CHANGED,
1116 visible ? 1 : 0);
1117 mCaller.sendMessage(msg);
1118 }
1119
Dianne Hackborn6adba242009-11-10 11:10:09 -08001120 public void dispatchPointer(MotionEvent event) {
1121 if (mEngine != null) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07001122 mEngine.dispatchPointer(event);
Jeff Brown32cbc38552011-12-01 14:01:49 -08001123 } else {
1124 event.recycle();
Dianne Hackborn6adba242009-11-10 11:10:09 -08001125 }
1126 }
Jeff Brown9f3bdfe2010-10-13 06:01:27 -07001127
1128 public void dispatchWallpaperCommand(String action, int x, int y,
1129 int z, Bundle extras) {
1130 if (mEngine != null) {
1131 mEngine.mWindow.dispatchWallpaperCommand(action, x, y, z, extras, false);
1132 }
1133 }
1134
Dianne Hackbornbce0cbb2012-10-05 11:06:53 -07001135 public void reportShown() {
1136 if (!mShownReported) {
1137 mShownReported = true;
1138 try {
1139 mConnection.engineShown(this);
1140 } catch (RemoteException e) {
1141 Log.w(TAG, "Wallpaper host disappeared", e);
1142 return;
1143 }
1144 }
1145 }
1146
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001147 public void destroy() {
1148 Message msg = mCaller.obtainMessage(DO_DETACH);
1149 mCaller.sendMessage(msg);
1150 }
1151
1152 public void executeMessage(Message message) {
1153 switch (message.what) {
1154 case DO_ATTACH: {
Dianne Hackborn284ac932009-08-28 10:34:25 -07001155 try {
1156 mConnection.attachEngine(this);
1157 } catch (RemoteException e) {
1158 Log.w(TAG, "Wallpaper host disappeared", e);
1159 return;
1160 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001161 Engine engine = onCreateEngine();
1162 mEngine = engine;
Dianne Hackbornaf1f42b2009-11-20 16:27:27 -08001163 mActiveEngines.add(engine);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001164 engine.attach(this);
1165 return;
1166 }
1167 case DO_DETACH: {
Dianne Hackbornaf1f42b2009-11-20 16:27:27 -08001168 mActiveEngines.remove(mEngine);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001169 mEngine.detach();
1170 return;
1171 }
Dianne Hackborn284ac932009-08-28 10:34:25 -07001172 case DO_SET_DESIRED_SIZE: {
1173 mEngine.doDesiredSizeChanged(message.arg1, message.arg2);
1174 return;
1175 }
Dianne Hackborn067e5f62014-09-07 23:14:30 -07001176 case DO_SET_DISPLAY_PADDING: {
1177 mEngine.doDisplayPaddingChanged((Rect) message.obj);
1178 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001179 case MSG_UPDATE_SURFACE:
Dianne Hackbornd76b67c2010-07-13 17:48:30 -07001180 mEngine.updateSurface(true, false, false);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001181 break;
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001182 case MSG_VISIBILITY_CHANGED:
1183 if (DEBUG) Log.v(TAG, "Visibility change in " + mEngine
1184 + ": " + message.arg1);
Dianne Hackborn284ac932009-08-28 10:34:25 -07001185 mEngine.doVisibilityChanged(message.arg1 != 0);
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001186 break;
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07001187 case MSG_WALLPAPER_OFFSETS: {
Dianne Hackborn9e4e7272011-08-30 14:06:51 -07001188 mEngine.doOffsetsChanged(true);
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07001189 } break;
Dianne Hackborn75804932009-10-20 20:15:20 -07001190 case MSG_WALLPAPER_COMMAND: {
1191 WallpaperCommand cmd = (WallpaperCommand)message.obj;
1192 mEngine.doCommand(cmd);
1193 } break;
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001194 case MSG_WINDOW_RESIZED: {
1195 final boolean reportDraw = message.arg1 != 0;
Filip Gruszczynski03850592015-07-01 08:35:28 -07001196 mEngine.mOutsets.set((Rect) message.obj);
Dianne Hackbornd76b67c2010-07-13 17:48:30 -07001197 mEngine.updateSurface(true, false, reportDraw);
Dianne Hackborn9e4e7272011-08-30 14:06:51 -07001198 mEngine.doOffsetsChanged(true);
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001199 } break;
Craig Mautner5702d4d2012-06-30 14:10:16 -07001200 case MSG_WINDOW_MOVED: {
1201 // Do nothing. What does it mean for a Wallpaper to move?
1202 } break;
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07001203 case MSG_TOUCH_EVENT: {
Jeff Brown840db1f2010-10-21 17:36:54 -07001204 boolean skip = false;
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07001205 MotionEvent ev = (MotionEvent)message.obj;
Jeff Brown840db1f2010-10-21 17:36:54 -07001206 if (ev.getAction() == MotionEvent.ACTION_MOVE) {
1207 synchronized (mEngine.mLock) {
1208 if (mEngine.mPendingMove == ev) {
1209 mEngine.mPendingMove = null;
1210 } else {
1211 // this is not the motion event we are looking for....
1212 skip = true;
1213 }
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07001214 }
1215 }
Jeff Brown840db1f2010-10-21 17:36:54 -07001216 if (!skip) {
1217 if (DEBUG) Log.v(TAG, "Delivering touch event: " + ev);
1218 mEngine.onTouchEvent(ev);
1219 }
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07001220 ev.recycle();
1221 } break;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001222 default :
1223 Log.w(TAG, "Unknown message type " + message.what);
1224 }
1225 }
1226 }
1227
1228 /**
1229 * Implements the internal {@link IWallpaperService} interface to convert
1230 * incoming calls to it back to calls on an {@link WallpaperService}.
1231 */
1232 class IWallpaperServiceWrapper extends IWallpaperService.Stub {
1233 private final WallpaperService mTarget;
1234
1235 public IWallpaperServiceWrapper(WallpaperService context) {
1236 mTarget = context;
1237 }
1238
Craig Mautnerb1ef3692012-11-16 17:31:04 -08001239 @Override
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001240 public void attach(IWallpaperConnection conn, IBinder windowToken,
Dianne Hackborn067e5f62014-09-07 23:14:30 -07001241 int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001242 new IWallpaperEngineWrapper(mTarget, conn, windowToken,
Dianne Hackborn067e5f62014-09-07 23:14:30 -07001243 windowType, isPreview, reqWidth, reqHeight, padding);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001244 }
1245 }
Craig Mautnerb1ef3692012-11-16 17:31:04 -08001246
Dianne Hackbornaf1f42b2009-11-20 16:27:27 -08001247 @Override
1248 public void onCreate() {
1249 super.onCreate();
1250 }
1251
1252 @Override
1253 public void onDestroy() {
1254 super.onDestroy();
1255 for (int i=0; i<mActiveEngines.size(); i++) {
1256 mActiveEngines.get(i).detach();
1257 }
1258 mActiveEngines.clear();
1259 }
1260
Dianne Hackborn8cc6a502009-08-05 21:29:42 -07001261 /**
1262 * Implement to return the implementation of the internal accessibility
1263 * service interface. Subclasses should not override.
1264 */
1265 @Override
1266 public final IBinder onBind(Intent intent) {
1267 return new IWallpaperServiceWrapper(this);
1268 }
Craig Mautnerb1ef3692012-11-16 17:31:04 -08001269
Dianne Hackborn23ef7b42009-11-18 18:20:39 -08001270 /**
1271 * Must be implemented to return a new instance of the wallpaper's engine.
1272 * Note that multiple instances may be active at the same time, such as
1273 * when the wallpaper is currently set as the active wallpaper and the user
1274 * is in the wallpaper picker viewing a preview of it as well.
1275 */
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001276 public abstract Engine onCreateEngine();
Dianne Hackborn527de8e2011-08-22 16:10:36 -07001277
1278 @Override
1279 protected void dump(FileDescriptor fd, PrintWriter out, String[] args) {
1280 out.print("State of wallpaper "); out.print(this); out.println(":");
1281 for (int i=0; i<mActiveEngines.size(); i++) {
1282 Engine engine = mActiveEngines.get(i);
1283 out.print(" Engine "); out.print(engine); out.println(":");
1284 engine.dump(" ", fd, out, args);
1285 }
1286 }
Dianne Hackborn8cc6a502009-08-05 21:29:42 -07001287}