blob: fd2a590caff65dcf6cfcb986cc501036d424b43d [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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// tag as surfaceflinger
18#define LOG_TAG "SurfaceFlinger"
19
20#include <stdint.h>
21#include <sys/types.h>
22
Mathias Agopian07952722009-05-19 19:08:10 -070023#include <binder/Parcel.h>
24#include <binder/IMemory.h>
25#include <binder/IPCThreadState.h>
26#include <binder/IServiceManager.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027
28#include <ui/ISurfaceComposer.h>
29#include <ui/DisplayInfo.h>
30
31// ---------------------------------------------------------------------------
32
33#define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
34#define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
35
36// ---------------------------------------------------------------------------
37
38namespace android {
39
40class BpSurfaceComposer : public BpInterface<ISurfaceComposer>
41{
42public:
43 BpSurfaceComposer(const sp<IBinder>& impl)
44 : BpInterface<ISurfaceComposer>(impl)
45 {
46 }
47
48 virtual sp<ISurfaceFlingerClient> createConnection()
49 {
50 uint32_t n;
51 Parcel data, reply;
52 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
53 remote()->transact(BnSurfaceComposer::CREATE_CONNECTION, data, &reply);
54 return interface_cast<ISurfaceFlingerClient>(reply.readStrongBinder());
55 }
56
Mathias Agopiand763b5d2009-07-02 18:11:53 -070057 virtual sp<IMemoryHeap> getCblk() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 {
59 Parcel data, reply;
60 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
61 remote()->transact(BnSurfaceComposer::GET_CBLK, data, &reply);
Mathias Agopiand763b5d2009-07-02 18:11:53 -070062 return interface_cast<IMemoryHeap>(reply.readStrongBinder());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063 }
64
65 virtual void openGlobalTransaction()
66 {
67 Parcel data, reply;
68 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
69 remote()->transact(BnSurfaceComposer::OPEN_GLOBAL_TRANSACTION, data, &reply);
70 }
71
72 virtual void closeGlobalTransaction()
73 {
74 Parcel data, reply;
75 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
76 remote()->transact(BnSurfaceComposer::CLOSE_GLOBAL_TRANSACTION, data, &reply);
77 }
78
79 virtual status_t freezeDisplay(DisplayID dpy, uint32_t flags)
80 {
81 Parcel data, reply;
82 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
83 data.writeInt32(dpy);
84 data.writeInt32(flags);
85 remote()->transact(BnSurfaceComposer::FREEZE_DISPLAY, data, &reply);
86 return reply.readInt32();
87 }
88
89 virtual status_t unfreezeDisplay(DisplayID dpy, uint32_t flags)
90 {
91 Parcel data, reply;
92 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
93 data.writeInt32(dpy);
94 data.writeInt32(flags);
95 remote()->transact(BnSurfaceComposer::UNFREEZE_DISPLAY, data, &reply);
96 return reply.readInt32();
97 }
98
Mathias Agopianeb0c86e2009-03-27 18:11:38 -070099 virtual int setOrientation(DisplayID dpy, int orientation, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100 {
101 Parcel data, reply;
102 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
103 data.writeInt32(dpy);
104 data.writeInt32(orientation);
Mathias Agopianeb0c86e2009-03-27 18:11:38 -0700105 data.writeInt32(flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106 remote()->transact(BnSurfaceComposer::SET_ORIENTATION, data, &reply);
107 return reply.readInt32();
108 }
109
110 virtual void bootFinished()
111 {
112 Parcel data, reply;
113 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
114 remote()->transact(BnSurfaceComposer::BOOT_FINISHED, data, &reply);
115 }
116
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 virtual void signal() const
118 {
119 Parcel data, reply;
120 data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
121 remote()->transact(BnSurfaceComposer::SIGNAL, data, &reply, IBinder::FLAG_ONEWAY);
122 }
123};
124
125IMPLEMENT_META_INTERFACE(SurfaceComposer, "android.ui.ISurfaceComposer");
126
127// ----------------------------------------------------------------------
128
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129status_t BnSurfaceComposer::onTransact(
130 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
131{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132 switch(code) {
133 case CREATE_CONNECTION: {
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700134 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135 sp<IBinder> b = createConnection()->asBinder();
136 reply->writeStrongBinder(b);
137 } break;
138 case OPEN_GLOBAL_TRANSACTION: {
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700139 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 openGlobalTransaction();
141 } break;
142 case CLOSE_GLOBAL_TRANSACTION: {
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700143 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 closeGlobalTransaction();
145 } break;
146 case SET_ORIENTATION: {
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700147 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 DisplayID dpy = data.readInt32();
149 int orientation = data.readInt32();
Mathias Agopianeb0c86e2009-03-27 18:11:38 -0700150 uint32_t flags = data.readInt32();
151 reply->writeInt32( setOrientation(dpy, orientation, flags) );
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 } break;
153 case FREEZE_DISPLAY: {
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700154 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155 DisplayID dpy = data.readInt32();
156 uint32_t flags = data.readInt32();
157 reply->writeInt32( freezeDisplay(dpy, flags) );
158 } break;
159 case UNFREEZE_DISPLAY: {
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700160 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 DisplayID dpy = data.readInt32();
162 uint32_t flags = data.readInt32();
163 reply->writeInt32( unfreezeDisplay(dpy, flags) );
164 } break;
165 case BOOT_FINISHED: {
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700166 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 bootFinished();
168 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169 case SIGNAL: {
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700170 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 signal();
172 } break;
173 case GET_CBLK: {
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700174 CHECK_INTERFACE(ISurfaceComposer, data, reply);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 sp<IBinder> b = getCblk()->asBinder();
176 reply->writeStrongBinder(b);
177 } break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178 default:
Mathias Agopianaaf834a2009-05-22 19:00:22 -0700179 return BBinder::onTransact(code, data, reply, flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180 }
181 return NO_ERROR;
182}
183
184// ----------------------------------------------------------------------------
185
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186};