blob: 8c21553bfffd70977a3d37217fd2a3119a8a1957 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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
Vishnu Nair217d8e62018-09-12 16:34:49 -070017#define LOG_TAG "LayerState"
18
Ady Abrahamdd5bfa92021-01-07 17:56:08 -080019#include <apex/window.h>
Garfield Tan8a3083e2018-12-03 13:21:07 -080020#include <inttypes.h>
21
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070022#include <binder/Parcel.h>
Andy McFadden2adaf042012-12-18 09:49:45 -080023#include <gui/IGraphicBufferProducer.h>
Pablo Gamito11dcc222020-09-12 15:49:39 +000024#include <gui/ISurfaceComposerClient.h>
Robert Carr4cdc58f2017-08-23 14:22:20 -070025#include <gui/LayerState.h>
Marin Shalamanov3b1f7bc2021-03-16 15:51:53 +010026#include <private/gui/ParcelUtils.h>
Pablo Gamito11dcc222020-09-12 15:49:39 +000027#include <utils/Errors.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080028
Steven Thomas62a4cf82020-01-31 12:04:03 -080029#include <cmath>
30
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080031namespace android {
32
Pablo Gamito11dcc222020-09-12 15:49:39 +000033layer_state_t::layer_state_t()
34 : what(0),
35 x(0),
36 y(0),
37 z(0),
38 w(0),
39 h(0),
40 layerStack(0),
41 alpha(0),
42 flags(0),
43 mask(0),
44 reserved(0),
Pablo Gamito11dcc222020-09-12 15:49:39 +000045 cornerRadius(0.0f),
46 backgroundBlurRadius(0),
47 barrierFrameNumber(0),
Pablo Gamito11dcc222020-09-12 15:49:39 +000048 transform(0),
49 transformToDisplayInverse(false),
50 crop(Rect::INVALID_RECT),
51 orientedDisplaySpaceRect(Rect::INVALID_RECT),
52 dataspace(ui::Dataspace::UNKNOWN),
53 surfaceDamageRegion(),
54 api(-1),
55 colorTransform(mat4()),
56 bgColorAlpha(0),
57 bgColorDataspace(ui::Dataspace::UNKNOWN),
58 colorSpaceAgnostic(false),
59 shadowRadius(0.0f),
60 frameRateSelectionPriority(-1),
61 frameRate(0.0f),
62 frameRateCompatibility(ANATIVEWINDOW_FRAME_RATE_COMPATIBILITY_DEFAULT),
Marin Shalamanov46084422020-10-13 12:33:42 +020063 shouldBeSeamless(true),
Pablo Gamito11dcc222020-09-12 15:49:39 +000064 fixedTransformHint(ui::Transform::ROT_INVALID),
Vishnu Naircf26a0a2020-11-13 12:56:20 -080065 frameNumber(0),
Vishnu Nair1506b182021-02-22 14:35:15 -080066 autoRefresh(false),
67 releaseBufferListener(nullptr) {
Pablo Gamito11dcc222020-09-12 15:49:39 +000068 matrix.dsdx = matrix.dtdy = 1.0f;
69 matrix.dsdy = matrix.dtdx = 0.0f;
70 hdrMetadata.validTypes = 0;
71}
72
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080073status_t layer_state_t::write(Parcel& output) const
74{
chaviw308ddba2020-08-11 16:23:51 -070075 SAFE_PARCEL(output.writeStrongBinder, surface);
Pablo Gamitodbc31672020-09-01 18:28:58 +000076 SAFE_PARCEL(output.writeInt32, layerId);
chaviw308ddba2020-08-11 16:23:51 -070077 SAFE_PARCEL(output.writeUint64, what);
78 SAFE_PARCEL(output.writeFloat, x);
79 SAFE_PARCEL(output.writeFloat, y);
80 SAFE_PARCEL(output.writeInt32, z);
81 SAFE_PARCEL(output.writeUint32, w);
82 SAFE_PARCEL(output.writeUint32, h);
83 SAFE_PARCEL(output.writeUint32, layerStack);
84 SAFE_PARCEL(output.writeFloat, alpha);
85 SAFE_PARCEL(output.writeUint32, flags);
86 SAFE_PARCEL(output.writeUint32, mask);
87 SAFE_PARCEL(matrix.write, output);
chaviw25714502021-02-11 10:01:08 -080088 SAFE_PARCEL(output.write, crop);
Pablo Gamito11dcc222020-09-12 15:49:39 +000089 SAFE_PARCEL(SurfaceControl::writeNullableToParcel, output, barrierSurfaceControl_legacy);
90 SAFE_PARCEL(SurfaceControl::writeNullableToParcel, output, reparentSurfaceControl);
Vishnu Nair6b7c5c92020-09-29 17:27:05 -070091 SAFE_PARCEL(output.writeUint64, barrierFrameNumber);
Pablo Gamito11dcc222020-09-12 15:49:39 +000092 SAFE_PARCEL(SurfaceControl::writeNullableToParcel, output, relativeLayerSurfaceControl);
93 SAFE_PARCEL(SurfaceControl::writeNullableToParcel, output, parentSurfaceControlForChild);
chaviw308ddba2020-08-11 16:23:51 -070094 SAFE_PARCEL(output.writeFloat, color.r);
95 SAFE_PARCEL(output.writeFloat, color.g);
96 SAFE_PARCEL(output.writeFloat, color.b);
Robert Carr2c358bf2018-08-08 15:58:15 -070097#ifndef NO_INPUT
chaviw308ddba2020-08-11 16:23:51 -070098 SAFE_PARCEL(inputHandle->writeToParcel, &output);
Robert Carr2c358bf2018-08-08 15:58:15 -070099#endif
chaviw308ddba2020-08-11 16:23:51 -0700100 SAFE_PARCEL(output.write, transparentRegion);
101 SAFE_PARCEL(output.writeUint32, transform);
102 SAFE_PARCEL(output.writeBool, transformToDisplayInverse);
103 SAFE_PARCEL(output.write, crop);
104 SAFE_PARCEL(output.write, orientedDisplaySpaceRect);
105
Marissa Wall61c58622018-07-18 10:12:20 -0700106 if (buffer) {
chaviw308ddba2020-08-11 16:23:51 -0700107 SAFE_PARCEL(output.writeBool, true);
108 SAFE_PARCEL(output.write, *buffer);
Marissa Wall61c58622018-07-18 10:12:20 -0700109 } else {
chaviw308ddba2020-08-11 16:23:51 -0700110 SAFE_PARCEL(output.writeBool, false);
Marissa Wall61c58622018-07-18 10:12:20 -0700111 }
chaviw308ddba2020-08-11 16:23:51 -0700112
Marissa Wall61c58622018-07-18 10:12:20 -0700113 if (acquireFence) {
chaviw308ddba2020-08-11 16:23:51 -0700114 SAFE_PARCEL(output.writeBool, true);
115 SAFE_PARCEL(output.write, *acquireFence);
Marissa Wall61c58622018-07-18 10:12:20 -0700116 } else {
chaviw308ddba2020-08-11 16:23:51 -0700117 SAFE_PARCEL(output.writeBool, false);
Marissa Wall61c58622018-07-18 10:12:20 -0700118 }
chaviw308ddba2020-08-11 16:23:51 -0700119
120 SAFE_PARCEL(output.writeUint32, static_cast<uint32_t>(dataspace));
121 SAFE_PARCEL(output.write, hdrMetadata);
122 SAFE_PARCEL(output.write, surfaceDamageRegion);
123 SAFE_PARCEL(output.writeInt32, api);
124
Marissa Wall61c58622018-07-18 10:12:20 -0700125 if (sidebandStream) {
chaviw308ddba2020-08-11 16:23:51 -0700126 SAFE_PARCEL(output.writeBool, true);
127 SAFE_PARCEL(output.writeNativeHandle, sidebandStream->handle());
Marissa Wall61c58622018-07-18 10:12:20 -0700128 } else {
chaviw308ddba2020-08-11 16:23:51 -0700129 SAFE_PARCEL(output.writeBool, false);
Marissa Wall61c58622018-07-18 10:12:20 -0700130 }
131
chaviw308ddba2020-08-11 16:23:51 -0700132 SAFE_PARCEL(output.write, colorTransform.asArray(), 16 * sizeof(float));
133 SAFE_PARCEL(output.writeFloat, cornerRadius);
134 SAFE_PARCEL(output.writeUint32, backgroundBlurRadius);
135 SAFE_PARCEL(output.writeStrongBinder, cachedBuffer.token.promote());
136 SAFE_PARCEL(output.writeUint64, cachedBuffer.id);
137 SAFE_PARCEL(output.writeParcelable, metadata);
138 SAFE_PARCEL(output.writeFloat, bgColorAlpha);
139 SAFE_PARCEL(output.writeUint32, static_cast<uint32_t>(bgColorDataspace));
140 SAFE_PARCEL(output.writeBool, colorSpaceAgnostic);
141 SAFE_PARCEL(output.writeVectorSize, listeners);
Valerie Hau9dab9732019-08-20 09:29:25 -0700142
143 for (auto listener : listeners) {
chaviw308ddba2020-08-11 16:23:51 -0700144 SAFE_PARCEL(output.writeStrongBinder, listener.transactionCompletedListener);
145 SAFE_PARCEL(output.writeInt64Vector, listener.callbackIds);
Valerie Hau9dab9732019-08-20 09:29:25 -0700146 }
chaviw308ddba2020-08-11 16:23:51 -0700147 SAFE_PARCEL(output.writeFloat, shadowRadius);
148 SAFE_PARCEL(output.writeInt32, frameRateSelectionPriority);
149 SAFE_PARCEL(output.writeFloat, frameRate);
150 SAFE_PARCEL(output.writeByte, frameRateCompatibility);
Marin Shalamanov46084422020-10-13 12:33:42 +0200151 SAFE_PARCEL(output.writeBool, shouldBeSeamless);
chaviw308ddba2020-08-11 16:23:51 -0700152 SAFE_PARCEL(output.writeUint32, fixedTransformHint);
Vishnu Nair6b7c5c92020-09-29 17:27:05 -0700153 SAFE_PARCEL(output.writeUint64, frameNumber);
Vishnu Naircf26a0a2020-11-13 12:56:20 -0800154 SAFE_PARCEL(output.writeBool, autoRefresh);
Vishnu Nair1506b182021-02-22 14:35:15 -0800155 SAFE_PARCEL(output.writeStrongBinder, IInterface::asBinder(releaseBufferListener));
Lucas Dupinc3800b82020-10-02 16:24:48 -0700156
157 SAFE_PARCEL(output.writeUint32, blurRegions.size());
158 for (auto region : blurRegions) {
159 SAFE_PARCEL(output.writeUint32, region.blurRadius);
160 SAFE_PARCEL(output.writeFloat, region.cornerRadiusTL);
161 SAFE_PARCEL(output.writeFloat, region.cornerRadiusTR);
162 SAFE_PARCEL(output.writeFloat, region.cornerRadiusBL);
163 SAFE_PARCEL(output.writeFloat, region.cornerRadiusBR);
164 SAFE_PARCEL(output.writeFloat, region.alpha);
165 SAFE_PARCEL(output.writeInt32, region.left);
166 SAFE_PARCEL(output.writeInt32, region.top);
167 SAFE_PARCEL(output.writeInt32, region.right);
168 SAFE_PARCEL(output.writeInt32, region.bottom);
169 }
John Reckcdb4ed72021-02-04 13:39:33 -0500170
171 SAFE_PARCEL(output.write, stretchEffect);
172
Mathias Agopianac9fa422013-02-11 16:40:36 -0800173 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800174}
175
176status_t layer_state_t::read(const Parcel& input)
177{
chaviw308ddba2020-08-11 16:23:51 -0700178 SAFE_PARCEL(input.readNullableStrongBinder, &surface);
Pablo Gamitodbc31672020-09-01 18:28:58 +0000179 SAFE_PARCEL(input.readInt32, &layerId);
chaviw308ddba2020-08-11 16:23:51 -0700180 SAFE_PARCEL(input.readUint64, &what);
181 SAFE_PARCEL(input.readFloat, &x);
182 SAFE_PARCEL(input.readFloat, &y);
183 SAFE_PARCEL(input.readInt32, &z);
184 SAFE_PARCEL(input.readUint32, &w);
185 SAFE_PARCEL(input.readUint32, &h);
186 SAFE_PARCEL(input.readUint32, &layerStack);
187 SAFE_PARCEL(input.readFloat, &alpha);
Robert Carr2c358bf2018-08-08 15:58:15 -0700188
Vishnu Nairf6eddb62021-01-27 22:02:11 -0800189 SAFE_PARCEL(input.readUint32, &flags);
chaviw308ddba2020-08-11 16:23:51 -0700190
Vishnu Nairf6eddb62021-01-27 22:02:11 -0800191 SAFE_PARCEL(input.readUint32, &mask);
chaviw308ddba2020-08-11 16:23:51 -0700192
193 SAFE_PARCEL(matrix.read, input);
chaviw25714502021-02-11 10:01:08 -0800194 SAFE_PARCEL(input.read, crop);
Pablo Gamito11dcc222020-09-12 15:49:39 +0000195 SAFE_PARCEL(SurfaceControl::readNullableFromParcel, input, &barrierSurfaceControl_legacy);
196 SAFE_PARCEL(SurfaceControl::readNullableFromParcel, input, &reparentSurfaceControl);
Vishnu Nair6b7c5c92020-09-29 17:27:05 -0700197 SAFE_PARCEL(input.readUint64, &barrierFrameNumber);
chaviw308ddba2020-08-11 16:23:51 -0700198
Pablo Gamito11dcc222020-09-12 15:49:39 +0000199 SAFE_PARCEL(SurfaceControl::readNullableFromParcel, input, &relativeLayerSurfaceControl);
200 SAFE_PARCEL(SurfaceControl::readNullableFromParcel, input, &parentSurfaceControlForChild);
201
chaviw308ddba2020-08-11 16:23:51 -0700202 float tmpFloat = 0;
chaviw308ddba2020-08-11 16:23:51 -0700203 SAFE_PARCEL(input.readFloat, &tmpFloat);
204 color.r = tmpFloat;
205 SAFE_PARCEL(input.readFloat, &tmpFloat);
206 color.g = tmpFloat;
207 SAFE_PARCEL(input.readFloat, &tmpFloat);
208 color.b = tmpFloat;
Robert Carr2c358bf2018-08-08 15:58:15 -0700209#ifndef NO_INPUT
chaviw308ddba2020-08-11 16:23:51 -0700210 SAFE_PARCEL(inputHandle->readFromParcel, &input);
Robert Carr2c358bf2018-08-08 15:58:15 -0700211#endif
212
chaviw308ddba2020-08-11 16:23:51 -0700213 SAFE_PARCEL(input.read, transparentRegion);
214 SAFE_PARCEL(input.readUint32, &transform);
215 SAFE_PARCEL(input.readBool, &transformToDisplayInverse);
216 SAFE_PARCEL(input.read, crop);
217 SAFE_PARCEL(input.read, orientedDisplaySpaceRect);
218
219 bool tmpBool = false;
220 SAFE_PARCEL(input.readBool, &tmpBool);
221 if (tmpBool) {
222 buffer = new GraphicBuffer();
223 SAFE_PARCEL(input.read, *buffer);
Marissa Wall61c58622018-07-18 10:12:20 -0700224 }
chaviw308ddba2020-08-11 16:23:51 -0700225
226 SAFE_PARCEL(input.readBool, &tmpBool);
227 if (tmpBool) {
228 acquireFence = new Fence();
229 SAFE_PARCEL(input.read, *acquireFence);
Marissa Wall61c58622018-07-18 10:12:20 -0700230 }
chaviw308ddba2020-08-11 16:23:51 -0700231
Vishnu Nairf6eddb62021-01-27 22:02:11 -0800232 uint32_t tmpUint32 = 0;
chaviw308ddba2020-08-11 16:23:51 -0700233 SAFE_PARCEL(input.readUint32, &tmpUint32);
234 dataspace = static_cast<ui::Dataspace>(tmpUint32);
235
236 SAFE_PARCEL(input.read, hdrMetadata);
237 SAFE_PARCEL(input.read, surfaceDamageRegion);
238 SAFE_PARCEL(input.readInt32, &api);
239 SAFE_PARCEL(input.readBool, &tmpBool);
240 if (tmpBool) {
Marissa Wall61c58622018-07-18 10:12:20 -0700241 sidebandStream = NativeHandle::create(input.readNativeHandle(), true);
242 }
243
chaviw308ddba2020-08-11 16:23:51 -0700244 SAFE_PARCEL(input.read, &colorTransform, 16 * sizeof(float));
245 SAFE_PARCEL(input.readFloat, &cornerRadius);
246 SAFE_PARCEL(input.readUint32, &backgroundBlurRadius);
Pablo Gamitoc351d6f2020-09-17 15:34:26 +0000247 sp<IBinder> tmpBinder;
chaviw308ddba2020-08-11 16:23:51 -0700248 SAFE_PARCEL(input.readNullableStrongBinder, &tmpBinder);
249 cachedBuffer.token = tmpBinder;
250 SAFE_PARCEL(input.readUint64, &cachedBuffer.id);
251 SAFE_PARCEL(input.readParcelable, &metadata);
Marissa Wallebc2c052019-01-16 19:16:55 -0800252
chaviw308ddba2020-08-11 16:23:51 -0700253 SAFE_PARCEL(input.readFloat, &bgColorAlpha);
254 SAFE_PARCEL(input.readUint32, &tmpUint32);
255 bgColorDataspace = static_cast<ui::Dataspace>(tmpUint32);
256 SAFE_PARCEL(input.readBool, &colorSpaceAgnostic);
Valerie Haued54efa2019-01-11 20:03:14 -0800257
chaviw308ddba2020-08-11 16:23:51 -0700258 int32_t numListeners = 0;
259 SAFE_PARCEL_READ_SIZE(input.readInt32, &numListeners, input.dataSize());
Valerie Hau9dab9732019-08-20 09:29:25 -0700260 listeners.clear();
261 for (int i = 0; i < numListeners; i++) {
chaviw308ddba2020-08-11 16:23:51 -0700262 sp<IBinder> listener;
Valerie Hau9dab9732019-08-20 09:29:25 -0700263 std::vector<CallbackId> callbackIds;
chaviw308ddba2020-08-11 16:23:51 -0700264 SAFE_PARCEL(input.readNullableStrongBinder, &listener);
265 SAFE_PARCEL(input.readInt64Vector, &callbackIds);
Valerie Hau9dab9732019-08-20 09:29:25 -0700266 listeners.emplace_back(listener, callbackIds);
267 }
chaviw308ddba2020-08-11 16:23:51 -0700268 SAFE_PARCEL(input.readFloat, &shadowRadius);
269 SAFE_PARCEL(input.readInt32, &frameRateSelectionPriority);
270 SAFE_PARCEL(input.readFloat, &frameRate);
271 SAFE_PARCEL(input.readByte, &frameRateCompatibility);
Marin Shalamanov46084422020-10-13 12:33:42 +0200272 SAFE_PARCEL(input.readBool, &shouldBeSeamless);
chaviw308ddba2020-08-11 16:23:51 -0700273 SAFE_PARCEL(input.readUint32, &tmpUint32);
274 fixedTransformHint = static_cast<ui::Transform::RotationFlags>(tmpUint32);
Vishnu Nair6b7c5c92020-09-29 17:27:05 -0700275 SAFE_PARCEL(input.readUint64, &frameNumber);
Vishnu Naircf26a0a2020-11-13 12:56:20 -0800276 SAFE_PARCEL(input.readBool, &autoRefresh);
Lucas Dupinc3800b82020-10-02 16:24:48 -0700277
Vishnu Nair1506b182021-02-22 14:35:15 -0800278 tmpBinder = nullptr;
279 SAFE_PARCEL(input.readNullableStrongBinder, &tmpBinder);
280 if (tmpBinder) {
281 releaseBufferListener = checked_interface_cast<ITransactionCompletedListener>(tmpBinder);
282 }
283
Lucas Dupinc3800b82020-10-02 16:24:48 -0700284 uint32_t numRegions = 0;
285 SAFE_PARCEL(input.readUint32, &numRegions);
286 blurRegions.clear();
287 for (uint32_t i = 0; i < numRegions; i++) {
288 BlurRegion region;
289 SAFE_PARCEL(input.readUint32, &region.blurRadius);
290 SAFE_PARCEL(input.readFloat, &region.cornerRadiusTL);
291 SAFE_PARCEL(input.readFloat, &region.cornerRadiusTR);
292 SAFE_PARCEL(input.readFloat, &region.cornerRadiusBL);
293 SAFE_PARCEL(input.readFloat, &region.cornerRadiusBR);
294 SAFE_PARCEL(input.readFloat, &region.alpha);
295 SAFE_PARCEL(input.readInt32, &region.left);
296 SAFE_PARCEL(input.readInt32, &region.top);
297 SAFE_PARCEL(input.readInt32, &region.right);
298 SAFE_PARCEL(input.readInt32, &region.bottom);
299 blurRegions.push_back(region);
300 }
John Reckcdb4ed72021-02-04 13:39:33 -0500301
302 SAFE_PARCEL(input.read, stretchEffect);
303
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800304 return NO_ERROR;
305}
306
Mathias Agopian698c0872011-06-28 19:09:31 -0700307status_t ComposerState::write(Parcel& output) const {
Mathias Agopian698c0872011-06-28 19:09:31 -0700308 return state.write(output);
309}
310
311status_t ComposerState::read(const Parcel& input) {
Mathias Agopian698c0872011-06-28 19:09:31 -0700312 return state.read(input);
313}
314
Marin Shalamanov6ad317c2020-07-29 23:34:07 +0200315DisplayState::DisplayState()
316 : what(0),
317 layerStack(0),
318 layerStackSpaceRect(Rect::EMPTY_RECT),
319 orientedDisplaySpaceRect(Rect::EMPTY_RECT),
320 width(0),
321 height(0) {}
Pablo Ceballos60d69222015-08-07 14:47:20 -0700322
Mathias Agopian8b33f032012-07-24 20:43:54 -0700323status_t DisplayState::write(Parcel& output) const {
chaviw308ddba2020-08-11 16:23:51 -0700324 SAFE_PARCEL(output.writeStrongBinder, token);
325 SAFE_PARCEL(output.writeStrongBinder, IInterface::asBinder(surface));
326 SAFE_PARCEL(output.writeUint32, what);
327 SAFE_PARCEL(output.writeUint32, layerStack);
328 SAFE_PARCEL(output.writeUint32, toRotationInt(orientation));
329 SAFE_PARCEL(output.write, layerStackSpaceRect);
330 SAFE_PARCEL(output.write, orientedDisplaySpaceRect);
331 SAFE_PARCEL(output.writeUint32, width);
332 SAFE_PARCEL(output.writeUint32, height);
Mathias Agopian8b33f032012-07-24 20:43:54 -0700333 return NO_ERROR;
334}
335
336status_t DisplayState::read(const Parcel& input) {
chaviw308ddba2020-08-11 16:23:51 -0700337 SAFE_PARCEL(input.readStrongBinder, &token);
338 sp<IBinder> tmpBinder;
339 SAFE_PARCEL(input.readNullableStrongBinder, &tmpBinder);
340 surface = interface_cast<IGraphicBufferProducer>(tmpBinder);
341
342 SAFE_PARCEL(input.readUint32, &what);
343 SAFE_PARCEL(input.readUint32, &layerStack);
344 uint32_t tmpUint = 0;
345 SAFE_PARCEL(input.readUint32, &tmpUint);
346 orientation = ui::toRotation(tmpUint);
347
348 SAFE_PARCEL(input.read, layerStackSpaceRect);
349 SAFE_PARCEL(input.read, orientedDisplaySpaceRect);
350 SAFE_PARCEL(input.readUint32, &width);
351 SAFE_PARCEL(input.readUint32, &height);
Mathias Agopian8b33f032012-07-24 20:43:54 -0700352 return NO_ERROR;
353}
354
Robert Carr2c5f6d22017-09-26 12:30:35 -0700355void DisplayState::merge(const DisplayState& other) {
356 if (other.what & eSurfaceChanged) {
357 what |= eSurfaceChanged;
358 surface = other.surface;
359 }
360 if (other.what & eLayerStackChanged) {
361 what |= eLayerStackChanged;
362 layerStack = other.layerStack;
363 }
364 if (other.what & eDisplayProjectionChanged) {
365 what |= eDisplayProjectionChanged;
366 orientation = other.orientation;
Marin Shalamanov6ad317c2020-07-29 23:34:07 +0200367 layerStackSpaceRect = other.layerStackSpaceRect;
368 orientedDisplaySpaceRect = other.orientedDisplaySpaceRect;
Robert Carr2c5f6d22017-09-26 12:30:35 -0700369 }
370 if (other.what & eDisplaySizeChanged) {
371 what |= eDisplaySizeChanged;
372 width = other.width;
373 height = other.height;
374 }
375}
376
377void layer_state_t::merge(const layer_state_t& other) {
378 if (other.what & ePositionChanged) {
379 what |= ePositionChanged;
380 x = other.x;
381 y = other.y;
382 }
383 if (other.what & eLayerChanged) {
384 what |= eLayerChanged;
chaviw32377582019-05-13 11:15:19 -0700385 what &= ~eRelativeLayerChanged;
Robert Carr2c5f6d22017-09-26 12:30:35 -0700386 z = other.z;
387 }
388 if (other.what & eSizeChanged) {
389 what |= eSizeChanged;
390 w = other.w;
391 h = other.h;
392 }
393 if (other.what & eAlphaChanged) {
394 what |= eAlphaChanged;
395 alpha = other.alpha;
396 }
397 if (other.what & eMatrixChanged) {
398 what |= eMatrixChanged;
399 matrix = other.matrix;
400 }
401 if (other.what & eTransparentRegionChanged) {
402 what |= eTransparentRegionChanged;
403 transparentRegion = other.transparentRegion;
404 }
405 if (other.what & eFlagsChanged) {
406 what |= eFlagsChanged;
Vishnu Nair996bc422019-07-16 14:15:33 -0700407 flags &= ~other.mask;
408 flags |= (other.flags & other.mask);
409 mask |= other.mask;
Robert Carr2c5f6d22017-09-26 12:30:35 -0700410 }
411 if (other.what & eLayerStackChanged) {
412 what |= eLayerStackChanged;
413 layerStack = other.layerStack;
414 }
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700415 if (other.what & eCornerRadiusChanged) {
416 what |= eCornerRadiusChanged;
417 cornerRadius = other.cornerRadius;
418 }
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800419 if (other.what & eBackgroundBlurRadiusChanged) {
420 what |= eBackgroundBlurRadiusChanged;
421 backgroundBlurRadius = other.backgroundBlurRadius;
422 }
Lucas Dupinc3800b82020-10-02 16:24:48 -0700423 if (other.what & eBlurRegionsChanged) {
424 what |= eBlurRegionsChanged;
425 blurRegions = other.blurRegions;
426 }
Marissa Wallf58c14b2018-07-24 10:50:43 -0700427 if (other.what & eDeferTransaction_legacy) {
428 what |= eDeferTransaction_legacy;
Pablo Gamito11dcc222020-09-12 15:49:39 +0000429 barrierSurfaceControl_legacy = other.barrierSurfaceControl_legacy;
Vishnu Nair6b7c5c92020-09-29 17:27:05 -0700430 barrierFrameNumber = other.barrierFrameNumber;
Robert Carr2c5f6d22017-09-26 12:30:35 -0700431 }
Robert Carr2c5f6d22017-09-26 12:30:35 -0700432 if (other.what & eReparentChildren) {
433 what |= eReparentChildren;
Pablo Gamito11dcc222020-09-12 15:49:39 +0000434 reparentSurfaceControl = other.reparentSurfaceControl;
Robert Carr2c5f6d22017-09-26 12:30:35 -0700435 }
Robert Carr2c5f6d22017-09-26 12:30:35 -0700436 if (other.what & eRelativeLayerChanged) {
437 what |= eRelativeLayerChanged;
chaviw32377582019-05-13 11:15:19 -0700438 what &= ~eLayerChanged;
Robert Carr2c5f6d22017-09-26 12:30:35 -0700439 z = other.z;
Pablo Gamito11dcc222020-09-12 15:49:39 +0000440 relativeLayerSurfaceControl = other.relativeLayerSurfaceControl;
Robert Carr2c5f6d22017-09-26 12:30:35 -0700441 }
442 if (other.what & eReparent) {
443 what |= eReparent;
Pablo Gamito11dcc222020-09-12 15:49:39 +0000444 parentSurfaceControlForChild = other.parentSurfaceControlForChild;
Robert Carr2c5f6d22017-09-26 12:30:35 -0700445 }
chaviwca27f252018-02-06 16:46:39 -0800446 if (other.what & eDestroySurface) {
447 what |= eDestroySurface;
448 }
Marissa Wall61c58622018-07-18 10:12:20 -0700449 if (other.what & eTransformChanged) {
450 what |= eTransformChanged;
451 transform = other.transform;
452 }
453 if (other.what & eTransformToDisplayInverseChanged) {
454 what |= eTransformToDisplayInverseChanged;
455 transformToDisplayInverse = other.transformToDisplayInverse;
456 }
457 if (other.what & eCropChanged) {
458 what |= eCropChanged;
459 crop = other.crop;
460 }
461 if (other.what & eBufferChanged) {
462 what |= eBufferChanged;
463 buffer = other.buffer;
464 }
465 if (other.what & eAcquireFenceChanged) {
466 what |= eAcquireFenceChanged;
467 acquireFence = other.acquireFence;
468 }
469 if (other.what & eDataspaceChanged) {
470 what |= eDataspaceChanged;
471 dataspace = other.dataspace;
472 }
473 if (other.what & eHdrMetadataChanged) {
474 what |= eHdrMetadataChanged;
475 hdrMetadata = other.hdrMetadata;
476 }
477 if (other.what & eSurfaceDamageRegionChanged) {
478 what |= eSurfaceDamageRegionChanged;
479 surfaceDamageRegion = other.surfaceDamageRegion;
480 }
481 if (other.what & eApiChanged) {
482 what |= eApiChanged;
483 api = other.api;
484 }
485 if (other.what & eSidebandStreamChanged) {
486 what |= eSidebandStreamChanged;
487 sidebandStream = other.sidebandStream;
488 }
Peiyong Lind3788632018-09-18 16:01:31 -0700489 if (other.what & eColorTransformChanged) {
490 what |= eColorTransformChanged;
491 colorTransform = other.colorTransform;
492 }
Marissa Wall3dad52d2019-03-22 14:03:19 -0700493 if (other.what & eHasListenerCallbacksChanged) {
494 what |= eHasListenerCallbacksChanged;
Marissa Wallc837b5e2018-10-12 10:04:44 -0700495 }
Robert Carrd314f162018-08-15 13:12:42 -0700496
Robert Carr2c358bf2018-08-08 15:58:15 -0700497#ifndef NO_INPUT
498 if (other.what & eInputInfoChanged) {
499 what |= eInputInfoChanged;
Chris Ye0783e992020-06-02 21:34:49 -0700500 inputHandle = new InputWindowHandle(*other.inputHandle);
Robert Carr2c358bf2018-08-08 15:58:15 -0700501 }
502#endif
503
Marissa Wallebc2c052019-01-16 19:16:55 -0800504 if (other.what & eCachedBufferChanged) {
505 what |= eCachedBufferChanged;
506 cachedBuffer = other.cachedBuffer;
507 }
Valerie Haudd0b7572019-01-29 14:59:27 -0800508 if (other.what & eBackgroundColorChanged) {
509 what |= eBackgroundColorChanged;
510 color = other.color;
511 bgColorAlpha = other.bgColorAlpha;
512 bgColorDataspace = other.bgColorDataspace;
Valerie Haued54efa2019-01-11 20:03:14 -0800513 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -0800514 if (other.what & eMetadataChanged) {
515 what |= eMetadataChanged;
516 metadata.merge(other.metadata);
517 }
Vishnu Nairc97b8db2019-10-29 18:19:35 -0700518 if (other.what & eShadowRadiusChanged) {
519 what |= eShadowRadiusChanged;
520 shadowRadius = other.shadowRadius;
521 }
Ana Krulecc84d09b2019-11-02 23:10:29 +0100522 if (other.what & eFrameRateSelectionPriority) {
523 what |= eFrameRateSelectionPriority;
524 frameRateSelectionPriority = other.frameRateSelectionPriority;
525 }
Steven Thomas3172e202020-01-06 19:25:30 -0800526 if (other.what & eFrameRateChanged) {
527 what |= eFrameRateChanged;
528 frameRate = other.frameRate;
Steven Thomas62a4cf82020-01-31 12:04:03 -0800529 frameRateCompatibility = other.frameRateCompatibility;
Marin Shalamanov46084422020-10-13 12:33:42 +0200530 shouldBeSeamless = other.shouldBeSeamless;
Steven Thomas3172e202020-01-06 19:25:30 -0800531 }
Vishnu Nair6213bd92020-05-08 17:42:25 -0700532 if (other.what & eFixedTransformHintChanged) {
533 what |= eFixedTransformHintChanged;
534 fixedTransformHint = other.fixedTransformHint;
535 }
Vishnu Nair6b7c5c92020-09-29 17:27:05 -0700536 if (other.what & eFrameNumberChanged) {
537 what |= eFrameNumberChanged;
538 frameNumber = other.frameNumber;
539 }
Vishnu Naircf26a0a2020-11-13 12:56:20 -0800540 if (other.what & eAutoRefreshChanged) {
541 what |= eAutoRefreshChanged;
542 autoRefresh = other.autoRefresh;
543 }
Vishnu Nair1506b182021-02-22 14:35:15 -0800544 if (other.what & eReleaseBufferListenerChanged) {
545 if (releaseBufferListener) {
546 ALOGW("Overriding releaseBufferListener");
547 }
548 what |= eReleaseBufferListenerChanged;
549 releaseBufferListener = other.releaseBufferListener;
550 }
John Reckc00c6692021-02-16 11:37:33 -0500551 if (other.what & eStretchChanged) {
552 what |= eStretchChanged;
553 stretchEffect = other.stretchEffect;
554 }
Vishnu Nair217d8e62018-09-12 16:34:49 -0700555 if ((other.what & what) != other.what) {
556 ALOGE("Unmerged SurfaceComposer Transaction properties. LayerState::merge needs updating? "
Garfield Tan8a3083e2018-12-03 13:21:07 -0800557 "other.what=0x%" PRIu64 " what=0x%" PRIu64,
Vishnu Nair217d8e62018-09-12 16:34:49 -0700558 other.what, what);
Robert Carrd314f162018-08-15 13:12:42 -0700559 }
Robert Carr2c5f6d22017-09-26 12:30:35 -0700560}
Mathias Agopian8b33f032012-07-24 20:43:54 -0700561
chaviw308ddba2020-08-11 16:23:51 -0700562status_t layer_state_t::matrix22_t::write(Parcel& output) const {
563 SAFE_PARCEL(output.writeFloat, dsdx);
564 SAFE_PARCEL(output.writeFloat, dtdx);
565 SAFE_PARCEL(output.writeFloat, dtdy);
566 SAFE_PARCEL(output.writeFloat, dsdy);
567 return NO_ERROR;
568}
569
570status_t layer_state_t::matrix22_t::read(const Parcel& input) {
571 SAFE_PARCEL(input.readFloat, &dsdx);
572 SAFE_PARCEL(input.readFloat, &dtdx);
573 SAFE_PARCEL(input.readFloat, &dtdy);
574 SAFE_PARCEL(input.readFloat, &dsdy);
575 return NO_ERROR;
576}
577
chaviw273171b2018-12-26 11:46:30 -0800578// ------------------------------- InputWindowCommands ----------------------------------------
579
Vishnu Naire798b472020-07-23 13:52:21 -0700580bool InputWindowCommands::merge(const InputWindowCommands& other) {
581 bool changes = false;
582#ifndef NO_INPUT
583 changes |= !other.focusRequests.empty();
584 focusRequests.insert(focusRequests.end(), std::make_move_iterator(other.focusRequests.begin()),
585 std::make_move_iterator(other.focusRequests.end()));
586#endif
587 changes |= other.syncInputWindows && !syncInputWindows;
chaviwa911b102019-02-14 10:18:33 -0800588 syncInputWindows |= other.syncInputWindows;
Vishnu Naire798b472020-07-23 13:52:21 -0700589 return changes;
chaviw273171b2018-12-26 11:46:30 -0800590}
591
Vishnu Nair958da932020-08-21 17:12:37 -0700592bool InputWindowCommands::empty() const {
593 bool empty = true;
594#ifndef NO_INPUT
595 empty = focusRequests.empty() && !syncInputWindows;
596#endif
597 return empty;
598}
599
chaviw273171b2018-12-26 11:46:30 -0800600void InputWindowCommands::clear() {
Vishnu Naire798b472020-07-23 13:52:21 -0700601#ifndef NO_INPUT
602 focusRequests.clear();
603#endif
chaviwa911b102019-02-14 10:18:33 -0800604 syncInputWindows = false;
chaviw273171b2018-12-26 11:46:30 -0800605}
606
chaviw308ddba2020-08-11 16:23:51 -0700607status_t InputWindowCommands::write(Parcel& output) const {
Vishnu Naire798b472020-07-23 13:52:21 -0700608#ifndef NO_INPUT
chaviw308ddba2020-08-11 16:23:51 -0700609 SAFE_PARCEL(output.writeParcelableVector, focusRequests);
Vishnu Naire798b472020-07-23 13:52:21 -0700610#endif
chaviw308ddba2020-08-11 16:23:51 -0700611 SAFE_PARCEL(output.writeBool, syncInputWindows);
612 return NO_ERROR;
chaviw273171b2018-12-26 11:46:30 -0800613}
614
chaviw308ddba2020-08-11 16:23:51 -0700615status_t InputWindowCommands::read(const Parcel& input) {
Vishnu Naire798b472020-07-23 13:52:21 -0700616#ifndef NO_INPUT
chaviw308ddba2020-08-11 16:23:51 -0700617 SAFE_PARCEL(input.readParcelableVector, &focusRequests);
Vishnu Naire798b472020-07-23 13:52:21 -0700618#endif
chaviw308ddba2020-08-11 16:23:51 -0700619 SAFE_PARCEL(input.readBool, &syncInputWindows);
620 return NO_ERROR;
chaviw273171b2018-12-26 11:46:30 -0800621}
622
Ady Abrahamdd5bfa92021-01-07 17:56:08 -0800623bool ValidateFrameRate(float frameRate, int8_t compatibility, const char* inFunctionName,
624 bool privileged) {
Steven Thomas62a4cf82020-01-31 12:04:03 -0800625 const char* functionName = inFunctionName != nullptr ? inFunctionName : "call";
626 int floatClassification = std::fpclassify(frameRate);
627 if (frameRate < 0 || floatClassification == FP_INFINITE || floatClassification == FP_NAN) {
628 ALOGE("%s failed - invalid frame rate %f", functionName, frameRate);
629 return false;
630 }
631
632 if (compatibility != ANATIVEWINDOW_FRAME_RATE_COMPATIBILITY_DEFAULT &&
Ady Abrahamdd5bfa92021-01-07 17:56:08 -0800633 compatibility != ANATIVEWINDOW_FRAME_RATE_COMPATIBILITY_FIXED_SOURCE &&
634 (!privileged || compatibility != ANATIVEWINDOW_FRAME_RATE_EXACT)) {
635 ALOGE("%s failed - invalid compatibility value %d privileged: %s", functionName,
636 compatibility, privileged ? "yes" : "no");
Steven Thomas62a4cf82020-01-31 12:04:03 -0800637 return false;
638 }
639
640 return true;
641}
642
chaviw618c42d2020-07-24 15:25:08 -0700643// ----------------------------------------------------------------------------
644
645status_t CaptureArgs::write(Parcel& output) const {
chaviw308ddba2020-08-11 16:23:51 -0700646 SAFE_PARCEL(output.writeInt32, static_cast<int32_t>(pixelFormat));
647 SAFE_PARCEL(output.write, sourceCrop);
chaviw17ac24b2021-01-28 18:50:05 -0800648 SAFE_PARCEL(output.writeFloat, frameScaleX);
649 SAFE_PARCEL(output.writeFloat, frameScaleY);
chaviw308ddba2020-08-11 16:23:51 -0700650 SAFE_PARCEL(output.writeBool, captureSecureLayers);
651 SAFE_PARCEL(output.writeInt32, uid);
Peiyong Lincd261472020-10-06 18:05:25 -0700652 SAFE_PARCEL(output.writeInt32, static_cast<int32_t>(dataspace));
Peiyong Lin05cc0112020-10-14 16:16:37 -0700653 SAFE_PARCEL(output.writeBool, allowProtected);
chaviw17ac24b2021-01-28 18:50:05 -0800654 SAFE_PARCEL(output.writeBool, grayscale);
chaviw308ddba2020-08-11 16:23:51 -0700655 return NO_ERROR;
chaviw618c42d2020-07-24 15:25:08 -0700656}
657
658status_t CaptureArgs::read(const Parcel& input) {
Peiyong Lincd261472020-10-06 18:05:25 -0700659 int32_t value = 0;
660 SAFE_PARCEL(input.readInt32, &value);
661 pixelFormat = static_cast<ui::PixelFormat>(value);
chaviw308ddba2020-08-11 16:23:51 -0700662 SAFE_PARCEL(input.read, sourceCrop);
chaviw17ac24b2021-01-28 18:50:05 -0800663 SAFE_PARCEL(input.readFloat, &frameScaleX);
664 SAFE_PARCEL(input.readFloat, &frameScaleY);
chaviw308ddba2020-08-11 16:23:51 -0700665 SAFE_PARCEL(input.readBool, &captureSecureLayers);
666 SAFE_PARCEL(input.readInt32, &uid);
Peiyong Lincd261472020-10-06 18:05:25 -0700667 SAFE_PARCEL(input.readInt32, &value);
668 dataspace = static_cast<ui::Dataspace>(value);
Peiyong Lin05cc0112020-10-14 16:16:37 -0700669 SAFE_PARCEL(input.readBool, &allowProtected);
chaviw17ac24b2021-01-28 18:50:05 -0800670 SAFE_PARCEL(input.readBool, &grayscale);
chaviw308ddba2020-08-11 16:23:51 -0700671 return NO_ERROR;
chaviw618c42d2020-07-24 15:25:08 -0700672}
673
674status_t DisplayCaptureArgs::write(Parcel& output) const {
chaviw308ddba2020-08-11 16:23:51 -0700675 SAFE_PARCEL(CaptureArgs::write, output);
chaviw618c42d2020-07-24 15:25:08 -0700676
chaviw308ddba2020-08-11 16:23:51 -0700677 SAFE_PARCEL(output.writeStrongBinder, displayToken);
678 SAFE_PARCEL(output.writeUint32, width);
679 SAFE_PARCEL(output.writeUint32, height);
680 SAFE_PARCEL(output.writeBool, useIdentityTransform);
681 return NO_ERROR;
chaviw618c42d2020-07-24 15:25:08 -0700682}
683
684status_t DisplayCaptureArgs::read(const Parcel& input) {
chaviw308ddba2020-08-11 16:23:51 -0700685 SAFE_PARCEL(CaptureArgs::read, input);
chaviw618c42d2020-07-24 15:25:08 -0700686
chaviw308ddba2020-08-11 16:23:51 -0700687 SAFE_PARCEL(input.readStrongBinder, &displayToken);
688 SAFE_PARCEL(input.readUint32, &width);
689 SAFE_PARCEL(input.readUint32, &height);
690 SAFE_PARCEL(input.readBool, &useIdentityTransform);
691 return NO_ERROR;
chaviw618c42d2020-07-24 15:25:08 -0700692}
693
694status_t LayerCaptureArgs::write(Parcel& output) const {
chaviw308ddba2020-08-11 16:23:51 -0700695 SAFE_PARCEL(CaptureArgs::write, output);
chaviw618c42d2020-07-24 15:25:08 -0700696
chaviw308ddba2020-08-11 16:23:51 -0700697 SAFE_PARCEL(output.writeStrongBinder, layerHandle);
698 SAFE_PARCEL(output.writeInt32, excludeHandles.size());
chaviw618c42d2020-07-24 15:25:08 -0700699 for (auto el : excludeHandles) {
chaviw308ddba2020-08-11 16:23:51 -0700700 SAFE_PARCEL(output.writeStrongBinder, el);
chaviw618c42d2020-07-24 15:25:08 -0700701 }
chaviw308ddba2020-08-11 16:23:51 -0700702 SAFE_PARCEL(output.writeBool, childrenOnly);
703 return NO_ERROR;
chaviw618c42d2020-07-24 15:25:08 -0700704}
705
706status_t LayerCaptureArgs::read(const Parcel& input) {
chaviw308ddba2020-08-11 16:23:51 -0700707 SAFE_PARCEL(CaptureArgs::read, input);
chaviw618c42d2020-07-24 15:25:08 -0700708
chaviw308ddba2020-08-11 16:23:51 -0700709 SAFE_PARCEL(input.readStrongBinder, &layerHandle);
chaviw618c42d2020-07-24 15:25:08 -0700710
George Burgess IV4d7aceb2020-07-30 10:01:56 -0700711 int32_t numExcludeHandles = 0;
chaviw308ddba2020-08-11 16:23:51 -0700712 SAFE_PARCEL_READ_SIZE(input.readInt32, &numExcludeHandles, input.dataSize());
chaviw618c42d2020-07-24 15:25:08 -0700713 excludeHandles.reserve(numExcludeHandles);
714 for (int i = 0; i < numExcludeHandles; i++) {
715 sp<IBinder> binder;
chaviw308ddba2020-08-11 16:23:51 -0700716 SAFE_PARCEL(input.readStrongBinder, &binder);
chaviw618c42d2020-07-24 15:25:08 -0700717 excludeHandles.emplace(binder);
718 }
719
chaviw308ddba2020-08-11 16:23:51 -0700720 SAFE_PARCEL(input.readBool, &childrenOnly);
721 return NO_ERROR;
chaviw618c42d2020-07-24 15:25:08 -0700722}
723
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800724}; // namespace android