BufferQueue.h revision 24202f5676c32edeef6544cf36e06b9fc970dbde
1/*
2 * Copyright (C) 2012 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_BUFFERQUEUE_H
18#define ANDROID_GUI_BUFFERQUEUE_H
19
20#include <EGL/egl.h>
21#include <EGL/eglext.h>
22
23#include <gui/IGraphicBufferAlloc.h>
24#include <gui/ISurfaceTexture.h>
25
26#include <ui/GraphicBuffer.h>
27
28#include <utils/String8.h>
29#include <utils/Vector.h>
30#include <utils/threads.h>
31
32namespace android {
33// ----------------------------------------------------------------------------
34
35class BufferQueue : public BnSurfaceTexture {
36public:
37    enum { MIN_UNDEQUEUED_BUFFERS = 2 };
38    enum { NUM_BUFFER_SLOTS = 32 };
39    enum { NO_CONNECTED_API = 0 };
40    enum { INVALID_BUFFER_SLOT = -1 };
41    enum { STALE_BUFFER_SLOT = 1, NO_BUFFER_AVAILABLE };
42
43    // ConsumerListener is the interface through which the BufferQueue notifies
44    // the consumer of events that the consumer may wish to react to.  Because
45    // the consumer will generally have a mutex that is locked during calls from
46    // teh consumer to the BufferQueue, these calls from the BufferQueue to the
47    // consumer *MUST* be called only when the BufferQueue mutex is NOT locked.
48    struct ConsumerListener : public virtual RefBase {
49        // onFrameAvailable is called from queueBuffer each time an additional
50        // frame becomes available for consumption. This means that frames that
51        // are queued while in asynchronous mode only trigger the callback if no
52        // previous frames are pending. Frames queued while in synchronous mode
53        // always trigger the callback.
54        //
55        // This is called without any lock held and can be called concurrently
56        // by multiple threads.
57        virtual void onFrameAvailable() = 0;
58
59        // onBuffersReleased is called to notify the buffer consumer that the
60        // BufferQueue has released its references to one or more GraphicBuffers
61        // contained in its slots.  The buffer consumer should then call
62        // BufferQueue::getReleasedBuffers to retrieve the list of buffers
63        //
64        // This is called without any lock held and can be called concurrently
65        // by multiple threads.
66        virtual void onBuffersReleased() = 0;
67    };
68
69    // ProxyConsumerListener is a ConsumerListener implementation that keeps a weak
70    // reference to the actual consumer object.  It forwards all calls to that
71    // consumer object so long as it exists.
72    //
73    // This class exists to avoid having a circular reference between the
74    // BufferQueue object and the consumer object.  The reason this can't be a weak
75    // reference in the BufferQueue class is because we're planning to expose the
76    // consumer side of a BufferQueue as a binder interface, which doesn't support
77    // weak references.
78    class ProxyConsumerListener : public BufferQueue::ConsumerListener {
79    public:
80
81        ProxyConsumerListener(const wp<BufferQueue::ConsumerListener>& consumerListener);
82        virtual ~ProxyConsumerListener();
83        virtual void onFrameAvailable();
84        virtual void onBuffersReleased();
85
86    private:
87
88        // mConsumerListener is a weak reference to the ConsumerListener.  This is
89        // the raison d'etre of ProxyConsumerListener.
90        wp<BufferQueue::ConsumerListener> mConsumerListener;
91    };
92
93
94    // BufferQueue manages a pool of gralloc memory slots to be used
95    // by producers and consumers.
96    // allowSynchronousMode specifies whether or not synchronous mode can be
97    // enabled.
98    // bufferCount sets the minimum number of undequeued buffers for this queue
99    BufferQueue(  bool allowSynchronousMode = true, int bufferCount = MIN_UNDEQUEUED_BUFFERS);
100    virtual ~BufferQueue();
101
102    virtual int query(int what, int* value);
103
104    // setBufferCount updates the number of available buffer slots.  After
105    // calling this all buffer slots are both unallocated and owned by the
106    // BufferQueue object (i.e. they are not owned by the client).
107    virtual status_t setBufferCount(int bufferCount);
108
109    virtual status_t requestBuffer(int slot, sp<GraphicBuffer>* buf);
110
111    // dequeueBuffer gets the next buffer slot index for the client to use. If a
112    // buffer slot is available then that slot index is written to the location
113    // pointed to by the buf argument and a status of OK is returned.  If no
114    // slot is available then a status of -EBUSY is returned and buf is
115    // unmodified.
116    // The width and height parameters must be no greater than the minimum of
117    // GL_MAX_VIEWPORT_DIMS and GL_MAX_TEXTURE_SIZE (see: glGetIntegerv).
118    // An error due to invalid dimensions might not be reported until
119    // updateTexImage() is called.
120    virtual status_t dequeueBuffer(int *buf, uint32_t width, uint32_t height,
121            uint32_t format, uint32_t usage);
122
123    // queueBuffer returns a filled buffer to the BufferQueue. In addition, a
124    // timestamp must be provided for the buffer. The timestamp is in
125    // nanoseconds, and must be monotonically increasing. Its other semantics
126    // (zero point, etc) are client-dependent and should be documented by the
127    // client.
128    virtual status_t queueBuffer(int buf,
129            const QueueBufferInput& input, QueueBufferOutput* output);
130
131    virtual void cancelBuffer(int buf);
132
133    // setSynchronousMode set whether dequeueBuffer is synchronous or
134    // asynchronous. In synchronous mode, dequeueBuffer blocks until
135    // a buffer is available, the currently bound buffer can be dequeued and
136    // queued buffers will be retired in order.
137    // The default mode is asynchronous.
138    virtual status_t setSynchronousMode(bool enabled);
139
140    // connect attempts to connect a producer client API to the BufferQueue.
141    // This must be called before any other ISurfaceTexture methods are called
142    // except for getAllocator.
143    //
144    // This method will fail if the connect was previously called on the
145    // BufferQueue and no corresponding disconnect call was made.
146    virtual status_t connect(int api, QueueBufferOutput* output);
147
148    // disconnect attempts to disconnect a producer client API from the
149    // BufferQueue. Calling this method will cause any subsequent calls to other
150    // ISurfaceTexture methods to fail except for getAllocator and connect.
151    // Successfully calling connect after this will allow the other methods to
152    // succeed again.
153    //
154    // This method will fail if the the BufferQueue is not currently
155    // connected to the specified client API.
156    virtual status_t disconnect(int api);
157
158    // dump our state in a String
159    virtual void dump(String8& result) const;
160    virtual void dump(String8& result, const char* prefix, char* buffer, size_t SIZE) const;
161
162    // public facing structure for BufferSlot
163    struct BufferItem {
164
165        BufferItem()
166         :
167           mTransform(0),
168           mScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE),
169           mTimestamp(0),
170           mFrameNumber(0),
171           mBuf(INVALID_BUFFER_SLOT) {
172             mCrop.makeInvalid();
173         }
174        // mGraphicBuffer points to the buffer allocated for this slot or is NULL
175        // if no buffer has been allocated.
176        sp<GraphicBuffer> mGraphicBuffer;
177
178        // mCrop is the current crop rectangle for this buffer slot.
179        Rect mCrop;
180
181        // mTransform is the current transform flags for this buffer slot.
182        uint32_t mTransform;
183
184        // mScalingMode is the current scaling mode for this buffer slot.
185        uint32_t mScalingMode;
186
187        // mTimestamp is the current timestamp for this buffer slot. This gets
188        // to set by queueBuffer each time this slot is queued.
189        int64_t mTimestamp;
190
191        // mFrameNumber is the number of the queued frame for this slot.
192        uint64_t mFrameNumber;
193
194        // buf is the slot index of this buffer
195        int mBuf;
196
197    };
198
199    // The following public functions is the consumer facing interface
200
201    // acquireBuffer attempts to acquire ownership of the next pending buffer in
202    // the BufferQueue.  If no buffer is pending then it returns -EINVAL.  If a
203    // buffer is successfully acquired, the information about the buffer is
204    // returned in BufferItem.  If the buffer returned had previously been
205    // acquired then the BufferItem::mGraphicBuffer field of buffer is set to
206    // NULL and it is assumed that the consumer still holds a reference to the
207    // buffer.
208    status_t acquireBuffer(BufferItem *buffer);
209
210    // releaseBuffer releases a buffer slot from the consumer back to the
211    // BufferQueue pending a fence sync.
212    //
213    // Note that the dependencies on EGL will be removed once we switch to using
214    // the Android HW Sync HAL.
215    status_t releaseBuffer(int buf, EGLDisplay display, EGLSyncKHR fence);
216
217    // consumerConnect connects a consumer to the BufferQueue.  Only one
218    // consumer may be connected, and when that consumer disconnects the
219    // BufferQueue is placed into the "abandoned" state, causing most
220    // interactions with the BufferQueue by the producer to fail.
221    status_t consumerConnect(const sp<ConsumerListener>& consumer);
222
223    // consumerDisconnect disconnects a consumer from the BufferQueue. All
224    // buffers will be freed and the BufferQueue is placed in the "abandoned"
225    // state, causing most interactions with the BufferQueue by the producer to
226    // fail.
227    status_t consumerDisconnect();
228
229    // getReleasedBuffers sets the value pointed to by slotMask to a bit mask
230    // indicating which buffer slots the have been released by the BufferQueue
231    // but have not yet been released by the consumer.
232    status_t getReleasedBuffers(uint32_t* slotMask);
233
234    // setDefaultBufferSize is used to set the size of buffers returned by
235    // requestBuffers when a with and height of zero is requested.
236    status_t setDefaultBufferSize(uint32_t w, uint32_t h);
237
238    // setBufferCountServer set the buffer count. If the client has requested
239    // a buffer count using setBufferCount, the server-buffer count will
240    // take effect once the client sets the count back to zero.
241    status_t setBufferCountServer(int bufferCount);
242
243    // isSynchronousMode returns whether the SurfaceTexture is currently in
244    // synchronous mode.
245    bool isSynchronousMode() const;
246
247    // setConsumerName sets the name used in logging
248    void setConsumerName(const String8& name);
249
250    // setDefaultBufferFormat allows the BufferQueue to create
251    // GraphicBuffers of a defaultFormat if no format is specified
252    // in dequeueBuffer
253    status_t setDefaultBufferFormat(uint32_t defaultFormat);
254
255    // setConsumerUsageBits will turn on additional usage bits for dequeueBuffer
256    status_t setConsumerUsageBits(uint32_t usage);
257
258    // setTransformHint bakes in rotation to buffers so overlays can be used
259    status_t setTransformHint(uint32_t hint);
260
261private:
262    // freeBufferLocked frees the resources (both GraphicBuffer and EGLImage)
263    // for the given slot.
264    void freeBufferLocked(int index);
265
266    // freeAllBuffersLocked frees the resources (both GraphicBuffer and
267    // EGLImage) for all slots.
268    void freeAllBuffersLocked();
269
270    // freeAllBuffersExceptHeadLocked frees the resources (both GraphicBuffer
271    // and EGLImage) for all slots except the head of mQueue
272    void freeAllBuffersExceptHeadLocked();
273
274    // drainQueueLocked drains the buffer queue if we're in synchronous mode
275    // returns immediately otherwise. It returns NO_INIT if the BufferQueue
276    // became abandoned or disconnected during this call.
277    status_t drainQueueLocked();
278
279    // drainQueueAndFreeBuffersLocked drains the buffer queue if we're in
280    // synchronous mode and free all buffers. In asynchronous mode, all buffers
281    // are freed except the current buffer.
282    status_t drainQueueAndFreeBuffersLocked();
283
284    status_t setBufferCountServerLocked(int bufferCount);
285
286    struct BufferSlot {
287
288        BufferSlot()
289        : mEglDisplay(EGL_NO_DISPLAY),
290          mBufferState(BufferSlot::FREE),
291          mRequestBufferCalled(false),
292          mTransform(0),
293          mScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE),
294          mTimestamp(0),
295          mFrameNumber(0),
296          mFence(EGL_NO_SYNC_KHR),
297          mAcquireCalled(false),
298          mNeedsCleanupOnRelease(false) {
299            mCrop.makeInvalid();
300        }
301
302        // mGraphicBuffer points to the buffer allocated for this slot or is NULL
303        // if no buffer has been allocated.
304        sp<GraphicBuffer> mGraphicBuffer;
305
306        // mEglDisplay is the EGLDisplay used to create mEglImage.
307        EGLDisplay mEglDisplay;
308
309        // BufferState represents the different states in which a buffer slot
310        // can be.
311        enum BufferState {
312            // FREE indicates that the buffer is not currently being used and
313            // will not be used in the future until it gets dequeued and
314            // subsequently queued by the client.
315            // aka "owned by BufferQueue, ready to be dequeued"
316            FREE = 0,
317
318            // DEQUEUED indicates that the buffer has been dequeued by the
319            // client, but has not yet been queued or canceled. The buffer is
320            // considered 'owned' by the client, and the server should not use
321            // it for anything.
322            //
323            // Note that when in synchronous-mode (mSynchronousMode == true),
324            // the buffer that's currently attached to the texture may be
325            // dequeued by the client.  That means that the current buffer can
326            // be in either the DEQUEUED or QUEUED state.  In asynchronous mode,
327            // however, the current buffer is always in the QUEUED state.
328            // aka "owned by producer, ready to be queued"
329            DEQUEUED = 1,
330
331            // QUEUED indicates that the buffer has been queued by the client,
332            // and has not since been made available for the client to dequeue.
333            // Attaching the buffer to the texture does NOT transition the
334            // buffer away from the QUEUED state. However, in Synchronous mode
335            // the current buffer may be dequeued by the client under some
336            // circumstances. See the note about the current buffer in the
337            // documentation for DEQUEUED.
338            // aka "owned by BufferQueue, ready to be acquired"
339            QUEUED = 2,
340
341            // aka "owned by consumer, ready to be released"
342            ACQUIRED = 3
343        };
344
345        // mBufferState is the current state of this buffer slot.
346        BufferState mBufferState;
347
348        // mRequestBufferCalled is used for validating that the client did
349        // call requestBuffer() when told to do so. Technically this is not
350        // needed but useful for debugging and catching client bugs.
351        bool mRequestBufferCalled;
352
353        // mCrop is the current crop rectangle for this buffer slot.
354        Rect mCrop;
355
356        // mTransform is the current transform flags for this buffer slot.
357        uint32_t mTransform;
358
359        // mScalingMode is the current scaling mode for this buffer slot.
360        uint32_t mScalingMode;
361
362        // mTimestamp is the current timestamp for this buffer slot. This gets
363        // to set by queueBuffer each time this slot is queued.
364        int64_t mTimestamp;
365
366        // mFrameNumber is the number of the queued frame for this slot.
367        uint64_t mFrameNumber;
368
369        // mFence is the EGL sync object that must signal before the buffer
370        // associated with this buffer slot may be dequeued. It is initialized
371        // to EGL_NO_SYNC_KHR when the buffer is created and (optionally, based
372        // on a compile-time option) set to a new sync object in updateTexImage.
373        EGLSyncKHR mFence;
374
375        // Indicates whether this buffer has been seen by a consumer yet
376        bool mAcquireCalled;
377
378        // Indicates whether this buffer needs to be cleaned up by consumer
379        bool mNeedsCleanupOnRelease;
380    };
381
382    // mSlots is the array of buffer slots that must be mirrored on the client
383    // side. This allows buffer ownership to be transferred between the client
384    // and server without sending a GraphicBuffer over binder. The entire array
385    // is initialized to NULL at construction time, and buffers are allocated
386    // for a slot when requestBuffer is called with that slot's index.
387    BufferSlot mSlots[NUM_BUFFER_SLOTS];
388
389    // mDefaultWidth holds the default width of allocated buffers. It is used
390    // in requestBuffers() if a width and height of zero is specified.
391    uint32_t mDefaultWidth;
392
393    // mDefaultHeight holds the default height of allocated buffers. It is used
394    // in requestBuffers() if a width and height of zero is specified.
395    uint32_t mDefaultHeight;
396
397    // mPixelFormat holds the pixel format of allocated buffers. It is used
398    // in requestBuffers() if a format of zero is specified.
399    uint32_t mPixelFormat;
400
401    // mMinUndequeuedBuffers is a constraint on the number of buffers
402    // not dequeued at any time
403    int mMinUndequeuedBuffers;
404
405    // mMinAsyncBufferSlots is a constraint on the minimum mBufferCount
406    // when this BufferQueue is in asynchronous mode
407    int mMinAsyncBufferSlots;
408
409    // mMinSyncBufferSlots is a constraint on the minimum mBufferCount
410    // when this BufferQueue is in synchronous mode
411    int mMinSyncBufferSlots;
412
413    // mBufferCount is the number of buffer slots that the client and server
414    // must maintain. It defaults to MIN_ASYNC_BUFFER_SLOTS and can be changed
415    // by calling setBufferCount or setBufferCountServer
416    int mBufferCount;
417
418    // mClientBufferCount is the number of buffer slots requested by the client.
419    // The default is zero, which means the client doesn't care how many buffers
420    // there is.
421    int mClientBufferCount;
422
423    // mServerBufferCount buffer count requested by the server-side
424    int mServerBufferCount;
425
426    // mGraphicBufferAlloc is the connection to SurfaceFlinger that is used to
427    // allocate new GraphicBuffer objects.
428    sp<IGraphicBufferAlloc> mGraphicBufferAlloc;
429
430    // mConsumerListener is used to notify the connected consumer of
431    // asynchronous events that it may wish to react to.  It is initially set
432    // to NULL and is written by consumerConnect and consumerDisconnect.
433    sp<ConsumerListener> mConsumerListener;
434
435    // mSynchronousMode whether we're in synchronous mode or not
436    bool mSynchronousMode;
437
438    // mAllowSynchronousMode whether we allow synchronous mode or not
439    const bool mAllowSynchronousMode;
440
441    // mConnectedApi indicates the API that is currently connected to this
442    // BufferQueue.  It defaults to NO_CONNECTED_API (= 0), and gets updated
443    // by the connect and disconnect methods.
444    int mConnectedApi;
445
446    // mDequeueCondition condition used for dequeueBuffer in synchronous mode
447    mutable Condition mDequeueCondition;
448
449    // mQueue is a FIFO of queued buffers used in synchronous mode
450    typedef Vector<int> Fifo;
451    Fifo mQueue;
452
453    // mAbandoned indicates that the BufferQueue will no longer be used to
454    // consume images buffers pushed to it using the ISurfaceTexture interface.
455    // It is initialized to false, and set to true in the abandon method.  A
456    // BufferQueue that has been abandoned will return the NO_INIT error from
457    // all ISurfaceTexture methods capable of returning an error.
458    bool mAbandoned;
459
460    // mName is a string used to identify the BufferQueue in log messages.
461    // It is set by the setName method.
462    String8 mConsumerName;
463
464    // mMutex is the mutex used to prevent concurrent access to the member
465    // variables of BufferQueue objects. It must be locked whenever the
466    // member variables are accessed.
467    mutable Mutex mMutex;
468
469    // mFrameCounter is the free running counter, incremented for every buffer queued
470    // with the surface Texture.
471    uint64_t mFrameCounter;
472
473    // mBufferHasBeenQueued is true once a buffer has been queued.  It is reset
474    // by changing the buffer count.
475    bool mBufferHasBeenQueued;
476
477    // mDefaultBufferFormat can be set so it will override
478    // the buffer format when it isn't specified in dequeueBuffer
479    uint32_t mDefaultBufferFormat;
480
481    // mConsumerUsageBits contains flags the consumer wants for GraphicBuffers
482    uint32_t mConsumerUsageBits;
483
484    // mTransformHint is used to optimize for screen rotations
485    uint32_t mTransformHint;
486};
487
488// ----------------------------------------------------------------------------
489}; // namespace android
490
491#endif // ANDROID_GUI_BUFFERQUEUE_H
492