summaryrefslogtreecommitdiffstats
blob: 100afd964bff36829730963ba61948957e60f35b (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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
 * Copyright (c) 2014 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
/*
 * Copyright (c) 2015 Tarun Gupta.
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

package com.isode.stroke.elements;

import com.isode.stroke.elements.Payload;
import com.isode.stroke.elements.HashElement;
import com.isode.stroke.base.DateTime;
import com.isode.stroke.base.NotNull;
import com.isode.stroke.base.ByteArray;
import java.util.Date;
import java.util.TimeZone;
import java.util.Map;
import java.util.HashMap;

/**
 * @brief This class represents the file info used in XEP-0234.
 */
public class JingleFileTransferFileInfo extends Payload {

	private String name_ = "";
	private String description_ = "";
	private String mediaType_ = "";
	private long size_;
	private Date date_;
	private boolean supportsRangeRequests_;
	private long rangeOffset_;
	private Map<String, ByteArray> hashes_ = new HashMap<String, ByteArray>();

	/**
	* Default Constructor.
	*/
	public JingleFileTransferFileInfo() {
		this("", "", 0, new Date(0L));
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	*/
	public JingleFileTransferFileInfo(String name) {
		this(name, "", 0, new Date(0L));
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	* @param description, NotNull.
	*/
	public JingleFileTransferFileInfo(String name, String description) {
		this(name, description, 0, new Date(0L));
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	* @param description, NotNull.
	* @param size.
	*/
	public JingleFileTransferFileInfo(String name, String description, long size) {
		this(name, description, size, new Date(0L));
	}

	/**
	* Parameterized Constructor.
	* @param name, NotNull.
	* @param description, NotNull.
	* @param size.
	* @param date, NotNull.
	*/
	public JingleFileTransferFileInfo(String name, String description, long size, Date date) {
		NotNull.exceptIfNull(name, "name");
		NotNull.exceptIfNull(description, "description");
		NotNull.exceptIfNull(date, "date");
		this.name_ = name;
		this.description_ = description;
		this.size_ = size;
		this.date_ = date;
		this.supportsRangeRequests_ = false;
		this.rangeOffset_ = 0;
		TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
	}

	/**
	* @param name, NotNull.
	*/
	public void setName(String name) {
		NotNull.exceptIfNull(name, "name");
		name_ = name;;
	}

	/**
	* @return name, NotNull.
	*/
	public String getName() {
		return name_;
	}

	/**
	* @param description, NotNull.
	*/
	public void setDescription(String description) {
		NotNull.exceptIfNull(description, "description");
		description_ = description;
	}

	/**
	* @return description, NotNull.
	*/
	public String getDescription() {
		return description_;
	}

	/**
	* @param mediaType, NotNull.
	*/
	public void setMediaType(String mediaType) {
		NotNull.exceptIfNull(mediaType, "mediaType");
		mediaType_ = mediaType;
	}

	/**
	* @return mediaType, NotNull.
	*/
	public String getMediaType() {
		return mediaType_;
	}

	/**
	* @param size.
	*/
	public void setSize(long size) {
		size_ = size;
	}

	/**
	* @return size.
	*/
	public long getSize() {
		return size_;
	}

	/**
	* @param date, NotNull.
	*/
	public void setDate(Date date) {
		NotNull.exceptIfNull(date, "date");
		date_ = date;
	}

	/**
	* @return date, NotNull.
	*/
	public Date getDate() {
		return date_;
	}

	/**
	* @param supportsRangeRequests_.
	*/
	public void setSupportsRangeRequests(boolean supportsIt) {
		supportsRangeRequests_ = supportsIt;
	}

	/**
	* @return supportsRangeRequests_.
	*/
	public boolean getSupportsRangeRequests() {
		return supportsRangeRequests_;
	}

	/**
	* @param offset.
	*/
	public void setRangeOffset(long offset) {
		supportsRangeRequests_ = true;
		rangeOffset_ = offset;
	}

	/**
	* @return offset.
	*/
	public long getRangeOffset() {
		return rangeOffset_;
	}

	/**
	* @param hash, NotNull.
	*/
	public void addHash(HashElement hash) {
		NotNull.exceptIfNull(hash, "hash");
		hashes_.put(hash.getAlgorithm(), hash.getHashValue());
	}

	/**
	* @return hashes map.
	*/
	public Map<String, ByteArray> getHashes() {
		return hashes_;
	}

	/**
	* @param algorithm, NotNull.
	* @return ByteArray, can be null.
	*/
	public ByteArray getHash(String algorithm) {
		NotNull.exceptIfNull(algorithm, "algorithm");
		ByteArray ret = null;
		if(hashes_.containsKey(algorithm)) {
			ret = new ByteArray(hashes_.get(algorithm));
		}
		return ret;
	}
}