2009-03-04 03:31:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 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.
|
|
|
|
*/
|
|
|
|
|
2009-04-10 21:24:30 +00:00
|
|
|
#define LOG_TAG "ISurface"
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2009-05-20 02:08:10 +00:00
|
|
|
#include <binder/Parcel.h>
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-10-06 00:07:12 +00:00
|
|
|
#include <ui/GraphicBuffer.h>
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2010-02-10 01:46:37 +00:00
|
|
|
#include <surfaceflinger/Surface.h>
|
|
|
|
#include <surfaceflinger/ISurface.h>
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
namespace android {
|
|
|
|
|
2009-04-10 21:24:30 +00:00
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
class BpSurface : public BpInterface<ISurface>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BpSurface(const sp<IBinder>& impl)
|
|
|
|
: BpInterface<ISurface>(impl)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-05-22 00:24:35 +00:00
|
|
|
virtual sp<GraphicBuffer> requestBuffer(int bufferIdx,
|
|
|
|
uint32_t w, uint32_t h, uint32_t format, uint32_t usage)
|
2009-04-10 21:24:30 +00:00
|
|
|
{
|
|
|
|
Parcel data, reply;
|
|
|
|
data.writeInterfaceToken(ISurface::getInterfaceDescriptor());
|
fix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly
Rewrote SurfaceFlinger's buffer management from the ground-up.
The design now support an arbitrary number of buffers per surface, however the current implementation is limited to four. Currently only 2 buffers are used in practice.
The main new feature is to be able to dequeue all buffers at once (very important when there are only two).
A client can dequeue all buffers until there are none available, it can lock all buffers except the last one that is used for composition. The client will block then, until a new buffer is enqueued.
The current implementation requires that buffers are locked in the same order they are dequeued and enqueued in the same order they are locked. Only one buffer can be locked at a time.
eg. Allowed sequence: DQ, DQ, LOCK, Q, LOCK, Q
eg. Forbidden sequence: DQ, DQ, LOCK, LOCK, Q, Q
2009-09-07 23:32:45 +00:00
|
|
|
data.writeInt32(bufferIdx);
|
2010-05-22 00:24:35 +00:00
|
|
|
data.writeInt32(w);
|
|
|
|
data.writeInt32(h);
|
|
|
|
data.writeInt32(format);
|
2009-08-12 05:34:02 +00:00
|
|
|
data.writeInt32(usage);
|
fix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly
Rewrote SurfaceFlinger's buffer management from the ground-up.
The design now support an arbitrary number of buffers per surface, however the current implementation is limited to four. Currently only 2 buffers are used in practice.
The main new feature is to be able to dequeue all buffers at once (very important when there are only two).
A client can dequeue all buffers until there are none available, it can lock all buffers except the last one that is used for composition. The client will block then, until a new buffer is enqueued.
The current implementation requires that buffers are locked in the same order they are dequeued and enqueued in the same order they are locked. Only one buffer can be locked at a time.
eg. Allowed sequence: DQ, DQ, LOCK, Q, LOCK, Q
eg. Forbidden sequence: DQ, DQ, LOCK, LOCK, Q, Q
2009-09-07 23:32:45 +00:00
|
|
|
remote()->transact(REQUEST_BUFFER, data, &reply);
|
2010-02-12 01:30:52 +00:00
|
|
|
sp<GraphicBuffer> buffer = new GraphicBuffer();
|
|
|
|
reply.read(*buffer);
|
2009-04-10 21:24:30 +00:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2010-05-07 22:58:44 +00:00
|
|
|
virtual status_t setBufferCount(int bufferCount)
|
|
|
|
{
|
|
|
|
Parcel data, reply;
|
|
|
|
data.writeInterfaceToken(ISurface::getInterfaceDescriptor());
|
|
|
|
data.writeInt32(bufferCount);
|
|
|
|
remote()->transact(SET_BUFFER_COUNT, data, &reply);
|
|
|
|
status_t err = reply.readInt32();
|
|
|
|
return err;
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
IMPLEMENT_META_INTERFACE(Surface, "android.ui.ISurface");
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
|
|
|
|
status_t BnSurface::onTransact(
|
|
|
|
uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
|
|
|
|
{
|
|
|
|
switch(code) {
|
fix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly
Rewrote SurfaceFlinger's buffer management from the ground-up.
The design now support an arbitrary number of buffers per surface, however the current implementation is limited to four. Currently only 2 buffers are used in practice.
The main new feature is to be able to dequeue all buffers at once (very important when there are only two).
A client can dequeue all buffers until there are none available, it can lock all buffers except the last one that is used for composition. The client will block then, until a new buffer is enqueued.
The current implementation requires that buffers are locked in the same order they are dequeued and enqueued in the same order they are locked. Only one buffer can be locked at a time.
eg. Allowed sequence: DQ, DQ, LOCK, Q, LOCK, Q
eg. Forbidden sequence: DQ, DQ, LOCK, LOCK, Q, Q
2009-09-07 23:32:45 +00:00
|
|
|
case REQUEST_BUFFER: {
|
2009-04-10 21:24:30 +00:00
|
|
|
CHECK_INTERFACE(ISurface, data, reply);
|
fix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly
Rewrote SurfaceFlinger's buffer management from the ground-up.
The design now support an arbitrary number of buffers per surface, however the current implementation is limited to four. Currently only 2 buffers are used in practice.
The main new feature is to be able to dequeue all buffers at once (very important when there are only two).
A client can dequeue all buffers until there are none available, it can lock all buffers except the last one that is used for composition. The client will block then, until a new buffer is enqueued.
The current implementation requires that buffers are locked in the same order they are dequeued and enqueued in the same order they are locked. Only one buffer can be locked at a time.
eg. Allowed sequence: DQ, DQ, LOCK, Q, LOCK, Q
eg. Forbidden sequence: DQ, DQ, LOCK, LOCK, Q, Q
2009-09-07 23:32:45 +00:00
|
|
|
int bufferIdx = data.readInt32();
|
2010-05-22 00:24:35 +00:00
|
|
|
uint32_t w = data.readInt32();
|
|
|
|
uint32_t h = data.readInt32();
|
|
|
|
uint32_t format = data.readInt32();
|
|
|
|
uint32_t usage = data.readInt32();
|
|
|
|
sp<GraphicBuffer> buffer(requestBuffer(bufferIdx, w, h, format, usage));
|
2010-02-12 01:30:52 +00:00
|
|
|
if (buffer == NULL)
|
|
|
|
return BAD_VALUE;
|
|
|
|
return reply->write(*buffer);
|
2009-04-10 21:24:30 +00:00
|
|
|
}
|
2010-05-07 22:58:44 +00:00
|
|
|
case SET_BUFFER_COUNT: {
|
|
|
|
CHECK_INTERFACE(ISurface, data, reply);
|
|
|
|
int bufferCount = data.readInt32();
|
|
|
|
status_t err = setBufferCount(bufferCount);
|
|
|
|
reply->writeInt32(err);
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
default:
|
|
|
|
return BBinder::onTransact(code, data, reply, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}; // namespace android
|