CanvasContext.cpp revision 6fe991e5e76f9af9dab960100d5768d96d5f4daa
1/*
2 * Copyright (C) 2014 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#include "CanvasContext.h"
18
19#include "AnimationContext.h"
20#include "Caches.h"
21#include "DeferredLayerUpdater.h"
22#include "EglManager.h"
23#include "LayerRenderer.h"
24#include "OpenGLRenderer.h"
25#include "Properties.h"
26#include "RenderThread.h"
27#include "renderstate/RenderState.h"
28#include "renderstate/Stencil.h"
29#include "protos/hwui.pb.h"
30
31#if HWUI_NEW_OPS
32#include "BakedOpRenderer.h"
33#include "OpReorderer.h"
34#endif
35
36#include <cutils/properties.h>
37#include <google/protobuf/io/zero_copy_stream_impl.h>
38#include <private/hwui/DrawGlInfo.h>
39#include <strings.h>
40
41#include <algorithm>
42#include <fcntl.h>
43#include <sys/stat.h>
44
45#define TRIM_MEMORY_COMPLETE 80
46#define TRIM_MEMORY_UI_HIDDEN 20
47
48#define ENABLE_RENDERNODE_SERIALIZATION false
49
50#define LOG_FRAMETIME_MMA 0
51
52#if LOG_FRAMETIME_MMA
53static float sBenchMma = 0;
54static int sFrameCount = 0;
55static const float NANOS_PER_MILLIS_F = 1000000.0f;
56#endif
57
58namespace android {
59namespace uirenderer {
60namespace renderthread {
61
62CanvasContext::CanvasContext(RenderThread& thread, bool translucent,
63        RenderNode* rootRenderNode, IContextFactory* contextFactory)
64        : mRenderThread(thread)
65        , mEglManager(thread.eglManager())
66        , mOpaque(!translucent)
67        , mAnimationContext(contextFactory->createAnimationContext(mRenderThread.timeLord()))
68        , mJankTracker(thread.timeLord().frameIntervalNanos())
69        , mProfiler(mFrames)
70        , mContentDrawBounds(0, 0, 0, 0) {
71    mRenderNodes.emplace_back(rootRenderNode);
72    mRenderThread.renderState().registerCanvasContext(this);
73    mProfiler.setDensity(mRenderThread.mainDisplayInfo().density);
74}
75
76CanvasContext::~CanvasContext() {
77    destroy();
78    mRenderThread.renderState().unregisterCanvasContext(this);
79}
80
81void CanvasContext::destroy() {
82    stopDrawing();
83    setSurface(nullptr);
84    freePrefetechedLayers();
85    destroyHardwareResources();
86    mAnimationContext->destroy();
87    if (mCanvas) {
88        delete mCanvas;
89        mCanvas = nullptr;
90    }
91}
92
93void CanvasContext::setSurface(ANativeWindow* window) {
94    ATRACE_CALL();
95
96    mNativeWindow = window;
97
98    if (mEglSurface != EGL_NO_SURFACE) {
99        mEglManager.destroySurface(mEglSurface);
100        mEglSurface = EGL_NO_SURFACE;
101    }
102
103    if (window) {
104        mEglSurface = mEglManager.createSurface(window);
105    }
106
107    if (mEglSurface != EGL_NO_SURFACE) {
108        const bool preserveBuffer = (mSwapBehavior != kSwap_discardBuffer);
109        mBufferPreserved = mEglManager.setPreserveBuffer(mEglSurface, preserveBuffer);
110        mHaveNewSurface = true;
111        makeCurrent();
112    } else {
113        mRenderThread.removeFrameCallback(this);
114    }
115}
116
117void CanvasContext::requireSurface() {
118    LOG_ALWAYS_FATAL_IF(mEglSurface == EGL_NO_SURFACE,
119            "requireSurface() called but no surface set!");
120    makeCurrent();
121}
122
123void CanvasContext::setSwapBehavior(SwapBehavior swapBehavior) {
124    mSwapBehavior = swapBehavior;
125}
126
127bool CanvasContext::initialize(ANativeWindow* window) {
128    setSurface(window);
129#if !HWUI_NEW_OPS
130    if (mCanvas) return false;
131    mCanvas = new OpenGLRenderer(mRenderThread.renderState());
132    mCanvas->initProperties();
133#endif
134    return true;
135}
136
137void CanvasContext::updateSurface(ANativeWindow* window) {
138    setSurface(window);
139}
140
141bool CanvasContext::pauseSurface(ANativeWindow* window) {
142    return mRenderThread.removeFrameCallback(this);
143}
144
145// TODO: don't pass viewport size, it's automatic via EGL
146void CanvasContext::setup(int width, int height, float lightRadius,
147        uint8_t ambientShadowAlpha, uint8_t spotShadowAlpha) {
148    if (!mCanvas) return;
149    mCanvas->initLight(lightRadius, ambientShadowAlpha, spotShadowAlpha);
150}
151
152void CanvasContext::setLightCenter(const Vector3& lightCenter) {
153    if (!mCanvas) return;
154    mCanvas->setLightCenter(lightCenter);
155}
156
157void CanvasContext::setOpaque(bool opaque) {
158    mOpaque = opaque;
159}
160
161void CanvasContext::makeCurrent() {
162    // TODO: Figure out why this workaround is needed, see b/13913604
163    // In the meantime this matches the behavior of GLRenderer, so it is not a regression
164    EGLint error = 0;
165    mHaveNewSurface |= mEglManager.makeCurrent(mEglSurface, &error);
166    if (error) {
167        setSurface(nullptr);
168    }
169}
170
171void CanvasContext::processLayerUpdate(DeferredLayerUpdater* layerUpdater) {
172#if !HWUI_NEW_OPS
173    bool success = layerUpdater->apply();
174    LOG_ALWAYS_FATAL_IF(!success, "Failed to update layer!");
175    if (layerUpdater->backingLayer()->deferredUpdateScheduled) {
176        mCanvas->pushLayerUpdate(layerUpdater->backingLayer());
177    }
178#endif
179}
180
181static bool wasSkipped(FrameInfo* info) {
182    return info && ((*info)[FrameInfoIndex::Flags] & FrameInfoFlags::SkippedFrame);
183}
184
185void CanvasContext::prepareTree(TreeInfo& info, int64_t* uiFrameInfo,
186        int64_t syncQueued, RenderNode* target) {
187    mRenderThread.removeFrameCallback(this);
188
189    // If the previous frame was dropped we don't need to hold onto it, so
190    // just keep using the previous frame's structure instead
191    if (!wasSkipped(mCurrentFrameInfo)) {
192        mCurrentFrameInfo = &mFrames.next();
193    }
194    mCurrentFrameInfo->importUiThreadInfo(uiFrameInfo);
195    mCurrentFrameInfo->set(FrameInfoIndex::SyncQueued) = syncQueued;
196    mCurrentFrameInfo->markSyncStart();
197
198    info.damageAccumulator = &mDamageAccumulator;
199    info.renderer = mCanvas;
200    info.canvasContext = this;
201
202    mAnimationContext->startFrame(info.mode);
203    for (const sp<RenderNode>& node : mRenderNodes) {
204        // Only the primary target node will be drawn full - all other nodes would get drawn in
205        // real time mode. In case of a window, the primary node is the window content and the other
206        // node(s) are non client / filler nodes.
207        info.mode = (node.get() == target ? TreeInfo::MODE_FULL : TreeInfo::MODE_RT_ONLY);
208        node->prepareTree(info);
209    }
210    mAnimationContext->runRemainingAnimations(info);
211
212    freePrefetechedLayers();
213
214    if (CC_UNLIKELY(!mNativeWindow.get())) {
215        mCurrentFrameInfo->addFlag(FrameInfoFlags::SkippedFrame);
216        info.out.canDrawThisFrame = false;
217        return;
218    }
219
220    int runningBehind = 0;
221    // TODO: This query is moderately expensive, investigate adding some sort
222    // of fast-path based off when we last called eglSwapBuffers() as well as
223    // last vsync time. Or something.
224    mNativeWindow->query(mNativeWindow.get(),
225            NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND, &runningBehind);
226    info.out.canDrawThisFrame = !runningBehind;
227
228    if (!info.out.canDrawThisFrame) {
229        mCurrentFrameInfo->addFlag(FrameInfoFlags::SkippedFrame);
230    }
231
232    if (info.out.hasAnimations || !info.out.canDrawThisFrame) {
233        if (!info.out.requiresUiRedraw) {
234            // If animationsNeedsRedraw is set don't bother posting for an RT anim
235            // as we will just end up fighting the UI thread.
236            mRenderThread.postFrameCallback(this);
237        }
238    }
239}
240
241void CanvasContext::stopDrawing() {
242    mRenderThread.removeFrameCallback(this);
243}
244
245void CanvasContext::notifyFramePending() {
246    ATRACE_CALL();
247    mRenderThread.pushBackFrameCallback(this);
248}
249
250void CanvasContext::draw() {
251#if !HWUI_NEW_OPS
252    LOG_ALWAYS_FATAL_IF(!mCanvas || mEglSurface == EGL_NO_SURFACE,
253            "drawRenderNode called on a context with no canvas or surface!");
254#endif
255
256    SkRect dirty;
257    mDamageAccumulator.finish(&dirty);
258
259    // TODO: Re-enable after figuring out cause of b/22592975
260//    if (dirty.isEmpty() && Properties::skipEmptyFrames) {
261//        mCurrentFrameInfo->addFlag(FrameInfoFlags::SkippedFrame);
262//        return;
263//    }
264
265    mCurrentFrameInfo->markIssueDrawCommandsStart();
266
267    Frame frame = mEglManager.beginFrame(mEglSurface);
268
269    if (frame.width() != lastFrameWidth || frame.height() != lastFrameHeight) {
270        // can't rely on prior content of window if viewport size changes
271        dirty.setEmpty();
272        lastFrameWidth = frame.width();
273        lastFrameHeight = frame.height();
274    } else if (mHaveNewSurface || frame.bufferAge() == 0) {
275        // New surface needs a full draw
276        dirty.setEmpty();
277    } else {
278        if (!dirty.isEmpty() && !dirty.intersect(0, 0, frame.width(), frame.height())) {
279            ALOGW("Dirty " RECT_STRING " doesn't intersect with 0 0 %d %d ?",
280                    SK_RECT_ARGS(dirty), frame.width(), frame.height());
281            dirty.setEmpty();
282        }
283        profiler().unionDirty(&dirty);
284    }
285
286    if (dirty.isEmpty()) {
287        dirty.set(0, 0, frame.width(), frame.height());
288    }
289
290    // At this point dirty is the area of the screen to update. However,
291    // the area of the frame we need to repaint is potentially different, so
292    // stash the screen area for later
293    SkRect screenDirty(dirty);
294
295    // If the buffer age is 0 we do a full-screen repaint (handled above)
296    // If the buffer age is 1 the buffer contents are the same as they were
297    // last frame so there's nothing to union() against
298    // Therefore we only care about the > 1 case.
299    if (frame.bufferAge() > 1) {
300        if (frame.bufferAge() > (int) mDamageHistory.size()) {
301            // We don't have enough history to handle this old of a buffer
302            // Just do a full-draw
303            dirty.set(0, 0, frame.width(), frame.height());
304        } else {
305            // At this point we haven't yet added the latest frame
306            // to the damage history (happens below)
307            // So we need to damage
308            for (int i = mDamageHistory.size() - 1;
309                    i > ((int) mDamageHistory.size()) - frame.bufferAge(); i--) {
310                dirty.join(mDamageHistory[i]);
311            }
312        }
313    }
314
315    // Add the screen damage to the ring buffer.
316    mDamageHistory.next() = screenDirty;
317
318    mEglManager.damageFrame(frame, dirty);
319
320#if HWUI_NEW_OPS
321    OpReorderer reorderer;
322    reorderer.defer(dirty, frame.width(), frame.height(), mRenderNodes);
323    BakedOpRenderer::Info info(Caches::getInstance(), mRenderThread.renderState(),
324            frame.width(), frame.height(), mOpaque);
325    // TODO: profiler().draw(mCanvas);
326    reorderer.replayBakedOps<BakedOpRenderer>(info);
327
328    bool drew = info.didDraw;
329
330#else
331    mCanvas->prepareDirty(frame.width(), frame.height(),
332            dirty.fLeft, dirty.fTop, dirty.fRight, dirty.fBottom, mOpaque);
333
334    Rect outBounds;
335    // It there are multiple render nodes, they are as follows:
336    // #0 - backdrop
337    // #1 - content (positioned at (0,0) and clipped to - its bounds mContentDrawBounds)
338    // #2 - frame
339    // Usually the backdrop cannot be seen since it will be entirely covered by the content. While
340    // resizing however it might become partially visible. The following render loop will crop the
341    // backdrop against the content and draw the remaining part of it. It will then crop the content
342    // against the backdrop (since that indicates a shrinking of the window) and then the frame
343    // around everything.
344    // The bounds of the backdrop against which the content should be clipped.
345    Rect backdropBounds = mContentDrawBounds;
346    // Usually the contents bounds should be mContentDrawBounds - however - we will
347    // move it towards the fixed edge to give it a more stable appearance (for the moment).
348    Rect contentBounds;
349    // If there is no content bounds we ignore the layering as stated above and start with 2.
350    int layer = (mContentDrawBounds.isEmpty() || mRenderNodes.size() <= 2) ? 2 : 0;
351    // Draw all render nodes. Note that
352    for (const sp<RenderNode>& node : mRenderNodes) {
353        if (layer == 0) { // Backdrop.
354            // Draw the backdrop clipped to the inverse content bounds, but assume that the content
355            // was moved to the upper left corner.
356            const RenderProperties& properties = node->properties();
357            Rect targetBounds(properties.getLeft(), properties.getTop(),
358                              properties.getRight(), properties.getBottom());
359            // Move the content bounds towards the fixed corner of the backdrop.
360            const int x = targetBounds.left;
361            const int y = targetBounds.top;
362            contentBounds.set(x, y, x + mContentDrawBounds.getWidth(),
363                                    y + mContentDrawBounds.getHeight());
364            // Remember the intersection of the target bounds and the intersection bounds against
365            // which we have to crop the content.
366            backdropBounds.set(x, y, x + backdropBounds.getWidth(), y + backdropBounds.getHeight());
367            backdropBounds.doIntersect(targetBounds);
368            // Check if we have to draw something on the left side ...
369            if (targetBounds.left < contentBounds.left) {
370                mCanvas->save(SkCanvas::kClip_SaveFlag);
371                if (mCanvas->clipRect(targetBounds.left, targetBounds.top,
372                                      contentBounds.left, targetBounds.bottom,
373                                      SkRegion::kIntersect_Op)) {
374                    mCanvas->drawRenderNode(node.get(), outBounds);
375                }
376                // Reduce the target area by the area we have just painted.
377                targetBounds.left = std::min(contentBounds.left, targetBounds.right);
378                mCanvas->restore();
379            }
380            // ... or on the right side ...
381            if (targetBounds.right > contentBounds.right &&
382                !targetBounds.isEmpty()) {
383                mCanvas->save(SkCanvas::kClip_SaveFlag);
384                if (mCanvas->clipRect(contentBounds.right, targetBounds.top,
385                                      targetBounds.right, targetBounds.bottom,
386                                      SkRegion::kIntersect_Op)) {
387                    mCanvas->drawRenderNode(node.get(), outBounds);
388                }
389                // Reduce the target area by the area we have just painted.
390                targetBounds.right = std::max(targetBounds.left, contentBounds.right);
391                mCanvas->restore();
392            }
393            // ... or at the top ...
394            if (targetBounds.top < contentBounds.top &&
395                !targetBounds.isEmpty()) {
396                mCanvas->save(SkCanvas::kClip_SaveFlag);
397                if (mCanvas->clipRect(targetBounds.left, targetBounds.top, targetBounds.right,
398                                      contentBounds.top,
399                                      SkRegion::kIntersect_Op)) {
400                    mCanvas->drawRenderNode(node.get(), outBounds);
401                }
402                // Reduce the target area by the area we have just painted.
403                targetBounds.top = std::min(contentBounds.top, targetBounds.bottom);
404                mCanvas->restore();
405            }
406            // ... or at the bottom.
407            if (targetBounds.bottom > contentBounds.bottom &&
408                !targetBounds.isEmpty()) {
409                mCanvas->save(SkCanvas::kClip_SaveFlag);
410                if (mCanvas->clipRect(targetBounds.left, contentBounds.bottom, targetBounds.right,
411                                      targetBounds.bottom, SkRegion::kIntersect_Op)) {
412                    mCanvas->drawRenderNode(node.get(), outBounds);
413                }
414                mCanvas->restore();
415            }
416        } else if (layer == 1) { // Content
417            // It gets cropped against the bounds of the backdrop to stay inside.
418            mCanvas->save(SkCanvas::kClip_SaveFlag | SkCanvas::kMatrix_SaveFlag);
419
420            // We shift and clip the content to match its final location in the window.
421            const float left = mContentDrawBounds.left;
422            const float top = mContentDrawBounds.top;
423            const float dx = backdropBounds.left - left;
424            const float dy = backdropBounds.top - top;
425            const float width = backdropBounds.getWidth();
426            const float height = backdropBounds.getHeight();
427            mCanvas->translate(dx, dy);
428            if (mCanvas->clipRect(left, top, left + width, top + height, SkRegion::kIntersect_Op)) {
429                mCanvas->drawRenderNode(node.get(), outBounds);
430            }
431            mCanvas->restore();
432        } else { // draw the rest on top at will!
433            mCanvas->drawRenderNode(node.get(), outBounds);
434        }
435        layer++;
436    }
437
438    profiler().draw(mCanvas);
439
440    bool drew = mCanvas->finish();
441#endif
442    // Even if we decided to cancel the frame, from the perspective of jank
443    // metrics the frame was swapped at this point
444    mCurrentFrameInfo->markSwapBuffers();
445
446    if (drew) {
447        if (CC_UNLIKELY(!mEglManager.swapBuffers(frame, screenDirty))) {
448            setSurface(nullptr);
449        }
450        mHaveNewSurface = false;
451    }
452
453    // TODO: Use a fence for real completion?
454    mCurrentFrameInfo->markFrameCompleted();
455
456#if LOG_FRAMETIME_MMA
457    float thisFrame = mCurrentFrameInfo->duration(
458            FrameInfoIndex::IssueDrawCommandsStart,
459            FrameInfoIndex::FrameCompleted) / NANOS_PER_MILLIS_F;
460    if (sFrameCount) {
461        sBenchMma = ((9 * sBenchMma) + thisFrame) / 10;
462    } else {
463        sBenchMma = thisFrame;
464    }
465    if (++sFrameCount == 10) {
466        sFrameCount = 1;
467        ALOGD("Average frame time: %.4f", sBenchMma);
468    }
469#endif
470
471    mJankTracker.addFrame(*mCurrentFrameInfo);
472    mRenderThread.jankTracker().addFrame(*mCurrentFrameInfo);
473}
474
475// Called by choreographer to do an RT-driven animation
476void CanvasContext::doFrame() {
477    if (CC_UNLIKELY(!mCanvas || mEglSurface == EGL_NO_SURFACE)) {
478        return;
479    }
480    prepareAndDraw(nullptr);
481}
482
483void CanvasContext::prepareAndDraw(RenderNode* node) {
484    ATRACE_CALL();
485
486    int64_t frameInfo[UI_THREAD_FRAME_INFO_SIZE];
487    UiFrameInfoBuilder(frameInfo)
488        .addFlag(FrameInfoFlags::RTAnimation)
489        .setVsync(mRenderThread.timeLord().computeFrameTimeNanos(),
490                mRenderThread.timeLord().latestVsync());
491
492    TreeInfo info(TreeInfo::MODE_RT_ONLY, mRenderThread.renderState());
493    prepareTree(info, frameInfo, systemTime(CLOCK_MONOTONIC), node);
494    if (info.out.canDrawThisFrame) {
495        draw();
496    }
497}
498
499void CanvasContext::invokeFunctor(RenderThread& thread, Functor* functor) {
500    ATRACE_CALL();
501    DrawGlInfo::Mode mode = DrawGlInfo::kModeProcessNoContext;
502    if (thread.eglManager().hasEglContext()) {
503        mode = DrawGlInfo::kModeProcess;
504    }
505
506    thread.renderState().invokeFunctor(functor, mode, nullptr);
507}
508
509void CanvasContext::markLayerInUse(RenderNode* node) {
510    if (mPrefetechedLayers.erase(node)) {
511        node->decStrong(nullptr);
512    }
513}
514
515static void destroyPrefetechedNode(RenderNode* node) {
516    ALOGW("Incorrectly called buildLayer on View: %s, destroying layer...", node->getName());
517    node->destroyHardwareResources();
518    node->decStrong(nullptr);
519}
520
521void CanvasContext::freePrefetechedLayers() {
522    if (mPrefetechedLayers.size()) {
523        std::for_each(mPrefetechedLayers.begin(), mPrefetechedLayers.end(), destroyPrefetechedNode);
524        mPrefetechedLayers.clear();
525    }
526}
527
528void CanvasContext::buildLayer(RenderNode* node) {
529    ATRACE_CALL();
530    if (!mEglManager.hasEglContext() || !mCanvas) {
531        return;
532    }
533    // buildLayer() will leave the tree in an unknown state, so we must stop drawing
534    stopDrawing();
535
536    TreeInfo info(TreeInfo::MODE_FULL, mRenderThread.renderState());
537    info.damageAccumulator = &mDamageAccumulator;
538    info.renderer = mCanvas;
539    info.runAnimations = false;
540    node->prepareTree(info);
541    SkRect ignore;
542    mDamageAccumulator.finish(&ignore);
543    // Tickle the GENERIC property on node to mark it as dirty for damaging
544    // purposes when the frame is actually drawn
545    node->setPropertyFieldsDirty(RenderNode::GENERIC);
546
547    mCanvas->markLayersAsBuildLayers();
548    mCanvas->flushLayerUpdates();
549
550    node->incStrong(nullptr);
551    mPrefetechedLayers.insert(node);
552}
553
554bool CanvasContext::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap) {
555    layer->apply();
556    return LayerRenderer::copyLayer(mRenderThread.renderState(), layer->backingLayer(), bitmap);
557}
558
559void CanvasContext::destroyHardwareResources() {
560    stopDrawing();
561    if (mEglManager.hasEglContext()) {
562        freePrefetechedLayers();
563        for (const sp<RenderNode>& node : mRenderNodes) {
564            node->destroyHardwareResources();
565        }
566        Caches& caches = Caches::getInstance();
567        // Make sure to release all the textures we were owning as there won't
568        // be another draw
569        caches.textureCache.resetMarkInUse(this);
570        caches.flush(Caches::FlushMode::Layers);
571    }
572}
573
574void CanvasContext::trimMemory(RenderThread& thread, int level) {
575    // No context means nothing to free
576    if (!thread.eglManager().hasEglContext()) return;
577
578    ATRACE_CALL();
579    if (level >= TRIM_MEMORY_COMPLETE) {
580        Caches::getInstance().flush(Caches::FlushMode::Full);
581        thread.eglManager().destroy();
582    } else if (level >= TRIM_MEMORY_UI_HIDDEN) {
583        Caches::getInstance().flush(Caches::FlushMode::Moderate);
584    }
585}
586
587void CanvasContext::runWithGlContext(RenderTask* task) {
588    LOG_ALWAYS_FATAL_IF(!mEglManager.hasEglContext(),
589            "GL context not initialized!");
590    task->run();
591}
592
593Layer* CanvasContext::createTextureLayer() {
594    requireSurface();
595    return LayerRenderer::createTextureLayer(mRenderThread.renderState());
596}
597
598void CanvasContext::setTextureAtlas(RenderThread& thread,
599        const sp<GraphicBuffer>& buffer, int64_t* map, size_t mapSize) {
600    thread.eglManager().setTextureAtlas(buffer, map, mapSize);
601}
602
603void CanvasContext::dumpFrames(int fd) {
604    FILE* file = fdopen(fd, "a");
605    fprintf(file, "\n\n---PROFILEDATA---\n");
606    for (size_t i = 0; i < static_cast<size_t>(FrameInfoIndex::NumIndexes); i++) {
607        fprintf(file, "%s", FrameInfoNames[i].c_str());
608        fprintf(file, ",");
609    }
610    for (size_t i = 0; i < mFrames.size(); i++) {
611        FrameInfo& frame = mFrames[i];
612        if (frame[FrameInfoIndex::SyncStart] == 0) {
613            continue;
614        }
615        fprintf(file, "\n");
616        for (int i = 0; i < static_cast<int>(FrameInfoIndex::NumIndexes); i++) {
617            fprintf(file, "%" PRId64 ",", frame[i]);
618        }
619    }
620    fprintf(file, "\n---PROFILEDATA---\n\n");
621    fflush(file);
622}
623
624void CanvasContext::resetFrameStats() {
625    mFrames.clear();
626    mRenderThread.jankTracker().reset();
627}
628
629void CanvasContext::serializeDisplayListTree() {
630#if ENABLE_RENDERNODE_SERIALIZATION
631    using namespace google::protobuf::io;
632    char package[128];
633    // Check whether tracing is enabled for this process.
634    FILE * file = fopen("/proc/self/cmdline", "r");
635    if (file) {
636        if (!fgets(package, 128, file)) {
637            ALOGE("Error reading cmdline: %s (%d)", strerror(errno), errno);
638            fclose(file);
639            return;
640        }
641        fclose(file);
642    } else {
643        ALOGE("Error opening /proc/self/cmdline: %s (%d)", strerror(errno),
644                errno);
645        return;
646    }
647    char path[1024];
648    snprintf(path, 1024, "/data/data/%s/cache/rendertree_dump", package);
649    int fd = open(path, O_CREAT | O_WRONLY, S_IRWXU | S_IRGRP | S_IROTH);
650    if (fd == -1) {
651        ALOGD("Failed to open '%s'", path);
652        return;
653    }
654    proto::RenderNode tree;
655    // TODO: Streaming writes?
656    mRootRenderNode->copyTo(&tree);
657    std::string data = tree.SerializeAsString();
658    write(fd, data.c_str(), data.length());
659    close(fd);
660#endif
661}
662
663} /* namespace renderthread */
664} /* namespace uirenderer */
665} /* namespace android */
666