blob: 762cd100699d04e117605d722bb89d09cd65268e [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
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
17// tag as surfaceflinger
18#define LOG_TAG "SurfaceFlinger"
19
20#include <stdint.h>
21#include <sys/types.h>
22
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070023#include <binder/Parcel.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070024#include <binder/IPCThreadState.h>
25#include <binder/IServiceManager.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080026
Mathias Agopiand0566bc2011-11-17 17:49:17 -080027#include <gui/IDisplayEventConnection.h>
Andy McFadden2adaf042012-12-18 09:49:45 -080028#include <gui/IGraphicBufferProducer.h>
Dan Stoza84ab9372018-12-17 15:27:57 -080029#include <gui/IRegionSamplingListener.h>
Mathias Agopian2b5dd402017-02-07 17:36:19 -080030#include <gui/ISurfaceComposer.h>
31#include <gui/ISurfaceComposerClient.h>
Kalle Raitaa099a242017-01-11 11:17:29 -080032#include <gui/LayerDebugInfo.h>
Robert Carr4cdc58f2017-08-23 14:22:20 -070033#include <gui/LayerState.h>
Mathias Agopiand0566bc2011-11-17 17:49:17 -080034
Michael Wright28f24d02016-07-12 13:30:53 -070035#include <system/graphics.h>
36
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -080037#include <ui/DisplayConfig.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038#include <ui/DisplayInfo.h>
Lajos Molnar67d8bd62014-09-11 14:58:45 -070039#include <ui/DisplayStatInfo.h>
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -080040#include <ui/DisplayState.h>
Dan Stozac4f471e2016-03-24 09:31:08 -070041#include <ui/HdrCapabilities.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042
Jamie Gennis134f0422011-03-08 12:18:54 -080043#include <utils/Log.h>
Mathias Agopian9cce3252010-02-09 17:46:37 -080044
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080045// ---------------------------------------------------------------------------
46
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080047namespace android {
48
Peiyong Lin9f034472018-03-28 15:29:00 -070049using ui::ColorMode;
50
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051class BpSurfaceComposer : public BpInterface<ISurfaceComposer>
52{
53public:
Chih-Hung Hsiehe2347b72016-04-25 15:41:05 -070054 explicit BpSurfaceComposer(const sp<IBinder>& impl)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080055 : BpInterface<ISurfaceComposer>(impl)
56 {
57 }
58
Dan Stozad723bd72014-11-18 10:24:03 -080059 virtual ~BpSurfaceComposer();
60
Mathias Agopian7e27f052010-05-28 14:22:23 -070061 virtual sp<ISurfaceComposerClient> createConnection()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080062 {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063 Parcel data, reply;
64 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
65 remote()->transact(BnSurfaceComposer::CREATE_CONNECTION, data, &reply);
Mathias Agopian7e27f052010-05-28 14:22:23 -070066 return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080067 }
68
Marissa Wall713b63f2018-10-17 15:42:43 -070069 virtual void setTransactionState(const Vector<ComposerState>& state,
70 const Vector<DisplayState>& displays, uint32_t flags,
chaviw273171b2018-12-26 11:46:30 -080071 const sp<IBinder>& applyToken,
Marissa Wall17b4e452018-12-26 16:32:34 -080072 const InputWindowCommands& commands,
Marissa Wall78b72202019-03-15 14:58:34 -070073 int64_t desiredPresentTime,
Valerie Hau9dab9732019-08-20 09:29:25 -070074 const client_cache_t& uncacheBuffer, bool hasListenerCallbacks,
Marissa Wall3dad52d2019-03-22 14:03:19 -070075 const std::vector<ListenerCallbacks>& listenerCallbacks) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080076 Parcel data, reply;
77 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
Dan Stozad723bd72014-11-18 10:24:03 -080078
79 data.writeUint32(static_cast<uint32_t>(state.size()));
80 for (const auto& s : state) {
81 s.write(data);
Mathias Agopian698c0872011-06-28 19:09:31 -070082 }
Dan Stozad723bd72014-11-18 10:24:03 -080083
84 data.writeUint32(static_cast<uint32_t>(displays.size()));
85 for (const auto& d : displays) {
86 d.write(data);
Mathias Agopian8b33f032012-07-24 20:43:54 -070087 }
Dan Stozad723bd72014-11-18 10:24:03 -080088
89 data.writeUint32(flags);
Marissa Wall713b63f2018-10-17 15:42:43 -070090 data.writeStrongBinder(applyToken);
chaviw273171b2018-12-26 11:46:30 -080091 commands.write(data);
Marissa Wall17b4e452018-12-26 16:32:34 -080092 data.writeInt64(desiredPresentTime);
Steven Moreland9d4ce9b2019-07-17 15:23:38 -070093 data.writeStrongBinder(uncacheBuffer.token.promote());
Marissa Wall947d34e2019-03-29 14:03:53 -070094 data.writeUint64(uncacheBuffer.id);
Valerie Hau9dab9732019-08-20 09:29:25 -070095 data.writeBool(hasListenerCallbacks);
Marissa Wall3dad52d2019-03-22 14:03:19 -070096
97 if (data.writeVectorSize(listenerCallbacks) == NO_ERROR) {
98 for (const auto& [listener, callbackIds] : listenerCallbacks) {
Valerie Hau5de3ad22019-08-20 07:47:43 -070099 data.writeStrongBinder(listener);
Marissa Wall3dad52d2019-03-22 14:03:19 -0700100 data.writeInt64Vector(callbackIds);
101 }
102 }
103
Jamie Gennisb8d69a52011-10-10 15:48:06 -0700104 remote()->transact(BnSurfaceComposer::SET_TRANSACTION_STATE, data, &reply);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800105 }
106
107 virtual void bootFinished()
108 {
109 Parcel data, reply;
110 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
111 remote()->transact(BnSurfaceComposer::BOOT_FINISHED, data, &reply);
112 }
113
Chavi Weingarten40482ff2017-11-30 01:51:40 +0000114 virtual status_t captureScreen(const sp<IBinder>& display, sp<GraphicBuffer>* outBuffer,
Dominik Laskowski718f9602019-11-09 20:01:35 -0800115 bool& outCapturedSecureLayers, ui::Dataspace reqDataspace,
116 ui::PixelFormat reqPixelFormat, const Rect& sourceCrop,
Peiyong Lin0e003c92018-09-17 11:09:51 -0700117 uint32_t reqWidth, uint32_t reqHeight, bool useIdentityTransform,
Dominik Laskowski718f9602019-11-09 20:01:35 -0800118 ui::Rotation rotation, bool captureSecureLayers) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -0800119 Parcel data, reply;
120 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
121 data.writeStrongBinder(display);
Peiyong Lin0e003c92018-09-17 11:09:51 -0700122 data.writeInt32(static_cast<int32_t>(reqDataspace));
123 data.writeInt32(static_cast<int32_t>(reqPixelFormat));
Dan Stozac1879002014-05-22 15:59:05 -0700124 data.write(sourceCrop);
Dan Stozad723bd72014-11-18 10:24:03 -0800125 data.writeUint32(reqWidth);
126 data.writeUint32(reqHeight);
Dan Stozac7014012014-02-14 15:03:43 -0800127 data.writeInt32(static_cast<int32_t>(useIdentityTransform));
Riley Andrewsc3ebe662014-09-04 16:20:31 -0700128 data.writeInt32(static_cast<int32_t>(rotation));
Robert Carrfa8855f2019-02-19 10:05:00 -0800129 data.writeInt32(static_cast<int32_t>(captureSecureLayers));
Ana Krulec2d41e422018-07-26 12:07:43 -0700130 status_t result = remote()->transact(BnSurfaceComposer::CAPTURE_SCREEN, data, &reply);
131 if (result != NO_ERROR) {
132 ALOGE("captureScreen failed to transact: %d", result);
133 return result;
Chavi Weingarten40482ff2017-11-30 01:51:40 +0000134 }
Ana Krulec2d41e422018-07-26 12:07:43 -0700135 result = reply.readInt32();
136 if (result != NO_ERROR) {
137 ALOGE("captureScreen failed to readInt32: %d", result);
138 return result;
Chavi Weingarten40482ff2017-11-30 01:51:40 +0000139 }
140
141 *outBuffer = new GraphicBuffer();
142 reply.read(**outBuffer);
Robert Carr108b2c72019-04-02 16:32:58 -0700143 outCapturedSecureLayers = reply.readBool();
Peiyong Lin0e003c92018-09-17 11:09:51 -0700144
Ana Krulec2d41e422018-07-26 12:07:43 -0700145 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -0800146 }
147
chaviw93df2ea2019-04-30 16:45:12 -0700148 virtual status_t captureScreen(uint64_t displayOrLayerStack, ui::Dataspace* outDataspace,
149 sp<GraphicBuffer>* outBuffer) {
150 Parcel data, reply;
151 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
152 data.writeUint64(displayOrLayerStack);
153 status_t result = remote()->transact(BnSurfaceComposer::CAPTURE_SCREEN_BY_ID, data, &reply);
154 if (result != NO_ERROR) {
155 ALOGE("captureScreen failed to transact: %d", result);
156 return result;
157 }
158 result = reply.readInt32();
159 if (result != NO_ERROR) {
160 ALOGE("captureScreen failed to readInt32: %d", result);
161 return result;
162 }
163
164 *outDataspace = static_cast<ui::Dataspace>(reply.readInt32());
165 *outBuffer = new GraphicBuffer();
166 reply.read(**outBuffer);
167 return result;
168 }
169
Robert Carr866455f2019-04-02 16:28:26 -0700170 virtual status_t captureLayers(
171 const sp<IBinder>& layerHandleBinder, sp<GraphicBuffer>* outBuffer,
172 const ui::Dataspace reqDataspace, const ui::PixelFormat reqPixelFormat,
173 const Rect& sourceCrop,
174 const std::unordered_set<sp<IBinder>, SpHash<IBinder>>& excludeLayers, float frameScale,
175 bool childrenOnly) {
chaviwa76b2712017-09-20 12:02:26 -0700176 Parcel data, reply;
177 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
178 data.writeStrongBinder(layerHandleBinder);
Peiyong Lin0e003c92018-09-17 11:09:51 -0700179 data.writeInt32(static_cast<int32_t>(reqDataspace));
180 data.writeInt32(static_cast<int32_t>(reqPixelFormat));
chaviw7206d492017-11-10 16:16:12 -0800181 data.write(sourceCrop);
Robert Carr866455f2019-04-02 16:28:26 -0700182 data.writeInt32(excludeLayers.size());
183 for (auto el : excludeLayers) {
184 data.writeStrongBinder(el);
185 }
chaviw7206d492017-11-10 16:16:12 -0800186 data.writeFloat(frameScale);
Robert Carr578038f2018-03-09 12:25:24 -0800187 data.writeBool(childrenOnly);
Ana Krulec2d41e422018-07-26 12:07:43 -0700188 status_t result = remote()->transact(BnSurfaceComposer::CAPTURE_LAYERS, data, &reply);
189 if (result != NO_ERROR) {
190 ALOGE("captureLayers failed to transact: %d", result);
191 return result;
Chavi Weingarten40482ff2017-11-30 01:51:40 +0000192 }
Ana Krulec2d41e422018-07-26 12:07:43 -0700193 result = reply.readInt32();
194 if (result != NO_ERROR) {
195 ALOGE("captureLayers failed to readInt32: %d", result);
196 return result;
Chavi Weingarten40482ff2017-11-30 01:51:40 +0000197 }
Peiyong Lin0e003c92018-09-17 11:09:51 -0700198
Chavi Weingarten40482ff2017-11-30 01:51:40 +0000199 *outBuffer = new GraphicBuffer();
200 reply.read(**outBuffer);
201
Ana Krulec2d41e422018-07-26 12:07:43 -0700202 return result;
chaviwa76b2712017-09-20 12:02:26 -0700203 }
204
Jamie Gennis582270d2011-08-17 18:19:00 -0700205 virtual bool authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800206 const sp<IGraphicBufferProducer>& bufferProducer) const
Jamie Gennis134f0422011-03-08 12:18:54 -0800207 {
208 Parcel data, reply;
209 int err = NO_ERROR;
210 err = data.writeInterfaceToken(
211 ISurfaceComposer::getInterfaceDescriptor());
212 if (err != NO_ERROR) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000213 ALOGE("ISurfaceComposer::authenticateSurfaceTexture: error writing "
Jamie Gennis134f0422011-03-08 12:18:54 -0800214 "interface descriptor: %s (%d)", strerror(-err), -err);
215 return false;
216 }
Marco Nelissen2ea926b2014-11-14 08:01:01 -0800217 err = data.writeStrongBinder(IInterface::asBinder(bufferProducer));
Jamie Gennis134f0422011-03-08 12:18:54 -0800218 if (err != NO_ERROR) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000219 ALOGE("ISurfaceComposer::authenticateSurfaceTexture: error writing "
Jamie Gennis582270d2011-08-17 18:19:00 -0700220 "strong binder to parcel: %s (%d)", strerror(-err), -err);
Jamie Gennis134f0422011-03-08 12:18:54 -0800221 return false;
222 }
223 err = remote()->transact(BnSurfaceComposer::AUTHENTICATE_SURFACE, data,
224 &reply);
225 if (err != NO_ERROR) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000226 ALOGE("ISurfaceComposer::authenticateSurfaceTexture: error "
Jamie Gennis582270d2011-08-17 18:19:00 -0700227 "performing transaction: %s (%d)", strerror(-err), -err);
Jamie Gennis134f0422011-03-08 12:18:54 -0800228 return false;
229 }
230 int32_t result = 0;
231 err = reply.readInt32(&result);
232 if (err != NO_ERROR) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000233 ALOGE("ISurfaceComposer::authenticateSurfaceTexture: error "
Jamie Gennis582270d2011-08-17 18:19:00 -0700234 "retrieving result: %s (%d)", strerror(-err), -err);
Jamie Gennis134f0422011-03-08 12:18:54 -0800235 return false;
236 }
237 return result != 0;
238 }
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800239
Brian Anderson6b376712017-04-04 10:51:39 -0700240 virtual status_t getSupportedFrameTimestamps(
241 std::vector<FrameEvent>* outSupported) const {
242 if (!outSupported) {
243 return UNEXPECTED_NULL;
244 }
245 outSupported->clear();
246
247 Parcel data, reply;
248
249 status_t err = data.writeInterfaceToken(
250 ISurfaceComposer::getInterfaceDescriptor());
251 if (err != NO_ERROR) {
252 return err;
253 }
254
255 err = remote()->transact(
256 BnSurfaceComposer::GET_SUPPORTED_FRAME_TIMESTAMPS,
257 data, &reply);
258 if (err != NO_ERROR) {
259 return err;
260 }
261
262 int32_t result = 0;
263 err = reply.readInt32(&result);
264 if (err != NO_ERROR) {
265 return err;
266 }
267 if (result != NO_ERROR) {
268 return result;
269 }
270
271 std::vector<int32_t> supported;
272 err = reply.readInt32Vector(&supported);
273 if (err != NO_ERROR) {
274 return err;
275 }
276
277 outSupported->reserve(supported.size());
278 for (int32_t s : supported) {
279 outSupported->push_back(static_cast<FrameEvent>(s));
280 }
281 return NO_ERROR;
282 }
283
Ady Abraham0f4a1b12019-06-04 16:04:04 -0700284 virtual sp<IDisplayEventConnection> createDisplayEventConnection(VsyncSource vsyncSource,
285 ConfigChanged configChanged) {
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800286 Parcel data, reply;
287 sp<IDisplayEventConnection> result;
288 int err = data.writeInterfaceToken(
289 ISurfaceComposer::getInterfaceDescriptor());
290 if (err != NO_ERROR) {
291 return result;
292 }
Jorim Jaggib1e2f8d2017-06-08 15:43:59 -0700293 data.writeInt32(static_cast<int32_t>(vsyncSource));
Ady Abraham0f4a1b12019-06-04 16:04:04 -0700294 data.writeInt32(static_cast<int32_t>(configChanged));
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800295 err = remote()->transact(
296 BnSurfaceComposer::CREATE_DISPLAY_EVENT_CONNECTION,
297 data, &reply);
298 if (err != NO_ERROR) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000299 ALOGE("ISurfaceComposer::createDisplayEventConnection: error performing "
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800300 "transaction: %s (%d)", strerror(-err), -err);
301 return result;
302 }
303 result = interface_cast<IDisplayEventConnection>(reply.readStrongBinder());
304 return result;
305 }
Colin Cross8e533062012-06-07 13:17:52 -0700306
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700307 virtual sp<IBinder> createDisplay(const String8& displayName, bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700308 {
309 Parcel data, reply;
310 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
Andy McFadden8dfa92f2012-09-17 18:27:17 -0700311 data.writeString8(displayName);
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700312 data.writeInt32(secure ? 1 : 0);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700313 remote()->transact(BnSurfaceComposer::CREATE_DISPLAY, data, &reply);
314 return reply.readStrongBinder();
315 }
316
Jesse Hall6c913be2013-08-08 12:15:49 -0700317 virtual void destroyDisplay(const sp<IBinder>& display)
318 {
319 Parcel data, reply;
320 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
321 data.writeStrongBinder(display);
322 remote()->transact(BnSurfaceComposer::DESTROY_DISPLAY, data, &reply);
323 }
324
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800325 virtual std::vector<PhysicalDisplayId> getPhysicalDisplayIds() const {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700326 Parcel data, reply;
327 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800328 if (remote()->transact(BnSurfaceComposer::GET_PHYSICAL_DISPLAY_IDS, data, &reply) ==
329 NO_ERROR) {
Marin Shalamanova524a092020-07-27 21:39:55 +0200330 std::vector<uint64_t> rawIds;
331 if (reply.readUint64Vector(&rawIds) == NO_ERROR) {
332 std::vector<PhysicalDisplayId> displayIds(rawIds.size());
333 std::transform(rawIds.begin(), rawIds.end(), displayIds.begin(),
334 [](uint64_t rawId) { return PhysicalDisplayId(rawId); });
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800335 return displayIds;
336 }
337 }
338
339 return {};
340 }
341
342 virtual sp<IBinder> getPhysicalDisplayToken(PhysicalDisplayId displayId) const {
343 Parcel data, reply;
344 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
Marin Shalamanova524a092020-07-27 21:39:55 +0200345 data.writeUint64(displayId.value);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800346 remote()->transact(BnSurfaceComposer::GET_PHYSICAL_DISPLAY_TOKEN, data, &reply);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700347 return reply.readStrongBinder();
348 }
349
Prashant Malani2c9b11f2014-05-25 01:36:31 -0700350 virtual void setPowerMode(const sp<IBinder>& display, int mode)
Colin Cross8e533062012-06-07 13:17:52 -0700351 {
352 Parcel data, reply;
353 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700354 data.writeStrongBinder(display);
Prashant Malani2c9b11f2014-05-25 01:36:31 -0700355 data.writeInt32(mode);
356 remote()->transact(BnSurfaceComposer::SET_POWER_MODE, data, &reply);
Colin Cross8e533062012-06-07 13:17:52 -0700357 }
Mathias Agopian3094df32012-06-18 18:06:45 -0700358
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800359 virtual status_t getDisplayState(const sp<IBinder>& display, ui::DisplayState* state) {
360 Parcel data, reply;
361 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
362 data.writeStrongBinder(display);
363 remote()->transact(BnSurfaceComposer::GET_DISPLAY_STATE, data, &reply);
364 const status_t result = reply.readInt32();
365 if (result == NO_ERROR) {
366 memcpy(state, reply.readInplace(sizeof(ui::DisplayState)), sizeof(ui::DisplayState));
367 }
368 return result;
369 }
370
371 virtual status_t getDisplayInfo(const sp<IBinder>& display, DisplayInfo* info) {
372 Parcel data, reply;
373 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
374 data.writeStrongBinder(display);
375 remote()->transact(BnSurfaceComposer::GET_DISPLAY_INFO, data, &reply);
376 const status_t result = reply.readInt32();
Marin Shalamanov359a7e72020-02-17 17:03:07 +0100377 if (result != NO_ERROR) return result;
378 return reply.read(*info);
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800379 }
380
381 virtual status_t getDisplayConfigs(const sp<IBinder>& display, Vector<DisplayConfig>* configs) {
Mathias Agopianc666cae2012-07-25 18:56:13 -0700382 Parcel data, reply;
383 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
Jeff Brown9d4e3d22012-08-24 20:00:51 -0700384 data.writeStrongBinder(display);
Dan Stoza7f7da322014-05-02 15:26:25 -0700385 remote()->transact(BnSurfaceComposer::GET_DISPLAY_CONFIGS, data, &reply);
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800386 const status_t result = reply.readInt32();
Dan Stoza7f7da322014-05-02 15:26:25 -0700387 if (result == NO_ERROR) {
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800388 const size_t numConfigs = reply.readUint32();
Dan Stoza7f7da322014-05-02 15:26:25 -0700389 configs->clear();
390 configs->resize(numConfigs);
391 for (size_t c = 0; c < numConfigs; ++c) {
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800392 memcpy(&(configs->editItemAt(c)), reply.readInplace(sizeof(DisplayConfig)),
393 sizeof(DisplayConfig));
Dan Stoza7f7da322014-05-02 15:26:25 -0700394 }
395 }
396 return result;
397 }
398
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700399 virtual status_t getDisplayStats(const sp<IBinder>& display,
400 DisplayStatInfo* stats)
401 {
402 Parcel data, reply;
403 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
404 data.writeStrongBinder(display);
405 remote()->transact(BnSurfaceComposer::GET_DISPLAY_STATS, data, &reply);
406 status_t result = reply.readInt32();
407 if (result == NO_ERROR) {
408 memcpy(stats,
409 reply.readInplace(sizeof(DisplayStatInfo)),
410 sizeof(DisplayStatInfo));
411 }
412 return result;
413 }
414
Dan Stoza7f7da322014-05-02 15:26:25 -0700415 virtual int getActiveConfig(const sp<IBinder>& display)
416 {
417 Parcel data, reply;
418 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
419 data.writeStrongBinder(display);
420 remote()->transact(BnSurfaceComposer::GET_ACTIVE_CONFIG, data, &reply);
421 return reply.readInt32();
422 }
423
Michael Wright28f24d02016-07-12 13:30:53 -0700424 virtual status_t getDisplayColorModes(const sp<IBinder>& display,
Peiyong Lina52f0292018-03-14 17:26:31 -0700425 Vector<ColorMode>* outColorModes) {
Michael Wright28f24d02016-07-12 13:30:53 -0700426 Parcel data, reply;
427 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
428 if (result != NO_ERROR) {
429 ALOGE("getDisplayColorModes failed to writeInterfaceToken: %d", result);
430 return result;
431 }
432 result = data.writeStrongBinder(display);
433 if (result != NO_ERROR) {
434 ALOGE("getDisplayColorModes failed to writeStrongBinder: %d", result);
435 return result;
436 }
437 result = remote()->transact(BnSurfaceComposer::GET_DISPLAY_COLOR_MODES, data, &reply);
438 if (result != NO_ERROR) {
439 ALOGE("getDisplayColorModes failed to transact: %d", result);
440 return result;
441 }
442 result = static_cast<status_t>(reply.readInt32());
443 if (result == NO_ERROR) {
444 size_t numModes = reply.readUint32();
445 outColorModes->clear();
446 outColorModes->resize(numModes);
447 for (size_t i = 0; i < numModes; ++i) {
Peiyong Lina52f0292018-03-14 17:26:31 -0700448 outColorModes->replaceAt(static_cast<ColorMode>(reply.readInt32()), i);
Michael Wright28f24d02016-07-12 13:30:53 -0700449 }
450 }
451 return result;
452 }
453
Daniel Solomon42d04562019-01-20 21:03:19 -0800454 virtual status_t getDisplayNativePrimaries(const sp<IBinder>& display,
455 ui::DisplayPrimaries& primaries) {
456 Parcel data, reply;
457 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
458 if (result != NO_ERROR) {
459 ALOGE("getDisplayNativePrimaries failed to writeInterfaceToken: %d", result);
460 return result;
461 }
462 result = data.writeStrongBinder(display);
463 if (result != NO_ERROR) {
464 ALOGE("getDisplayNativePrimaries failed to writeStrongBinder: %d", result);
465 return result;
466 }
467 result = remote()->transact(BnSurfaceComposer::GET_DISPLAY_NATIVE_PRIMARIES, data, &reply);
468 if (result != NO_ERROR) {
469 ALOGE("getDisplayNativePrimaries failed to transact: %d", result);
470 return result;
471 }
472 result = reply.readInt32();
473 if (result == NO_ERROR) {
474 memcpy(&primaries, reply.readInplace(sizeof(ui::DisplayPrimaries)),
475 sizeof(ui::DisplayPrimaries));
476 }
477 return result;
478 }
479
Peiyong Lina52f0292018-03-14 17:26:31 -0700480 virtual ColorMode getActiveColorMode(const sp<IBinder>& display) {
Michael Wright28f24d02016-07-12 13:30:53 -0700481 Parcel data, reply;
482 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
483 if (result != NO_ERROR) {
484 ALOGE("getActiveColorMode failed to writeInterfaceToken: %d", result);
Peiyong Lina52f0292018-03-14 17:26:31 -0700485 return static_cast<ColorMode>(result);
Michael Wright28f24d02016-07-12 13:30:53 -0700486 }
487 result = data.writeStrongBinder(display);
488 if (result != NO_ERROR) {
489 ALOGE("getActiveColorMode failed to writeStrongBinder: %d", result);
Peiyong Lina52f0292018-03-14 17:26:31 -0700490 return static_cast<ColorMode>(result);
Michael Wright28f24d02016-07-12 13:30:53 -0700491 }
492 result = remote()->transact(BnSurfaceComposer::GET_ACTIVE_COLOR_MODE, data, &reply);
493 if (result != NO_ERROR) {
494 ALOGE("getActiveColorMode failed to transact: %d", result);
Peiyong Lina52f0292018-03-14 17:26:31 -0700495 return static_cast<ColorMode>(result);
Michael Wright28f24d02016-07-12 13:30:53 -0700496 }
Peiyong Lina52f0292018-03-14 17:26:31 -0700497 return static_cast<ColorMode>(reply.readInt32());
Michael Wright28f24d02016-07-12 13:30:53 -0700498 }
499
500 virtual status_t setActiveColorMode(const sp<IBinder>& display,
Peiyong Lina52f0292018-03-14 17:26:31 -0700501 ColorMode colorMode) {
Michael Wright28f24d02016-07-12 13:30:53 -0700502 Parcel data, reply;
503 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
504 if (result != NO_ERROR) {
505 ALOGE("setActiveColorMode failed to writeInterfaceToken: %d", result);
506 return result;
507 }
508 result = data.writeStrongBinder(display);
509 if (result != NO_ERROR) {
510 ALOGE("setActiveColorMode failed to writeStrongBinder: %d", result);
511 return result;
512 }
Peiyong Lina52f0292018-03-14 17:26:31 -0700513 result = data.writeInt32(static_cast<int32_t>(colorMode));
Michael Wright28f24d02016-07-12 13:30:53 -0700514 if (result != NO_ERROR) {
515 ALOGE("setActiveColorMode failed to writeInt32: %d", result);
516 return result;
517 }
518 result = remote()->transact(BnSurfaceComposer::SET_ACTIVE_COLOR_MODE, data, &reply);
519 if (result != NO_ERROR) {
520 ALOGE("setActiveColorMode failed to transact: %d", result);
521 return result;
522 }
523 return static_cast<status_t>(reply.readInt32());
524 }
525
Galia Peycheva5492cb52019-10-30 14:13:16 +0100526 virtual status_t getAutoLowLatencyModeSupport(const sp<IBinder>& display,
527 bool* outSupport) const {
528 Parcel data, reply;
529 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
530 status_t result = data.writeStrongBinder(display);
531 if (result != NO_ERROR) {
532 ALOGE("getAutoLowLatencyModeSupport failed to writeStrongBinder: %d", result);
533 return result;
534 }
535 result = remote()->transact(BnSurfaceComposer::GET_AUTO_LOW_LATENCY_MODE_SUPPORT, data,
536 &reply);
537 if (result != NO_ERROR) {
538 ALOGE("getAutoLowLatencyModeSupport failed to transact: %d", result);
539 return result;
540 }
541 return reply.readBool(outSupport);
542 }
543
544 virtual void setAutoLowLatencyMode(const sp<IBinder>& display, bool on) {
545 Parcel data, reply;
546 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
547 if (result != NO_ERROR) {
548 ALOGE("setAutoLowLatencyMode failed to writeInterfaceToken: %d", result);
549 return;
550 }
551
552 result = data.writeStrongBinder(display);
553 if (result != NO_ERROR) {
554 ALOGE("setAutoLowLatencyMode failed to writeStrongBinder: %d", result);
555 return;
556 }
557 result = data.writeBool(on);
558 if (result != NO_ERROR) {
559 ALOGE("setAutoLowLatencyMode failed to writeBool: %d", result);
560 return;
561 }
562 result = remote()->transact(BnSurfaceComposer::SET_AUTO_LOW_LATENCY_MODE, data, &reply);
563 if (result != NO_ERROR) {
564 ALOGE("setAutoLowLatencyMode failed to transact: %d", result);
565 return;
566 }
567 }
568
569 virtual status_t getGameContentTypeSupport(const sp<IBinder>& display, bool* outSupport) const {
570 Parcel data, reply;
571 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
572 status_t result = data.writeStrongBinder(display);
573 if (result != NO_ERROR) {
574 ALOGE("getGameContentTypeSupport failed to writeStrongBinder: %d", result);
575 return result;
576 }
577 result = remote()->transact(BnSurfaceComposer::GET_GAME_CONTENT_TYPE_SUPPORT, data, &reply);
578 if (result != NO_ERROR) {
579 ALOGE("getGameContentTypeSupport failed to transact: %d", result);
580 return result;
581 }
582 return reply.readBool(outSupport);
583 }
584
585 virtual void setGameContentType(const sp<IBinder>& display, bool on) {
586 Parcel data, reply;
587 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
588 if (result != NO_ERROR) {
589 ALOGE("setGameContentType failed to writeInterfaceToken: %d", result);
590 return;
591 }
592 result = data.writeStrongBinder(display);
593 if (result != NO_ERROR) {
594 ALOGE("setGameContentType failed to writeStrongBinder: %d", result);
595 return;
596 }
597 result = data.writeBool(on);
598 if (result != NO_ERROR) {
599 ALOGE("setGameContentType failed to writeBool: %d", result);
600 return;
601 }
602 result = remote()->transact(BnSurfaceComposer::SET_GAME_CONTENT_TYPE, data, &reply);
603 if (result != NO_ERROR) {
604 ALOGE("setGameContentType failed to transact: %d", result);
605 }
606 }
607
Svetoslavd85084b2014-03-20 10:28:31 -0700608 virtual status_t clearAnimationFrameStats() {
609 Parcel data, reply;
Ana Krulec2d41e422018-07-26 12:07:43 -0700610 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
611 if (result != NO_ERROR) {
612 ALOGE("clearAnimationFrameStats failed to writeInterfaceToken: %d", result);
613 return result;
614 }
615 result = remote()->transact(BnSurfaceComposer::CLEAR_ANIMATION_FRAME_STATS, data, &reply);
616 if (result != NO_ERROR) {
617 ALOGE("clearAnimationFrameStats failed to transact: %d", result);
618 return result;
619 }
Svetoslavd85084b2014-03-20 10:28:31 -0700620 return reply.readInt32();
621 }
622
623 virtual status_t getAnimationFrameStats(FrameStats* outStats) const {
624 Parcel data, reply;
625 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
626 remote()->transact(BnSurfaceComposer::GET_ANIMATION_FRAME_STATS, data, &reply);
627 reply.read(*outStats);
628 return reply.readInt32();
629 }
Dan Stozac4f471e2016-03-24 09:31:08 -0700630
631 virtual status_t getHdrCapabilities(const sp<IBinder>& display,
632 HdrCapabilities* outCapabilities) const {
633 Parcel data, reply;
634 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
635 status_t result = data.writeStrongBinder(display);
636 if (result != NO_ERROR) {
637 ALOGE("getHdrCapabilities failed to writeStrongBinder: %d", result);
638 return result;
639 }
640 result = remote()->transact(BnSurfaceComposer::GET_HDR_CAPABILITIES,
641 data, &reply);
642 if (result != NO_ERROR) {
643 ALOGE("getHdrCapabilities failed to transact: %d", result);
644 return result;
645 }
646 result = reply.readInt32();
647 if (result == NO_ERROR) {
Mathias Agopiane1f5e6f2017-02-06 16:34:41 -0800648 result = reply.read(*outCapabilities);
Dan Stozac4f471e2016-03-24 09:31:08 -0700649 }
650 return result;
651 }
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700652
653 virtual status_t enableVSyncInjections(bool enable) {
654 Parcel data, reply;
655 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
656 if (result != NO_ERROR) {
657 ALOGE("enableVSyncInjections failed to writeInterfaceToken: %d", result);
658 return result;
659 }
660 result = data.writeBool(enable);
661 if (result != NO_ERROR) {
662 ALOGE("enableVSyncInjections failed to writeBool: %d", result);
663 return result;
664 }
Steven Moreland366eb422019-04-01 19:22:32 -0700665 result = remote()->transact(BnSurfaceComposer::ENABLE_VSYNC_INJECTIONS, data, &reply,
666 IBinder::FLAG_ONEWAY);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700667 if (result != NO_ERROR) {
668 ALOGE("enableVSyncInjections failed to transact: %d", result);
669 return result;
670 }
671 return result;
672 }
673
674 virtual status_t injectVSync(nsecs_t when) {
675 Parcel data, reply;
676 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
677 if (result != NO_ERROR) {
678 ALOGE("injectVSync failed to writeInterfaceToken: %d", result);
679 return result;
680 }
681 result = data.writeInt64(when);
682 if (result != NO_ERROR) {
683 ALOGE("injectVSync failed to writeInt64: %d", result);
684 return result;
685 }
Steven Moreland366eb422019-04-01 19:22:32 -0700686 result = remote()->transact(BnSurfaceComposer::INJECT_VSYNC, data, &reply,
687 IBinder::FLAG_ONEWAY);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700688 if (result != NO_ERROR) {
689 ALOGE("injectVSync failed to transact: %d", result);
690 return result;
691 }
692 return result;
693 }
694
Vishnu Nair43bccf82020-06-05 10:53:37 -0700695 virtual status_t getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) {
Kalle Raitaa099a242017-01-11 11:17:29 -0800696 if (!outLayers) {
697 return UNEXPECTED_NULL;
698 }
699
700 Parcel data, reply;
701
702 status_t err = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
703 if (err != NO_ERROR) {
704 return err;
705 }
706
707 err = remote()->transact(BnSurfaceComposer::GET_LAYER_DEBUG_INFO, data, &reply);
708 if (err != NO_ERROR) {
709 return err;
710 }
711
712 int32_t result = 0;
713 err = reply.readInt32(&result);
714 if (err != NO_ERROR) {
715 return err;
716 }
717 if (result != NO_ERROR) {
718 return result;
719 }
720
721 outLayers->clear();
722 return reply.readParcelableVector(outLayers);
723 }
Peiyong Lin0256f722018-08-31 15:45:10 -0700724
Peiyong Linc6780972018-10-28 15:24:08 -0700725 virtual status_t getCompositionPreference(ui::Dataspace* defaultDataspace,
726 ui::PixelFormat* defaultPixelFormat,
727 ui::Dataspace* wideColorGamutDataspace,
728 ui::PixelFormat* wideColorGamutPixelFormat) const {
Peiyong Lin0256f722018-08-31 15:45:10 -0700729 Parcel data, reply;
730 status_t error = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
731 if (error != NO_ERROR) {
732 return error;
733 }
734 error = remote()->transact(BnSurfaceComposer::GET_COMPOSITION_PREFERENCE, data, &reply);
735 if (error != NO_ERROR) {
736 return error;
737 }
738 error = static_cast<status_t>(reply.readInt32());
739 if (error == NO_ERROR) {
Peiyong Linc6780972018-10-28 15:24:08 -0700740 *defaultDataspace = static_cast<ui::Dataspace>(reply.readInt32());
741 *defaultPixelFormat = static_cast<ui::PixelFormat>(reply.readInt32());
742 *wideColorGamutDataspace = static_cast<ui::Dataspace>(reply.readInt32());
743 *wideColorGamutPixelFormat = static_cast<ui::PixelFormat>(reply.readInt32());
Peiyong Lin0256f722018-08-31 15:45:10 -0700744 }
745 return error;
746 }
Ady Abraham2a6ab2a2018-10-26 14:25:30 -0700747
Ady Abraham37965d42018-11-01 13:43:32 -0700748 virtual status_t getColorManagement(bool* outGetColorManagement) const {
Ady Abraham2a6ab2a2018-10-26 14:25:30 -0700749 Parcel data, reply;
750 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
Ady Abraham37965d42018-11-01 13:43:32 -0700751 remote()->transact(BnSurfaceComposer::GET_COLOR_MANAGEMENT, data, &reply);
752 bool result;
753 status_t err = reply.readBool(&result);
754 if (err == NO_ERROR) {
755 *outGetColorManagement = result;
Ady Abraham2a6ab2a2018-10-26 14:25:30 -0700756 }
Ady Abraham37965d42018-11-01 13:43:32 -0700757 return err;
Ady Abraham2a6ab2a2018-10-26 14:25:30 -0700758 }
Kevin DuBois9c0a1762018-10-16 13:32:31 -0700759
760 virtual status_t getDisplayedContentSamplingAttributes(const sp<IBinder>& display,
761 ui::PixelFormat* outFormat,
762 ui::Dataspace* outDataspace,
763 uint8_t* outComponentMask) const {
764 if (!outFormat || !outDataspace || !outComponentMask) return BAD_VALUE;
765 Parcel data, reply;
766 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
767 data.writeStrongBinder(display);
768
769 status_t error =
770 remote()->transact(BnSurfaceComposer::GET_DISPLAYED_CONTENT_SAMPLING_ATTRIBUTES,
771 data, &reply);
772 if (error != NO_ERROR) {
773 return error;
774 }
775
776 uint32_t value = 0;
777 error = reply.readUint32(&value);
778 if (error != NO_ERROR) {
779 return error;
780 }
781 *outFormat = static_cast<ui::PixelFormat>(value);
782
783 error = reply.readUint32(&value);
784 if (error != NO_ERROR) {
785 return error;
786 }
787 *outDataspace = static_cast<ui::Dataspace>(value);
788
789 error = reply.readUint32(&value);
790 if (error != NO_ERROR) {
791 return error;
792 }
793 *outComponentMask = static_cast<uint8_t>(value);
794 return error;
795 }
Kevin DuBois74e53772018-11-19 10:52:38 -0800796
797 virtual status_t setDisplayContentSamplingEnabled(const sp<IBinder>& display, bool enable,
Dominik Laskowski470df5f2020-04-02 22:27:42 -0700798 uint8_t componentMask, uint64_t maxFrames) {
Kevin DuBois74e53772018-11-19 10:52:38 -0800799 Parcel data, reply;
800 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
801 data.writeStrongBinder(display);
802 data.writeBool(enable);
803 data.writeByte(static_cast<int8_t>(componentMask));
804 data.writeUint64(maxFrames);
805 status_t result =
806 remote()->transact(BnSurfaceComposer::SET_DISPLAY_CONTENT_SAMPLING_ENABLED, data,
807 &reply);
808 return result;
809 }
Kevin DuBois1d4249a2018-08-29 10:45:14 -0700810
811 virtual status_t getDisplayedContentSample(const sp<IBinder>& display, uint64_t maxFrames,
812 uint64_t timestamp,
813 DisplayedFrameStats* outStats) const {
814 if (!outStats) return BAD_VALUE;
815
816 Parcel data, reply;
817 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
818 data.writeStrongBinder(display);
819 data.writeUint64(maxFrames);
820 data.writeUint64(timestamp);
821
822 status_t result =
823 remote()->transact(BnSurfaceComposer::GET_DISPLAYED_CONTENT_SAMPLE, data, &reply);
824
825 if (result != NO_ERROR) {
826 return result;
827 }
828
829 result = reply.readUint64(&outStats->numFrames);
830 if (result != NO_ERROR) {
831 return result;
832 }
833
Kevin DuBois1d4c6a62018-12-12 13:59:46 -0800834 result = reply.readUint64Vector(&outStats->component_0_sample);
Kevin DuBois1d4249a2018-08-29 10:45:14 -0700835 if (result != NO_ERROR) {
836 return result;
837 }
Kevin DuBois1d4c6a62018-12-12 13:59:46 -0800838 result = reply.readUint64Vector(&outStats->component_1_sample);
Kevin DuBois1d4249a2018-08-29 10:45:14 -0700839 if (result != NO_ERROR) {
840 return result;
841 }
Kevin DuBois1d4c6a62018-12-12 13:59:46 -0800842 result = reply.readUint64Vector(&outStats->component_2_sample);
Kevin DuBois1d4249a2018-08-29 10:45:14 -0700843 if (result != NO_ERROR) {
844 return result;
845 }
Kevin DuBois1d4c6a62018-12-12 13:59:46 -0800846 result = reply.readUint64Vector(&outStats->component_3_sample);
Kevin DuBois1d4249a2018-08-29 10:45:14 -0700847 return result;
848 }
Peiyong Lin3c2791e2019-01-14 17:05:18 -0800849
850 virtual status_t getProtectedContentSupport(bool* outSupported) const {
851 Parcel data, reply;
852 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
Peiyong Linb6888fa2019-01-28 13:20:58 -0800853 status_t error =
854 remote()->transact(BnSurfaceComposer::GET_PROTECTED_CONTENT_SUPPORT, data, &reply);
855 if (error != NO_ERROR) {
856 return error;
Peiyong Lin3c2791e2019-01-14 17:05:18 -0800857 }
Peiyong Linb6888fa2019-01-28 13:20:58 -0800858 error = reply.readBool(outSupported);
859 return error;
Peiyong Lin3c2791e2019-01-14 17:05:18 -0800860 }
Marissa Wallebc2c052019-01-16 19:16:55 -0800861
Peiyong Lin4f3fddf2019-01-24 17:21:24 -0800862 virtual status_t isWideColorDisplay(const sp<IBinder>& token,
863 bool* outIsWideColorDisplay) const {
864 Parcel data, reply;
865 status_t error = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
866 if (error != NO_ERROR) {
867 return error;
868 }
869 error = data.writeStrongBinder(token);
870 if (error != NO_ERROR) {
871 return error;
872 }
873
874 error = remote()->transact(BnSurfaceComposer::IS_WIDE_COLOR_DISPLAY, data, &reply);
875 if (error != NO_ERROR) {
876 return error;
877 }
878 error = reply.readBool(outIsWideColorDisplay);
879 return error;
880 }
Dan Stoza84ab9372018-12-17 15:27:57 -0800881
882 virtual status_t addRegionSamplingListener(const Rect& samplingArea,
883 const sp<IBinder>& stopLayerHandle,
884 const sp<IRegionSamplingListener>& listener) {
885 Parcel data, reply;
886 status_t error = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
887 if (error != NO_ERROR) {
888 ALOGE("addRegionSamplingListener: Failed to write interface token");
889 return error;
890 }
891 error = data.write(samplingArea);
892 if (error != NO_ERROR) {
893 ALOGE("addRegionSamplingListener: Failed to write sampling area");
894 return error;
895 }
896 error = data.writeStrongBinder(stopLayerHandle);
897 if (error != NO_ERROR) {
898 ALOGE("addRegionSamplingListener: Failed to write stop layer handle");
899 return error;
900 }
901 error = data.writeStrongBinder(IInterface::asBinder(listener));
902 if (error != NO_ERROR) {
903 ALOGE("addRegionSamplingListener: Failed to write listener");
904 return error;
905 }
906 error = remote()->transact(BnSurfaceComposer::ADD_REGION_SAMPLING_LISTENER, data, &reply);
907 if (error != NO_ERROR) {
908 ALOGE("addRegionSamplingListener: Failed to transact");
909 }
910 return error;
911 }
912
913 virtual status_t removeRegionSamplingListener(const sp<IRegionSamplingListener>& listener) {
914 Parcel data, reply;
915 status_t error = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
916 if (error != NO_ERROR) {
tangrobinaf45f012019-02-26 18:10:10 +0800917 ALOGE("removeRegionSamplingListener: Failed to write interface token");
Dan Stoza84ab9372018-12-17 15:27:57 -0800918 return error;
919 }
920 error = data.writeStrongBinder(IInterface::asBinder(listener));
921 if (error != NO_ERROR) {
tangrobinaf45f012019-02-26 18:10:10 +0800922 ALOGE("removeRegionSamplingListener: Failed to write listener");
Dan Stoza84ab9372018-12-17 15:27:57 -0800923 return error;
924 }
925 error = remote()->transact(BnSurfaceComposer::REMOVE_REGION_SAMPLING_LISTENER, data,
926 &reply);
927 if (error != NO_ERROR) {
tangrobinaf45f012019-02-26 18:10:10 +0800928 ALOGE("removeRegionSamplingListener: Failed to transact");
Dan Stoza84ab9372018-12-17 15:27:57 -0800929 }
930 return error;
931 }
Ady Abraham838de062019-02-04 10:24:03 -0800932
Ana Krulec0782b882019-10-15 17:34:54 -0700933 virtual status_t setDesiredDisplayConfigSpecs(const sp<IBinder>& displayToken,
Steven Thomasf734df42020-04-13 21:09:28 -0700934 int32_t defaultConfig,
935 float primaryRefreshRateMin,
936 float primaryRefreshRateMax,
937 float appRequestRefreshRateMin,
938 float appRequestRefreshRateMax) {
Ana Krulec0782b882019-10-15 17:34:54 -0700939 Parcel data, reply;
940 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
941 if (result != NO_ERROR) {
942 ALOGE("setDesiredDisplayConfigSpecs: failed to writeInterfaceToken: %d", result);
943 return result;
944 }
945 result = data.writeStrongBinder(displayToken);
946 if (result != NO_ERROR) {
947 ALOGE("setDesiredDisplayConfigSpecs: failed to write display token: %d", result);
948 return result;
949 }
Ana Kruleced3a8cc2019-11-14 00:55:07 +0100950 result = data.writeInt32(defaultConfig);
Ana Krulec0782b882019-10-15 17:34:54 -0700951 if (result != NO_ERROR) {
Ana Kruleced3a8cc2019-11-14 00:55:07 +0100952 ALOGE("setDesiredDisplayConfigSpecs failed to write defaultConfig: %d", result);
Ana Krulec0782b882019-10-15 17:34:54 -0700953 return result;
954 }
Steven Thomasf734df42020-04-13 21:09:28 -0700955 result = data.writeFloat(primaryRefreshRateMin);
Ana Krulec0782b882019-10-15 17:34:54 -0700956 if (result != NO_ERROR) {
Steven Thomasf734df42020-04-13 21:09:28 -0700957 ALOGE("setDesiredDisplayConfigSpecs failed to write primaryRefreshRateMin: %d", result);
Ana Krulec0782b882019-10-15 17:34:54 -0700958 return result;
959 }
Steven Thomasf734df42020-04-13 21:09:28 -0700960 result = data.writeFloat(primaryRefreshRateMax);
Ana Krulec0782b882019-10-15 17:34:54 -0700961 if (result != NO_ERROR) {
Steven Thomasf734df42020-04-13 21:09:28 -0700962 ALOGE("setDesiredDisplayConfigSpecs failed to write primaryRefreshRateMax: %d", result);
963 return result;
964 }
965 result = data.writeFloat(appRequestRefreshRateMin);
966 if (result != NO_ERROR) {
967 ALOGE("setDesiredDisplayConfigSpecs failed to write appRequestRefreshRateMin: %d",
968 result);
969 return result;
970 }
971 result = data.writeFloat(appRequestRefreshRateMax);
972 if (result != NO_ERROR) {
973 ALOGE("setDesiredDisplayConfigSpecs failed to write appRequestRefreshRateMax: %d",
974 result);
Ana Krulec0782b882019-10-15 17:34:54 -0700975 return result;
976 }
977
978 result = remote()->transact(BnSurfaceComposer::SET_DESIRED_DISPLAY_CONFIG_SPECS, data,
979 &reply);
980 if (result != NO_ERROR) {
981 ALOGE("setDesiredDisplayConfigSpecs failed to transact: %d", result);
982 return result;
983 }
984 return reply.readInt32();
985 }
986
Ana Krulec234bb162019-11-10 22:55:55 +0100987 virtual status_t getDesiredDisplayConfigSpecs(const sp<IBinder>& displayToken,
Ana Kruleced3a8cc2019-11-14 00:55:07 +0100988 int32_t* outDefaultConfig,
Steven Thomasf734df42020-04-13 21:09:28 -0700989 float* outPrimaryRefreshRateMin,
990 float* outPrimaryRefreshRateMax,
991 float* outAppRequestRefreshRateMin,
992 float* outAppRequestRefreshRateMax) {
993 if (!outDefaultConfig || !outPrimaryRefreshRateMin || !outPrimaryRefreshRateMax ||
994 !outAppRequestRefreshRateMin || !outAppRequestRefreshRateMax) {
995 return BAD_VALUE;
996 }
Ady Abrahamd9b3ea62019-02-26 14:08:03 -0800997 Parcel data, reply;
998 status_t result = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
999 if (result != NO_ERROR) {
Ana Krulec234bb162019-11-10 22:55:55 +01001000 ALOGE("getDesiredDisplayConfigSpecs failed to writeInterfaceToken: %d", result);
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08001001 return result;
1002 }
1003 result = data.writeStrongBinder(displayToken);
1004 if (result != NO_ERROR) {
Ana Krulec234bb162019-11-10 22:55:55 +01001005 ALOGE("getDesiredDisplayConfigSpecs failed to writeStrongBinder: %d", result);
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08001006 return result;
1007 }
Ana Krulec234bb162019-11-10 22:55:55 +01001008 result = remote()->transact(BnSurfaceComposer::GET_DESIRED_DISPLAY_CONFIG_SPECS, data,
1009 &reply);
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08001010 if (result != NO_ERROR) {
Ana Krulec234bb162019-11-10 22:55:55 +01001011 ALOGE("getDesiredDisplayConfigSpecs failed to transact: %d", result);
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08001012 return result;
1013 }
Ana Kruleced3a8cc2019-11-14 00:55:07 +01001014 result = reply.readInt32(outDefaultConfig);
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08001015 if (result != NO_ERROR) {
Ana Kruleced3a8cc2019-11-14 00:55:07 +01001016 ALOGE("getDesiredDisplayConfigSpecs failed to read defaultConfig: %d", result);
Ana Krulec234bb162019-11-10 22:55:55 +01001017 return result;
1018 }
Steven Thomasf734df42020-04-13 21:09:28 -07001019 result = reply.readFloat(outPrimaryRefreshRateMin);
Ana Krulec234bb162019-11-10 22:55:55 +01001020 if (result != NO_ERROR) {
Steven Thomasf734df42020-04-13 21:09:28 -07001021 ALOGE("getDesiredDisplayConfigSpecs failed to read primaryRefreshRateMin: %d", result);
Ana Krulec234bb162019-11-10 22:55:55 +01001022 return result;
1023 }
Steven Thomasf734df42020-04-13 21:09:28 -07001024 result = reply.readFloat(outPrimaryRefreshRateMax);
Ana Krulec234bb162019-11-10 22:55:55 +01001025 if (result != NO_ERROR) {
Steven Thomasf734df42020-04-13 21:09:28 -07001026 ALOGE("getDesiredDisplayConfigSpecs failed to read primaryRefreshRateMax: %d", result);
1027 return result;
1028 }
1029 result = reply.readFloat(outAppRequestRefreshRateMin);
1030 if (result != NO_ERROR) {
1031 ALOGE("getDesiredDisplayConfigSpecs failed to read appRequestRefreshRateMin: %d",
1032 result);
1033 return result;
1034 }
1035 result = reply.readFloat(outAppRequestRefreshRateMax);
1036 if (result != NO_ERROR) {
1037 ALOGE("getDesiredDisplayConfigSpecs failed to read appRequestRefreshRateMax: %d",
1038 result);
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08001039 return result;
1040 }
1041 return reply.readInt32();
1042 }
Dan Gittik57e63c52019-01-18 16:37:54 +00001043
1044 virtual status_t getDisplayBrightnessSupport(const sp<IBinder>& displayToken,
1045 bool* outSupport) const {
1046 Parcel data, reply;
1047 status_t error = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
1048 if (error != NO_ERROR) {
1049 ALOGE("getDisplayBrightnessSupport: failed to write interface token: %d", error);
1050 return error;
1051 }
1052 error = data.writeStrongBinder(displayToken);
1053 if (error != NO_ERROR) {
1054 ALOGE("getDisplayBrightnessSupport: failed to write display token: %d", error);
1055 return error;
1056 }
1057 error = remote()->transact(BnSurfaceComposer::GET_DISPLAY_BRIGHTNESS_SUPPORT, data, &reply);
1058 if (error != NO_ERROR) {
1059 ALOGE("getDisplayBrightnessSupport: failed to transact: %d", error);
1060 return error;
1061 }
1062 bool support;
1063 error = reply.readBool(&support);
1064 if (error != NO_ERROR) {
1065 ALOGE("getDisplayBrightnessSupport: failed to read support: %d", error);
1066 return error;
1067 }
1068 *outSupport = support;
1069 return NO_ERROR;
1070 }
1071
Dominik Laskowski470df5f2020-04-02 22:27:42 -07001072 virtual status_t setDisplayBrightness(const sp<IBinder>& displayToken, float brightness) {
Dan Gittik57e63c52019-01-18 16:37:54 +00001073 Parcel data, reply;
1074 status_t error = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
1075 if (error != NO_ERROR) {
1076 ALOGE("setDisplayBrightness: failed to write interface token: %d", error);
1077 return error;
1078 }
1079 error = data.writeStrongBinder(displayToken);
1080 if (error != NO_ERROR) {
1081 ALOGE("setDisplayBrightness: failed to write display token: %d", error);
1082 return error;
1083 }
1084 error = data.writeFloat(brightness);
1085 if (error != NO_ERROR) {
1086 ALOGE("setDisplayBrightness: failed to write brightness: %d", error);
1087 return error;
1088 }
1089 error = remote()->transact(BnSurfaceComposer::SET_DISPLAY_BRIGHTNESS, data, &reply);
1090 if (error != NO_ERROR) {
1091 ALOGE("setDisplayBrightness: failed to transact: %d", error);
1092 return error;
1093 }
1094 return NO_ERROR;
1095 }
Ady Abraham8532d012019-05-08 14:50:56 -07001096
Lais Andrade3a6e47d2020-04-02 11:20:16 +01001097 virtual status_t notifyPowerBoost(int32_t boostId) {
Ady Abraham8532d012019-05-08 14:50:56 -07001098 Parcel data, reply;
1099 status_t error = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
1100 if (error != NO_ERROR) {
Lais Andrade3a6e47d2020-04-02 11:20:16 +01001101 ALOGE("notifyPowerBoost: failed to write interface token: %d", error);
Ady Abraham8532d012019-05-08 14:50:56 -07001102 return error;
1103 }
Lais Andrade3a6e47d2020-04-02 11:20:16 +01001104 error = data.writeInt32(boostId);
Ady Abraham8532d012019-05-08 14:50:56 -07001105 if (error != NO_ERROR) {
Lais Andrade3a6e47d2020-04-02 11:20:16 +01001106 ALOGE("notifyPowerBoost: failed to write boostId: %d", error);
Ady Abraham8532d012019-05-08 14:50:56 -07001107 return error;
1108 }
Lais Andrade3a6e47d2020-04-02 11:20:16 +01001109 error = remote()->transact(BnSurfaceComposer::NOTIFY_POWER_BOOST, data, &reply,
Ady Abraham8532d012019-05-08 14:50:56 -07001110 IBinder::FLAG_ONEWAY);
1111 if (error != NO_ERROR) {
Lais Andrade3a6e47d2020-04-02 11:20:16 +01001112 ALOGE("notifyPowerBoost: failed to transact: %d", error);
Ady Abraham8532d012019-05-08 14:50:56 -07001113 return error;
1114 }
1115 return NO_ERROR;
1116 }
Vishnu Nairb13bb952019-11-15 10:24:08 -08001117
1118 virtual status_t setGlobalShadowSettings(const half4& ambientColor, const half4& spotColor,
1119 float lightPosY, float lightPosZ, float lightRadius) {
1120 Parcel data, reply;
1121 status_t error = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
1122 if (error != NO_ERROR) {
1123 ALOGE("setGlobalShadowSettings: failed to write interface token: %d", error);
1124 return error;
1125 }
1126
1127 std::vector<float> shadowConfig = {ambientColor.r, ambientColor.g, ambientColor.b,
1128 ambientColor.a, spotColor.r, spotColor.g,
1129 spotColor.b, spotColor.a, lightPosY,
1130 lightPosZ, lightRadius};
1131
1132 error = data.writeFloatVector(shadowConfig);
1133 if (error != NO_ERROR) {
1134 ALOGE("setGlobalShadowSettings: failed to write shadowConfig: %d", error);
1135 return error;
1136 }
1137
1138 error = remote()->transact(BnSurfaceComposer::SET_GLOBAL_SHADOW_SETTINGS, data, &reply,
1139 IBinder::FLAG_ONEWAY);
1140 if (error != NO_ERROR) {
1141 ALOGE("setGlobalShadowSettings: failed to transact: %d", error);
1142 return error;
1143 }
1144 return NO_ERROR;
1145 }
Steven Thomas62a4cf82020-01-31 12:04:03 -08001146
1147 virtual status_t setFrameRate(const sp<IGraphicBufferProducer>& surface, float frameRate,
1148 int8_t compatibility) {
1149 Parcel data, reply;
1150 status_t err = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
1151 if (err != NO_ERROR) {
1152 ALOGE("setFrameRate: failed writing interface token: %s (%d)", strerror(-err), -err);
1153 return err;
1154 }
1155
1156 err = data.writeStrongBinder(IInterface::asBinder(surface));
1157 if (err != NO_ERROR) {
1158 ALOGE("setFrameRate: failed writing strong binder: %s (%d)", strerror(-err), -err);
1159 return err;
1160 }
1161
1162 err = data.writeFloat(frameRate);
1163 if (err != NO_ERROR) {
1164 ALOGE("setFrameRate: failed writing float: %s (%d)", strerror(-err), -err);
1165 return err;
1166 }
1167
1168 err = data.writeByte(compatibility);
1169 if (err != NO_ERROR) {
1170 ALOGE("setFrameRate: failed writing byte: %s (%d)", strerror(-err), -err);
1171 return err;
1172 }
1173
Ady Abraham60e42ea2020-03-09 19:17:31 -07001174 err = remote()->transact(BnSurfaceComposer::SET_FRAME_RATE, data, &reply);
Steven Thomas62a4cf82020-01-31 12:04:03 -08001175 if (err != NO_ERROR) {
1176 ALOGE("setFrameRate: failed to transact: %s (%d)", strerror(-err), err);
1177 return err;
1178 }
Steven Thomasd4071902020-03-24 16:02:53 -07001179
1180 return reply.readInt32();
1181 }
1182
1183 virtual status_t acquireFrameRateFlexibilityToken(sp<IBinder>* outToken) {
1184 if (!outToken) return BAD_VALUE;
1185
1186 Parcel data, reply;
1187 status_t err = data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
1188 if (err != NO_ERROR) {
1189 ALOGE("acquireFrameRateFlexibilityToken: failed writing interface token: %s (%d)",
1190 strerror(-err), -err);
1191 return err;
1192 }
1193
1194 err = remote()->transact(BnSurfaceComposer::ACQUIRE_FRAME_RATE_FLEXIBILITY_TOKEN, data,
1195 &reply);
1196 if (err != NO_ERROR) {
1197 ALOGE("acquireFrameRateFlexibilityToken: failed to transact: %s (%d)", strerror(-err),
1198 err);
1199 return err;
1200 }
1201
1202 err = reply.readInt32();
1203 if (err != NO_ERROR) {
1204 ALOGE("acquireFrameRateFlexibilityToken: call failed: %s (%d)", strerror(-err), err);
1205 return err;
1206 }
1207
1208 err = reply.readStrongBinder(outToken);
1209 if (err != NO_ERROR) {
1210 ALOGE("acquireFrameRateFlexibilityToken: failed reading binder token: %s (%d)",
1211 strerror(-err), err);
1212 return err;
1213 }
1214
Steven Thomas62a4cf82020-01-31 12:04:03 -08001215 return NO_ERROR;
1216 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001217};
1218
Dan Stozad723bd72014-11-18 10:24:03 -08001219// Out-of-line virtual method definition to trigger vtable emission in this
1220// translation unit (see clang warning -Wweak-vtables)
1221BpSurfaceComposer::~BpSurfaceComposer() {}
1222
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001223IMPLEMENT_META_INTERFACE(SurfaceComposer, "android.ui.ISurfaceComposer");
1224
1225// ----------------------------------------------------------------------
1226
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001227status_t BnSurfaceComposer::onTransact(
1228 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1229{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001230 switch(code) {
1231 case CREATE_CONNECTION: {
Mathias Agopian83c04462009-05-22 19:00:22 -07001232 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Marco Nelissen2ea926b2014-11-14 08:01:01 -08001233 sp<IBinder> b = IInterface::asBinder(createConnection());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001234 reply->writeStrongBinder(b);
Jesse Hall6c913be2013-08-08 12:15:49 -07001235 return NO_ERROR;
1236 }
Mathias Agopian698c0872011-06-28 19:09:31 -07001237 case SET_TRANSACTION_STATE: {
Mathias Agopian83c04462009-05-22 19:00:22 -07001238 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Dan Stozad723bd72014-11-18 10:24:03 -08001239
1240 size_t count = data.readUint32();
Michael Lentine8afa1c42014-10-31 11:10:13 -07001241 if (count > data.dataSize()) {
1242 return BAD_VALUE;
1243 }
Mathias Agopian698c0872011-06-28 19:09:31 -07001244 Vector<ComposerState> state;
1245 state.setCapacity(count);
Dan Stozad723bd72014-11-18 10:24:03 -08001246 for (size_t i = 0; i < count; i++) {
Marissa Wallc837b5e2018-10-12 10:04:44 -07001247 ComposerState s;
Michael Lentine8afa1c42014-10-31 11:10:13 -07001248 if (s.read(data) == BAD_VALUE) {
1249 return BAD_VALUE;
1250 }
Mathias Agopian698c0872011-06-28 19:09:31 -07001251 state.add(s);
1252 }
Dan Stozad723bd72014-11-18 10:24:03 -08001253
1254 count = data.readUint32();
Michael Lentine8afa1c42014-10-31 11:10:13 -07001255 if (count > data.dataSize()) {
1256 return BAD_VALUE;
1257 }
Mathias Agopian8b33f032012-07-24 20:43:54 -07001258 DisplayState d;
1259 Vector<DisplayState> displays;
1260 displays.setCapacity(count);
Dan Stozad723bd72014-11-18 10:24:03 -08001261 for (size_t i = 0; i < count; i++) {
Michael Lentine8afa1c42014-10-31 11:10:13 -07001262 if (d.read(data) == BAD_VALUE) {
1263 return BAD_VALUE;
1264 }
Mathias Agopian8b33f032012-07-24 20:43:54 -07001265 displays.add(d);
1266 }
Dan Stozad723bd72014-11-18 10:24:03 -08001267
1268 uint32_t stateFlags = data.readUint32();
Marissa Wall713b63f2018-10-17 15:42:43 -07001269 sp<IBinder> applyToken = data.readStrongBinder();
chaviw273171b2018-12-26 11:46:30 -08001270 InputWindowCommands inputWindowCommands;
1271 inputWindowCommands.read(data);
Marissa Wall17b4e452018-12-26 16:32:34 -08001272
1273 int64_t desiredPresentTime = data.readInt64();
Marissa Wall78b72202019-03-15 14:58:34 -07001274
Marissa Wall947d34e2019-03-29 14:03:53 -07001275 client_cache_t uncachedBuffer;
Steven Moreland9d4ce9b2019-07-17 15:23:38 -07001276 uncachedBuffer.token = data.readStrongBinder();
Marissa Wall947d34e2019-03-29 14:03:53 -07001277 uncachedBuffer.id = data.readUint64();
Marissa Wall78b72202019-03-15 14:58:34 -07001278
Valerie Hau9dab9732019-08-20 09:29:25 -07001279 bool hasListenerCallbacks = data.readBool();
1280
Marissa Wall3dad52d2019-03-22 14:03:19 -07001281 std::vector<ListenerCallbacks> listenerCallbacks;
1282 int32_t listenersSize = data.readInt32();
1283 for (int32_t i = 0; i < listenersSize; i++) {
Valerie Hau5de3ad22019-08-20 07:47:43 -07001284 auto listener = data.readStrongBinder();
Marissa Wall3dad52d2019-03-22 14:03:19 -07001285 std::vector<CallbackId> callbackIds;
1286 data.readInt64Vector(&callbackIds);
1287 listenerCallbacks.emplace_back(listener, callbackIds);
1288 }
Marissa Wall17b4e452018-12-26 16:32:34 -08001289 setTransactionState(state, displays, stateFlags, applyToken, inputWindowCommands,
Valerie Hau9dab9732019-08-20 09:29:25 -07001290 desiredPresentTime, uncachedBuffer, hasListenerCallbacks,
1291 listenerCallbacks);
Jesse Hall6c913be2013-08-08 12:15:49 -07001292 return NO_ERROR;
1293 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001294 case BOOT_FINISHED: {
Mathias Agopian83c04462009-05-22 19:00:22 -07001295 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001296 bootFinished();
Jesse Hall6c913be2013-08-08 12:15:49 -07001297 return NO_ERROR;
1298 }
Mathias Agopian2a9fc492013-03-01 13:42:57 -08001299 case CAPTURE_SCREEN: {
1300 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1301 sp<IBinder> display = data.readStrongBinder();
Peiyong Lin0e003c92018-09-17 11:09:51 -07001302 ui::Dataspace reqDataspace = static_cast<ui::Dataspace>(data.readInt32());
1303 ui::PixelFormat reqPixelFormat = static_cast<ui::PixelFormat>(data.readInt32());
Chavi Weingarten40482ff2017-11-30 01:51:40 +00001304 sp<GraphicBuffer> outBuffer;
Pablo Ceballos60d69222015-08-07 14:47:20 -07001305 Rect sourceCrop(Rect::EMPTY_RECT);
Dan Stozac1879002014-05-22 15:59:05 -07001306 data.read(sourceCrop);
Dan Stozad723bd72014-11-18 10:24:03 -08001307 uint32_t reqWidth = data.readUint32();
1308 uint32_t reqHeight = data.readUint32();
Dan Stozac7014012014-02-14 15:03:43 -08001309 bool useIdentityTransform = static_cast<bool>(data.readInt32());
Dan Stozad723bd72014-11-18 10:24:03 -08001310 int32_t rotation = data.readInt32();
Robert Carrfa8855f2019-02-19 10:05:00 -08001311 bool captureSecureLayers = static_cast<bool>(data.readInt32());
Dan Stozac7014012014-02-14 15:03:43 -08001312
Robert Carr108b2c72019-04-02 16:32:58 -07001313 bool capturedSecureLayers = false;
1314 status_t res = captureScreen(display, &outBuffer, capturedSecureLayers, reqDataspace,
1315 reqPixelFormat, sourceCrop, reqWidth, reqHeight,
Dominik Laskowski718f9602019-11-09 20:01:35 -08001316 useIdentityTransform, ui::toRotation(rotation),
Robert Carr108b2c72019-04-02 16:32:58 -07001317 captureSecureLayers);
1318
Mathias Agopian2a9fc492013-03-01 13:42:57 -08001319 reply->writeInt32(res);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00001320 if (res == NO_ERROR) {
1321 reply->write(*outBuffer);
Robert Carr108b2c72019-04-02 16:32:58 -07001322 reply->writeBool(capturedSecureLayers);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00001323 }
Jesse Hall6c913be2013-08-08 12:15:49 -07001324 return NO_ERROR;
1325 }
chaviw93df2ea2019-04-30 16:45:12 -07001326 case CAPTURE_SCREEN_BY_ID: {
1327 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1328 uint64_t displayOrLayerStack = data.readUint64();
1329 ui::Dataspace outDataspace = ui::Dataspace::V0_SRGB;
1330 sp<GraphicBuffer> outBuffer;
1331 status_t res = captureScreen(displayOrLayerStack, &outDataspace, &outBuffer);
1332 reply->writeInt32(res);
1333 if (res == NO_ERROR) {
1334 reply->writeInt32(static_cast<int32_t>(outDataspace));
1335 reply->write(*outBuffer);
1336 }
1337 return NO_ERROR;
1338 }
chaviwa76b2712017-09-20 12:02:26 -07001339 case CAPTURE_LAYERS: {
1340 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1341 sp<IBinder> layerHandleBinder = data.readStrongBinder();
Peiyong Lin0e003c92018-09-17 11:09:51 -07001342 ui::Dataspace reqDataspace = static_cast<ui::Dataspace>(data.readInt32());
1343 ui::PixelFormat reqPixelFormat = static_cast<ui::PixelFormat>(data.readInt32());
Chavi Weingarten40482ff2017-11-30 01:51:40 +00001344 sp<GraphicBuffer> outBuffer;
chaviw7206d492017-11-10 16:16:12 -08001345 Rect sourceCrop(Rect::EMPTY_RECT);
1346 data.read(sourceCrop);
Robert Carr866455f2019-04-02 16:28:26 -07001347
1348 std::unordered_set<sp<IBinder>, SpHash<IBinder>> excludeHandles;
1349 int numExcludeHandles = data.readInt32();
Ady Abraham0a525092020-03-03 12:51:24 -08001350 if (numExcludeHandles >= static_cast<int>(MAX_LAYERS)) {
1351 return BAD_VALUE;
1352 }
Robert Carr866455f2019-04-02 16:28:26 -07001353 excludeHandles.reserve(numExcludeHandles);
1354 for (int i = 0; i < numExcludeHandles; i++) {
1355 excludeHandles.emplace(data.readStrongBinder());
1356 }
1357
chaviw7206d492017-11-10 16:16:12 -08001358 float frameScale = data.readFloat();
Robert Carr578038f2018-03-09 12:25:24 -08001359 bool childrenOnly = data.readBool();
chaviwa76b2712017-09-20 12:02:26 -07001360
Robert Carr866455f2019-04-02 16:28:26 -07001361 status_t res =
1362 captureLayers(layerHandleBinder, &outBuffer, reqDataspace, reqPixelFormat,
1363 sourceCrop, excludeHandles, frameScale, childrenOnly);
chaviwa76b2712017-09-20 12:02:26 -07001364 reply->writeInt32(res);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00001365 if (res == NO_ERROR) {
1366 reply->write(*outBuffer);
1367 }
chaviwa76b2712017-09-20 12:02:26 -07001368 return NO_ERROR;
1369 }
Jamie Gennis134f0422011-03-08 12:18:54 -08001370 case AUTHENTICATE_SURFACE: {
1371 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Andy McFadden2adaf042012-12-18 09:49:45 -08001372 sp<IGraphicBufferProducer> bufferProducer =
1373 interface_cast<IGraphicBufferProducer>(data.readStrongBinder());
1374 int32_t result = authenticateSurfaceTexture(bufferProducer) ? 1 : 0;
Jamie Gennis134f0422011-03-08 12:18:54 -08001375 reply->writeInt32(result);
Jesse Hall6c913be2013-08-08 12:15:49 -07001376 return NO_ERROR;
1377 }
Brian Anderson6b376712017-04-04 10:51:39 -07001378 case GET_SUPPORTED_FRAME_TIMESTAMPS: {
1379 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1380 std::vector<FrameEvent> supportedTimestamps;
1381 status_t result = getSupportedFrameTimestamps(&supportedTimestamps);
1382 status_t err = reply->writeInt32(result);
1383 if (err != NO_ERROR) {
1384 return err;
1385 }
1386 if (result != NO_ERROR) {
1387 return result;
1388 }
1389
1390 std::vector<int32_t> supported;
1391 supported.reserve(supportedTimestamps.size());
1392 for (FrameEvent s : supportedTimestamps) {
1393 supported.push_back(static_cast<int32_t>(s));
1394 }
1395 return reply->writeInt32Vector(supported);
1396 }
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001397 case CREATE_DISPLAY_EVENT_CONNECTION: {
1398 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Ady Abraham0f4a1b12019-06-04 16:04:04 -07001399 auto vsyncSource = static_cast<ISurfaceComposer::VsyncSource>(data.readInt32());
1400 auto configChanged = static_cast<ISurfaceComposer::ConfigChanged>(data.readInt32());
1401
1402 sp<IDisplayEventConnection> connection(
1403 createDisplayEventConnection(vsyncSource, configChanged));
Marco Nelissen2ea926b2014-11-14 08:01:01 -08001404 reply->writeStrongBinder(IInterface::asBinder(connection));
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001405 return NO_ERROR;
Jesse Hall6c913be2013-08-08 12:15:49 -07001406 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07001407 case CREATE_DISPLAY: {
1408 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Andy McFadden8dfa92f2012-09-17 18:27:17 -07001409 String8 displayName = data.readString8();
Jamie Gennisdd3cb842012-10-19 18:19:11 -07001410 bool secure = bool(data.readInt32());
1411 sp<IBinder> display(createDisplay(displayName, secure));
Mathias Agopiane57f2922012-08-09 16:29:12 -07001412 reply->writeStrongBinder(display);
1413 return NO_ERROR;
Jesse Hall6c913be2013-08-08 12:15:49 -07001414 }
1415 case DESTROY_DISPLAY: {
1416 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1417 sp<IBinder> display = data.readStrongBinder();
1418 destroyDisplay(display);
1419 return NO_ERROR;
1420 }
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001421 case GET_PHYSICAL_DISPLAY_TOKEN: {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001422 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Marin Shalamanova524a092020-07-27 21:39:55 +02001423 PhysicalDisplayId displayId(data.readUint64());
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001424 sp<IBinder> display = getPhysicalDisplayToken(displayId);
Mathias Agopiane57f2922012-08-09 16:29:12 -07001425 reply->writeStrongBinder(display);
1426 return NO_ERROR;
Jesse Hall6c913be2013-08-08 12:15:49 -07001427 }
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -08001428 case GET_DISPLAY_STATE: {
1429 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1430 ui::DisplayState state;
1431 const sp<IBinder> display = data.readStrongBinder();
1432 const status_t result = getDisplayState(display, &state);
1433 reply->writeInt32(result);
1434 if (result == NO_ERROR) {
1435 memcpy(reply->writeInplace(sizeof(ui::DisplayState)), &state,
1436 sizeof(ui::DisplayState));
1437 }
1438 return NO_ERROR;
1439 }
1440 case GET_DISPLAY_INFO: {
1441 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1442 DisplayInfo info;
1443 const sp<IBinder> display = data.readStrongBinder();
1444 const status_t result = getDisplayInfo(display, &info);
1445 reply->writeInt32(result);
Marin Shalamanov359a7e72020-02-17 17:03:07 +01001446 if (result != NO_ERROR) return result;
1447 return reply->write(info);
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -08001448 }
Dan Stoza7f7da322014-05-02 15:26:25 -07001449 case GET_DISPLAY_CONFIGS: {
Mathias Agopianc666cae2012-07-25 18:56:13 -07001450 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -08001451 Vector<DisplayConfig> configs;
1452 const sp<IBinder> display = data.readStrongBinder();
1453 const status_t result = getDisplayConfigs(display, &configs);
Dan Stoza7f7da322014-05-02 15:26:25 -07001454 reply->writeInt32(result);
1455 if (result == NO_ERROR) {
Dan Stozad723bd72014-11-18 10:24:03 -08001456 reply->writeUint32(static_cast<uint32_t>(configs.size()));
Dan Stoza7f7da322014-05-02 15:26:25 -07001457 for (size_t c = 0; c < configs.size(); ++c) {
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -08001458 memcpy(reply->writeInplace(sizeof(DisplayConfig)), &configs[c],
1459 sizeof(DisplayConfig));
Dan Stoza7f7da322014-05-02 15:26:25 -07001460 }
1461 }
1462 return NO_ERROR;
1463 }
Lajos Molnar67d8bd62014-09-11 14:58:45 -07001464 case GET_DISPLAY_STATS: {
1465 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1466 DisplayStatInfo stats;
1467 sp<IBinder> display = data.readStrongBinder();
1468 status_t result = getDisplayStats(display, &stats);
1469 reply->writeInt32(result);
1470 if (result == NO_ERROR) {
1471 memcpy(reply->writeInplace(sizeof(DisplayStatInfo)),
1472 &stats, sizeof(DisplayStatInfo));
1473 }
1474 return NO_ERROR;
1475 }
Dan Stoza7f7da322014-05-02 15:26:25 -07001476 case GET_ACTIVE_CONFIG: {
1477 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1478 sp<IBinder> display = data.readStrongBinder();
1479 int id = getActiveConfig(display);
1480 reply->writeInt32(id);
1481 return NO_ERROR;
1482 }
Michael Wright28f24d02016-07-12 13:30:53 -07001483 case GET_DISPLAY_COLOR_MODES: {
1484 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Peiyong Lina52f0292018-03-14 17:26:31 -07001485 Vector<ColorMode> colorModes;
Michael Wright28f24d02016-07-12 13:30:53 -07001486 sp<IBinder> display = nullptr;
1487 status_t result = data.readStrongBinder(&display);
1488 if (result != NO_ERROR) {
1489 ALOGE("getDisplayColorModes failed to readStrongBinder: %d", result);
1490 return result;
1491 }
1492 result = getDisplayColorModes(display, &colorModes);
1493 reply->writeInt32(result);
1494 if (result == NO_ERROR) {
1495 reply->writeUint32(static_cast<uint32_t>(colorModes.size()));
1496 for (size_t i = 0; i < colorModes.size(); ++i) {
Peiyong Lina52f0292018-03-14 17:26:31 -07001497 reply->writeInt32(static_cast<int32_t>(colorModes[i]));
Michael Wright28f24d02016-07-12 13:30:53 -07001498 }
1499 }
1500 return NO_ERROR;
1501 }
Daniel Solomon42d04562019-01-20 21:03:19 -08001502 case GET_DISPLAY_NATIVE_PRIMARIES: {
1503 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1504 ui::DisplayPrimaries primaries;
1505 sp<IBinder> display = nullptr;
1506
1507 status_t result = data.readStrongBinder(&display);
1508 if (result != NO_ERROR) {
1509 ALOGE("getDisplayNativePrimaries failed to readStrongBinder: %d", result);
1510 return result;
1511 }
1512
1513 result = getDisplayNativePrimaries(display, primaries);
1514 reply->writeInt32(result);
1515 if (result == NO_ERROR) {
1516 memcpy(reply->writeInplace(sizeof(ui::DisplayPrimaries)), &primaries,
1517 sizeof(ui::DisplayPrimaries));
1518 }
1519
1520 return NO_ERROR;
1521 }
Michael Wright28f24d02016-07-12 13:30:53 -07001522 case GET_ACTIVE_COLOR_MODE: {
1523 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1524 sp<IBinder> display = nullptr;
1525 status_t result = data.readStrongBinder(&display);
1526 if (result != NO_ERROR) {
1527 ALOGE("getActiveColorMode failed to readStrongBinder: %d", result);
1528 return result;
1529 }
Peiyong Lina52f0292018-03-14 17:26:31 -07001530 ColorMode colorMode = getActiveColorMode(display);
Michael Wright28f24d02016-07-12 13:30:53 -07001531 result = reply->writeInt32(static_cast<int32_t>(colorMode));
1532 return result;
1533 }
1534 case SET_ACTIVE_COLOR_MODE: {
1535 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1536 sp<IBinder> display = nullptr;
1537 status_t result = data.readStrongBinder(&display);
1538 if (result != NO_ERROR) {
1539 ALOGE("getActiveColorMode failed to readStrongBinder: %d", result);
1540 return result;
1541 }
1542 int32_t colorModeInt = 0;
1543 result = data.readInt32(&colorModeInt);
1544 if (result != NO_ERROR) {
1545 ALOGE("setActiveColorMode failed to readInt32: %d", result);
1546 return result;
1547 }
1548 result = setActiveColorMode(display,
Peiyong Lina52f0292018-03-14 17:26:31 -07001549 static_cast<ColorMode>(colorModeInt));
Michael Wright28f24d02016-07-12 13:30:53 -07001550 result = reply->writeInt32(result);
1551 return result;
1552 }
Galia Peycheva5492cb52019-10-30 14:13:16 +01001553
1554 case GET_AUTO_LOW_LATENCY_MODE_SUPPORT: {
1555 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1556 sp<IBinder> display = nullptr;
1557 status_t result = data.readStrongBinder(&display);
1558 if (result != NO_ERROR) {
1559 ALOGE("getAutoLowLatencyModeSupport failed to readStrongBinder: %d", result);
1560 return result;
1561 }
1562 bool supported = false;
1563 result = getAutoLowLatencyModeSupport(display, &supported);
1564 if (result == NO_ERROR) {
1565 result = reply->writeBool(supported);
1566 }
1567 return result;
1568 }
1569
1570 case SET_AUTO_LOW_LATENCY_MODE: {
1571 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1572 sp<IBinder> display = nullptr;
1573 status_t result = data.readStrongBinder(&display);
1574 if (result != NO_ERROR) {
1575 ALOGE("setAutoLowLatencyMode failed to readStrongBinder: %d", result);
1576 return result;
1577 }
1578 bool setAllm = false;
1579 result = data.readBool(&setAllm);
1580 if (result != NO_ERROR) {
1581 ALOGE("setAutoLowLatencyMode failed to readBool: %d", result);
1582 return result;
1583 }
1584 setAutoLowLatencyMode(display, setAllm);
1585 return result;
1586 }
1587
1588 case GET_GAME_CONTENT_TYPE_SUPPORT: {
1589 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1590 sp<IBinder> display = nullptr;
1591 status_t result = data.readStrongBinder(&display);
1592 if (result != NO_ERROR) {
1593 ALOGE("getGameContentTypeSupport failed to readStrongBinder: %d", result);
1594 return result;
1595 }
1596 bool supported = false;
1597 result = getGameContentTypeSupport(display, &supported);
1598 if (result == NO_ERROR) {
1599 result = reply->writeBool(supported);
1600 }
1601 return result;
1602 }
1603
1604 case SET_GAME_CONTENT_TYPE: {
1605 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1606 sp<IBinder> display = nullptr;
1607 status_t result = data.readStrongBinder(&display);
1608 if (result != NO_ERROR) {
1609 ALOGE("setGameContentType failed to readStrongBinder: %d", result);
1610 return result;
1611 }
1612 bool setGameContentTypeOn = false;
1613 result = data.readBool(&setGameContentTypeOn);
1614 if (result != NO_ERROR) {
1615 ALOGE("setGameContentType failed to readBool: %d", result);
1616 return result;
1617 }
1618 setGameContentType(display, setGameContentTypeOn);
1619 return result;
1620 }
1621
Svetoslavd85084b2014-03-20 10:28:31 -07001622 case CLEAR_ANIMATION_FRAME_STATS: {
1623 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1624 status_t result = clearAnimationFrameStats();
1625 reply->writeInt32(result);
1626 return NO_ERROR;
1627 }
1628 case GET_ANIMATION_FRAME_STATS: {
1629 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1630 FrameStats stats;
1631 status_t result = getAnimationFrameStats(&stats);
1632 reply->write(stats);
1633 reply->writeInt32(result);
1634 return NO_ERROR;
1635 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001636 case SET_POWER_MODE: {
1637 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1638 sp<IBinder> display = data.readStrongBinder();
1639 int32_t mode = data.readInt32();
1640 setPowerMode(display, mode);
1641 return NO_ERROR;
1642 }
Dan Stozac4f471e2016-03-24 09:31:08 -07001643 case GET_HDR_CAPABILITIES: {
1644 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1645 sp<IBinder> display = nullptr;
1646 status_t result = data.readStrongBinder(&display);
1647 if (result != NO_ERROR) {
1648 ALOGE("getHdrCapabilities failed to readStrongBinder: %d",
1649 result);
1650 return result;
1651 }
1652 HdrCapabilities capabilities;
1653 result = getHdrCapabilities(display, &capabilities);
1654 reply->writeInt32(result);
1655 if (result == NO_ERROR) {
Mathias Agopiane1f5e6f2017-02-06 16:34:41 -08001656 reply->write(capabilities);
Dan Stozac4f471e2016-03-24 09:31:08 -07001657 }
1658 return NO_ERROR;
1659 }
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001660 case ENABLE_VSYNC_INJECTIONS: {
1661 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1662 bool enable = false;
1663 status_t result = data.readBool(&enable);
1664 if (result != NO_ERROR) {
1665 ALOGE("enableVSyncInjections failed to readBool: %d", result);
1666 return result;
1667 }
1668 return enableVSyncInjections(enable);
1669 }
1670 case INJECT_VSYNC: {
1671 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1672 int64_t when = 0;
1673 status_t result = data.readInt64(&when);
1674 if (result != NO_ERROR) {
1675 ALOGE("enableVSyncInjections failed to readInt64: %d", result);
1676 return result;
1677 }
1678 return injectVSync(when);
1679 }
Kalle Raitaa099a242017-01-11 11:17:29 -08001680 case GET_LAYER_DEBUG_INFO: {
1681 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1682 std::vector<LayerDebugInfo> outLayers;
1683 status_t result = getLayerDebugInfo(&outLayers);
1684 reply->writeInt32(result);
1685 if (result == NO_ERROR)
1686 {
1687 result = reply->writeParcelableVector(outLayers);
1688 }
1689 return result;
1690 }
Peiyong Lin0256f722018-08-31 15:45:10 -07001691 case GET_COMPOSITION_PREFERENCE: {
1692 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Peiyong Linc6780972018-10-28 15:24:08 -07001693 ui::Dataspace defaultDataspace;
1694 ui::PixelFormat defaultPixelFormat;
1695 ui::Dataspace wideColorGamutDataspace;
1696 ui::PixelFormat wideColorGamutPixelFormat;
1697 status_t error =
1698 getCompositionPreference(&defaultDataspace, &defaultPixelFormat,
1699 &wideColorGamutDataspace, &wideColorGamutPixelFormat);
Peiyong Lin0256f722018-08-31 15:45:10 -07001700 reply->writeInt32(error);
1701 if (error == NO_ERROR) {
Peiyong Linc6780972018-10-28 15:24:08 -07001702 reply->writeInt32(static_cast<int32_t>(defaultDataspace));
1703 reply->writeInt32(static_cast<int32_t>(defaultPixelFormat));
1704 reply->writeInt32(static_cast<int32_t>(wideColorGamutDataspace));
Peiyong Linaa3da6a2018-12-12 02:48:43 -08001705 reply->writeInt32(static_cast<int32_t>(wideColorGamutPixelFormat));
Peiyong Lin0256f722018-08-31 15:45:10 -07001706 }
Peiyong Lin3c2791e2019-01-14 17:05:18 -08001707 return error;
Peiyong Lin0256f722018-08-31 15:45:10 -07001708 }
Ady Abraham37965d42018-11-01 13:43:32 -07001709 case GET_COLOR_MANAGEMENT: {
Ady Abraham2a6ab2a2018-10-26 14:25:30 -07001710 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Ady Abraham37965d42018-11-01 13:43:32 -07001711 bool result;
1712 status_t error = getColorManagement(&result);
1713 if (error == NO_ERROR) {
1714 reply->writeBool(result);
1715 }
Peiyong Lin3c2791e2019-01-14 17:05:18 -08001716 return error;
Ady Abraham2a6ab2a2018-10-26 14:25:30 -07001717 }
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001718 case GET_DISPLAYED_CONTENT_SAMPLING_ATTRIBUTES: {
1719 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1720
1721 sp<IBinder> display = data.readStrongBinder();
1722 ui::PixelFormat format;
1723 ui::Dataspace dataspace;
1724 uint8_t component = 0;
1725 auto result =
1726 getDisplayedContentSamplingAttributes(display, &format, &dataspace, &component);
1727 if (result == NO_ERROR) {
1728 reply->writeUint32(static_cast<uint32_t>(format));
1729 reply->writeUint32(static_cast<uint32_t>(dataspace));
1730 reply->writeUint32(static_cast<uint32_t>(component));
1731 }
1732 return result;
1733 }
Kevin DuBois74e53772018-11-19 10:52:38 -08001734 case SET_DISPLAY_CONTENT_SAMPLING_ENABLED: {
1735 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1736
1737 sp<IBinder> display = nullptr;
1738 bool enable = false;
1739 int8_t componentMask = 0;
1740 uint64_t maxFrames = 0;
1741 status_t result = data.readStrongBinder(&display);
1742 if (result != NO_ERROR) {
1743 ALOGE("setDisplayContentSamplingEnabled failure in reading Display token: %d",
1744 result);
1745 return result;
1746 }
1747
1748 result = data.readBool(&enable);
1749 if (result != NO_ERROR) {
1750 ALOGE("setDisplayContentSamplingEnabled failure in reading enable: %d", result);
1751 return result;
1752 }
1753
1754 result = data.readByte(static_cast<int8_t*>(&componentMask));
1755 if (result != NO_ERROR) {
1756 ALOGE("setDisplayContentSamplingEnabled failure in reading component mask: %d",
1757 result);
1758 return result;
1759 }
1760
1761 result = data.readUint64(&maxFrames);
1762 if (result != NO_ERROR) {
1763 ALOGE("setDisplayContentSamplingEnabled failure in reading max frames: %d", result);
1764 return result;
1765 }
1766
1767 return setDisplayContentSamplingEnabled(display, enable,
1768 static_cast<uint8_t>(componentMask), maxFrames);
1769 }
Kevin DuBois1d4249a2018-08-29 10:45:14 -07001770 case GET_DISPLAYED_CONTENT_SAMPLE: {
1771 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1772
1773 sp<IBinder> display = data.readStrongBinder();
1774 uint64_t maxFrames = 0;
1775 uint64_t timestamp = 0;
1776
1777 status_t result = data.readUint64(&maxFrames);
1778 if (result != NO_ERROR) {
1779 ALOGE("getDisplayedContentSample failure in reading max frames: %d", result);
1780 return result;
1781 }
1782
1783 result = data.readUint64(&timestamp);
1784 if (result != NO_ERROR) {
1785 ALOGE("getDisplayedContentSample failure in reading timestamp: %d", result);
1786 return result;
1787 }
1788
1789 DisplayedFrameStats stats;
1790 result = getDisplayedContentSample(display, maxFrames, timestamp, &stats);
1791 if (result == NO_ERROR) {
1792 reply->writeUint64(stats.numFrames);
Kevin DuBois1d4c6a62018-12-12 13:59:46 -08001793 reply->writeUint64Vector(stats.component_0_sample);
1794 reply->writeUint64Vector(stats.component_1_sample);
1795 reply->writeUint64Vector(stats.component_2_sample);
1796 reply->writeUint64Vector(stats.component_3_sample);
Kevin DuBois1d4249a2018-08-29 10:45:14 -07001797 }
1798 return result;
1799 }
Peiyong Lin3c2791e2019-01-14 17:05:18 -08001800 case GET_PROTECTED_CONTENT_SUPPORT: {
1801 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1802 bool result;
1803 status_t error = getProtectedContentSupport(&result);
1804 if (error == NO_ERROR) {
1805 reply->writeBool(result);
1806 }
1807 return error;
1808 }
Peiyong Lin4f3fddf2019-01-24 17:21:24 -08001809 case IS_WIDE_COLOR_DISPLAY: {
1810 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1811 sp<IBinder> display = nullptr;
1812 status_t error = data.readStrongBinder(&display);
1813 if (error != NO_ERROR) {
1814 return error;
1815 }
1816 bool result;
1817 error = isWideColorDisplay(display, &result);
1818 if (error == NO_ERROR) {
1819 reply->writeBool(result);
1820 }
1821 return error;
1822 }
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001823 case GET_PHYSICAL_DISPLAY_IDS: {
1824 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Marin Shalamanova524a092020-07-27 21:39:55 +02001825 std::vector<PhysicalDisplayId> ids = getPhysicalDisplayIds();
1826 std::vector<uint64_t> rawIds(ids.size());
1827 std::transform(ids.begin(), ids.end(), rawIds.begin(),
1828 [](PhysicalDisplayId id) { return id.value; });
1829 return reply->writeUint64Vector(rawIds);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001830 }
Dan Stoza84ab9372018-12-17 15:27:57 -08001831 case ADD_REGION_SAMPLING_LISTENER: {
1832 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1833 Rect samplingArea;
1834 status_t result = data.read(samplingArea);
1835 if (result != NO_ERROR) {
1836 ALOGE("addRegionSamplingListener: Failed to read sampling area");
1837 return result;
1838 }
1839 sp<IBinder> stopLayerHandle;
1840 result = data.readNullableStrongBinder(&stopLayerHandle);
1841 if (result != NO_ERROR) {
1842 ALOGE("addRegionSamplingListener: Failed to read stop layer handle");
1843 return result;
1844 }
1845 sp<IRegionSamplingListener> listener;
1846 result = data.readNullableStrongBinder(&listener);
1847 if (result != NO_ERROR) {
1848 ALOGE("addRegionSamplingListener: Failed to read listener");
1849 return result;
1850 }
1851 return addRegionSamplingListener(samplingArea, stopLayerHandle, listener);
1852 }
1853 case REMOVE_REGION_SAMPLING_LISTENER: {
1854 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1855 sp<IRegionSamplingListener> listener;
1856 status_t result = data.readNullableStrongBinder(&listener);
1857 if (result != NO_ERROR) {
1858 ALOGE("removeRegionSamplingListener: Failed to read listener");
1859 return result;
1860 }
1861 return removeRegionSamplingListener(listener);
1862 }
Ana Krulec0782b882019-10-15 17:34:54 -07001863 case SET_DESIRED_DISPLAY_CONFIG_SPECS: {
1864 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1865 sp<IBinder> displayToken = data.readStrongBinder();
Ana Kruleced3a8cc2019-11-14 00:55:07 +01001866 int32_t defaultConfig;
1867 status_t result = data.readInt32(&defaultConfig);
Ana Krulec0782b882019-10-15 17:34:54 -07001868 if (result != NO_ERROR) {
Ana Kruleced3a8cc2019-11-14 00:55:07 +01001869 ALOGE("setDesiredDisplayConfigSpecs: failed to read defaultConfig: %d", result);
Ana Krulec0782b882019-10-15 17:34:54 -07001870 return result;
1871 }
Steven Thomasf734df42020-04-13 21:09:28 -07001872 float primaryRefreshRateMin;
1873 result = data.readFloat(&primaryRefreshRateMin);
Ana Krulec0782b882019-10-15 17:34:54 -07001874 if (result != NO_ERROR) {
Steven Thomasf734df42020-04-13 21:09:28 -07001875 ALOGE("setDesiredDisplayConfigSpecs: failed to read primaryRefreshRateMin: %d",
1876 result);
Ana Krulec0782b882019-10-15 17:34:54 -07001877 return result;
1878 }
Steven Thomasf734df42020-04-13 21:09:28 -07001879 float primaryRefreshRateMax;
1880 result = data.readFloat(&primaryRefreshRateMax);
Ana Krulec0782b882019-10-15 17:34:54 -07001881 if (result != NO_ERROR) {
Steven Thomasf734df42020-04-13 21:09:28 -07001882 ALOGE("setDesiredDisplayConfigSpecs: failed to read primaryRefreshRateMax: %d",
1883 result);
Ana Krulec0782b882019-10-15 17:34:54 -07001884 return result;
1885 }
Steven Thomasf734df42020-04-13 21:09:28 -07001886 float appRequestRefreshRateMin;
1887 result = data.readFloat(&appRequestRefreshRateMin);
1888 if (result != NO_ERROR) {
1889 ALOGE("setDesiredDisplayConfigSpecs: failed to read appRequestRefreshRateMin: %d",
1890 result);
1891 return result;
1892 }
1893 float appRequestRefreshRateMax;
1894 result = data.readFloat(&appRequestRefreshRateMax);
1895 if (result != NO_ERROR) {
1896 ALOGE("setDesiredDisplayConfigSpecs: failed to read appRequestRefreshRateMax: %d",
1897 result);
1898 return result;
1899 }
1900 result =
1901 setDesiredDisplayConfigSpecs(displayToken, defaultConfig, primaryRefreshRateMin,
1902 primaryRefreshRateMax, appRequestRefreshRateMin,
1903 appRequestRefreshRateMax);
Ana Krulec0782b882019-10-15 17:34:54 -07001904 if (result != NO_ERROR) {
1905 ALOGE("setDesiredDisplayConfigSpecs: failed to call setDesiredDisplayConfigSpecs: "
1906 "%d",
1907 result);
1908 return result;
1909 }
1910 reply->writeInt32(result);
1911 return result;
1912 }
Ana Krulec234bb162019-11-10 22:55:55 +01001913 case GET_DESIRED_DISPLAY_CONFIG_SPECS: {
1914 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1915 sp<IBinder> displayToken = data.readStrongBinder();
Ana Kruleced3a8cc2019-11-14 00:55:07 +01001916 int32_t defaultConfig;
Steven Thomasf734df42020-04-13 21:09:28 -07001917 float primaryRefreshRateMin;
1918 float primaryRefreshRateMax;
1919 float appRequestRefreshRateMin;
1920 float appRequestRefreshRateMax;
Ana Krulec234bb162019-11-10 22:55:55 +01001921
Steven Thomasf734df42020-04-13 21:09:28 -07001922 status_t result =
1923 getDesiredDisplayConfigSpecs(displayToken, &defaultConfig,
1924 &primaryRefreshRateMin, &primaryRefreshRateMax,
1925 &appRequestRefreshRateMin,
1926 &appRequestRefreshRateMax);
Ana Krulec234bb162019-11-10 22:55:55 +01001927 if (result != NO_ERROR) {
1928 ALOGE("getDesiredDisplayConfigSpecs: failed to get getDesiredDisplayConfigSpecs: "
1929 "%d",
1930 result);
1931 return result;
1932 }
1933
Ana Kruleced3a8cc2019-11-14 00:55:07 +01001934 result = reply->writeInt32(defaultConfig);
Ana Krulec234bb162019-11-10 22:55:55 +01001935 if (result != NO_ERROR) {
Ana Kruleced3a8cc2019-11-14 00:55:07 +01001936 ALOGE("getDesiredDisplayConfigSpecs: failed to write defaultConfig: %d", result);
Ana Krulec234bb162019-11-10 22:55:55 +01001937 return result;
1938 }
Steven Thomasf734df42020-04-13 21:09:28 -07001939 result = reply->writeFloat(primaryRefreshRateMin);
Ana Krulec234bb162019-11-10 22:55:55 +01001940 if (result != NO_ERROR) {
Steven Thomasf734df42020-04-13 21:09:28 -07001941 ALOGE("getDesiredDisplayConfigSpecs: failed to write primaryRefreshRateMin: %d",
1942 result);
Ana Krulec234bb162019-11-10 22:55:55 +01001943 return result;
1944 }
Steven Thomasf734df42020-04-13 21:09:28 -07001945 result = reply->writeFloat(primaryRefreshRateMax);
Ana Krulec234bb162019-11-10 22:55:55 +01001946 if (result != NO_ERROR) {
Steven Thomasf734df42020-04-13 21:09:28 -07001947 ALOGE("getDesiredDisplayConfigSpecs: failed to write primaryRefreshRateMax: %d",
1948 result);
1949 return result;
1950 }
1951 result = reply->writeFloat(appRequestRefreshRateMin);
1952 if (result != NO_ERROR) {
1953 ALOGE("getDesiredDisplayConfigSpecs: failed to write appRequestRefreshRateMin: %d",
1954 result);
1955 return result;
1956 }
1957 result = reply->writeFloat(appRequestRefreshRateMax);
1958 if (result != NO_ERROR) {
1959 ALOGE("getDesiredDisplayConfigSpecs: failed to write appRequestRefreshRateMax: %d",
1960 result);
Ana Krulec234bb162019-11-10 22:55:55 +01001961 return result;
1962 }
1963 reply->writeInt32(result);
1964 return result;
1965 }
Dan Gittik57e63c52019-01-18 16:37:54 +00001966 case GET_DISPLAY_BRIGHTNESS_SUPPORT: {
1967 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1968 sp<IBinder> displayToken;
1969 status_t error = data.readNullableStrongBinder(&displayToken);
1970 if (error != NO_ERROR) {
1971 ALOGE("getDisplayBrightnessSupport: failed to read display token: %d", error);
1972 return error;
1973 }
1974 bool support = false;
1975 error = getDisplayBrightnessSupport(displayToken, &support);
1976 reply->writeBool(support);
1977 return error;
1978 }
1979 case SET_DISPLAY_BRIGHTNESS: {
1980 CHECK_INTERFACE(ISurfaceComposer, data, reply);
1981 sp<IBinder> displayToken;
1982 status_t error = data.readNullableStrongBinder(&displayToken);
1983 if (error != NO_ERROR) {
1984 ALOGE("setDisplayBrightness: failed to read display token: %d", error);
1985 return error;
1986 }
1987 float brightness = -1.0f;
1988 error = data.readFloat(&brightness);
1989 if (error != NO_ERROR) {
1990 ALOGE("setDisplayBrightness: failed to read brightness: %d", error);
1991 return error;
1992 }
1993 return setDisplayBrightness(displayToken, brightness);
1994 }
Lais Andrade3a6e47d2020-04-02 11:20:16 +01001995 case NOTIFY_POWER_BOOST: {
Ady Abraham8532d012019-05-08 14:50:56 -07001996 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Lais Andrade3a6e47d2020-04-02 11:20:16 +01001997 int32_t boostId;
1998 status_t error = data.readInt32(&boostId);
Ady Abraham8532d012019-05-08 14:50:56 -07001999 if (error != NO_ERROR) {
Lais Andrade3a6e47d2020-04-02 11:20:16 +01002000 ALOGE("notifyPowerBoost: failed to read boostId: %d", error);
Ady Abraham8532d012019-05-08 14:50:56 -07002001 return error;
2002 }
Lais Andrade3a6e47d2020-04-02 11:20:16 +01002003 return notifyPowerBoost(boostId);
Ady Abraham8532d012019-05-08 14:50:56 -07002004 }
Vishnu Nairb13bb952019-11-15 10:24:08 -08002005 case SET_GLOBAL_SHADOW_SETTINGS: {
2006 CHECK_INTERFACE(ISurfaceComposer, data, reply);
2007
2008 std::vector<float> shadowConfig;
2009 status_t error = data.readFloatVector(&shadowConfig);
2010 if (error != NO_ERROR || shadowConfig.size() != 11) {
2011 ALOGE("setGlobalShadowSettings: failed to read shadowConfig: %d", error);
2012 return error;
2013 }
2014
2015 half4 ambientColor = {shadowConfig[0], shadowConfig[1], shadowConfig[2],
2016 shadowConfig[3]};
2017 half4 spotColor = {shadowConfig[4], shadowConfig[5], shadowConfig[6], shadowConfig[7]};
2018 float lightPosY = shadowConfig[8];
2019 float lightPosZ = shadowConfig[9];
2020 float lightRadius = shadowConfig[10];
2021 return setGlobalShadowSettings(ambientColor, spotColor, lightPosY, lightPosZ,
2022 lightRadius);
2023 }
Steven Thomas62a4cf82020-01-31 12:04:03 -08002024 case SET_FRAME_RATE: {
2025 CHECK_INTERFACE(ISurfaceComposer, data, reply);
2026 sp<IBinder> binder;
2027 status_t err = data.readStrongBinder(&binder);
2028 if (err != NO_ERROR) {
2029 ALOGE("setFrameRate: failed to read strong binder: %s (%d)", strerror(-err), -err);
2030 return err;
2031 }
2032 sp<IGraphicBufferProducer> surface = interface_cast<IGraphicBufferProducer>(binder);
2033 if (!surface) {
2034 ALOGE("setFrameRate: failed to cast to IGraphicBufferProducer: %s (%d)",
2035 strerror(-err), -err);
2036 return err;
2037 }
2038 float frameRate;
2039 err = data.readFloat(&frameRate);
2040 if (err != NO_ERROR) {
2041 ALOGE("setFrameRate: failed to read float: %s (%d)", strerror(-err), -err);
2042 return err;
2043 }
2044 int8_t compatibility;
2045 err = data.readByte(&compatibility);
2046 if (err != NO_ERROR) {
2047 ALOGE("setFrameRate: failed to read byte: %s (%d)", strerror(-err), -err);
2048 return err;
2049 }
2050 status_t result = setFrameRate(surface, frameRate, compatibility);
2051 reply->writeInt32(result);
2052 return NO_ERROR;
2053 }
Steven Thomasd4071902020-03-24 16:02:53 -07002054 case ACQUIRE_FRAME_RATE_FLEXIBILITY_TOKEN: {
2055 CHECK_INTERFACE(ISurfaceComposer, data, reply);
2056 sp<IBinder> token;
2057 status_t result = acquireFrameRateFlexibilityToken(&token);
2058 reply->writeInt32(result);
2059 if (result == NO_ERROR) {
2060 reply->writeStrongBinder(token);
2061 }
2062 return NO_ERROR;
2063 }
Jesse Hall6c913be2013-08-08 12:15:49 -07002064 default: {
Mathias Agopian83c04462009-05-22 19:00:22 -07002065 return BBinder::onTransact(code, data, reply, flags);
Jesse Hall6c913be2013-08-08 12:15:49 -07002066 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002067 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002068}
2069
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002070} // namespace android