blob: d01ff6fb83734cca9a79980ec77cb6dd491e08a1 [file] [log] [blame]
Justin Klaassen10d07c82017-09-15 17:58:39 -04001/*
2 * Copyright (C) 2007 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.graphics;
18
19import java.io.InputStream;
20import java.io.OutputStream;
21
22/**
23 * A Picture records drawing calls (via the canvas returned by beginRecording)
24 * and can then play them back into Canvas (via {@link Picture#draw(Canvas)} or
25 * {@link Canvas#drawPicture(Picture)}).For most content (e.g. text, lines, rectangles),
26 * drawing a sequence from a picture can be faster than the equivalent API
27 * calls, since the picture performs its playback without incurring any
28 * method-call overhead.
29 *
30 * <p class="note"><strong>Note:</strong> Prior to API level 23 a picture cannot
31 * be replayed on a hardware accelerated canvas.</p>
32 */
33public class Picture {
Justin Klaassen4d01eea2018-04-03 23:21:57 -040034 private PictureCanvas mRecordingCanvas;
Justin Klaassen10d07c82017-09-15 17:58:39 -040035 private long mNativePicture;
Justin Klaassen4d01eea2018-04-03 23:21:57 -040036 private boolean mRequiresHwAcceleration;
Justin Klaassen10d07c82017-09-15 17:58:39 -040037
38 private static final int WORKING_STREAM_STORAGE = 16 * 1024;
39
40 /**
41 * Creates an empty picture that is ready to record.
42 */
43 public Picture() {
44 this(nativeConstructor(0));
45 }
46
47 /**
48 * Create a picture by making a copy of what has already been recorded in
49 * src. The contents of src are unchanged, and if src changes later, those
50 * changes will not be reflected in this picture.
51 */
52 public Picture(Picture src) {
53 this(nativeConstructor(src != null ? src.mNativePicture : 0));
54 }
55
56 private Picture(long nativePicture) {
57 if (nativePicture == 0) {
58 throw new RuntimeException();
59 }
60 mNativePicture = nativePicture;
61 }
62
63 @Override
64 protected void finalize() throws Throwable {
65 try {
66 nativeDestructor(mNativePicture);
67 mNativePicture = 0;
68 } finally {
69 super.finalize();
70 }
71 }
72
73 /**
74 * To record a picture, call beginRecording() and then draw into the Canvas
75 * that is returned. Nothing we appear on screen, but all of the draw
76 * commands (e.g. {@link Canvas#drawRect(Rect, Paint)}) will be recorded.
77 * To stop recording, call endRecording(). After endRecording() the Canvas
78 * that was returned must no longer be used, and nothing should be drawn
79 * into it.
80 */
81 public Canvas beginRecording(int width, int height) {
Justin Klaassen4d01eea2018-04-03 23:21:57 -040082 if (mRecordingCanvas != null) {
83 throw new IllegalStateException("Picture already recording, must call #endRecording()");
84 }
Justin Klaassen10d07c82017-09-15 17:58:39 -040085 long ni = nativeBeginRecording(mNativePicture, width, height);
Justin Klaassen4d01eea2018-04-03 23:21:57 -040086 mRecordingCanvas = new PictureCanvas(this, ni);
87 mRequiresHwAcceleration = false;
Justin Klaassen10d07c82017-09-15 17:58:39 -040088 return mRecordingCanvas;
89 }
90
91 /**
92 * Call endRecording when the picture is built. After this call, the picture
93 * may be drawn, but the canvas that was returned by beginRecording must not
94 * be used anymore. This is automatically called if {@link Picture#draw}
95 * or {@link Canvas#drawPicture(Picture)} is called.
96 */
97 public void endRecording() {
98 if (mRecordingCanvas != null) {
Justin Klaassen4d01eea2018-04-03 23:21:57 -040099 mRequiresHwAcceleration = mRecordingCanvas.mHoldsHwBitmap;
Justin Klaassen10d07c82017-09-15 17:58:39 -0400100 mRecordingCanvas = null;
101 nativeEndRecording(mNativePicture);
102 }
103 }
104
105 /**
106 * Get the width of the picture as passed to beginRecording. This
107 * does not reflect (per se) the content of the picture.
108 */
109 public int getWidth() {
110 return nativeGetWidth(mNativePicture);
111 }
112
113 /**
114 * Get the height of the picture as passed to beginRecording. This
115 * does not reflect (per se) the content of the picture.
116 */
117 public int getHeight() {
118 return nativeGetHeight(mNativePicture);
119 }
120
121 /**
Justin Klaassen4d01eea2018-04-03 23:21:57 -0400122 * Indicates whether or not this Picture contains recorded commands that only work when
123 * drawn to a hardware-accelerated canvas. If this returns true then this Picture can only
124 * be drawn to another Picture or to a Canvas where canvas.isHardwareAccelerated() is true.
125 *
126 * @return true if the Picture can only be drawn to a hardware-accelerated canvas,
127 * false otherwise.
128 */
129 public boolean requiresHardwareAcceleration() {
130 return mRequiresHwAcceleration;
131 }
132
133 /**
Justin Klaassen10d07c82017-09-15 17:58:39 -0400134 * Draw this picture on the canvas.
135 * <p>
136 * Prior to {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this call could
137 * have the side effect of changing the matrix and clip of the canvas
138 * if this picture had imbalanced saves/restores.
139 *
140 * <p>
141 * <strong>Note:</strong> This forces the picture to internally call
142 * {@link Picture#endRecording()} in order to prepare for playback.
143 *
144 * @param canvas The picture is drawn to this canvas
145 */
146 public void draw(Canvas canvas) {
147 if (mRecordingCanvas != null) {
148 endRecording();
149 }
Justin Klaassen4d01eea2018-04-03 23:21:57 -0400150 if (mRequiresHwAcceleration && !canvas.isHardwareAccelerated()) {
151 canvas.onHwBitmapInSwMode();
152 }
Justin Klaassen10d07c82017-09-15 17:58:39 -0400153 nativeDraw(canvas.getNativeCanvasWrapper(), mNativePicture);
154 }
155
156 /**
157 * Create a new picture (already recorded) from the data in the stream. This
158 * data was generated by a previous call to writeToStream(). Pictures that
159 * have been persisted across device restarts are not guaranteed to decode
160 * properly and are highly discouraged.
161 *
162 * @see #writeToStream(java.io.OutputStream)
163 * @deprecated The recommended alternative is to not use writeToStream and
164 * instead draw the picture into a Bitmap from which you can persist it as
165 * raw or compressed pixels.
166 */
167 @Deprecated
168 public static Picture createFromStream(InputStream stream) {
169 return new Picture(nativeCreateFromStream(stream, new byte[WORKING_STREAM_STORAGE]));
170 }
171
172 /**
173 * Write the picture contents to a stream. The data can be used to recreate
174 * the picture in this or another process by calling createFromStream(...)
175 * The resulting stream is NOT to be persisted across device restarts as
176 * there is no guarantee that the Picture can be successfully reconstructed.
177 *
178 * @see #createFromStream(java.io.InputStream)
179 * @deprecated The recommended alternative is to draw the picture into a
180 * Bitmap from which you can persist it as raw or compressed pixels.
181 */
182 @Deprecated
183 public void writeToStream(OutputStream stream) {
184 // do explicit check before calling the native method
185 if (stream == null) {
186 throw new NullPointerException();
187 }
Justin Klaassen4d01eea2018-04-03 23:21:57 -0400188 if (!nativeWriteToStream(mNativePicture, stream, new byte[WORKING_STREAM_STORAGE])) {
Justin Klaassen10d07c82017-09-15 17:58:39 -0400189 throw new RuntimeException();
190 }
191 }
192
193 // return empty picture if src is 0, or a copy of the native src
194 private static native long nativeConstructor(long nativeSrcOr0);
195 private static native long nativeCreateFromStream(InputStream stream, byte[] storage);
196 private static native int nativeGetWidth(long nativePicture);
197 private static native int nativeGetHeight(long nativePicture);
198 private static native long nativeBeginRecording(long nativeCanvas, int w, int h);
199 private static native void nativeEndRecording(long nativeCanvas);
200 private static native void nativeDraw(long nativeCanvas, long nativePicture);
201 private static native boolean nativeWriteToStream(long nativePicture,
202 OutputStream stream, byte[] storage);
203 private static native void nativeDestructor(long nativePicture);
204
Justin Klaassen4d01eea2018-04-03 23:21:57 -0400205 private static class PictureCanvas extends Canvas {
Justin Klaassen10d07c82017-09-15 17:58:39 -0400206 private final Picture mPicture;
Justin Klaassen4d01eea2018-04-03 23:21:57 -0400207 boolean mHoldsHwBitmap;
Justin Klaassen10d07c82017-09-15 17:58:39 -0400208
Justin Klaassen4d01eea2018-04-03 23:21:57 -0400209 public PictureCanvas(Picture pict, long nativeCanvas) {
Justin Klaassen10d07c82017-09-15 17:58:39 -0400210 super(nativeCanvas);
211 mPicture = pict;
Justin Klaassen4d01eea2018-04-03 23:21:57 -0400212 // Disable bitmap density scaling. This matches DisplayListCanvas.
213 mDensity = 0;
Justin Klaassen10d07c82017-09-15 17:58:39 -0400214 }
215
216 @Override
217 public void setBitmap(Bitmap bitmap) {
218 throw new RuntimeException("Cannot call setBitmap on a picture canvas");
219 }
220
221 @Override
222 public void drawPicture(Picture picture) {
223 if (mPicture == picture) {
224 throw new RuntimeException("Cannot draw a picture into its recording canvas");
225 }
226 super.drawPicture(picture);
227 }
Justin Klaassen4d01eea2018-04-03 23:21:57 -0400228
229 @Override
230 protected void onHwBitmapInSwMode() {
231 mHoldsHwBitmap = true;
232 }
Justin Klaassen10d07c82017-09-15 17:58:39 -0400233 }
234}