ResImageDownload.java
5.43 KB
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
/*
* Decompiled with CFR 0_118.
*/
package com.scene7.is.ipp.messages;
import com.scene7.is.ipp.messages.InMessage;
import com.scene7.is.ipp.messages.Ipp;
import com.scene7.is.ipp.messages.IppBool;
import com.scene7.is.ipp.messages.IppByteArray;
import com.scene7.is.ipp.messages.IppInt;
import com.scene7.is.ipp.messages.IppLongString;
import com.scene7.is.ipp.messages.Offset;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.io.Writer;
public class ResImageDownload
extends InMessage {
static int MessageNumber = 131852;
private String fileName_;
private int beginOffset_;
private int endOffset_;
private int fileLength_;
private byte[] data_;
private boolean compressed_;
private boolean isComplete_;
public ResImageDownload(int tag, String fileName, int beginOffset, int endOffset, int fileLength, byte[] data, boolean compressed, boolean isComplete, int headClientId) {
this.tag_ = tag;
this.headerClientId_ = headClientId;
this.fileName_ = fileName;
this.beginOffset_ = beginOffset;
this.endOffset_ = endOffset;
this.fileLength_ = fileLength;
this.data_ = data;
this.compressed_ = compressed;
this.isComplete_ = isComplete;
int fixedLength = 32;
Offset varPos = new Offset(fixedLength);
try {
varPos.val += fileName.getBytes("UTF-8").length + 1;
}
catch (UnsupportedEncodingException e) {
throw new AssertionError(e);
}
varPos.val += data.length;
this.messageLength_ = varPos.val;
varPos.val = fixedLength;
Offset pos = new Offset(0);
this.headBuffer_ = new byte[32];
this.bodyBuffer_ = new byte[this.messageLength_];
Ipp.StuffHeader(this.headBuffer_, this.headerClientId_, tag, MessageNumber, this.messageLength_);
IppLongString.Stuff(this.bodyBuffer_, pos, varPos, this.fileName_);
IppInt.Stuff(this.bodyBuffer_, pos, null, this.beginOffset_);
IppInt.Stuff(this.bodyBuffer_, pos, null, this.endOffset_);
IppInt.Stuff(this.bodyBuffer_, pos, null, this.fileLength_);
IppByteArray.Stuff(this.bodyBuffer_, pos, varPos, this.data_);
IppBool.Stuff(this.bodyBuffer_, pos, null, this.compressed_);
IppBool.Stuff(this.bodyBuffer_, pos, null, this.isComplete_);
Ipp.Assert(pos.val == fixedLength, "IppWatermarkType length");
}
public ResImageDownload() {
}
public void process(int headClientId, int tg, byte[] bf) {
this.headerClientId_ = headClientId;
this.tag_ = tg;
this.messageLength_ = bf.length;
this.headBuffer_ = new byte[32];
Ipp.StuffHeader(this.headBuffer_, this.headerClientId_, this.tag_, MessageNumber, this.messageLength_);
this.bodyBuffer_ = bf;
Offset pos = new Offset(0);
this.fileName_ = IppLongString.Unstuff(this.bodyBuffer_, pos);
this.beginOffset_ = IppInt.Unstuff(this.bodyBuffer_, pos);
this.endOffset_ = IppInt.Unstuff(this.bodyBuffer_, pos);
this.fileLength_ = IppInt.Unstuff(this.bodyBuffer_, pos);
this.data_ = IppByteArray.Unstuff(this.bodyBuffer_, pos);
this.compressed_ = IppBool.Unstuff(this.bodyBuffer_, pos);
this.isComplete_ = IppBool.Unstuff(this.bodyBuffer_, pos);
}
public int classification() {
return 1;
}
public int id() {
return MessageNumber;
}
public void print(Writer tf, String heading) throws IOException {
tf.write("\n");
tf.write(heading);
tf.write(": ResImageDownload ");
Ipp.PrintHex(tf, MessageNumber);
tf.write("\n");
tf.write("headClientId: " + this.headerClientId() + "\n");
Ipp.PrintTag(tf, "tag: ", this.tag());
tf.write("length: " + this.length());
tf.write("\n");
IppLongString.Print(tf, "fileName: ", this.fileName_);
IppInt.Print(tf, "beginOffset: ", this.beginOffset_);
IppInt.Print(tf, "endOffset: ", this.endOffset_);
IppInt.Print(tf, "fileLength: ", this.fileLength_);
IppByteArray.Print(tf, "data: ", this.data_);
IppBool.Print(tf, "compressed: ", this.compressed_);
IppBool.Print(tf, "isComplete: ", this.isComplete_);
}
public String toString() {
StringBuffer buffer = new StringBuffer();
buffer.append("ResImageDownload ");
buffer.append("[fileName: " + String.valueOf(this.fileName_) + "],");
buffer.append("[beginOffset: " + String.valueOf(this.beginOffset_) + "],");
buffer.append("[endOffset: " + String.valueOf(this.endOffset_) + "],");
buffer.append("[fileLength: " + String.valueOf(this.fileLength_) + "],");
buffer.append("[data: " + String.valueOf(this.data_) + "],");
buffer.append("[compressed: " + String.valueOf(this.compressed_) + "],");
buffer.append("[isComplete: " + String.valueOf(this.isComplete_) + "],");
return buffer.toString();
}
public String fileName() {
return this.fileName_;
}
public int beginOffset() {
return this.beginOffset_;
}
public int endOffset() {
return this.endOffset_;
}
public int fileLength() {
return this.fileLength_;
}
public byte[] data() {
return this.data_;
}
public boolean compressed() {
return this.compressed_;
}
public boolean isComplete() {
return this.isComplete_;
}
}