blob: 854084e7f95a3b8e9a8afa3764c39f68ce848bf3 [file] [log] [blame]
chaviw1d044282017-09-27 12:19:28 -07001/*
2 * Copyright (C) 2017 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 */
chaviw5bf9d682017-10-25 16:31:08 -070016#include <android-base/stringprintf.h>
chaviw1d044282017-09-27 12:19:28 -070017#include <layerproto/LayerProtoParser.h>
chaviw5bf9d682017-10-25 16:31:08 -070018#include <ui/DebugUtils.h>
19
20using android::base::StringAppendF;
21using android::base::StringPrintf;
chaviw1d044282017-09-27 12:19:28 -070022
23namespace android {
24namespace surfaceflinger {
chaviw5bf9d682017-10-25 16:31:08 -070025
chaviw7ba019b2018-03-14 13:28:39 -070026bool sortLayers(LayerProtoParser::Layer* lhs, const LayerProtoParser::Layer* rhs) {
chaviw1d044282017-09-27 12:19:28 -070027 uint32_t ls = lhs->layerStack;
28 uint32_t rs = rhs->layerStack;
29 if (ls != rs) return ls < rs;
30
Robert Carr83f8e4d2017-11-15 14:37:37 -080031 int32_t lz = lhs->z;
32 int32_t rz = rhs->z;
33 if (lz != rz) {
Chia-I Wub4e0a832018-09-21 12:18:40 -070034 return lz < rz;
Robert Carr83f8e4d2017-11-15 14:37:37 -080035 }
chaviw1d044282017-09-27 12:19:28 -070036
37 return lhs->id < rhs->id;
38}
39
Diwas Sharma2401daf2023-09-01 00:45:24 +000040LayerProtoParser::LayerTree LayerProtoParser::generateLayerTree(const LayersProto& layersProto) {
Chia-I Wu2f884132018-09-13 15:17:58 -070041 LayerTree layerTree;
42 layerTree.allLayers = generateLayerList(layersProto);
chaviw1d044282017-09-27 12:19:28 -070043
Chia-I Wu2f884132018-09-13 15:17:58 -070044 // find and sort the top-level layers
45 for (Layer& layer : layerTree.allLayers) {
46 if (layer.parent == nullptr) {
47 layerTree.topLevelLayers.push_back(&layer);
chaviw7ba019b2018-03-14 13:28:39 -070048 }
49 }
Chia-I Wu2f884132018-09-13 15:17:58 -070050 std::sort(layerTree.topLevelLayers.begin(), layerTree.topLevelLayers.end(), sortLayers);
chaviw1d044282017-09-27 12:19:28 -070051
Chia-I Wu2f884132018-09-13 15:17:58 -070052 return layerTree;
chaviw1d044282017-09-27 12:19:28 -070053}
54
Chia-I Wu2f884132018-09-13 15:17:58 -070055std::vector<LayerProtoParser::Layer> LayerProtoParser::generateLayerList(
Diwas Sharma2401daf2023-09-01 00:45:24 +000056 const LayersProto& layersProto) {
Chia-I Wu2f884132018-09-13 15:17:58 -070057 std::vector<Layer> layerList;
chaviw1d044282017-09-27 12:19:28 -070058 std::unordered_map<int32_t, Layer*> layerMap;
59
Chia-I Wu2f884132018-09-13 15:17:58 -070060 // build the layer list and the layer map
61 layerList.reserve(layersProto.layers_size());
62 layerMap.reserve(layersProto.layers_size());
chaviw1d044282017-09-27 12:19:28 -070063 for (int i = 0; i < layersProto.layers_size(); i++) {
Chia-I Wu2f884132018-09-13 15:17:58 -070064 layerList.emplace_back(generateLayer(layersProto.layers(i)));
65 // this works because layerList never changes capacity
66 layerMap[layerList.back().id] = &layerList.back();
chaviw1d044282017-09-27 12:19:28 -070067 }
68
Chia-I Wu2f884132018-09-13 15:17:58 -070069 // fix up children and relatives
chaviw1d044282017-09-27 12:19:28 -070070 for (int i = 0; i < layersProto.layers_size(); i++) {
Chia-I Wu2f884132018-09-13 15:17:58 -070071 updateChildrenAndRelative(layersProto.layers(i), layerMap);
chaviw1d044282017-09-27 12:19:28 -070072 }
73
Chia-I Wu2f884132018-09-13 15:17:58 -070074 return layerList;
chaviw1d044282017-09-27 12:19:28 -070075}
76
Diwas Sharma2401daf2023-09-01 00:45:24 +000077LayerProtoParser::Layer LayerProtoParser::generateLayer(const LayerProto& layerProto) {
Chia-I Wu2f884132018-09-13 15:17:58 -070078 Layer layer;
79 layer.id = layerProto.id();
80 layer.name = layerProto.name();
81 layer.type = layerProto.type();
82 layer.transparentRegion = generateRegion(layerProto.transparent_region());
83 layer.visibleRegion = generateRegion(layerProto.visible_region());
84 layer.damageRegion = generateRegion(layerProto.damage_region());
85 layer.layerStack = layerProto.layer_stack();
86 layer.z = layerProto.z();
87 layer.position = {layerProto.position().x(), layerProto.position().y()};
88 layer.requestedPosition = {layerProto.requested_position().x(),
chaviw1d044282017-09-27 12:19:28 -070089 layerProto.requested_position().y()};
Chia-I Wu2f884132018-09-13 15:17:58 -070090 layer.size = {layerProto.size().w(), layerProto.size().h()};
91 layer.crop = generateRect(layerProto.crop());
92 layer.isOpaque = layerProto.is_opaque();
93 layer.invalidate = layerProto.invalidate();
94 layer.dataspace = layerProto.dataspace();
95 layer.pixelFormat = layerProto.pixel_format();
96 layer.color = {layerProto.color().r(), layerProto.color().g(), layerProto.color().b(),
chaviw1d044282017-09-27 12:19:28 -070097 layerProto.color().a()};
Chia-I Wu2f884132018-09-13 15:17:58 -070098 layer.requestedColor = {layerProto.requested_color().r(), layerProto.requested_color().g(),
chaviw1d044282017-09-27 12:19:28 -070099 layerProto.requested_color().b(), layerProto.requested_color().a()};
Chia-I Wu2f884132018-09-13 15:17:58 -0700100 layer.flags = layerProto.flags();
101 layer.transform = generateTransform(layerProto.transform());
102 layer.requestedTransform = generateTransform(layerProto.requested_transform());
103 layer.activeBuffer = generateActiveBuffer(layerProto.active_buffer());
104 layer.bufferTransform = generateTransform(layerProto.buffer_transform());
105 layer.queuedFrames = layerProto.queued_frames();
106 layer.refreshPending = layerProto.refresh_pending();
Chia-I Wu2f884132018-09-13 15:17:58 -0700107 layer.isProtected = layerProto.is_protected();
Winson Chunga30f7c92021-06-29 15:42:56 -0700108 layer.isTrustedOverlay = layerProto.is_trusted_overlay();
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700109 layer.cornerRadius = layerProto.corner_radius();
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800110 layer.backgroundBlurRadius = layerProto.background_blur_radius();
Evan Rosky1f6d6d52018-12-06 10:47:26 -0800111 for (const auto& entry : layerProto.metadata()) {
112 const std::string& dataStr = entry.second;
113 std::vector<uint8_t>& outData = layer.metadata.mMap[entry.first];
114 outData.resize(dataStr.size());
115 memcpy(outData.data(), dataStr.data(), dataStr.size());
116 }
Vishnu Nair95a1ed42019-12-06 12:25:11 -0800117 layer.cornerRadiusCrop = generateFloatRect(layerProto.corner_radius_crop());
118 layer.shadowRadius = layerProto.shadow_radius();
chaviw250bcbb2020-08-05 11:17:54 -0700119 layer.ownerUid = layerProto.owner_uid();
chaviw1d044282017-09-27 12:19:28 -0700120 return layer;
121}
122
Diwas Sharma2401daf2023-09-01 00:45:24 +0000123LayerProtoParser::Region LayerProtoParser::generateRegion(const RegionProto& regionProto) {
chaviw1d044282017-09-27 12:19:28 -0700124 LayerProtoParser::Region region;
chaviw1d044282017-09-27 12:19:28 -0700125 for (int i = 0; i < regionProto.rect_size(); i++) {
Diwas Sharma2401daf2023-09-01 00:45:24 +0000126 const RectProto& rectProto = regionProto.rect(i);
chaviw1d044282017-09-27 12:19:28 -0700127 region.rects.push_back(generateRect(rectProto));
128 }
129
130 return region;
131}
132
Diwas Sharma2401daf2023-09-01 00:45:24 +0000133LayerProtoParser::Rect LayerProtoParser::generateRect(const RectProto& rectProto) {
chaviw1d044282017-09-27 12:19:28 -0700134 LayerProtoParser::Rect rect;
135 rect.left = rectProto.left();
136 rect.top = rectProto.top();
137 rect.right = rectProto.right();
138 rect.bottom = rectProto.bottom();
139
140 return rect;
141}
142
Diwas Sharma2401daf2023-09-01 00:45:24 +0000143LayerProtoParser::FloatRect LayerProtoParser::generateFloatRect(const FloatRectProto& rectProto) {
Yiwei Zhang7124ad32018-02-21 13:02:45 -0800144 LayerProtoParser::FloatRect rect;
145 rect.left = rectProto.left();
146 rect.top = rectProto.top();
147 rect.right = rectProto.right();
148 rect.bottom = rectProto.bottom();
149
150 return rect;
151}
152
chaviw1d044282017-09-27 12:19:28 -0700153LayerProtoParser::Transform LayerProtoParser::generateTransform(
Diwas Sharma2401daf2023-09-01 00:45:24 +0000154 const TransformProto& transformProto) {
chaviw1d044282017-09-27 12:19:28 -0700155 LayerProtoParser::Transform transform;
156 transform.dsdx = transformProto.dsdx();
157 transform.dtdx = transformProto.dtdx();
158 transform.dsdy = transformProto.dsdy();
159 transform.dtdy = transformProto.dtdy();
160
161 return transform;
162}
163
164LayerProtoParser::ActiveBuffer LayerProtoParser::generateActiveBuffer(
Diwas Sharma2401daf2023-09-01 00:45:24 +0000165 const ActiveBufferProto& activeBufferProto) {
chaviw1d044282017-09-27 12:19:28 -0700166 LayerProtoParser::ActiveBuffer activeBuffer;
167 activeBuffer.width = activeBufferProto.width();
168 activeBuffer.height = activeBufferProto.height();
169 activeBuffer.stride = activeBufferProto.stride();
170 activeBuffer.format = activeBufferProto.format();
171
172 return activeBuffer;
173}
174
Diwas Sharma2401daf2023-09-01 00:45:24 +0000175void LayerProtoParser::updateChildrenAndRelative(const LayerProto& layerProto,
chaviw1d044282017-09-27 12:19:28 -0700176 std::unordered_map<int32_t, Layer*>& layerMap) {
177 auto currLayer = layerMap[layerProto.id()];
178
179 for (int i = 0; i < layerProto.children_size(); i++) {
180 if (layerMap.count(layerProto.children(i)) > 0) {
Chia-I Wu2f884132018-09-13 15:17:58 -0700181 currLayer->children.push_back(layerMap[layerProto.children(i)]);
chaviw1d044282017-09-27 12:19:28 -0700182 }
183 }
184
185 for (int i = 0; i < layerProto.relatives_size(); i++) {
186 if (layerMap.count(layerProto.relatives(i)) > 0) {
chaviw7ba019b2018-03-14 13:28:39 -0700187 currLayer->relatives.push_back(layerMap[layerProto.relatives(i)]);
chaviw1d044282017-09-27 12:19:28 -0700188 }
189 }
190
Diwas Sharmab194d7b2023-09-01 00:43:15 +0000191 if (layerProto.parent() != -1) {
chaviw1d044282017-09-27 12:19:28 -0700192 if (layerMap.count(layerProto.parent()) > 0) {
chaviw7ba019b2018-03-14 13:28:39 -0700193 currLayer->parent = layerMap[layerProto.parent()];
chaviw1d044282017-09-27 12:19:28 -0700194 }
195 }
196
Diwas Sharmab194d7b2023-09-01 00:43:15 +0000197 if (layerProto.z_order_relative_of() != -1) {
chaviw1d044282017-09-27 12:19:28 -0700198 if (layerMap.count(layerProto.z_order_relative_of()) > 0) {
chaviw7ba019b2018-03-14 13:28:39 -0700199 currLayer->zOrderRelativeOf = layerMap[layerProto.z_order_relative_of()];
chaviw1d044282017-09-27 12:19:28 -0700200 }
201 }
202}
203
Chia-I Wu2f884132018-09-13 15:17:58 -0700204std::string LayerProtoParser::layerTreeToString(const LayerTree& layerTree) {
chaviw1d044282017-09-27 12:19:28 -0700205 std::string result;
Chia-I Wu2f884132018-09-13 15:17:58 -0700206 for (const LayerProtoParser::Layer* layer : layerTree.topLevelLayers) {
chaviw1d044282017-09-27 12:19:28 -0700207 if (layer->zOrderRelativeOf != nullptr) {
208 continue;
209 }
Chia-I Wu2f884132018-09-13 15:17:58 -0700210 result.append(layerToString(layer));
chaviw1d044282017-09-27 12:19:28 -0700211 }
212
213 return result;
214}
215
Chia-I Wu2f884132018-09-13 15:17:58 -0700216std::string LayerProtoParser::layerToString(const LayerProtoParser::Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -0700217 std::string result;
218
chaviw7ba019b2018-03-14 13:28:39 -0700219 std::vector<Layer*> traverse(layer->relatives);
Chia-I Wu2f884132018-09-13 15:17:58 -0700220 for (LayerProtoParser::Layer* child : layer->children) {
chaviw1d044282017-09-27 12:19:28 -0700221 if (child->zOrderRelativeOf != nullptr) {
222 continue;
223 }
224
Chia-I Wu2f884132018-09-13 15:17:58 -0700225 traverse.push_back(child);
chaviw1d044282017-09-27 12:19:28 -0700226 }
227
228 std::sort(traverse.begin(), traverse.end(), sortLayers);
229
230 size_t i = 0;
231 for (; i < traverse.size(); i++) {
chaviw7ba019b2018-03-14 13:28:39 -0700232 auto& relative = traverse[i];
chaviw1d044282017-09-27 12:19:28 -0700233 if (relative->z >= 0) {
234 break;
235 }
Chia-I Wu2f884132018-09-13 15:17:58 -0700236 result.append(layerToString(relative));
chaviw1d044282017-09-27 12:19:28 -0700237 }
Chia-I Wu2f884132018-09-13 15:17:58 -0700238 result.append(layer->to_string());
chaviw1d044282017-09-27 12:19:28 -0700239 result.append("\n");
240 for (; i < traverse.size(); i++) {
chaviw7ba019b2018-03-14 13:28:39 -0700241 auto& relative = traverse[i];
Chia-I Wu2f884132018-09-13 15:17:58 -0700242 result.append(layerToString(relative));
chaviw1d044282017-09-27 12:19:28 -0700243 }
244
245 return result;
246}
247
chaviw5bf9d682017-10-25 16:31:08 -0700248std::string LayerProtoParser::ActiveBuffer::to_string() const {
249 return StringPrintf("[%4ux%4u:%4u,%s]", width, height, stride,
250 decodePixelFormat(format).c_str());
251}
252
253std::string LayerProtoParser::Transform::to_string() const {
254 return StringPrintf("[%.2f, %.2f][%.2f, %.2f]", static_cast<double>(dsdx),
255 static_cast<double>(dtdx), static_cast<double>(dsdy),
256 static_cast<double>(dtdy));
257}
258
259std::string LayerProtoParser::Rect::to_string() const {
260 return StringPrintf("[%3d, %3d, %3d, %3d]", left, top, right, bottom);
261}
262
Yiwei Zhang7124ad32018-02-21 13:02:45 -0800263std::string LayerProtoParser::FloatRect::to_string() const {
264 return StringPrintf("[%.2f, %.2f, %.2f, %.2f]", left, top, right, bottom);
265}
266
chaviw5bf9d682017-10-25 16:31:08 -0700267std::string LayerProtoParser::Region::to_string(const char* what) const {
268 std::string result =
269 StringPrintf(" Region %s (this=%lx count=%d)\n", what, static_cast<unsigned long>(id),
270 static_cast<int>(rects.size()));
271
272 for (auto& rect : rects) {
273 StringAppendF(&result, " %s\n", rect.to_string().c_str());
274 }
275
276 return result;
277}
278
279std::string LayerProtoParser::Layer::to_string() const {
280 std::string result;
chaviw250bcbb2020-08-05 11:17:54 -0700281 StringAppendF(&result, "+ %s (%s) uid=%d\n", type.c_str(), name.c_str(), ownerUid);
chaviw5bf9d682017-10-25 16:31:08 -0700282 result.append(transparentRegion.to_string("TransparentRegion").c_str());
283 result.append(visibleRegion.to_string("VisibleRegion").c_str());
284 result.append(damageRegion.to_string("SurfaceDamageRegion").c_str());
285
286 StringAppendF(&result, " layerStack=%4d, z=%9d, pos=(%g,%g), size=(%4d,%4d), ", layerStack,
287 z, static_cast<double>(position.x), static_cast<double>(position.y), size.x,
288 size.y);
289
Vishnu Nairdcce0e22018-08-23 08:35:19 -0700290 StringAppendF(&result, "crop=%s, ", crop.to_string().c_str());
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700291 StringAppendF(&result, "cornerRadius=%f, ", cornerRadius);
Peiyong Lin51598552019-04-17 14:09:22 -0700292 StringAppendF(&result, "isProtected=%1d, ", isProtected);
Winson Chunga30f7c92021-06-29 15:42:56 -0700293 StringAppendF(&result, "isTrustedOverlay=%1d, ", isTrustedOverlay);
chaviw5bf9d682017-10-25 16:31:08 -0700294 StringAppendF(&result, "isOpaque=%1d, invalidate=%1d, ", isOpaque, invalidate);
295 StringAppendF(&result, "dataspace=%s, ", dataspace.c_str());
Chia-I Wu1e043612018-03-01 09:45:09 -0800296 StringAppendF(&result, "defaultPixelFormat=%s, ", pixelFormat.c_str());
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800297 StringAppendF(&result, "backgroundBlurRadius=%1d, ", backgroundBlurRadius);
chaviw5bf9d682017-10-25 16:31:08 -0700298 StringAppendF(&result, "color=(%.3f,%.3f,%.3f,%.3f), flags=0x%08x, ",
299 static_cast<double>(color.r), static_cast<double>(color.g),
300 static_cast<double>(color.b), static_cast<double>(color.a), flags);
301 StringAppendF(&result, "tr=%s", transform.to_string().c_str());
302 result.append("\n");
303 StringAppendF(&result, " parent=%s\n", parent == nullptr ? "none" : parent->name.c_str());
304 StringAppendF(&result, " zOrderRelativeOf=%s\n",
305 zOrderRelativeOf == nullptr ? "none" : zOrderRelativeOf->name.c_str());
306 StringAppendF(&result, " activeBuffer=%s,", activeBuffer.to_string().c_str());
Yichi Chen6ca35192018-05-29 12:20:43 +0800307 StringAppendF(&result, " tr=%s", bufferTransform.to_string().c_str());
Vishnu Nair1b700192022-02-04 10:09:47 -0800308 StringAppendF(&result, " queued-frames=%d", queuedFrames);
Evan Rosky1f6d6d52018-12-06 10:47:26 -0800309 StringAppendF(&result, " metadata={");
310 bool first = true;
311 for (const auto& entry : metadata.mMap) {
312 if (!first) result.append(", ");
313 first = false;
314 result.append(metadata.itemToString(entry.first, ":"));
315 }
Vishnu Nair95a1ed42019-12-06 12:25:11 -0800316 result.append("},");
317 StringAppendF(&result, " cornerRadiusCrop=%s, ", cornerRadiusCrop.to_string().c_str());
318 StringAppendF(&result, " shadowRadius=%.3f, ", shadowRadius);
chaviw5bf9d682017-10-25 16:31:08 -0700319 return result;
320}
321
chaviw1d044282017-09-27 12:19:28 -0700322} // namespace surfaceflinger
323} // namespace android