blob: 8e13ea9b3632f3ba732f47638f72a3da0fc9d2e3 [file] [log] [blame]
Mike Lockwood873871f2010-07-12 18:54:16 -04001/*
2 * Copyright (C) 2010 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#define LOG_TAG "MtpEventPacket"
18
19#include <stdio.h>
20#include <sys/types.h>
21#include <fcntl.h>
22#include <sys/ioctl.h>
23
Mike Lockwoodbe9a95c2010-07-19 09:01:57 -040024#ifdef MTP_DEVICE
Mike Lockwood8065e202010-07-15 13:36:52 -040025#include <linux/usb/f_mtp.h>
Mike Lockwoodbe9a95c2010-07-19 09:01:57 -040026#endif
Mike Lockwood873871f2010-07-12 18:54:16 -040027
28#include "MtpEventPacket.h"
29
Mike Lockwood42d0b792011-01-04 14:48:57 -050030#include <usbhost/usbhost.h>
31
Mike Lockwood873871f2010-07-12 18:54:16 -040032namespace android {
33
34MtpEventPacket::MtpEventPacket()
35 : MtpPacket(512)
36{
37}
38
39MtpEventPacket::~MtpEventPacket() {
40}
41
42#ifdef MTP_DEVICE
43int MtpEventPacket::write(int fd) {
44 struct mtp_event event;
45
46 putUInt32(MTP_CONTAINER_LENGTH_OFFSET, mPacketSize);
47 putUInt16(MTP_CONTAINER_TYPE_OFFSET, MTP_CONTAINER_TYPE_EVENT);
48
49 event.data = mBuffer;
50 event.length = mPacketSize;
51 int ret = ::ioctl(fd, MTP_SEND_EVENT, (unsigned long)&event);
52 return (ret < 0 ? ret : 0);
53}
54#endif
55
56#ifdef MTP_HOST
Daichi Hirono8a7ffae2015-08-20 15:13:40 +090057int MtpEventPacket::sendRequest(struct usb_request *request) {
Mike Lockwood42d0b792011-01-04 14:48:57 -050058 request->buffer = mBuffer;
59 request->buffer_length = mBufferSize;
Daichi Hirono8a7ffae2015-08-20 15:13:40 +090060 mPacketSize = 0;
61 if (usb_request_queue(request)) {
62 ALOGE("usb_endpoint_queue failed, errno: %d", errno);
63 return -1;
64 }
65 return 0;
66}
67
68int MtpEventPacket::readResponse(struct usb_device *device) {
69 struct usb_request* const req = usb_request_wait(device);
70 if (req) {
71 mPacketSize = req->actual_length;
72 return req->actual_length;
73 } else {
74 return -1;
75 }
Mike Lockwood873871f2010-07-12 18:54:16 -040076}
77#endif
78
79} // namespace android