1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
/*
* Copyright 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ANDROID_GUI_FRAMETIMESTAMPS_H
#define ANDROID_GUI_FRAMETIMESTAMPS_H
#include <ui/FenceTime.h>
#include <utils/Flattenable.h>
#include <utils/StrongPointer.h>
#include <utils/Timers.h>
#include <array>
#include <bitset>
#include <vector>
namespace android {
struct FrameEvents;
class FrameEventHistoryDelta;
// Identifiers for all the events that may be recorded or reported.
enum class FrameEvent {
POSTED,
REQUESTED_PRESENT,
LATCH,
ACQUIRE,
FIRST_REFRESH_START,
LAST_REFRESH_START,
GPU_COMPOSITION_DONE,
DISPLAY_PRESENT,
DEQUEUE_READY,
RELEASE,
EVENT_COUNT, // Not an actual event.
};
// A collection of timestamps corresponding to a single frame.
struct FrameEvents {
static constexpr auto EVENT_COUNT =
static_cast<size_t>(FrameEvent::EVENT_COUNT);
static_assert(EVENT_COUNT <= 32, "Event count sanity check failed.");
static constexpr nsecs_t TIMESTAMP_PENDING = -2;
static inline bool isValidTimestamp(nsecs_t time) {
return time != TIMESTAMP_PENDING;
}
bool hasPostedInfo() const;
bool hasRequestedPresentInfo() const;
bool hasLatchInfo() const;
bool hasFirstRefreshStartInfo() const;
bool hasLastRefreshStartInfo() const;
bool hasAcquireInfo() const;
bool hasGpuCompositionDoneInfo() const;
bool hasDisplayPresentInfo() const;
bool hasReleaseInfo() const;
bool hasDequeueReadyInfo() const;
void checkFencesForCompletion();
void dump(std::string& outString) const;
bool valid{false};
int connectId{0};
uint64_t frameNumber{0};
// Whether or not certain points in the frame's life cycle have been
// encountered help us determine if timestamps aren't available because
// a) we'll just never get them or b) they're not ready yet.
bool addPostCompositeCalled{false};
bool addReleaseCalled{false};
nsecs_t postedTime{TIMESTAMP_PENDING};
nsecs_t requestedPresentTime{TIMESTAMP_PENDING};
nsecs_t latchTime{TIMESTAMP_PENDING};
nsecs_t firstRefreshStartTime{TIMESTAMP_PENDING};
nsecs_t lastRefreshStartTime{TIMESTAMP_PENDING};
nsecs_t dequeueReadyTime{TIMESTAMP_PENDING};
std::shared_ptr<FenceTime> acquireFence{FenceTime::NO_FENCE};
std::shared_ptr<FenceTime> gpuCompositionDoneFence{FenceTime::NO_FENCE};
std::shared_ptr<FenceTime> displayPresentFence{FenceTime::NO_FENCE};
std::shared_ptr<FenceTime> releaseFence{FenceTime::NO_FENCE};
};
struct CompositorTiming {
nsecs_t deadline{0};
nsecs_t interval{16666667};
nsecs_t presentLatency{16666667};
};
// A short history of frames that are synchronized between the consumer and
// producer via deltas.
class FrameEventHistory {
public:
FrameEventHistory();
virtual ~FrameEventHistory();
FrameEvents* getFrame(uint64_t frameNumber);
FrameEvents* getFrame(uint64_t frameNumber, size_t* iHint);
void checkFencesForCompletion();
void dump(std::string& outString) const;
static const size_t INITIAL_MAX_FRAME_HISTORY;
protected:
void resize(size_t newSize);
std::vector<FrameEvents> mFrames;
CompositorTiming mCompositorTiming;
};
// The producer's interface to FrameEventHistory
class ProducerFrameEventHistory : public FrameEventHistory {
public:
~ProducerFrameEventHistory() override;
// Public for testing.
static nsecs_t snapToNextTick(
nsecs_t timestamp, nsecs_t tickPhase, nsecs_t tickInterval);
nsecs_t getReportedCompositeDeadline() const { return mCompositorTiming.deadline; };
nsecs_t getNextCompositeDeadline(const nsecs_t now) const;
nsecs_t getCompositeInterval() const { return mCompositorTiming.interval; }
nsecs_t getCompositeToPresentLatency() const {
return mCompositorTiming.presentLatency;
}
// virtual for testing.
virtual void updateAcquireFence(
uint64_t frameNumber, std::shared_ptr<FenceTime>&& acquire);
void applyDelta(const FrameEventHistoryDelta& delta);
void updateSignalTimes();
protected:
void applyFenceDelta(FenceTimeline* timeline,
std::shared_ptr<FenceTime>* dst,
const FenceTime::Snapshot& src) const;
// virtual for testing.
virtual std::shared_ptr<FenceTime> createFenceTime(
const sp<Fence>& fence) const;
void resize(size_t newSize);
size_t mAcquireOffset{0};
// The consumer updates it's timelines in Layer and SurfaceFlinger since
// they can coordinate shared timelines better. The producer doesn't have
// shared timelines though, so just let it own and update all of them.
FenceTimeline mAcquireTimeline;
FenceTimeline mGpuCompositionDoneTimeline;
FenceTimeline mPresentTimeline;
FenceTimeline mReleaseTimeline;
};
// Used by the consumer to create a new frame event record that is
// partially complete.
struct NewFrameEventsEntry {
uint64_t frameNumber{0};
nsecs_t postedTime{0};
nsecs_t requestedPresentTime{0};
std::shared_ptr<FenceTime> acquireFence{FenceTime::NO_FENCE};
};
// Used by the consumer to keep track of which fields it already sent to
// the producer.
class FrameEventDirtyFields {
public:
inline void reset() { mBitset.reset(); }
inline bool anyDirty() const { return mBitset.any(); }
template <FrameEvent event>
inline void setDirty() {
constexpr size_t eventIndex = static_cast<size_t>(event);
static_assert(eventIndex < FrameEvents::EVENT_COUNT, "Bad index.");
mBitset.set(eventIndex);
}
template <FrameEvent event>
inline bool isDirty() const {
constexpr size_t eventIndex = static_cast<size_t>(event);
static_assert(eventIndex < FrameEvents::EVENT_COUNT, "Bad index.");
return mBitset[eventIndex];
}
private:
std::bitset<FrameEvents::EVENT_COUNT> mBitset;
};
// The consumer's interface to FrameEventHistory
class ConsumerFrameEventHistory : public FrameEventHistory {
public:
ConsumerFrameEventHistory();
~ConsumerFrameEventHistory() override;
void onDisconnect();
void setProducerWantsEvents();
void initializeCompositorTiming(const CompositorTiming& compositorTiming);
void addQueue(const NewFrameEventsEntry& newEntry);
void addLatch(uint64_t frameNumber, nsecs_t latchTime);
void addPreComposition(uint64_t frameNumber, nsecs_t refreshStartTime);
void addPostComposition(uint64_t frameNumber,
const std::shared_ptr<FenceTime>& gpuCompositionDone,
const std::shared_ptr<FenceTime>& displayPresent,
const CompositorTiming& compositorTiming);
void addRelease(uint64_t frameNumber, nsecs_t dequeueReadyTime,
std::shared_ptr<FenceTime>&& release);
void getAndResetDelta(FrameEventHistoryDelta* delta);
void resize(size_t newSize);
private:
void getFrameDelta(FrameEventHistoryDelta* delta,
const std::vector<FrameEvents>::iterator& frame);
std::vector<FrameEventDirtyFields> mFramesDirty;
size_t mQueueOffset{0};
size_t mCompositionOffset{0};
size_t mReleaseOffset{0};
int mCurrentConnectId{0};
bool mProducerWantsEvents{false};
};
// A single frame update from the consumer to producer that can be sent
// through Binder.
// Although this may be sent multiple times for the same frame as new
// timestamps are set, Fences only need to be sent once.
class FrameEventsDelta : public Flattenable<FrameEventsDelta> {
friend class ProducerFrameEventHistory;
public:
FrameEventsDelta() = default;
FrameEventsDelta(size_t index,
const FrameEvents& frameTimestamps,
const FrameEventDirtyFields& dirtyFields);
// Movable.
FrameEventsDelta(FrameEventsDelta&& src) = default;
FrameEventsDelta& operator=(FrameEventsDelta&& src) = default;
// Not copyable.
FrameEventsDelta(const FrameEventsDelta& src) = delete;
FrameEventsDelta& operator=(const FrameEventsDelta& src) = delete;
// Flattenable implementation
size_t getFlattenedSize() const;
size_t getFdCount() const;
status_t flatten(void*& buffer, size_t& size, int*& fds,
size_t& count) const;
status_t unflatten(void const*& buffer, size_t& size, int const*& fds,
size_t& count);
uint64_t getFrameNumber() const;
bool getLatchTime(nsecs_t* latchTime) const;
bool getDisplayPresentFence(sp<Fence>* fence) const;
private:
static constexpr size_t minFlattenedSize();
size_t mIndex{0};
uint64_t mFrameNumber{0};
bool mAddPostCompositeCalled{0};
bool mAddReleaseCalled{0};
nsecs_t mPostedTime{FrameEvents::TIMESTAMP_PENDING};
nsecs_t mRequestedPresentTime{FrameEvents::TIMESTAMP_PENDING};
nsecs_t mLatchTime{FrameEvents::TIMESTAMP_PENDING};
nsecs_t mFirstRefreshStartTime{FrameEvents::TIMESTAMP_PENDING};
nsecs_t mLastRefreshStartTime{FrameEvents::TIMESTAMP_PENDING};
nsecs_t mDequeueReadyTime{FrameEvents::TIMESTAMP_PENDING};
FenceTime::Snapshot mGpuCompositionDoneFence;
FenceTime::Snapshot mDisplayPresentFence;
FenceTime::Snapshot mReleaseFence;
// This is a static method with an auto return value so we can call
// it without needing const and non-const versions.
template <typename ThisT>
static inline auto allFences(ThisT fed) ->
std::array<decltype(&fed->mReleaseFence), 3> {
return {{
&fed->mGpuCompositionDoneFence, &fed->mDisplayPresentFence,
&fed->mReleaseFence
}};
}
};
// A collection of updates from consumer to producer that can be sent
// through Binder.
class FrameEventHistoryDelta
: public Flattenable<FrameEventHistoryDelta> {
friend class ConsumerFrameEventHistory;
friend class ProducerFrameEventHistory;
public:
FrameEventHistoryDelta() = default;
// Movable.
FrameEventHistoryDelta(FrameEventHistoryDelta&& src) = default;
FrameEventHistoryDelta& operator=(FrameEventHistoryDelta&& src) noexcept;
// Not copyable.
FrameEventHistoryDelta(const FrameEventHistoryDelta& src) = delete;
FrameEventHistoryDelta& operator=(
const FrameEventHistoryDelta& src) = delete;
// Flattenable implementation.
size_t getFlattenedSize() const;
size_t getFdCount() const;
status_t flatten(void*& buffer, size_t& size, int*& fds,
size_t& count) const;
status_t unflatten(void const*& buffer, size_t& size, int const*& fds,
size_t& count);
std::vector<FrameEventsDelta>::const_iterator begin() const;
std::vector<FrameEventsDelta>::const_iterator end() const;
private:
static constexpr size_t minFlattenedSize();
std::vector<FrameEventsDelta> mDeltas;
CompositorTiming mCompositorTiming;
};
} // namespace android
#endif
|