aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall/source/EndFileTransferPacket.h
blob: 73353d593402ed846b1bbb0bf4fa845a8a9e3c9c (plain)
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
/* Copyright (c) 2010-2011 Benjamin Dobell, Glass Echidna
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.*/

#ifndef ENDFILETRANSFERPACKET_H
#define ENDFILETRANSFERPACKET_H

// Heimdall
#include "FileTransferPacket.h"

namespace Heimdall
{
	class EndFileTransferPacket : public FileTransferPacket
	{
		public:

			enum
			{
				kDestinationPhone	= 0x00,
				kDestinationModem	= 0x01
			};			

		protected:

			enum
			{
				kDataSize = FileTransferPacket::kDataSize + 16
			};

		private:

			unsigned int destination;			// Chip identifier perhaps
			unsigned short partialPacketLength;	// Length or (length - 65536) if lastFullPacket is odd.
			unsigned int lastFullPacketIndex;	
			unsigned short unknown1;
			unsigned int partitionType;

		protected:

			EndFileTransferPacket(unsigned int destination, unsigned int partialPacketLength, unsigned int lastFullPacketIndex,
				unsigned short unknown1, unsigned int partitionType)
				: FileTransferPacket(FileTransferPacket::kRequestEnd)
			{
				this->destination = destination;

				if (partialPacketLength > 65535)
				{
					this->partialPacketLength = (partialPacketLength - 65536);
					this->lastFullPacketIndex = lastFullPacketIndex + 1;
				}
				else
				{
					this->partialPacketLength = partialPacketLength;
					this->lastFullPacketIndex = lastFullPacketIndex;
				}
				
				this->unknown1 = unknown1;
				this->partitionType = partitionType;
			}

		public:

			unsigned int GetDestination(void) const
			{
				return (destination);
			}

			unsigned int GetPartialPacketLength(void) const
			{
				if (lastFullPacketIndex % 2 == 0)
					return (partialPacketLength);
				else
					return (partialPacketLength + 65536);
			}

			unsigned int GetLastFullPacketIndex(void) const
			{
				return (lastFullPacketIndex - lastFullPacketIndex % 2);
			}

			unsigned short GetUnknown1(void) const
			{
				return (unknown1);
			}

			unsigned int GetPartitionType(void) const
			{
				return (partitionType);
			}

			virtual void Pack(void)
			{
				FileTransferPacket::Pack();

				PackInteger(FileTransferPacket::kDataSize, destination);
				PackShort(FileTransferPacket::kDataSize + 4, partialPacketLength);
				PackInteger(FileTransferPacket::kDataSize + 6, lastFullPacketIndex);
				PackShort(FileTransferPacket::kDataSize + 10, unknown1);
				PackInteger(FileTransferPacket::kDataSize + 12, partitionType);
			}
	};
}

#endif