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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
/*
* Copyright 2020 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.
*/
#define LOG_TAG "DvrClient"
#include <android-base/logging.h>
#include <fmq/ConvertMQDescriptors.h>
#include <utils/Log.h>
#include "ClientHelper.h"
#include "DvrClient.h"
using ::android::hardware::tv::tuner::V1_0::DemuxQueueNotifyBits;
using ::android::hardware::tv::tuner::V1_0::Result;
namespace android {
/////////////// DvrClient ///////////////////////
DvrClient::DvrClient(shared_ptr<ITunerDvr> tunerDvr) {
mTunerDvr = tunerDvr;
mFd = -1;
mDvrMQ = NULL;
mDvrMQEventFlag = NULL;
}
DvrClient::~DvrClient() {
mTunerDvr = NULL;
mDvr = NULL;
mFd = -1;
mDvrMQ = NULL;
mDvrMQEventFlag = NULL;
}
// TODO: remove after migration to Tuner Service is done.
void DvrClient::setHidlDvr(sp<IDvr> dvr) {
mDvr = dvr;
}
void DvrClient::setFd(int fd) {
mFd = fd;
}
long DvrClient::readFromFile(long size) {
if (mDvrMQ == NULL || mDvrMQEventFlag == NULL) {
ALOGE("Failed to readFromFile. DVR mq is not configured");
return -1;
}
if (mFd < 0) {
ALOGE("Failed to readFromFile. File is not configured");
return -1;
}
long available = mDvrMQ->availableToWrite();
long write = min(size, available);
AidlMQ::MemTransaction tx;
long ret = 0;
if (mDvrMQ->beginWrite(write, &tx)) {
auto first = tx.getFirstRegion();
auto data = first.getAddress();
long length = first.getLength();
long firstToWrite = min(length, write);
ret = read(mFd, data, firstToWrite);
if (ret < 0) {
ALOGE("Failed to read from FD: %s", strerror(errno));
return -1;
}
if (ret < firstToWrite) {
ALOGW("file to MQ, first region: %ld bytes to write, but %ld bytes written",
firstToWrite, ret);
} else if (firstToWrite < write) {
ALOGD("write second region: %ld bytes written, %ld bytes in total", ret, write);
auto second = tx.getSecondRegion();
data = second.getAddress();
length = second.getLength();
int secondToWrite = std::min(length, write - firstToWrite);
ret += read(mFd, data, secondToWrite);
}
ALOGD("file to MQ: %ld bytes need to be written, %ld bytes written", write, ret);
if (!mDvrMQ->commitWrite(ret)) {
ALOGE("Error: failed to commit write!");
return -1;
}
} else {
ALOGE("dvrMq.beginWrite failed");
}
if (ret > 0) {
mDvrMQEventFlag->wake(static_cast<uint32_t>(DemuxQueueNotifyBits::DATA_READY));
}
return ret;
}
long DvrClient::readFromBuffer(int8_t* buffer, long size) {
if (mDvrMQ == NULL || mDvrMQEventFlag == NULL) {
ALOGE("Failed to readFromBuffer. DVR mq is not configured");
return -1;
}
if (buffer == nullptr) {
ALOGE("Failed to readFromBuffer. Buffer can't be null");
return -1;
}
long available = mDvrMQ->availableToWrite();
size = min(size, available);
if (mDvrMQ->write(buffer, size)) {
mDvrMQEventFlag->wake(static_cast<uint32_t>(DemuxQueueNotifyBits::DATA_READY));
} else {
ALOGD("Failed to write FMQ");
return -1;
}
return size;
}
long DvrClient::writeToFile(long size) {
if (mDvrMQ == NULL || mDvrMQEventFlag == NULL) {
ALOGE("Failed to writeToFile. DVR mq is not configured");
return -1;
}
if (mFd < 0) {
ALOGE("Failed to writeToFile. File is not configured");
return -1;
}
long available = mDvrMQ->availableToRead();
long toRead = min(size, available);
long ret = 0;
AidlMQ::MemTransaction tx;
if (mDvrMQ->beginRead(toRead, &tx)) {
auto first = tx.getFirstRegion();
auto data = first.getAddress();
long length = first.getLength();
long firstToRead = std::min(length, toRead);
ret = write(mFd, data, firstToRead);
if (ret < 0) {
ALOGE("Failed to write to FD: %s", strerror(errno));
return -1;
}
if (ret < firstToRead) {
ALOGW("MQ to file: %ld bytes read, but %ld bytes written", firstToRead, ret);
} else if (firstToRead < toRead) {
ALOGD("read second region: %ld bytes read, %ld bytes in total", ret, toRead);
auto second = tx.getSecondRegion();
data = second.getAddress();
length = second.getLength();
int secondToRead = toRead - firstToRead;
ret += write(mFd, data, secondToRead);
}
ALOGD("MQ to file: %ld bytes to be read, %ld bytes written", toRead, ret);
if (!mDvrMQ->commitRead(ret)) {
ALOGE("Error: failed to commit read!");
return 0;
}
} else {
ALOGE("dvrMq.beginRead failed");
}
if (ret > 0) {
mDvrMQEventFlag->wake(static_cast<uint32_t>(DemuxQueueNotifyBits::DATA_CONSUMED));
}
return ret;
}
long DvrClient::writeToBuffer(int8_t* buffer, long size) {
if (mDvrMQ == NULL || mDvrMQEventFlag == NULL) {
ALOGE("Failed to writetoBuffer. DVR mq is not configured");
return -1;
}
if (buffer == nullptr) {
ALOGE("Failed to writetoBuffer. Buffer can't be null");
return -1;
}
long available = mDvrMQ->availableToRead();
size = min(size, available);
if (mDvrMQ->read(buffer, size)) {
mDvrMQEventFlag->wake(static_cast<uint32_t>(DemuxQueueNotifyBits::DATA_CONSUMED));
} else {
ALOGD("Failed to write FMQ");
return -1;
}
return size;
}
Result DvrClient::configure(DvrSettings settings) {
if (mTunerDvr != NULL) {
TunerDvrSettings dvrSettings = getAidlDvrSettingsFromHidl(settings);
Status s = mTunerDvr->configure(dvrSettings);
Result res = ClientHelper::getServiceSpecificErrorCode(s);
if (res != Result::SUCCESS) {
return res;
}
AidlMQDesc aidlMqDesc;
s = mTunerDvr->getQueueDesc(&aidlMqDesc);
res = ClientHelper::getServiceSpecificErrorCode(s);
if (res != Result::SUCCESS) {
return res;
}
mDvrMQ = new (nothrow) AidlMQ(aidlMqDesc);
EventFlag::createEventFlag(mDvrMQ->getEventFlagWord(), &mDvrMQEventFlag);
return res;
}
if (mDvr != NULL) {
Result res = mDvr->configure(settings);
if (res == Result::SUCCESS) {
MQDescriptorSync<uint8_t> dvrMQDesc;
res = getQueueDesc(dvrMQDesc);
if (res == Result::SUCCESS) {
AidlMQDesc aidlMQDesc;
unsafeHidlToAidlMQDescriptor<uint8_t, int8_t, SynchronizedReadWrite>(
dvrMQDesc, &aidlMQDesc);
mDvrMQ = new (nothrow) AidlMessageQueue(aidlMQDesc);
EventFlag::createEventFlag(mDvrMQ->getEventFlagWord(), &mDvrMQEventFlag);
}
}
return res;
}
return Result::INVALID_STATE;
}
Result DvrClient::attachFilter(sp<FilterClient> filterClient) {
if (mTunerDvr != NULL) {
Status s = mTunerDvr->attachFilter(filterClient->getAidlFilter());
return ClientHelper::getServiceSpecificErrorCode(s);
}
if (mDvr != NULL) {
sp<IFilter> hidlFilter = filterClient->getHalFilter();
if (hidlFilter == NULL) {
return Result::INVALID_ARGUMENT;
}
return mDvr->attachFilter(hidlFilter);
}
return Result::INVALID_STATE;
}
Result DvrClient::detachFilter(sp<FilterClient> filterClient) {
if (mTunerDvr != NULL) {
Status s = mTunerDvr->detachFilter(filterClient->getAidlFilter());
return ClientHelper::getServiceSpecificErrorCode(s);
}
if (mDvr != NULL) {
sp<IFilter> hidlFilter = filterClient->getHalFilter();
if (hidlFilter == NULL) {
return Result::INVALID_ARGUMENT;
}
return mDvr->detachFilter(hidlFilter);
}
return Result::INVALID_STATE;
}
Result DvrClient::start() {
if (mTunerDvr != NULL) {
Status s = mTunerDvr->start();
return ClientHelper::getServiceSpecificErrorCode(s);
}
if (mDvr != NULL) {
return mDvr->start();
}
return Result::INVALID_STATE;
}
Result DvrClient::stop() {
if (mTunerDvr != NULL) {
Status s = mTunerDvr->stop();
return ClientHelper::getServiceSpecificErrorCode(s);
}
if (mDvr != NULL) {
return mDvr->stop();
}
return Result::INVALID_STATE;
}
Result DvrClient::flush() {
if (mTunerDvr != NULL) {
Status s = mTunerDvr->flush();
return ClientHelper::getServiceSpecificErrorCode(s);
}
if (mDvr != NULL) {
return mDvr->flush();
}
return Result::INVALID_STATE;
}
Result DvrClient::close() {
if (mDvrMQEventFlag != NULL) {
EventFlag::deleteEventFlag(&mDvrMQEventFlag);
}
mDvrMQ = NULL;
if (mTunerDvr != NULL) {
Status s = mTunerDvr->close();
mTunerDvr = NULL;
return ClientHelper::getServiceSpecificErrorCode(s);
}
if (mDvr != NULL) {
Result res = mDvr->close();
mDvr = NULL;
return res;
}
return Result::INVALID_STATE;
}
/////////////// IDvrCallback ///////////////////////
HidlDvrCallback::HidlDvrCallback(sp<DvrClientCallback> dvrClientCallback)
: mDvrClientCallback(dvrClientCallback) {}
Return<void> HidlDvrCallback::onRecordStatus(const RecordStatus status) {
if (mDvrClientCallback != NULL) {
mDvrClientCallback->onRecordStatus(status);
}
return Void();
}
Return<void> HidlDvrCallback::onPlaybackStatus(const PlaybackStatus status) {
if (mDvrClientCallback != NULL) {
mDvrClientCallback->onPlaybackStatus(status);
}
return Void();
}
/////////////// TunerDvrCallback ///////////////////////
TunerDvrCallback::TunerDvrCallback(sp<DvrClientCallback> dvrClientCallback)
: mDvrClientCallback(dvrClientCallback) {}
Status TunerDvrCallback::onRecordStatus(int status) {
if (mDvrClientCallback != NULL) {
mDvrClientCallback->onRecordStatus(static_cast<RecordStatus>(status));
return Status::ok();
}
return Status::fromServiceSpecificError(static_cast<int32_t>(Result::INVALID_STATE));
}
Status TunerDvrCallback::onPlaybackStatus(int status) {
if (mDvrClientCallback != NULL) {
mDvrClientCallback->onPlaybackStatus(static_cast<PlaybackStatus>(status));
return Status::ok();
}
return Status::fromServiceSpecificError(static_cast<int32_t>(Result::INVALID_STATE));
}
/////////////// DvrClient Helper Methods ///////////////////////
Result DvrClient::getQueueDesc(MQDesc& dvrMQDesc) {
if (mDvr != NULL) {
Result res = Result::UNKNOWN_ERROR;
mDvr->getQueueDesc([&](Result r, const MQDesc& desc) {
dvrMQDesc = desc;
res = r;
});
return res;
}
return Result::INVALID_STATE;
}
TunerDvrSettings DvrClient::getAidlDvrSettingsFromHidl(DvrSettings settings) {
TunerDvrSettings s;
switch (settings.getDiscriminator()) {
case DvrSettings::hidl_discriminator::record: {
s.statusMask = static_cast<int>(settings.record().statusMask);
s.lowThreshold = static_cast<int>(settings.record().lowThreshold);
s.highThreshold = static_cast<int>(settings.record().highThreshold);
s.dataFormat = static_cast<int>(settings.record().dataFormat);
s.packetSize = static_cast<int>(settings.record().packetSize);
return s;
}
case DvrSettings::hidl_discriminator::playback: {
s.statusMask = static_cast<int>(settings.playback().statusMask);
s.lowThreshold = static_cast<int>(settings.playback().lowThreshold);
s.highThreshold = static_cast<int>(settings.playback().highThreshold);
s.dataFormat = static_cast<int>(settings.playback().dataFormat);
s.packetSize = static_cast<int>(settings.playback().packetSize);
return s;
}
default:
break;
}
return s;
}
} // namespace android
|