blob: 8fce0c9bf3fbfa2f2659b85fb2a1e42be09c363d [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
Chia-I Wu2f884132018-09-13 15:17:58 -070040LayerProtoParser::LayerTree LayerProtoParser::generateLayerTree(const LayersProto& layersProto) {
41 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(
chaviw1d044282017-09-27 12:19:28 -070056 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
Chia-I Wu2f884132018-09-13 15:17:58 -070077LayerProtoParser::Layer LayerProtoParser::generateLayer(const LayerProto& layerProto) {
78 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();
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700108 layer.cornerRadius = layerProto.corner_radius();
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800109 layer.backgroundBlurRadius = layerProto.background_blur_radius();
Evan Rosky1f6d6d52018-12-06 10:47:26 -0800110 for (const auto& entry : layerProto.metadata()) {
111 const std::string& dataStr = entry.second;
112 std::vector<uint8_t>& outData = layer.metadata.mMap[entry.first];
113 outData.resize(dataStr.size());
114 memcpy(outData.data(), dataStr.data(), dataStr.size());
115 }
Vishnu Nair95a1ed42019-12-06 12:25:11 -0800116 layer.cornerRadiusCrop = generateFloatRect(layerProto.corner_radius_crop());
117 layer.shadowRadius = layerProto.shadow_radius();
chaviw1d044282017-09-27 12:19:28 -0700118 return layer;
119}
120
121LayerProtoParser::Region LayerProtoParser::generateRegion(const RegionProto& regionProto) {
122 LayerProtoParser::Region region;
chaviw1d044282017-09-27 12:19:28 -0700123 for (int i = 0; i < regionProto.rect_size(); i++) {
124 const RectProto& rectProto = regionProto.rect(i);
125 region.rects.push_back(generateRect(rectProto));
126 }
127
128 return region;
129}
130
131LayerProtoParser::Rect LayerProtoParser::generateRect(const RectProto& rectProto) {
132 LayerProtoParser::Rect rect;
133 rect.left = rectProto.left();
134 rect.top = rectProto.top();
135 rect.right = rectProto.right();
136 rect.bottom = rectProto.bottom();
137
138 return rect;
139}
140
Yiwei Zhang7124ad32018-02-21 13:02:45 -0800141LayerProtoParser::FloatRect LayerProtoParser::generateFloatRect(const FloatRectProto& rectProto) {
142 LayerProtoParser::FloatRect rect;
143 rect.left = rectProto.left();
144 rect.top = rectProto.top();
145 rect.right = rectProto.right();
146 rect.bottom = rectProto.bottom();
147
148 return rect;
149}
150
chaviw1d044282017-09-27 12:19:28 -0700151LayerProtoParser::Transform LayerProtoParser::generateTransform(
152 const TransformProto& transformProto) {
153 LayerProtoParser::Transform transform;
154 transform.dsdx = transformProto.dsdx();
155 transform.dtdx = transformProto.dtdx();
156 transform.dsdy = transformProto.dsdy();
157 transform.dtdy = transformProto.dtdy();
158
159 return transform;
160}
161
162LayerProtoParser::ActiveBuffer LayerProtoParser::generateActiveBuffer(
163 const ActiveBufferProto& activeBufferProto) {
164 LayerProtoParser::ActiveBuffer activeBuffer;
165 activeBuffer.width = activeBufferProto.width();
166 activeBuffer.height = activeBufferProto.height();
167 activeBuffer.stride = activeBufferProto.stride();
168 activeBuffer.format = activeBufferProto.format();
169
170 return activeBuffer;
171}
172
173void LayerProtoParser::updateChildrenAndRelative(const LayerProto& layerProto,
174 std::unordered_map<int32_t, Layer*>& layerMap) {
175 auto currLayer = layerMap[layerProto.id()];
176
177 for (int i = 0; i < layerProto.children_size(); i++) {
178 if (layerMap.count(layerProto.children(i)) > 0) {
Chia-I Wu2f884132018-09-13 15:17:58 -0700179 currLayer->children.push_back(layerMap[layerProto.children(i)]);
chaviw1d044282017-09-27 12:19:28 -0700180 }
181 }
182
183 for (int i = 0; i < layerProto.relatives_size(); i++) {
184 if (layerMap.count(layerProto.relatives(i)) > 0) {
chaviw7ba019b2018-03-14 13:28:39 -0700185 currLayer->relatives.push_back(layerMap[layerProto.relatives(i)]);
chaviw1d044282017-09-27 12:19:28 -0700186 }
187 }
188
Nataniel Borgesdcc0bab2019-02-15 13:22:03 -0800189 if (layerProto.parent() != -1) {
chaviw1d044282017-09-27 12:19:28 -0700190 if (layerMap.count(layerProto.parent()) > 0) {
chaviw7ba019b2018-03-14 13:28:39 -0700191 currLayer->parent = layerMap[layerProto.parent()];
chaviw1d044282017-09-27 12:19:28 -0700192 }
193 }
194
Nataniel Borgesdcc0bab2019-02-15 13:22:03 -0800195 if (layerProto.z_order_relative_of() != -1) {
chaviw1d044282017-09-27 12:19:28 -0700196 if (layerMap.count(layerProto.z_order_relative_of()) > 0) {
chaviw7ba019b2018-03-14 13:28:39 -0700197 currLayer->zOrderRelativeOf = layerMap[layerProto.z_order_relative_of()];
chaviw1d044282017-09-27 12:19:28 -0700198 }
199 }
200}
201
Chia-I Wu2f884132018-09-13 15:17:58 -0700202std::string LayerProtoParser::layerTreeToString(const LayerTree& layerTree) {
chaviw1d044282017-09-27 12:19:28 -0700203 std::string result;
Chia-I Wu2f884132018-09-13 15:17:58 -0700204 for (const LayerProtoParser::Layer* layer : layerTree.topLevelLayers) {
chaviw1d044282017-09-27 12:19:28 -0700205 if (layer->zOrderRelativeOf != nullptr) {
206 continue;
207 }
Chia-I Wu2f884132018-09-13 15:17:58 -0700208 result.append(layerToString(layer));
chaviw1d044282017-09-27 12:19:28 -0700209 }
210
211 return result;
212}
213
Chia-I Wu2f884132018-09-13 15:17:58 -0700214std::string LayerProtoParser::layerToString(const LayerProtoParser::Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -0700215 std::string result;
216
chaviw7ba019b2018-03-14 13:28:39 -0700217 std::vector<Layer*> traverse(layer->relatives);
Chia-I Wu2f884132018-09-13 15:17:58 -0700218 for (LayerProtoParser::Layer* child : layer->children) {
chaviw1d044282017-09-27 12:19:28 -0700219 if (child->zOrderRelativeOf != nullptr) {
220 continue;
221 }
222
Chia-I Wu2f884132018-09-13 15:17:58 -0700223 traverse.push_back(child);
chaviw1d044282017-09-27 12:19:28 -0700224 }
225
226 std::sort(traverse.begin(), traverse.end(), sortLayers);
227
228 size_t i = 0;
229 for (; i < traverse.size(); i++) {
chaviw7ba019b2018-03-14 13:28:39 -0700230 auto& relative = traverse[i];
chaviw1d044282017-09-27 12:19:28 -0700231 if (relative->z >= 0) {
232 break;
233 }
Chia-I Wu2f884132018-09-13 15:17:58 -0700234 result.append(layerToString(relative));
chaviw1d044282017-09-27 12:19:28 -0700235 }
Chia-I Wu2f884132018-09-13 15:17:58 -0700236 result.append(layer->to_string());
chaviw1d044282017-09-27 12:19:28 -0700237 result.append("\n");
238 for (; i < traverse.size(); i++) {
chaviw7ba019b2018-03-14 13:28:39 -0700239 auto& relative = traverse[i];
Chia-I Wu2f884132018-09-13 15:17:58 -0700240 result.append(layerToString(relative));
chaviw1d044282017-09-27 12:19:28 -0700241 }
242
243 return result;
244}
245
chaviw5bf9d682017-10-25 16:31:08 -0700246std::string LayerProtoParser::ActiveBuffer::to_string() const {
247 return StringPrintf("[%4ux%4u:%4u,%s]", width, height, stride,
248 decodePixelFormat(format).c_str());
249}
250
251std::string LayerProtoParser::Transform::to_string() const {
252 return StringPrintf("[%.2f, %.2f][%.2f, %.2f]", static_cast<double>(dsdx),
253 static_cast<double>(dtdx), static_cast<double>(dsdy),
254 static_cast<double>(dtdy));
255}
256
257std::string LayerProtoParser::Rect::to_string() const {
258 return StringPrintf("[%3d, %3d, %3d, %3d]", left, top, right, bottom);
259}
260
Yiwei Zhang7124ad32018-02-21 13:02:45 -0800261std::string LayerProtoParser::FloatRect::to_string() const {
262 return StringPrintf("[%.2f, %.2f, %.2f, %.2f]", left, top, right, bottom);
263}
264
chaviw5bf9d682017-10-25 16:31:08 -0700265std::string LayerProtoParser::Region::to_string(const char* what) const {
266 std::string result =
267 StringPrintf(" Region %s (this=%lx count=%d)\n", what, static_cast<unsigned long>(id),
268 static_cast<int>(rects.size()));
269
270 for (auto& rect : rects) {
271 StringAppendF(&result, " %s\n", rect.to_string().c_str());
272 }
273
274 return result;
275}
276
277std::string LayerProtoParser::Layer::to_string() const {
278 std::string result;
279 StringAppendF(&result, "+ %s (%s)\n", type.c_str(), name.c_str());
280 result.append(transparentRegion.to_string("TransparentRegion").c_str());
281 result.append(visibleRegion.to_string("VisibleRegion").c_str());
282 result.append(damageRegion.to_string("SurfaceDamageRegion").c_str());
283
284 StringAppendF(&result, " layerStack=%4d, z=%9d, pos=(%g,%g), size=(%4d,%4d), ", layerStack,
285 z, static_cast<double>(position.x), static_cast<double>(position.y), size.x,
286 size.y);
287
Vishnu Nairdcce0e22018-08-23 08:35:19 -0700288 StringAppendF(&result, "crop=%s, ", crop.to_string().c_str());
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700289 StringAppendF(&result, "cornerRadius=%f, ", cornerRadius);
Peiyong Lin51598552019-04-17 14:09:22 -0700290 StringAppendF(&result, "isProtected=%1d, ", isProtected);
chaviw5bf9d682017-10-25 16:31:08 -0700291 StringAppendF(&result, "isOpaque=%1d, invalidate=%1d, ", isOpaque, invalidate);
292 StringAppendF(&result, "dataspace=%s, ", dataspace.c_str());
Chia-I Wu1e043612018-03-01 09:45:09 -0800293 StringAppendF(&result, "defaultPixelFormat=%s, ", pixelFormat.c_str());
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800294 StringAppendF(&result, "backgroundBlurRadius=%1d, ", backgroundBlurRadius);
chaviw5bf9d682017-10-25 16:31:08 -0700295 StringAppendF(&result, "color=(%.3f,%.3f,%.3f,%.3f), flags=0x%08x, ",
296 static_cast<double>(color.r), static_cast<double>(color.g),
297 static_cast<double>(color.b), static_cast<double>(color.a), flags);
298 StringAppendF(&result, "tr=%s", transform.to_string().c_str());
299 result.append("\n");
300 StringAppendF(&result, " parent=%s\n", parent == nullptr ? "none" : parent->name.c_str());
301 StringAppendF(&result, " zOrderRelativeOf=%s\n",
302 zOrderRelativeOf == nullptr ? "none" : zOrderRelativeOf->name.c_str());
303 StringAppendF(&result, " activeBuffer=%s,", activeBuffer.to_string().c_str());
Yichi Chen6ca35192018-05-29 12:20:43 +0800304 StringAppendF(&result, " tr=%s", bufferTransform.to_string().c_str());
rongliucfb187b2018-03-14 12:26:23 -0700305 StringAppendF(&result, " queued-frames=%d, mRefreshPending=%d,", queuedFrames, refreshPending);
Evan Rosky1f6d6d52018-12-06 10:47:26 -0800306 StringAppendF(&result, " metadata={");
307 bool first = true;
308 for (const auto& entry : metadata.mMap) {
309 if (!first) result.append(", ");
310 first = false;
311 result.append(metadata.itemToString(entry.first, ":"));
312 }
Vishnu Nair95a1ed42019-12-06 12:25:11 -0800313 result.append("},");
314 StringAppendF(&result, " cornerRadiusCrop=%s, ", cornerRadiusCrop.to_string().c_str());
315 StringAppendF(&result, " shadowRadius=%.3f, ", shadowRadius);
chaviw5bf9d682017-10-25 16:31:08 -0700316 return result;
317}
318
chaviw1d044282017-09-27 12:19:28 -0700319} // namespace surfaceflinger
320} // namespace android