blob: 2240a3dd412d56e2336ddac6ac862e15f30ef5f0 [file] [log] [blame]
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05001/*
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#ifndef _MTP_DATA_PACKET_H
18#define _MTP_DATA_PACKET_H
19
20#include "MtpPacket.h"
21#include "mtp.h"
22
23struct usb_device;
24struct usb_request;
25
26class IMtpHandle;
27class MtpStringBuffer;
28
29class MtpDataPacket : public MtpPacket {
30private:
31 // current offset for get/put methods
32 size_t mOffset;
33
34public:
35 MtpDataPacket();
36 virtual ~MtpDataPacket();
37
38 virtual void reset();
39
40 void setOperationCode(MtpOperationCode code);
41 void setTransactionID(MtpTransactionID id);
42
43 inline const uint8_t* getData() const { return mBuffer + MTP_CONTAINER_HEADER_SIZE; }
44
45 bool getUInt8(uint8_t& value);
46 inline bool getInt8(int8_t& value) { return getUInt8((uint8_t&)value); }
47 bool getUInt16(uint16_t& value);
48 inline bool getInt16(int16_t& value) { return getUInt16((uint16_t&)value); }
49 bool getUInt32(uint32_t& value);
50 inline bool getInt32(int32_t& value) { return getUInt32((uint32_t&)value); }
51 bool getUInt64(uint64_t& value);
52 inline bool getInt64(int64_t& value) { return getUInt64((uint64_t&)value); }
53 bool getUInt128(uint128_t& value);
54 inline bool getInt128(int128_t& value) { return getUInt128((uint128_t&)value); }
55 bool getString(MtpStringBuffer& string);
56
57 Int8List* getAInt8();
58 UInt8List* getAUInt8();
59 Int16List* getAInt16();
60 UInt16List* getAUInt16();
61 Int32List* getAInt32();
62 UInt32List* getAUInt32();
63 Int64List* getAInt64();
64 UInt64List* getAUInt64();
65
66 void putInt8(int8_t value);
67 void putUInt8(uint8_t value);
68 void putInt16(int16_t value);
69 void putUInt16(uint16_t value);
70 void putInt32(int32_t value);
71 void putUInt32(uint32_t value);
72 void putInt64(int64_t value);
73 void putUInt64(uint64_t value);
74 void putInt128(const int128_t& value);
75 void putUInt128(const uint128_t& value);
76 void putInt128(int64_t value);
77 void putUInt128(uint64_t value);
78
79 void putAInt8(const int8_t* values, int count);
80 void putAUInt8(const uint8_t* values, int count);
81 void putAInt16(const int16_t* values, int count);
82 void putAUInt16(const uint16_t* values, int count);
83 void putAUInt16(const UInt16List* values);
84 void putAInt32(const int32_t* values, int count);
85 void putAUInt32(const uint32_t* values, int count);
86 void putAUInt32(const UInt32List* list);
87 void putAInt64(const int64_t* values, int count);
88 void putAUInt64(const uint64_t* values, int count);
89 void putString(const MtpStringBuffer& string);
90 void putString(const char* string);
91 void putString(const uint16_t* string);
92 inline void putEmptyString() { putUInt8(0); }
93 inline void putEmptyArray() { putUInt32(0); }
94
95#ifdef MTP_DEVICE
96 // fill our buffer with data from the given usb handle
97 int read(IMtpHandle *h);
98
99 // write our data to the given usb handle
100 int write(IMtpHandle *h);
101 int writeData(IMtpHandle *h, void* data, uint32_t length);
102#endif
103
104#ifdef MTP_HOST
105 int read(struct usb_request *request);
106 int readData(struct usb_request *request, void* buffer, int length);
107 int readDataAsync(struct usb_request *req);
108 int readDataWait(struct usb_device *device);
109 int readDataHeader(struct usb_request *ep);
110
111 // Write a whole data packet with payload to the end point given by a request. |divisionMode|
112 // specifies whether to divide header and payload. See |UrbPacketDivisionMode| for meanings of
113 // each value. Return the number of bytes (including header size) sent to the device on success.
114 // Otherwise -1.
115 int write(struct usb_request *request, UrbPacketDivisionMode divisionMode);
116 // Similar to previous write method but it reads the payload from |fd|. If |size| is larger than
117 // MTP_BUFFER_SIZE, the data will be sent by multiple bulk transfer requests.
118 int write(struct usb_request *request, UrbPacketDivisionMode divisionMode,
119 int fd, size_t size);
120#endif
121
122 inline bool hasData() const { return mPacketSize > MTP_CONTAINER_HEADER_SIZE; }
123 inline uint32_t getContainerLength() const { return MtpPacket::getUInt32(MTP_CONTAINER_LENGTH_OFFSET); }
124 void* getData(int* outLength) const;
125};
126
127#endif // _MTP_DATA_PACKET_H