Surface.h revision 0a61b0c813f5991bf462e36a2314dda062727a10
1/*
2 * Copyright (C) 2010 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#ifndef ANDROID_GUI_SURFACE_H
18#define ANDROID_GUI_SURFACE_H
19
20#include <gui/IGraphicBufferProducer.h>
21#include <gui/BufferQueue.h>
22
23#include <ui/ANativeObjectBase.h>
24#include <ui/Region.h>
25
26#include <binder/Parcelable.h>
27
28#include <utils/RefBase.h>
29#include <utils/threads.h>
30#include <utils/KeyedVector.h>
31
32struct ANativeWindow_Buffer;
33
34namespace android {
35
36class ISurfaceComposer;
37
38/*
39 * An implementation of ANativeWindow that feeds graphics buffers into a
40 * BufferQueue.
41 *
42 * This is typically used by programs that want to render frames through
43 * some means (maybe OpenGL, a software renderer, or a hardware decoder)
44 * and have the frames they create forwarded to SurfaceFlinger for
45 * compositing.  For example, a video decoder could render a frame and call
46 * eglSwapBuffers(), which invokes ANativeWindow callbacks defined by
47 * Surface.  Surface then forwards the buffers through Binder IPC
48 * to the BufferQueue's producer interface, providing the new frame to a
49 * consumer such as GLConsumer.
50 */
51class Surface
52    : public ANativeObjectBase<ANativeWindow, Surface, RefBase>
53{
54public:
55
56    /*
57     * creates a Surface from the given IGraphicBufferProducer (which concrete
58     * implementation is a BufferQueue).
59     *
60     * Surface is mainly state-less while it's disconnected, it can be
61     * viewed as a glorified IGraphicBufferProducer holder. It's therefore
62     * safe to create other Surfaces from the same IGraphicBufferProducer.
63     *
64     * However, once a Surface is connected, it'll prevent other Surfaces
65     * referring to the same IGraphicBufferProducer to become connected and
66     * therefore prevent them to be used as actual producers of buffers.
67     *
68     * the controlledByApp flag indicates that this Surface (producer) is
69     * controlled by the application. This flag is used at connect time.
70     */
71    explicit Surface(const sp<IGraphicBufferProducer>& bufferProducer,
72            bool controlledByApp = false);
73
74    /* getIGraphicBufferProducer() returns the IGraphicBufferProducer this
75     * Surface was created with. Usually it's an error to use the
76     * IGraphicBufferProducer while the Surface is connected.
77     */
78    sp<IGraphicBufferProducer> getIGraphicBufferProducer() const;
79
80    /* convenience function to check that the given surface is non NULL as
81     * well as its IGraphicBufferProducer */
82    static bool isValid(const sp<Surface>& surface) {
83        return surface != NULL && surface->getIGraphicBufferProducer() != NULL;
84    }
85
86    /* Attaches a sideband buffer stream to the Surface's IGraphicBufferProducer.
87     *
88     * A sideband stream is a device-specific mechanism for passing buffers
89     * from the producer to the consumer without using dequeueBuffer/
90     * queueBuffer. If a sideband stream is present, the consumer can choose
91     * whether to acquire buffers from the sideband stream or from the queued
92     * buffers.
93     *
94     * Passing NULL or a different stream handle will detach the previous
95     * handle if any.
96     */
97    void setSidebandStream(const sp<NativeHandle>& stream);
98
99    /* Allocates buffers based on the current dimensions/format.
100     *
101     * This function will allocate up to the maximum number of buffers
102     * permitted by the current BufferQueue configuration. It will use the
103     * default format and dimensions. This is most useful to avoid an allocation
104     * delay during dequeueBuffer. If there are already the maximum number of
105     * buffers allocated, this function has no effect.
106     */
107    void allocateBuffers();
108
109    /* Sets the generation number on the IGraphicBufferProducer and updates the
110     * generation number on any buffers attached to the Surface after this call.
111     * See IGBP::setGenerationNumber for more information. */
112    status_t setGenerationNumber(uint32_t generationNumber);
113
114    // See IGraphicBufferProducer::getConsumerName
115    String8 getConsumerName() const;
116
117    // See IGraphicBufferProducer::getNextFrameNumber
118    uint64_t getNextFrameNumber() const;
119
120    /* Set the scaling mode to be used with a Surface.
121     * See NATIVE_WINDOW_SET_SCALING_MODE and its parameters
122     * in <system/window.h>. */
123    int setScalingMode(int mode);
124
125    // See IGraphicBufferProducer::setDequeueTimeout
126    status_t setDequeueTimeout(nsecs_t timeout);
127
128    /*
129     * Wait for frame number to increase past lastFrame for at most
130     * timeoutNs. Useful for one thread to wait for another unknown
131     * thread to queue a buffer.
132     */
133    bool waitForNextFrame(uint64_t lastFrame, nsecs_t timeout);
134
135    // See IGraphicBufferProducer::getLastQueuedBuffer
136    // See GLConsumer::getTransformMatrix for outTransformMatrix format
137    status_t getLastQueuedBuffer(sp<GraphicBuffer>* outBuffer,
138            sp<Fence>* outFence, float outTransformMatrix[16]);
139
140    status_t getDisplayRefreshCycleDuration(nsecs_t* outRefreshDuration);
141
142    /* Enables or disables frame timestamp tracking. It is disabled by default
143     * to avoid overhead during queue and dequeue for applications that don't
144     * need the feature. If disabled, calls to getFrameTimestamps will fail.
145     */
146    void enableFrameTimestamps(bool enable);
147
148    status_t getCompositorTiming(
149            nsecs_t* compositeDeadline, nsecs_t* compositeInterval,
150            nsecs_t* compositeToPresentLatency);
151
152    // See IGraphicBufferProducer::getFrameTimestamps
153    status_t getFrameTimestamps(uint64_t frameNumber,
154            nsecs_t* outRequestedPresentTime, nsecs_t* outAcquireTime,
155            nsecs_t* outLatchTime, nsecs_t* outFirstRefreshStartTime,
156            nsecs_t* outLastRefreshStartTime, nsecs_t* outGlCompositionDoneTime,
157            nsecs_t* outDisplayPresentTime, nsecs_t* outDisplayRetireTime,
158            nsecs_t* outDequeueReadyTime, nsecs_t* outReleaseTime);
159
160    status_t getUniqueId(uint64_t* outId) const;
161
162protected:
163    virtual ~Surface();
164
165    // Virtual for testing.
166    virtual sp<ISurfaceComposer> composerService() const;
167    virtual nsecs_t now() const;
168
169private:
170    // can't be copied
171    Surface& operator = (const Surface& rhs);
172    Surface(const Surface& rhs);
173
174    // ANativeWindow hooks
175    static int hook_cancelBuffer(ANativeWindow* window,
176            ANativeWindowBuffer* buffer, int fenceFd);
177    static int hook_dequeueBuffer(ANativeWindow* window,
178            ANativeWindowBuffer** buffer, int* fenceFd);
179    static int hook_perform(ANativeWindow* window, int operation, ...);
180    static int hook_query(const ANativeWindow* window, int what, int* value);
181    static int hook_queueBuffer(ANativeWindow* window,
182            ANativeWindowBuffer* buffer, int fenceFd);
183    static int hook_setSwapInterval(ANativeWindow* window, int interval);
184
185    static int hook_cancelBuffer_DEPRECATED(ANativeWindow* window,
186            ANativeWindowBuffer* buffer);
187    static int hook_dequeueBuffer_DEPRECATED(ANativeWindow* window,
188            ANativeWindowBuffer** buffer);
189    static int hook_lockBuffer_DEPRECATED(ANativeWindow* window,
190            ANativeWindowBuffer* buffer);
191    static int hook_queueBuffer_DEPRECATED(ANativeWindow* window,
192            ANativeWindowBuffer* buffer);
193
194    int dispatchConnect(va_list args);
195    int dispatchDisconnect(va_list args);
196    int dispatchSetBufferCount(va_list args);
197    int dispatchSetBuffersGeometry(va_list args);
198    int dispatchSetBuffersDimensions(va_list args);
199    int dispatchSetBuffersUserDimensions(va_list args);
200    int dispatchSetBuffersFormat(va_list args);
201    int dispatchSetScalingMode(va_list args);
202    int dispatchSetBuffersTransform(va_list args);
203    int dispatchSetBuffersStickyTransform(va_list args);
204    int dispatchSetBuffersTimestamp(va_list args);
205    int dispatchSetCrop(va_list args);
206    int dispatchSetPostTransformCrop(va_list args);
207    int dispatchSetUsage(va_list args);
208    int dispatchLock(va_list args);
209    int dispatchUnlockAndPost(va_list args);
210    int dispatchSetSidebandStream(va_list args);
211    int dispatchSetBuffersDataSpace(va_list args);
212    int dispatchSetSurfaceDamage(va_list args);
213    int dispatchSetSharedBufferMode(va_list args);
214    int dispatchSetAutoRefresh(va_list args);
215    int dispatchGetDisplayRefreshCycleDuration(va_list args);
216    int dispatchGetNextFrameId(va_list args);
217    int dispatchEnableFrameTimestamps(va_list args);
218    int dispatchGetCompositorTiming(va_list args);
219    int dispatchGetFrameTimestamps(va_list args);
220
221protected:
222    virtual int dequeueBuffer(ANativeWindowBuffer** buffer, int* fenceFd);
223    virtual int cancelBuffer(ANativeWindowBuffer* buffer, int fenceFd);
224    virtual int queueBuffer(ANativeWindowBuffer* buffer, int fenceFd);
225    virtual int perform(int operation, va_list args);
226    virtual int setSwapInterval(int interval);
227
228    virtual int lockBuffer_DEPRECATED(ANativeWindowBuffer* buffer);
229
230    virtual int connect(int api);
231    virtual int setBufferCount(int bufferCount);
232    virtual int setBuffersUserDimensions(uint32_t width, uint32_t height);
233    virtual int setBuffersFormat(PixelFormat format);
234    virtual int setBuffersTransform(uint32_t transform);
235    virtual int setBuffersStickyTransform(uint32_t transform);
236    virtual int setBuffersTimestamp(int64_t timestamp);
237    virtual int setBuffersDataSpace(android_dataspace dataSpace);
238    virtual int setCrop(Rect const* rect);
239    virtual int setUsage(uint32_t reqUsage);
240    virtual void setSurfaceDamage(android_native_rect_t* rects, size_t numRects);
241
242public:
243    virtual int disconnect(int api,
244            IGraphicBufferProducer::DisconnectMode mode =
245                    IGraphicBufferProducer::DisconnectMode::Api);
246
247    virtual int setMaxDequeuedBufferCount(int maxDequeuedBuffers);
248    virtual int setAsyncMode(bool async);
249    virtual int setSharedBufferMode(bool sharedBufferMode);
250    virtual int setAutoRefresh(bool autoRefresh);
251    virtual int setBuffersDimensions(uint32_t width, uint32_t height);
252    virtual int lock(ANativeWindow_Buffer* outBuffer, ARect* inOutDirtyBounds);
253    virtual int unlockAndPost();
254    virtual int query(int what, int* value) const;
255
256    virtual int connect(int api, const sp<IProducerListener>& listener);
257    virtual int detachNextBuffer(sp<GraphicBuffer>* outBuffer,
258            sp<Fence>* outFence);
259    virtual int attachBuffer(ANativeWindowBuffer*);
260
261protected:
262    enum { NUM_BUFFER_SLOTS = BufferQueue::NUM_BUFFER_SLOTS };
263    enum { DEFAULT_FORMAT = PIXEL_FORMAT_RGBA_8888 };
264
265    void querySupportedTimestampsLocked() const;
266
267    void freeAllBuffers();
268    int getSlotFromBufferLocked(android_native_buffer_t* buffer) const;
269
270    struct BufferSlot {
271        sp<GraphicBuffer> buffer;
272        Region dirtyRegion;
273    };
274
275    // mSurfaceTexture is the interface to the surface texture server. All
276    // operations on the surface texture client ultimately translate into
277    // interactions with the server using this interface.
278    // TODO: rename to mBufferProducer
279    sp<IGraphicBufferProducer> mGraphicBufferProducer;
280
281    // mSlots stores the buffers that have been allocated for each buffer slot.
282    // It is initialized to null pointers, and gets filled in with the result of
283    // IGraphicBufferProducer::requestBuffer when the client dequeues a buffer from a
284    // slot that has not yet been used. The buffer allocated to a slot will also
285    // be replaced if the requested buffer usage or geometry differs from that
286    // of the buffer allocated to a slot.
287    BufferSlot mSlots[NUM_BUFFER_SLOTS];
288
289    // mReqWidth is the buffer width that will be requested at the next dequeue
290    // operation. It is initialized to 1.
291    uint32_t mReqWidth;
292
293    // mReqHeight is the buffer height that will be requested at the next
294    // dequeue operation. It is initialized to 1.
295    uint32_t mReqHeight;
296
297    // mReqFormat is the buffer pixel format that will be requested at the next
298    // deuque operation. It is initialized to PIXEL_FORMAT_RGBA_8888.
299    PixelFormat mReqFormat;
300
301    // mReqUsage is the set of buffer usage flags that will be requested
302    // at the next deuque operation. It is initialized to 0.
303    uint32_t mReqUsage;
304
305    // mTimestamp is the timestamp that will be used for the next buffer queue
306    // operation. It defaults to NATIVE_WINDOW_TIMESTAMP_AUTO, which means that
307    // a timestamp is auto-generated when queueBuffer is called.
308    int64_t mTimestamp;
309
310    // mDataSpace is the buffer dataSpace that will be used for the next buffer
311    // queue operation. It defaults to HAL_DATASPACE_UNKNOWN, which
312    // means that the buffer contains some type of color data.
313    android_dataspace mDataSpace;
314
315    // mCrop is the crop rectangle that will be used for the next buffer
316    // that gets queued. It is set by calling setCrop.
317    Rect mCrop;
318
319    // mScalingMode is the scaling mode that will be used for the next
320    // buffers that get queued. It is set by calling setScalingMode.
321    int mScalingMode;
322
323    // mTransform is the transform identifier that will be used for the next
324    // buffer that gets queued. It is set by calling setTransform.
325    uint32_t mTransform;
326
327    // mStickyTransform is a transform that is applied on top of mTransform
328    // in each buffer that is queued.  This is typically used to force the
329    // compositor to apply a transform, and will prevent the transform hint
330    // from being set by the compositor.
331    uint32_t mStickyTransform;
332
333    // mDefaultWidth is default width of the buffers, regardless of the
334    // native_window_set_buffers_dimensions call.
335    uint32_t mDefaultWidth;
336
337    // mDefaultHeight is default height of the buffers, regardless of the
338    // native_window_set_buffers_dimensions call.
339    uint32_t mDefaultHeight;
340
341    // mUserWidth, if non-zero, is an application-specified override
342    // of mDefaultWidth.  This is lower priority than the width set by
343    // native_window_set_buffers_dimensions.
344    uint32_t mUserWidth;
345
346    // mUserHeight, if non-zero, is an application-specified override
347    // of mDefaultHeight.  This is lower priority than the height set
348    // by native_window_set_buffers_dimensions.
349    uint32_t mUserHeight;
350
351    // mTransformHint is the transform probably applied to buffers of this
352    // window. this is only a hint, actual transform may differ.
353    uint32_t mTransformHint;
354
355    // mProducerControlledByApp whether this buffer producer is controlled
356    // by the application
357    bool mProducerControlledByApp;
358
359    // mSwapIntervalZero set if we should drop buffers at queue() time to
360    // achieve an asynchronous swap interval
361    bool mSwapIntervalZero;
362
363    // mConsumerRunningBehind whether the consumer is running more than
364    // one buffer behind the producer.
365    mutable bool mConsumerRunningBehind;
366
367    // mMutex is the mutex used to prevent concurrent access to the member
368    // variables of Surface objects. It must be locked whenever the
369    // member variables are accessed.
370    mutable Mutex mMutex;
371
372    // must be used from the lock/unlock thread
373    sp<GraphicBuffer>           mLockedBuffer;
374    sp<GraphicBuffer>           mPostedBuffer;
375    bool                        mConnectedToCpu;
376
377    // When a CPU producer is attached, this reflects the region that the
378    // producer wished to update as well as whether the Surface was able to copy
379    // the previous buffer back to allow a partial update.
380    //
381    // When a non-CPU producer is attached, this reflects the surface damage
382    // (the change since the previous frame) passed in by the producer.
383    Region mDirtyRegion;
384
385    // Stores the current generation number. See setGenerationNumber and
386    // IGraphicBufferProducer::setGenerationNumber for more information.
387    uint32_t mGenerationNumber;
388
389    // Caches the values that have been passed to the producer.
390    bool mSharedBufferMode;
391    bool mAutoRefresh;
392
393    // If in shared buffer mode and auto refresh is enabled, store the shared
394    // buffer slot and return it for all calls to queue/dequeue without going
395    // over Binder.
396    int mSharedBufferSlot;
397
398    // This is true if the shared buffer has already been queued/canceled. It's
399    // used to prevent a mismatch between the number of queue/dequeue calls.
400    bool mSharedBufferHasBeenQueued;
401
402    // These are used to satisfy the NATIVE_WINDOW_LAST_*_DURATION queries
403    nsecs_t mLastDequeueDuration = 0;
404    nsecs_t mLastQueueDuration = 0;
405
406    Condition mQueueBufferCondition;
407
408    uint64_t mNextFrameNumber = 1;
409    uint64_t mLastFrameNumber = 0;
410
411    // Mutable because ANativeWindow::query needs this class const.
412    mutable bool mQueriedSupportedTimestamps;
413    mutable bool mFrameTimestampsSupportsPresent;
414    mutable bool mFrameTimestampsSupportsRetire;
415
416    // A cached copy of the FrameEventHistory maintained by the consumer.
417    bool mEnableFrameTimestamps = false;
418    std::unique_ptr<ProducerFrameEventHistory> mFrameEventHistory;
419};
420
421namespace view {
422
423/**
424 * A simple holder for an IGraphicBufferProducer, to match the managed-side
425 * android.view.Surface parcelable behavior.
426 *
427 * This implements android/view/Surface.aidl
428 *
429 * TODO: Convert IGraphicBufferProducer into AIDL so that it can be directly
430 * used in managed Binder calls.
431 */
432class Surface : public Parcelable {
433  public:
434
435    String16 name;
436    sp<IGraphicBufferProducer> graphicBufferProducer;
437
438    virtual status_t writeToParcel(Parcel* parcel) const override;
439    virtual status_t readFromParcel(const Parcel* parcel) override;
440
441    // nameAlreadyWritten set to true by Surface.java, because it splits
442    // Parceling itself between managed and native code, so it only wants a part
443    // of the full parceling to happen on its native side.
444    status_t writeToParcel(Parcel* parcel, bool nameAlreadyWritten) const;
445
446    // nameAlreadyRead set to true by Surface.java, because it splits
447    // Parceling itself between managed and native code, so it only wants a part
448    // of the full parceling to happen on its native side.
449    status_t readFromParcel(const Parcel* parcel, bool nameAlreadyRead);
450
451  private:
452
453    static String16 readMaybeEmptyString16(const Parcel* parcel);
454};
455
456} // namespace view
457
458}; // namespace android
459
460#endif  // ANDROID_GUI_SURFACE_H
461