1 /*
2  * Copyright (C) 2018 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 #pragma once
18 
19 #include <gmock/gmock.h>
20 
21 #include "DisplayHardware/ComposerHal.h"
22 
23 namespace android {
24 
25 class GraphicBuffer;
26 
27 namespace Hwc2::mock {
28 
29 using android::hardware::graphics::common::V1_0::ColorTransform;
30 using android::hardware::graphics::common::V1_0::Transform;
31 using android::hardware::graphics::common::V1_1::RenderIntent;
32 using android::hardware::graphics::common::V1_2::ColorMode;
33 using android::hardware::graphics::common::V1_2::Dataspace;
34 using android::hardware::graphics::common::V1_2::Hdr;
35 using android::hardware::graphics::common::V1_2::PixelFormat;
36 
37 using android::hardware::graphics::composer::V2_1::Config;
38 using android::hardware::graphics::composer::V2_1::Display;
39 using android::hardware::graphics::composer::V2_1::Error;
40 using android::hardware::graphics::composer::V2_1::IComposer;
41 using android::hardware::graphics::composer::V2_1::Layer;
42 using android::hardware::graphics::composer::V2_4::IComposerCallback;
43 using android::hardware::graphics::composer::V2_4::IComposerClient;
44 
45 class Composer : public Hwc2::Composer {
46 public:
47     using Display = android::hardware::graphics::composer::V2_1::Display;
48     Composer();
49     ~Composer() override;
50 
51     MOCK_METHOD0(getCapabilities, std::vector<IComposer::Capability>());
52     MOCK_METHOD0(dumpDebugInfo, std::string());
53     MOCK_METHOD1(registerCallback, void(const sp<IComposerCallback>&));
54     MOCK_METHOD0(resetCommands, void());
55     MOCK_METHOD0(executeCommands, Error());
56     MOCK_METHOD0(getMaxVirtualDisplayCount, uint32_t());
57     MOCK_METHOD4(createVirtualDisplay, Error(uint32_t, uint32_t, PixelFormat*, Display*));
58     MOCK_METHOD1(destroyVirtualDisplay, Error(Display));
59     MOCK_METHOD1(acceptDisplayChanges, Error(Display));
60     MOCK_METHOD2(createLayer, Error(Display, Layer* outLayer));
61     MOCK_METHOD2(destroyLayer, Error(Display, Layer));
62     MOCK_METHOD2(getActiveConfig, Error(Display, Config*));
63     MOCK_METHOD3(getChangedCompositionTypes,
64                  Error(Display, std::vector<Layer>*, std::vector<IComposerClient::Composition>*));
65     MOCK_METHOD2(getColorModes, Error(Display, std::vector<ColorMode>*));
66     MOCK_METHOD4(getDisplayAttribute,
67                  Error(Display, Config config, IComposerClient::Attribute, int32_t*));
68     MOCK_METHOD2(getDisplayConfigs, Error(Display, std::vector<Config>*));
69     MOCK_METHOD2(getDisplayName, Error(Display, std::string*));
70     MOCK_METHOD4(getDisplayRequests,
71                  Error(Display, uint32_t*, std::vector<Layer>*, std::vector<uint32_t>*));
72     MOCK_METHOD2(getDozeSupport, Error(Display, bool*));
73     MOCK_METHOD5(getHdrCapabilities, Error(Display, std::vector<Hdr>*, float*, float*, float*));
74     MOCK_METHOD1(getPerFrameMetadataKeys,
75                  std::vector<IComposerClient::PerFrameMetadataKey>(Display));
76     MOCK_METHOD2(getDataspaceSaturationMatrix, Error(Dataspace, mat4*));
77     MOCK_METHOD3(getDisplayIdentificationData, Error(Display, uint8_t*, std::vector<uint8_t>*));
78     MOCK_METHOD3(getReleaseFences, Error(Display, std::vector<Layer>*, std::vector<int>*));
79     MOCK_METHOD2(presentDisplay, Error(Display, int*));
80     MOCK_METHOD2(setActiveConfig, Error(Display, Config));
81     MOCK_METHOD6(setClientTarget,
82                  Error(Display, uint32_t, const sp<GraphicBuffer>&, int, Dataspace,
83                        const std::vector<IComposerClient::Rect>&));
84     MOCK_METHOD3(setColorMode, Error(Display, ColorMode, RenderIntent));
85     MOCK_METHOD3(setColorTransform, Error(Display, const float*, ColorTransform));
86     MOCK_METHOD3(setOutputBuffer, Error(Display, const native_handle_t*, int));
87     MOCK_METHOD2(setPowerMode, Error(Display, IComposerClient::PowerMode));
88     MOCK_METHOD2(setVsyncEnabled, Error(Display, IComposerClient::Vsync));
89     MOCK_METHOD1(setClientTargetSlotCount, Error(Display));
90     MOCK_METHOD3(validateDisplay, Error(Display, uint32_t*, uint32_t*));
91     MOCK_METHOD5(presentOrValidateDisplay, Error(Display, uint32_t*, uint32_t*, int*, uint32_t*));
92     MOCK_METHOD4(setCursorPosition, Error(Display, Layer, int32_t, int32_t));
93     MOCK_METHOD5(setLayerBuffer, Error(Display, Layer, uint32_t, const sp<GraphicBuffer>&, int));
94     MOCK_METHOD3(setLayerSurfaceDamage,
95                  Error(Display, Layer, const std::vector<IComposerClient::Rect>&));
96     MOCK_METHOD3(setLayerBlendMode, Error(Display, Layer, IComposerClient::BlendMode));
97     MOCK_METHOD3(setLayerColor, Error(Display, Layer, const IComposerClient::Color&));
98     MOCK_METHOD3(setLayerCompositionType, Error(Display, Layer, IComposerClient::Composition));
99     MOCK_METHOD3(setLayerDataspace, Error(Display, Layer, Dataspace));
100     MOCK_METHOD3(setLayerPerFrameMetadata,
101                  Error(Display, Layer, const std::vector<IComposerClient::PerFrameMetadata>&));
102     MOCK_METHOD3(setLayerDisplayFrame, Error(Display, Layer, const IComposerClient::Rect&));
103     MOCK_METHOD3(setLayerPlaneAlpha, Error(Display, Layer, float));
104     MOCK_METHOD3(setLayerSidebandStream, Error(Display, Layer, const native_handle_t*));
105     MOCK_METHOD3(setLayerSourceCrop, Error(Display, Layer, const IComposerClient::FRect&));
106     MOCK_METHOD3(setLayerTransform, Error(Display, Layer, Transform));
107     MOCK_METHOD3(setLayerVisibleRegion,
108                  Error(Display, Layer, const std::vector<IComposerClient::Rect>&));
109     MOCK_METHOD3(setLayerZOrder, Error(Display, Layer, uint32_t));
110     MOCK_METHOD3(getRenderIntents, Error(Display, ColorMode, std::vector<RenderIntent>*));
111     MOCK_METHOD3(setLayerColorTransform, Error(Display, Layer, const float*));
112     MOCK_METHOD4(getDisplayedContentSamplingAttributes,
113                  Error(Display, PixelFormat*, Dataspace*, uint8_t*));
114     MOCK_METHOD4(setDisplayContentSamplingEnabled, Error(Display, bool, uint8_t, uint64_t));
115     MOCK_METHOD4(getDisplayedContentSample,
116                  Error(Display, uint64_t, uint64_t, DisplayedFrameStats*));
117     MOCK_METHOD3(setLayerPerFrameMetadataBlobs,
118                  Error(Display, Layer, const std::vector<IComposerClient::PerFrameMetadataBlob>&));
119     MOCK_METHOD2(setDisplayBrightness, Error(Display, float));
120     MOCK_METHOD0(isVsyncPeriodSwitchSupported, bool());
121     MOCK_METHOD2(getDisplayCapabilities, Error(Display, std::vector<DisplayCapability>*));
122     MOCK_METHOD2(getDisplayConnectionType,
123                  V2_4::Error(Display, IComposerClient::DisplayConnectionType*));
124     MOCK_METHOD3(getSupportedDisplayVsyncPeriods,
125                  V2_4::Error(Display, Config, std::vector<VsyncPeriodNanos>*));
126     MOCK_METHOD2(getDisplayVsyncPeriod, V2_4::Error(Display, VsyncPeriodNanos*));
127     MOCK_METHOD4(setActiveConfigWithConstraints,
128                  V2_4::Error(Display, Config, const IComposerClient::VsyncPeriodChangeConstraints&,
129                              VsyncPeriodChangeTimeline*));
130     MOCK_METHOD2(setAutoLowLatencyMode, V2_4::Error(Display, bool));
131     MOCK_METHOD2(getSupportedContentTypes,
132                  V2_4::Error(Display, std::vector<IComposerClient::ContentType>*));
133     MOCK_METHOD2(setContentType, V2_4::Error(Display, IComposerClient::ContentType));
134     MOCK_METHOD5(setLayerGenericMetadata,
135                  V2_4::Error(Display, Layer, const std::string&, bool,
136                              const std::vector<uint8_t>&));
137     MOCK_METHOD1(getLayerGenericMetadataKeys,
138                  V2_4::Error(std::vector<IComposerClient::LayerGenericMetadataKey>*));
139     MOCK_METHOD2(getClientTargetProperty, Error(Display, IComposerClient::ClientTargetProperty*));
140 };
141 
142 } // namespace Hwc2::mock
143 } // namespace android
144