blob: 8a1cbe409b2449f3a964007d946b062498b57199 [file] [log] [blame]
Lloyd Piquefeb73d72018-12-04 17:23:44 -08001/*
2 * Copyright 2019 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
Lloyd Pique0b785d82018-12-04 17:25:27 -080017#include <android-base/stringprintf.h>
Lloyd Piquefeb73d72018-12-04 17:23:44 -080018#include <compositionengine/CompositionEngine.h>
19#include <compositionengine/LayerCreationArgs.h>
20#include <compositionengine/LayerFE.h>
21#include <compositionengine/impl/Layer.h>
22
23namespace android::compositionengine {
24
25Layer::~Layer() = default;
26
27namespace impl {
28
29std::shared_ptr<compositionengine::Layer> createLayer(
30 const compositionengine::CompositionEngine& compositionEngine,
31 compositionengine::LayerCreationArgs&& args) {
32 return std::make_shared<Layer>(compositionEngine, std::move(args));
33}
34
35Layer::Layer(const CompositionEngine& compositionEngine, LayerCreationArgs&& args)
36 : mCompositionEngine(compositionEngine), mLayerFE(args.layerFE) {
37 static_cast<void>(mCompositionEngine); // Temporary use to prevent an unused warning
38}
39
40Layer::~Layer() = default;
41
42sp<LayerFE> Layer::getLayerFE() const {
43 return mLayerFE.promote();
44}
45
Lloyd Pique9755fb72019-03-26 14:44:40 -070046const compositionengine::LayerFECompositionState& Layer::getFEState() const {
47 return mFrontEndState;
Lloyd Pique0b785d82018-12-04 17:25:27 -080048}
49
Lloyd Pique9755fb72019-03-26 14:44:40 -070050compositionengine::LayerFECompositionState& Layer::editFEState() {
51 return mFrontEndState;
Lloyd Pique0b785d82018-12-04 17:25:27 -080052}
53
54void Layer::dump(std::string& out) const {
Lloyd Pique207def92019-02-28 16:09:52 -080055 auto layerFE = getLayerFE();
56 android::base::StringAppendF(&out, "* compositionengine::Layer %p (%s)\n", this,
57 layerFE ? layerFE->getDebugName() : "<unknown>");
Lloyd Pique9755fb72019-03-26 14:44:40 -070058
59 out.append(" frontend:\n");
60 mFrontEndState.dump(out);
Lloyd Pique0b785d82018-12-04 17:25:27 -080061}
62
Lloyd Piquefeb73d72018-12-04 17:23:44 -080063} // namespace impl
64} // namespace android::compositionengine