Lloyd Pique | d0094aa | 2017-12-20 16:43:28 -0800 | [diff] [blame] | 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 { |
| 28 | namespace mock { |
| 29 | |
| 30 | using android::hardware::graphics::common::V1_0::ColorMode; |
| 31 | using android::hardware::graphics::common::V1_0::ColorTransform; |
| 32 | using android::hardware::graphics::common::V1_0::Dataspace; |
| 33 | using android::hardware::graphics::common::V1_0::Hdr; |
| 34 | using android::hardware::graphics::common::V1_0::PixelFormat; |
| 35 | using android::hardware::graphics::common::V1_0::Transform; |
| 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::IComposerCallback; |
| 42 | using android::hardware::graphics::composer::V2_1::IComposerClient; |
| 43 | using android::hardware::graphics::composer::V2_1::Layer; |
| 44 | |
| 45 | class Composer : public Hwc2::Composer { |
| 46 | public: |
| 47 | Composer(); |
| 48 | ~Composer() override; |
| 49 | |
| 50 | MOCK_METHOD0(getCapabilities, std::vector<IComposer::Capability>()); |
| 51 | MOCK_METHOD0(dumpDebugInfo, std::string()); |
| 52 | MOCK_METHOD1(registerCallback, void(const sp<IComposerCallback>&)); |
| 53 | MOCK_METHOD0(isRemote, bool()); |
| 54 | MOCK_METHOD0(resetCommands, void()); |
| 55 | MOCK_METHOD0(executeCommands, Error()); |
| 56 | MOCK_METHOD0(getMaxVirtualDisplayCount, uint32_t()); |
| 57 | MOCK_CONST_METHOD0(isUsingVrComposer, bool()); |
| 58 | MOCK_METHOD4(createVirtualDisplay, Error(uint32_t, uint32_t, PixelFormat*, Display*)); |
| 59 | MOCK_METHOD1(destroyVirtualDisplay, Error(Display)); |
| 60 | MOCK_METHOD1(acceptDisplayChanges, Error(Display)); |
| 61 | MOCK_METHOD2(createLayer, Error(Display, Layer* outLayer)); |
| 62 | MOCK_METHOD2(destroyLayer, Error(Display, Layer)); |
| 63 | MOCK_METHOD2(getActiveConfig, Error(Display, Config*)); |
| 64 | MOCK_METHOD3(getChangedCompositionTypes, |
| 65 | Error(Display, std::vector<Layer>*, std::vector<IComposerClient::Composition>*)); |
| 66 | MOCK_METHOD2(getColorModes, Error(Display, std::vector<ColorMode>*)); |
| 67 | MOCK_METHOD4(getDisplayAttribute, |
| 68 | Error(Display, Config config, IComposerClient::Attribute, int32_t*)); |
| 69 | MOCK_METHOD2(getDisplayConfigs, Error(Display, std::vector<Config>*)); |
| 70 | MOCK_METHOD2(getDisplayName, Error(Display, std::string*)); |
| 71 | MOCK_METHOD4(getDisplayRequests, |
| 72 | Error(Display, uint32_t*, std::vector<Layer>*, std::vector<uint32_t>*)); |
| 73 | MOCK_METHOD2(getDisplayType, Error(Display, IComposerClient::DisplayType*)); |
| 74 | MOCK_METHOD2(getDozeSupport, Error(Display, bool*)); |
| 75 | MOCK_METHOD5(getHdrCapabilities, Error(Display, std::vector<Hdr>*, float*, float*, float*)); |
| 76 | MOCK_METHOD3(getReleaseFences, Error(Display, std::vector<Layer>*, std::vector<int>*)); |
| 77 | MOCK_METHOD2(presentDisplay, Error(Display, int*)); |
| 78 | MOCK_METHOD2(setActiveConfig, Error(Display, Config)); |
| 79 | MOCK_METHOD6(setClientTarget, |
| 80 | Error(Display, uint32_t, const sp<GraphicBuffer>&, int, Dataspace, |
| 81 | const std::vector<IComposerClient::Rect>&)); |
| 82 | MOCK_METHOD2(setColorMode, Error(Display, ColorMode)); |
| 83 | MOCK_METHOD3(setColorTransform, Error(Display, const float*, ColorTransform)); |
| 84 | MOCK_METHOD3(setOutputBuffer, Error(Display, const native_handle_t*, int)); |
| 85 | MOCK_METHOD2(setPowerMode, Error(Display, IComposerClient::PowerMode)); |
| 86 | MOCK_METHOD2(setVsyncEnabled, Error(Display, IComposerClient::Vsync)); |
| 87 | MOCK_METHOD1(setClientTargetSlotCount, Error(Display)); |
| 88 | MOCK_METHOD3(validateDisplay, Error(Display, uint32_t*, uint32_t*)); |
| 89 | MOCK_METHOD5(presentOrValidateDisplay, Error(Display, uint32_t*, uint32_t*, int*, uint32_t*)); |
| 90 | MOCK_METHOD4(setCursorPosition, Error(Display, Layer, int32_t, int32_t)); |
| 91 | MOCK_METHOD5(setLayerBuffer, Error(Display, Layer, uint32_t, const sp<GraphicBuffer>&, int)); |
| 92 | MOCK_METHOD3(setLayerSurfaceDamage, |
| 93 | Error(Display, Layer, const std::vector<IComposerClient::Rect>&)); |
| 94 | MOCK_METHOD3(setLayerBlendMode, Error(Display, Layer, IComposerClient::BlendMode)); |
| 95 | MOCK_METHOD3(setLayerColor, Error(Display, Layer, const IComposerClient::Color&)); |
| 96 | MOCK_METHOD3(setLayerCompositionType, Error(Display, Layer, IComposerClient::Composition)); |
| 97 | MOCK_METHOD3(setLayerDataspace, Error(Display, Layer, Dataspace)); |
| 98 | MOCK_METHOD3(setLayerDisplayFrame, Error(Display, Layer, const IComposerClient::Rect&)); |
| 99 | MOCK_METHOD3(setLayerPlaneAlpha, Error(Display, Layer, float)); |
| 100 | MOCK_METHOD3(setLayerSidebandStream, Error(Display, Layer, const native_handle_t*)); |
| 101 | MOCK_METHOD3(setLayerSourceCrop, Error(Display, Layer, const IComposerClient::FRect&)); |
| 102 | MOCK_METHOD3(setLayerTransform, Error(Display, Layer, Transform)); |
| 103 | MOCK_METHOD3(setLayerVisibleRegion, |
| 104 | Error(Display, Layer, const std::vector<IComposerClient::Rect>&)); |
| 105 | MOCK_METHOD3(setLayerZOrder, Error(Display, Layer, uint32_t)); |
| 106 | MOCK_METHOD4(setLayerInfo, Error(Display, Layer, uint32_t, uint32_t)); |
| 107 | }; |
| 108 | |
| 109 | } // namespace mock |
| 110 | } // namespace Hwc2 |
| 111 | } // namespace android |