blob: 6a2a025da121b14466629cb7d2881623785b14f5 [file] [log] [blame]
John Reckcec24ae2013-11-05 13:27:50 -08001/*
2 * Copyright (C) 2013 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
John Reckcec24ae2013-11-05 13:27:50 -080017#include "RenderThread.h"
18
John Reck4f02bf42014-01-03 18:09:17 -080019#include "CanvasContext.h"
John Reck56428472018-03-16 17:27:17 -070020#include "DeviceInfo.h"
John Reck3b202512014-06-23 13:13:08 -070021#include "EglManager.h"
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -050022#include "OpenGLReadback.h"
John Reck4f02bf42014-01-03 18:09:17 -080023#include "RenderProxy.h"
Derek Sollenberger0e3cba32016-11-09 11:58:36 -050024#include "VulkanManager.h"
John Reck1bcacfd2017-11-03 10:12:19 -070025#include "hwui/Bitmap.h"
26#include "pipeline/skia/SkiaOpenGLPipeline.h"
27#include "pipeline/skia/SkiaOpenGLReadback.h"
Stan Ilieva31973fe2018-01-12 11:50:29 -050028#include "pipeline/skia/SkiaVulkanReadback.h"
John Reck1bcacfd2017-11-03 10:12:19 -070029#include "pipeline/skia/SkiaVulkanPipeline.h"
30#include "renderstate/RenderState.h"
31#include "renderthread/OpenGLPipeline.h"
John Reck12efa552016-11-15 10:22:01 -080032#include "utils/FatVector.h"
John Reck56428472018-03-16 17:27:17 -070033#include "utils/TimeUtils.h"
John Reckcec24ae2013-11-05 13:27:50 -080034
Chris Craik65fe5ee2015-01-26 18:06:29 -080035#include <gui/DisplayEventReceiver.h>
36#include <sys/resource.h>
John Reckcba287b2015-11-10 12:52:44 -080037#include <utils/Condition.h>
Chris Craik65fe5ee2015-01-26 18:06:29 -080038#include <utils/Log.h>
John Reckcba287b2015-11-10 12:52:44 -080039#include <utils/Mutex.h>
Chris Craik65fe5ee2015-01-26 18:06:29 -080040
John Reckcec24ae2013-11-05 13:27:50 -080041namespace android {
John Reckcec24ae2013-11-05 13:27:50 -080042namespace uirenderer {
43namespace renderthread {
44
John Recke45b1fd2014-04-15 09:50:16 -070045// Number of events to read at a time from the DisplayEventReceiver pipe.
46// The value should be large enough that we can quickly drain the pipe
47// using just a few large reads.
48static const size_t EVENT_BUFFER_SIZE = 100;
49
50// Slight delay to give the UI time to push us a new frame before we replay
John Recka733f892014-12-19 11:37:21 -080051static const nsecs_t DISPATCH_FRAME_CALLBACKS_DELAY = milliseconds_to_nanoseconds(4);
John Recke45b1fd2014-04-15 09:50:16 -070052
John Reck6b507802015-11-03 10:09:59 -080053static bool gHasRenderThreadInstance = false;
54
John Reck259b25a2017-12-01 16:18:53 -080055static void (*gOnStartHook)() = nullptr;
56
John Reck56428472018-03-16 17:27:17 -070057class DisplayEventReceiverWrapper : public VsyncSource {
58public:
59 DisplayEventReceiverWrapper(std::unique_ptr<DisplayEventReceiver>&& receiver)
60 : mDisplayEventReceiver(std::move(receiver)) {}
61
62 virtual void requestNextVsync() override {
63 status_t status = mDisplayEventReceiver->requestNextVsync();
64 LOG_ALWAYS_FATAL_IF(status != NO_ERROR, "requestNextVsync failed with status: %d", status);
65 }
66
67 virtual nsecs_t latestVsyncEvent() override {
68 DisplayEventReceiver::Event buf[EVENT_BUFFER_SIZE];
69 nsecs_t latest = 0;
70 ssize_t n;
71 while ((n = mDisplayEventReceiver->getEvents(buf, EVENT_BUFFER_SIZE)) > 0) {
72 for (ssize_t i = 0; i < n; i++) {
73 const DisplayEventReceiver::Event& ev = buf[i];
74 switch (ev.header.type) {
75 case DisplayEventReceiver::DISPLAY_EVENT_VSYNC:
76 latest = ev.header.timestamp;
77 break;
78 }
79 }
80 }
81 if (n < 0) {
82 ALOGW("Failed to get events from display event receiver, status=%d", status_t(n));
83 }
84 return latest;
85 }
86
87private:
88 std::unique_ptr<DisplayEventReceiver> mDisplayEventReceiver;
89};
90
91class DummyVsyncSource : public VsyncSource {
92public:
93 DummyVsyncSource(RenderThread* renderThread) : mRenderThread(renderThread) {}
94
95 virtual void requestNextVsync() override {
96 mRenderThread->queue().postDelayed(16_ms, [this]() {
97 mRenderThread->drainDisplayEventQueue();
98 });
99 }
100
101 virtual nsecs_t latestVsyncEvent() override {
102 return systemTime(CLOCK_MONOTONIC);
103 }
104
105private:
106 RenderThread* mRenderThread;
107};
108
John Reck6b507802015-11-03 10:09:59 -0800109bool RenderThread::hasInstance() {
110 return gHasRenderThreadInstance;
111}
112
John Reck259b25a2017-12-01 16:18:53 -0800113void RenderThread::setOnStartHook(void (*onStartHook)()) {
114 LOG_ALWAYS_FATAL_IF(hasInstance(), "can't set an onStartHook after we've started...");
115 gOnStartHook = onStartHook;
116}
117
John Reck6b507802015-11-03 10:09:59 -0800118RenderThread& RenderThread::getInstance() {
119 // This is a pointer because otherwise __cxa_finalize
120 // will try to delete it like a Good Citizen but that causes us to crash
121 // because we don't want to delete the RenderThread normally.
122 static RenderThread* sInstance = new RenderThread();
123 gHasRenderThreadInstance = true;
124 return *sInstance;
125}
126
John Reck1bcacfd2017-11-03 10:12:19 -0700127RenderThread::RenderThread()
128 : ThreadBase()
John Reck56428472018-03-16 17:27:17 -0700129 , mVsyncSource(nullptr)
John Recke45b1fd2014-04-15 09:50:16 -0700130 , mVsyncRequested(false)
131 , mFrameCallbackTaskPending(false)
Chris Craikd41c4d82015-01-05 15:51:13 -0800132 , mRenderState(nullptr)
Derek Sollenberger0e3cba32016-11-09 11:58:36 -0500133 , mEglManager(nullptr)
134 , mVkManager(nullptr) {
Chris Craik2507c342015-05-04 14:36:49 -0700135 Properties::load();
John Reckf8441e62017-10-23 13:10:41 -0700136 start("RenderThread");
John Reckcec24ae2013-11-05 13:27:50 -0800137}
138
139RenderThread::~RenderThread() {
John Reck3b202512014-06-23 13:13:08 -0700140 LOG_ALWAYS_FATAL("Can't destroy the render thread");
John Reckcec24ae2013-11-05 13:27:50 -0800141}
142
John Recke45b1fd2014-04-15 09:50:16 -0700143void RenderThread::initializeDisplayEventReceiver() {
John Reck56428472018-03-16 17:27:17 -0700144 LOG_ALWAYS_FATAL_IF(mVsyncSource, "Initializing a second DisplayEventReceiver?");
John Recke45b1fd2014-04-15 09:50:16 -0700145
John Reck56428472018-03-16 17:27:17 -0700146 if (!Properties::isolatedProcess) {
147 auto receiver = std::make_unique<DisplayEventReceiver>();
148 status_t status = receiver->initCheck();
149 LOG_ALWAYS_FATAL_IF(status != NO_ERROR,
150 "Initialization of DisplayEventReceiver "
151 "failed with status: %d",
152 status);
153
154 // Register the FD
155 mLooper->addFd(receiver->getFd(), 0, Looper::EVENT_INPUT,
156 RenderThread::displayEventReceiverCallback, this);
157 mVsyncSource = new DisplayEventReceiverWrapper(std::move(receiver));
158 } else {
159 mVsyncSource = new DummyVsyncSource(this);
160 }
John Recke45b1fd2014-04-15 09:50:16 -0700161}
162
John Reck3b202512014-06-23 13:13:08 -0700163void RenderThread::initThreadLocals() {
John Reck56428472018-03-16 17:27:17 -0700164 mDisplayInfo = DeviceInfo::queryDisplayInfo();
John Reckb36016c2015-03-11 08:50:53 -0700165 nsecs_t frameIntervalNanos = static_cast<nsecs_t>(1000000000 / mDisplayInfo.fps);
166 mTimeLord.setFrameInterval(frameIntervalNanos);
John Reck3b202512014-06-23 13:13:08 -0700167 initializeDisplayEventReceiver();
168 mEglManager = new EglManager(*this);
John Reck0e89e2b2014-10-31 14:49:06 -0700169 mRenderState = new RenderState(*this);
Derek Sollenberger0e3cba32016-11-09 11:58:36 -0500170 mVkManager = new VulkanManager(*this);
Derek Sollenbergerf9e45d12017-06-01 13:07:39 -0400171 mCacheManager = new CacheManager(mDisplayInfo);
172}
173
174void RenderThread::dumpGraphicsMemory(int fd) {
John Reck34781b22017-07-05 16:39:36 -0700175 globalProfileData()->dump(fd);
Derek Sollenbergerf9e45d12017-06-01 13:07:39 -0400176
177 String8 cachesOutput;
178 String8 pipeline;
179 auto renderType = Properties::getRenderPipelineType();
180 switch (renderType) {
181 case RenderPipelineType::OpenGL: {
182 if (Caches::hasInstance()) {
183 cachesOutput.appendFormat("Caches:\n");
184 Caches::getInstance().dumpMemoryUsage(cachesOutput);
185 } else {
186 cachesOutput.appendFormat("No caches instance.");
187 }
188 pipeline.appendFormat("FrameBuilder");
189 break;
190 }
191 case RenderPipelineType::SkiaGL: {
192 mCacheManager->dumpMemoryUsage(cachesOutput, mRenderState);
193 pipeline.appendFormat("Skia (OpenGL)");
194 break;
195 }
196 case RenderPipelineType::SkiaVulkan: {
197 mCacheManager->dumpMemoryUsage(cachesOutput, mRenderState);
198 pipeline.appendFormat("Skia (Vulkan)");
199 break;
200 }
201 default:
John Reck1bcacfd2017-11-03 10:12:19 -0700202 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t)renderType);
Derek Sollenbergerf9e45d12017-06-01 13:07:39 -0400203 break;
204 }
205
John Reck47f5c3a2017-11-13 11:32:39 -0800206 dprintf(fd, "\n%s\n", cachesOutput.string());
207 dprintf(fd, "\nPipeline=%s\n", pipeline.string());
John Reck3b202512014-06-23 13:13:08 -0700208}
209
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500210Readback& RenderThread::readback() {
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500211 if (!mReadback) {
212 auto renderType = Properties::getRenderPipelineType();
213 switch (renderType) {
214 case RenderPipelineType::OpenGL:
215 mReadback = new OpenGLReadbackImpl(*this);
216 break;
217 case RenderPipelineType::SkiaGL:
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500218 mReadback = new skiapipeline::SkiaOpenGLReadback(*this);
219 break;
Stan Ilieva31973fe2018-01-12 11:50:29 -0500220 case RenderPipelineType::SkiaVulkan:
221 mReadback = new skiapipeline::SkiaVulkanReadback(*this);
222 break;
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500223 default:
John Reck1bcacfd2017-11-03 10:12:19 -0700224 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t)renderType);
Derek Sollenbergerc4fbada2016-11-07 16:05:41 -0500225 break;
226 }
227 }
228
229 return *mReadback;
230}
231
Greg Daniel660d6ec2017-12-08 11:44:27 -0500232void RenderThread::setGrContext(sk_sp<GrContext> context) {
Derek Sollenbergerf9e45d12017-06-01 13:07:39 -0400233 mCacheManager->reset(context);
Greg Daniel660d6ec2017-12-08 11:44:27 -0500234 if (mGrContext) {
Derek Sollenbergerf9e45d12017-06-01 13:07:39 -0400235 mGrContext->releaseResourcesAndAbandonContext();
236 }
Greg Daniel660d6ec2017-12-08 11:44:27 -0500237 mGrContext = std::move(context);
Derek Sollenbergerf9e45d12017-06-01 13:07:39 -0400238}
239
John Recke45b1fd2014-04-15 09:50:16 -0700240int RenderThread::displayEventReceiverCallback(int fd, int events, void* data) {
241 if (events & (Looper::EVENT_ERROR | Looper::EVENT_HANGUP)) {
242 ALOGE("Display event receiver pipe was closed or an error occurred. "
John Reck1bcacfd2017-11-03 10:12:19 -0700243 "events=0x%x",
244 events);
245 return 0; // remove the callback
John Recke45b1fd2014-04-15 09:50:16 -0700246 }
247
248 if (!(events & Looper::EVENT_INPUT)) {
249 ALOGW("Received spurious callback for unhandled poll event. "
John Reck1bcacfd2017-11-03 10:12:19 -0700250 "events=0x%x",
251 events);
252 return 1; // keep the callback
John Recke45b1fd2014-04-15 09:50:16 -0700253 }
254
255 reinterpret_cast<RenderThread*>(data)->drainDisplayEventQueue();
256
John Reck1bcacfd2017-11-03 10:12:19 -0700257 return 1; // keep the callback
John Recke45b1fd2014-04-15 09:50:16 -0700258}
259
John Recka733f892014-12-19 11:37:21 -0800260void RenderThread::drainDisplayEventQueue() {
John Recka5dda642014-05-22 15:43:54 -0700261 ATRACE_CALL();
John Reck56428472018-03-16 17:27:17 -0700262 nsecs_t vsyncEvent = mVsyncSource->latestVsyncEvent();
John Recke45b1fd2014-04-15 09:50:16 -0700263 if (vsyncEvent > 0) {
264 mVsyncRequested = false;
John Recka733f892014-12-19 11:37:21 -0800265 if (mTimeLord.vsyncReceived(vsyncEvent) && !mFrameCallbackTaskPending) {
John Recka5dda642014-05-22 15:43:54 -0700266 ATRACE_NAME("queue mFrameCallbackTask");
John Recke45b1fd2014-04-15 09:50:16 -0700267 mFrameCallbackTaskPending = true;
John Recka733f892014-12-19 11:37:21 -0800268 nsecs_t runAt = (vsyncEvent + DISPATCH_FRAME_CALLBACKS_DELAY);
John Reck1bcacfd2017-11-03 10:12:19 -0700269 queue().postAt(runAt, [this]() { dispatchFrameCallbacks(); });
John Recke45b1fd2014-04-15 09:50:16 -0700270 }
271 }
272}
273
274void RenderThread::dispatchFrameCallbacks() {
John Recka5dda642014-05-22 15:43:54 -0700275 ATRACE_CALL();
John Recke45b1fd2014-04-15 09:50:16 -0700276 mFrameCallbackTaskPending = false;
277
278 std::set<IFrameCallback*> callbacks;
279 mFrameCallbacks.swap(callbacks);
280
John Recka733f892014-12-19 11:37:21 -0800281 if (callbacks.size()) {
282 // Assume one of them will probably animate again so preemptively
283 // request the next vsync in case it occurs mid-frame
284 requestVsync();
John Reck1bcacfd2017-11-03 10:12:19 -0700285 for (std::set<IFrameCallback*>::iterator it = callbacks.begin(); it != callbacks.end();
286 it++) {
John Recka733f892014-12-19 11:37:21 -0800287 (*it)->doFrame();
288 }
John Recke45b1fd2014-04-15 09:50:16 -0700289 }
290}
291
John Recka5dda642014-05-22 15:43:54 -0700292void RenderThread::requestVsync() {
293 if (!mVsyncRequested) {
294 mVsyncRequested = true;
John Reck56428472018-03-16 17:27:17 -0700295 mVsyncSource->requestNextVsync();
John Recka5dda642014-05-22 15:43:54 -0700296 }
297}
298
John Reckcec24ae2013-11-05 13:27:50 -0800299bool RenderThread::threadLoop() {
John Reck21be43e2014-08-14 10:25:16 -0700300 setpriority(PRIO_PROCESS, 0, PRIORITY_DISPLAY);
John Reck259b25a2017-12-01 16:18:53 -0800301 if (gOnStartHook) {
302 gOnStartHook();
303 }
John Reck3b202512014-06-23 13:13:08 -0700304 initThreadLocals();
John Recke45b1fd2014-04-15 09:50:16 -0700305
John Reckf8441e62017-10-23 13:10:41 -0700306 while (true) {
307 waitForWork();
308 processQueue();
John Recka5dda642014-05-22 15:43:54 -0700309
310 if (mPendingRegistrationFrameCallbacks.size() && !mFrameCallbackTaskPending) {
John Recka733f892014-12-19 11:37:21 -0800311 drainDisplayEventQueue();
John Reck1bcacfd2017-11-03 10:12:19 -0700312 mFrameCallbacks.insert(mPendingRegistrationFrameCallbacks.begin(),
313 mPendingRegistrationFrameCallbacks.end());
John Recka5dda642014-05-22 15:43:54 -0700314 mPendingRegistrationFrameCallbacks.clear();
315 requestVsync();
316 }
John Recka22c9b22015-01-14 10:40:15 -0800317
318 if (!mFrameCallbackTaskPending && !mVsyncRequested && mFrameCallbacks.size()) {
319 // TODO: Clean this up. This is working around an issue where a combination
320 // of bad timing and slow drawing can result in dropping a stale vsync
321 // on the floor (correct!) but fails to schedule to listen for the
322 // next vsync (oops), so none of the callbacks are run.
323 requestVsync();
324 }
John Reckcec24ae2013-11-05 13:27:50 -0800325 }
326
327 return false;
328}
329
John Recke45b1fd2014-04-15 09:50:16 -0700330void RenderThread::postFrameCallback(IFrameCallback* callback) {
John Recka5dda642014-05-22 15:43:54 -0700331 mPendingRegistrationFrameCallbacks.insert(callback);
John Recke45b1fd2014-04-15 09:50:16 -0700332}
333
John Reck01a5ea32014-12-03 13:01:07 -0800334bool RenderThread::removeFrameCallback(IFrameCallback* callback) {
335 size_t erased;
336 erased = mFrameCallbacks.erase(callback);
337 erased |= mPendingRegistrationFrameCallbacks.erase(callback);
338 return erased;
John Recka5dda642014-05-22 15:43:54 -0700339}
340
341void RenderThread::pushBackFrameCallback(IFrameCallback* callback) {
342 if (mFrameCallbacks.erase(callback)) {
343 mPendingRegistrationFrameCallbacks.insert(callback);
344 }
John Recke45b1fd2014-04-15 09:50:16 -0700345}
346
Stan Iliev7bc3bc62017-05-24 13:28:36 -0400347sk_sp<Bitmap> RenderThread::allocateHardwareBitmap(SkBitmap& skBitmap) {
348 auto renderType = Properties::getRenderPipelineType();
349 switch (renderType) {
350 case RenderPipelineType::OpenGL:
351 return OpenGLPipeline::allocateHardwareBitmap(*this, skBitmap);
352 case RenderPipelineType::SkiaGL:
353 return skiapipeline::SkiaOpenGLPipeline::allocateHardwareBitmap(*this, skBitmap);
354 case RenderPipelineType::SkiaVulkan:
355 return skiapipeline::SkiaVulkanPipeline::allocateHardwareBitmap(*this, skBitmap);
356 default:
John Reck1bcacfd2017-11-03 10:12:19 -0700357 LOG_ALWAYS_FATAL("canvas context type %d not supported", (int32_t)renderType);
Stan Iliev7bc3bc62017-05-24 13:28:36 -0400358 break;
359 }
360 return nullptr;
361}
362
Stan Iliev6b894d72017-08-23 12:41:41 -0400363bool RenderThread::isCurrent() {
364 return gettid() == getInstance().getTid();
365}
366
John Reckcec24ae2013-11-05 13:27:50 -0800367} /* namespace renderthread */
368} /* namespace uirenderer */
369} /* namespace android */