1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
#include "include/private/dvr/vsync_service.h"
#include <binder/Parcel.h>
#include <log/log.h>
namespace android {
namespace dvr {
status_t BnVsyncCallback::onTransact(
uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
switch (code) {
case ON_VSYNC: {
CHECK_INTERFACE(IVsyncCallback, data, reply);
int64_t vsync_timestamp = 0;
status_t result = data.readInt64(&vsync_timestamp);
if (result != OK) {
ALOGE("onVsync failed to readInt64: %d", result);
return result;
}
onVsync(vsync_timestamp);
return OK;
}
default: {
return BBinder::onTransact(code, data, reply, flags);
}
}
}
class BpVsyncCallback : public BpInterface<IVsyncCallback> {
public:
explicit BpVsyncCallback(const sp<IBinder>& impl)
: BpInterface<IVsyncCallback>(impl) {}
virtual ~BpVsyncCallback() {}
virtual status_t onVsync(int64_t vsync_timestamp) {
Parcel data, reply;
status_t result = data.writeInterfaceToken(
IVsyncCallback::getInterfaceDescriptor());
if (result != OK) {
ALOGE("onVsync failed to writeInterfaceToken: %d", result);
return result;
}
result = data.writeInt64(vsync_timestamp);
if (result != OK) {
ALOGE("onVsync failed to writeInt64: %d", result);
return result;
}
result = remote()->transact(BnVsyncCallback::ON_VSYNC, data, &reply,
IBinder::FLAG_ONEWAY);
if (result != OK) {
ALOGE("onVsync failed to transact: %d", result);
return result;
}
return result;
}
};
IMPLEMENT_META_INTERFACE(VsyncCallback, "android.dvr.IVsyncCallback");
status_t BnVsyncService::onTransact(
uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
switch (code) {
case REGISTER_CALLBACK: {
CHECK_INTERFACE(IVsyncService, data, reply);
sp<IBinder> callback;
status_t result = data.readStrongBinder(&callback);
if (result != OK) {
ALOGE("registerCallback failed to readStrongBinder: %d", result);
return result;
}
registerCallback(interface_cast<IVsyncCallback>(callback));
return OK;
}
case UNREGISTER_CALLBACK: {
CHECK_INTERFACE(IVsyncService, data, reply);
sp<IBinder> callback;
status_t result = data.readStrongBinder(&callback);
if (result != OK) {
ALOGE("unregisterCallback failed to readStrongBinder: %d", result);
return result;
}
unregisterCallback(interface_cast<IVsyncCallback>(callback));
return OK;
}
default: {
return BBinder::onTransact(code, data, reply, flags);
}
}
}
class BpVsyncService : public BpInterface<IVsyncService> {
public:
explicit BpVsyncService(const sp<IBinder>& impl)
: BpInterface<IVsyncService>(impl) {}
virtual ~BpVsyncService() {}
virtual status_t registerCallback(const sp<IVsyncCallback> callback) {
Parcel data, reply;
status_t result = data.writeInterfaceToken(
IVsyncService::getInterfaceDescriptor());
if (result != OK) {
ALOGE("registerCallback failed to writeInterfaceToken: %d", result);
return result;
}
result = data.writeStrongBinder(IInterface::asBinder(callback));
if (result != OK) {
ALOGE("registerCallback failed to writeStrongBinder: %d", result);
return result;
}
result = remote()->transact(
BnVsyncService::REGISTER_CALLBACK, data, &reply);
if (result != OK) {
ALOGE("registerCallback failed to transact: %d", result);
return result;
}
return result;
}
virtual status_t unregisterCallback(const sp<IVsyncCallback> callback) {
Parcel data, reply;
status_t result = data.writeInterfaceToken(
IVsyncService::getInterfaceDescriptor());
if (result != OK) {
ALOGE("unregisterCallback failed to writeInterfaceToken: %d", result);
return result;
}
result = data.writeStrongBinder(IInterface::asBinder(callback));
if (result != OK) {
ALOGE("unregisterCallback failed to writeStrongBinder: %d", result);
return result;
}
result = remote()->transact(
BnVsyncService::UNREGISTER_CALLBACK, data, &reply);
if (result != OK) {
ALOGE("unregisterCallback failed to transact: %d", result);
return result;
}
return result;
}
};
IMPLEMENT_META_INTERFACE(VsyncService, "android.dvr.IVsyncService");
} // namespace dvr
} // namespace android
|