blob: 9216b66e50882fe50f481add3b42dcbbcf921afe [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 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.server.wm;
18
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080019import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
20
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080021import android.graphics.Canvas;
22import android.graphics.Paint;
23import android.graphics.PixelFormat;
24import android.graphics.PorterDuff;
25import android.graphics.Rect;
26import android.graphics.Typeface;
27import android.graphics.Paint.FontMetricsInt;
28import android.util.DisplayMetrics;
29import android.util.Log;
30import android.util.TypedValue;
31import android.view.Display;
Igor Murashkina86ab6402013-08-30 12:58:36 -070032import android.view.Surface.OutOfResourcesException;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080033import android.view.Surface;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080034import android.view.SurfaceControl;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080035import android.view.SurfaceSession;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080036
37/**
38 * Displays a watermark on top of the window manager's windows.
39 */
40class Watermark {
Mathias Agopian3866f0d2013-02-11 22:08:48 -080041 private final Display mDisplay;
42 private final String[] mTokens;
43 private final String mText;
44 private final Paint mTextPaint;
45 private final int mTextWidth;
46 private final int mTextHeight;
47 private final int mDeltaX;
48 private final int mDeltaY;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080049
Mathias Agopian3866f0d2013-02-11 22:08:48 -080050 private final SurfaceControl mSurfaceControl;
51 private final Surface mSurface = new Surface();
52 private int mLastDW;
53 private int mLastDH;
54 private boolean mDrawNeeded;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080055
Robert Carrb1579c82017-09-05 14:54:47 -070056 Watermark(DisplayContent dc, DisplayMetrics dm, String[] tokens) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080057 if (false) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080058 Log.i(TAG_WM, "*********************** WATERMARK");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080059 for (int i=0; i<tokens.length; i++) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080060 Log.i(TAG_WM, " TOKEN #" + i + ": " + tokens[i]);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080061 }
62 }
63
Robert Carrb1579c82017-09-05 14:54:47 -070064 mDisplay = dc.getDisplay();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080065 mTokens = tokens;
66
67 StringBuilder builder = new StringBuilder(32);
68 int len = mTokens[0].length();
69 len = len & ~1;
70 for (int i=0; i<len; i+=2) {
71 int c1 = mTokens[0].charAt(i);
72 int c2 = mTokens[0].charAt(i+1);
73 if (c1 >= 'a' && c1 <= 'f') c1 = c1 - 'a' + 10;
74 else if (c1 >= 'A' && c1 <= 'F') c1 = c1 - 'A' + 10;
75 else c1 -= '0';
76 if (c2 >= 'a' && c2 <= 'f') c2 = c2 - 'a' + 10;
77 else if (c2 >= 'A' && c2 <= 'F') c2 = c2 - 'A' + 10;
78 else c2 -= '0';
79 builder.append((char)(255-((c1*16)+c2)));
80 }
81 mText = builder.toString();
82 if (false) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080083 Log.i(TAG_WM, "Final text: " + mText);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080084 }
85
86 int fontSize = WindowManagerService.getPropertyInt(tokens, 1,
87 TypedValue.COMPLEX_UNIT_DIP, 20, dm);
88
Chris Craik6a49dde2015-05-12 10:28:14 -070089 mTextPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080090 mTextPaint.setTextSize(fontSize);
91 mTextPaint.setTypeface(Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD));
92
93 FontMetricsInt fm = mTextPaint.getFontMetricsInt();
94 mTextWidth = (int)mTextPaint.measureText(mText);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080095 mTextHeight = fm.descent - fm.ascent;
96
97 mDeltaX = WindowManagerService.getPropertyInt(tokens, 2,
98 TypedValue.COMPLEX_UNIT_PX, mTextWidth*2, dm);
99 mDeltaY = WindowManagerService.getPropertyInt(tokens, 3,
100 TypedValue.COMPLEX_UNIT_PX, mTextHeight*3, dm);
101 int shadowColor = WindowManagerService.getPropertyInt(tokens, 4,
102 TypedValue.COMPLEX_UNIT_PX, 0xb0000000, dm);
103 int color = WindowManagerService.getPropertyInt(tokens, 5,
104 TypedValue.COMPLEX_UNIT_PX, 0x60ffffff, dm);
105 int shadowRadius = WindowManagerService.getPropertyInt(tokens, 6,
106 TypedValue.COMPLEX_UNIT_PX, 7, dm);
107 int shadowDx = WindowManagerService.getPropertyInt(tokens, 8,
108 TypedValue.COMPLEX_UNIT_PX, 0, dm);
109 int shadowDy = WindowManagerService.getPropertyInt(tokens, 9,
110 TypedValue.COMPLEX_UNIT_PX, 0, dm);
111
112 mTextPaint.setColor(color);
113 mTextPaint.setShadowLayer(shadowRadius, shadowDx, shadowDy, shadowColor);
114
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800115 SurfaceControl ctrl = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800116 try {
Robert Carrb1579c82017-09-05 14:54:47 -0700117 ctrl = dc.makeOverlay()
Robert Carre625fcf2017-09-01 12:36:28 -0700118 .setName("WatermarkSurface")
119 .setSize(1, 1)
120 .setFormat(PixelFormat.TRANSLUCENT)
121 .build();
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800122 ctrl.setLayerStack(mDisplay.getLayerStack());
123 ctrl.setLayer(WindowManagerService.TYPE_LAYER_MULTIPLIER*100);
124 ctrl.setPosition(0, 0);
125 ctrl.show();
126 mSurface.copyFrom(ctrl);
Igor Murashkina86ab6402013-08-30 12:58:36 -0700127 } catch (OutOfResourcesException e) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800128 }
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800129 mSurfaceControl = ctrl;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800130 }
131
132 void positionSurface(int dw, int dh) {
133 if (mLastDW != dw || mLastDH != dh) {
134 mLastDW = dw;
135 mLastDH = dh;
Mathias Agopian3866f0d2013-02-11 22:08:48 -0800136 mSurfaceControl.setSize(dw, dh);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800137 mDrawNeeded = true;
138 }
139 }
140
141 void drawIfNeeded() {
142 if (mDrawNeeded) {
143 final int dw = mLastDW;
144 final int dh = mLastDH;
145
146 mDrawNeeded = false;
147 Rect dirty = new Rect(0, 0, dw, dh);
148 Canvas c = null;
149 try {
150 c = mSurface.lockCanvas(dirty);
151 } catch (IllegalArgumentException e) {
Igor Murashkina86ab6402013-08-30 12:58:36 -0700152 } catch (Surface.OutOfResourcesException e) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800153 }
154 if (c != null) {
155 c.drawColor(0, PorterDuff.Mode.CLEAR);
Igor Murashkina86ab6402013-08-30 12:58:36 -0700156
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800157 int deltaX = mDeltaX;
158 int deltaY = mDeltaY;
159
160 // deltaX shouldn't be close to a round fraction of our
161 // x step, or else things will line up too much.
162 int div = (dw+mTextWidth)/deltaX;
163 int rem = (dw+mTextWidth) - (div*deltaX);
164 int qdelta = deltaX/4;
165 if (rem < qdelta || rem > (deltaX-qdelta)) {
166 deltaX += deltaX/3;
167 }
168
169 int y = -mTextHeight;
170 int x = -mTextWidth;
171 while (y < (dh+mTextHeight)) {
172 c.drawText(mText, x, y, mTextPaint);
173 x += deltaX;
174 if (x >= dw) {
175 x -= (dw+mTextWidth);
176 y += deltaY;
177 }
178 }
179 mSurface.unlockCanvasAndPost(c);
180 }
181 }
182 }
Jeff Brown64a55af2012-08-26 02:47:39 -0700183}