blob: baf99e519e2be1e88c3139584162633f3fa66f46 [file] [log] [blame]
Mike Lockwood56118b52010-05-11 17:16:59 -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
Mike Lockwood3e6616d2010-06-29 18:11:52 -040017#define LOG_TAG "MtpPacket"
18
19#include "MtpDebug.h"
20#include "MtpPacket.h"
21#include "mtp.h"
22
Mike Lockwood56118b52010-05-11 17:16:59 -040023#include <stdio.h>
24#include <stdlib.h>
25#include <stdio.h>
26
27#include <usbhost/usbhost.h>
28
Mike Lockwood8d3257a2010-05-14 10:10:36 -040029namespace android {
30
Mike Lockwood56118b52010-05-11 17:16:59 -040031MtpPacket::MtpPacket(int bufferSize)
32 : mBuffer(NULL),
33 mBufferSize(bufferSize),
34 mAllocationIncrement(bufferSize),
35 mPacketSize(0)
36{
37 mBuffer = (uint8_t *)malloc(bufferSize);
38 if (!mBuffer) {
Mike Lockwood3e6616d2010-06-29 18:11:52 -040039 LOGE("out of memory!");
Mike Lockwood56118b52010-05-11 17:16:59 -040040 abort();
41 }
42}
43
44MtpPacket::~MtpPacket() {
45 if (mBuffer)
46 free(mBuffer);
47}
48
49void MtpPacket::reset() {
50 allocate(MTP_CONTAINER_HEADER_SIZE);
51 mPacketSize = MTP_CONTAINER_HEADER_SIZE;
52 memset(mBuffer, 0, mBufferSize);
53}
54
55void MtpPacket::allocate(int length) {
56 if (length > mBufferSize) {
57 int newLength = length + mAllocationIncrement;
58 mBuffer = (uint8_t *)realloc(mBuffer, newLength);
59 if (!mBuffer) {
Mike Lockwood3e6616d2010-06-29 18:11:52 -040060 LOGE("out of memory!");
Mike Lockwood56118b52010-05-11 17:16:59 -040061 abort();
62 }
63 mBufferSize = newLength;
64 }
65}
66
67void MtpPacket::dump() {
Mike Lockwood3e6616d2010-06-29 18:11:52 -040068#define DUMP_BYTES_PER_ROW 16
69 char buffer[500];
70 char* bufptr = buffer;
71
Mike Lockwood56118b52010-05-11 17:16:59 -040072 for (int i = 0; i < mPacketSize; i++) {
Mike Lockwood3e6616d2010-06-29 18:11:52 -040073 sprintf(bufptr, "%02X ", mBuffer[i]);
74 bufptr += strlen(bufptr);
75 if (i % DUMP_BYTES_PER_ROW == (DUMP_BYTES_PER_ROW - 1)) {
76 LOGV("%s", buffer);
77 bufptr = buffer;
78 }
Mike Lockwood56118b52010-05-11 17:16:59 -040079 }
Mike Lockwood3e6616d2010-06-29 18:11:52 -040080 if (bufptr != buffer) {
81 // print last line
82 LOGV("%s", buffer);
83 }
84 LOGV("\n");
Mike Lockwood56118b52010-05-11 17:16:59 -040085}
86
Mike Lockwoodbfd1d722010-12-09 18:34:18 -080087void MtpPacket::copyFrom(const MtpPacket& src) {
88 int length = src.mPacketSize;
89 allocate(length);
90 mPacketSize = length;
91 memcpy(mBuffer, src.mBuffer, length);
92}
93
Mike Lockwood56118b52010-05-11 17:16:59 -040094uint16_t MtpPacket::getUInt16(int offset) const {
95 return ((uint16_t)mBuffer[offset + 1] << 8) | (uint16_t)mBuffer[offset];
96}
97
98uint32_t MtpPacket::getUInt32(int offset) const {
99 return ((uint32_t)mBuffer[offset + 3] << 24) | ((uint32_t)mBuffer[offset + 2] << 16) |
100 ((uint32_t)mBuffer[offset + 1] << 8) | (uint32_t)mBuffer[offset];
101}
102
103void MtpPacket::putUInt16(int offset, uint16_t value) {
104 mBuffer[offset++] = (uint8_t)(value & 0xFF);
105 mBuffer[offset++] = (uint8_t)((value >> 8) & 0xFF);
106}
107
108void MtpPacket::putUInt32(int offset, uint32_t value) {
109 mBuffer[offset++] = (uint8_t)(value & 0xFF);
110 mBuffer[offset++] = (uint8_t)((value >> 8) & 0xFF);
111 mBuffer[offset++] = (uint8_t)((value >> 16) & 0xFF);
112 mBuffer[offset++] = (uint8_t)((value >> 24) & 0xFF);
113}
114
115uint16_t MtpPacket::getContainerCode() const {
116 return getUInt16(MTP_CONTAINER_CODE_OFFSET);
117}
118
119void MtpPacket::setContainerCode(uint16_t code) {
120 putUInt16(MTP_CONTAINER_CODE_OFFSET, code);
121}
122
Mike Lockwoodbfd1d722010-12-09 18:34:18 -0800123uint16_t MtpPacket::getContainerType() const {
124 return getUInt16(MTP_CONTAINER_TYPE_OFFSET);
125}
126
Mike Lockwood56118b52010-05-11 17:16:59 -0400127MtpTransactionID MtpPacket::getTransactionID() const {
128 return getUInt32(MTP_CONTAINER_TRANSACTION_ID_OFFSET);
129}
130
131void MtpPacket::setTransactionID(MtpTransactionID id) {
132 putUInt32(MTP_CONTAINER_TRANSACTION_ID_OFFSET, id);
133}
134
135uint32_t MtpPacket::getParameter(int index) const {
136 if (index < 1 || index > 5) {
Mike Lockwood44e82dd2010-11-23 09:08:01 -0500137 LOGE("index %d out of range in MtpPacket::getParameter", index);
Mike Lockwood56118b52010-05-11 17:16:59 -0400138 return 0;
139 }
140 return getUInt32(MTP_CONTAINER_PARAMETER_OFFSET + (index - 1) * sizeof(uint32_t));
141}
142
143void MtpPacket::setParameter(int index, uint32_t value) {
144 if (index < 1 || index > 5) {
Mike Lockwood44e82dd2010-11-23 09:08:01 -0500145 LOGE("index %d out of range in MtpPacket::setParameter", index);
Mike Lockwood56118b52010-05-11 17:16:59 -0400146 return;
147 }
148 int offset = MTP_CONTAINER_PARAMETER_OFFSET + (index - 1) * sizeof(uint32_t);
149 if (mPacketSize < offset + sizeof(uint32_t))
150 mPacketSize = offset + sizeof(uint32_t);
151 putUInt32(offset, value);
152}
153
154#ifdef MTP_HOST
Mike Lockwood215b6822011-01-04 14:48:57 -0500155int MtpPacket::transfer(struct usb_request* request) {
Mike Lockwood321aa992011-02-14 08:07:50 -0500156 int result = usb_device_bulk_transfer(request->dev,
157 request->endpoint,
158 request->buffer,
159 request->buffer_length,
160 0);
161 request->actual_length = result;
162 return result;
Mike Lockwood56118b52010-05-11 17:16:59 -0400163}
164#endif
Mike Lockwood8d3257a2010-05-14 10:10:36 -0400165
166} // namespace android