John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 | #ifndef FRAMEINFO_H_ |
| 17 | #define FRAMEINFO_H_ |
| 18 | |
| 19 | #include "utils/Macros.h" |
| 20 | |
| 21 | #include <cutils/compiler.h> |
| 22 | #include <utils/Timers.h> |
| 23 | |
| 24 | #include <memory.h> |
| 25 | |
| 26 | namespace android { |
| 27 | namespace uirenderer { |
| 28 | |
| 29 | #define UI_THREAD_FRAME_INFO_SIZE 9 |
| 30 | |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 31 | enum class FrameInfoIndex { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 32 | kFlags = 0, |
| 33 | kIntendedVsync, |
| 34 | kVsync, |
| 35 | kOldestInputEvent, |
| 36 | kNewestInputEvent, |
| 37 | kHandleInputStart, |
| 38 | kAnimationStart, |
| 39 | kPerformTraversalsStart, |
| 40 | kDrawStart, |
| 41 | // End of UI frame info |
| 42 | |
| 43 | kSyncStart, |
| 44 | kIssueDrawCommandsStart, |
| 45 | kSwapBuffers, |
| 46 | kFrameCompleted, |
| 47 | |
| 48 | // Must be the last value! |
| 49 | kNumIndexes |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 50 | }; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 51 | |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 52 | enum class FrameInfoFlags { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 53 | kWindowLayoutChanged = 1 << 0, |
| 54 | kRTAnimation = 1 << 1, |
| 55 | kSurfaceCanvas = 1 << 2, |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 56 | }; |
| 57 | MAKE_FLAGS_ENUM(FrameInfoFlags) |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 58 | |
| 59 | class ANDROID_API UiFrameInfoBuilder { |
| 60 | public: |
| 61 | UiFrameInfoBuilder(int64_t* buffer) : mBuffer(buffer) { |
| 62 | memset(mBuffer, 0, UI_THREAD_FRAME_INFO_SIZE * sizeof(int64_t)); |
| 63 | } |
| 64 | |
| 65 | UiFrameInfoBuilder& setVsync(nsecs_t vsyncTime, nsecs_t intendedVsync) { |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 66 | set(FrameInfoIndex::kVsync) = vsyncTime; |
| 67 | set(FrameInfoIndex::kIntendedVsync) = intendedVsync; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 68 | return *this; |
| 69 | } |
| 70 | |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 71 | UiFrameInfoBuilder& addFlag(FrameInfoFlags flag) { |
| 72 | set(FrameInfoIndex::kFlags) |= static_cast<uint64_t>(flag); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 73 | return *this; |
| 74 | } |
| 75 | |
| 76 | private: |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 77 | inline int64_t& set(FrameInfoIndex index) { |
| 78 | return mBuffer[static_cast<int>(index)]; |
| 79 | } |
| 80 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 81 | int64_t* mBuffer; |
| 82 | }; |
| 83 | |
| 84 | class FrameInfo { |
| 85 | public: |
| 86 | void importUiThreadInfo(int64_t* info); |
| 87 | |
| 88 | void markSyncStart() { |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 89 | set(FrameInfoIndex::kSyncStart) = systemTime(CLOCK_MONOTONIC); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | void markIssueDrawCommandsStart() { |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 93 | set(FrameInfoIndex::kIssueDrawCommandsStart) = systemTime(CLOCK_MONOTONIC); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | void markSwapBuffers() { |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 97 | set(FrameInfoIndex::kSwapBuffers) = systemTime(CLOCK_MONOTONIC); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | void markFrameCompleted() { |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 101 | set(FrameInfoIndex::kFrameCompleted) = systemTime(CLOCK_MONOTONIC); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 102 | } |
| 103 | |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 104 | int64_t operator[](FrameInfoIndex index) const { |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 105 | if (index == FrameInfoIndex::kNumIndexes) return 0; |
| 106 | return mFrameInfo[static_cast<int>(index)]; |
| 107 | } |
| 108 | |
| 109 | int64_t operator[](int index) const { |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 110 | if (index < 0 || index >= static_cast<int>(FrameInfoIndex::kNumIndexes)) return 0; |
| 111 | return mFrameInfo[index]; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | private: |
John Reck | c87be99 | 2015-02-20 10:57:22 -0800 | [diff] [blame] | 115 | inline int64_t& set(FrameInfoIndex index) { |
| 116 | return mFrameInfo[static_cast<int>(index)]; |
| 117 | } |
| 118 | |
| 119 | int64_t mFrameInfo[static_cast<int>(FrameInfoIndex::kNumIndexes)]; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | } /* namespace uirenderer */ |
| 123 | } /* namespace android */ |
| 124 | |
| 125 | #endif /* FRAMEINFO_H_ */ |