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
223
224
225
226
|
/*
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.protocol.icq;
import java.io.File;
import java.util.*;
import net.java.sip.communicator.service.protocol.*;
import net.java.sip.communicator.service.protocol.FileTransfer;
import net.java.sip.communicator.service.protocol.event.*;
import net.java.sip.communicator.util.*;
import net.kano.joscar.rvcmd.*;
import net.kano.joustsim.oscar.oscar.service.icbm.ft.*;
/**
* Icq implementation of the incoming file transfer request
*
* @author Nicolas Riegel
* @author Damian Minkov
*/
public class IncomingFileTransferRequestIcqImpl
implements IncomingFileTransferRequest
{
/**
* Logger
*/
private static final Logger logger =
Logger.getLogger(IncomingFileTransferRequestIcqImpl.class);
/**
* The icq provider.
*/
private ProtocolProviderServiceIcqImpl icqProvider;
private OperationSetFileTransferIcqImpl fileTransferOpSet;
/**
* The icq file transfer request received
*/
private IncomingFileTransfer incomingFileTransfer = null;
private Contact sender = null;
private Date date;
private String id;
/**
* Constructor
*
* @param fileTransfer icq file transfer request that was received
*/
public IncomingFileTransferRequestIcqImpl(
ProtocolProviderServiceIcqImpl icqProvider,
OperationSetFileTransferIcqImpl fileTransferOpSet,
IncomingFileTransfer fileTransfer,
Contact sender,
Date date)
{
this.icqProvider = icqProvider;
this.fileTransferOpSet = fileTransferOpSet;
this.incomingFileTransfer = fileTransfer;
this.sender = sender;
this.date = date;
id = String.valueOf(incomingFileTransfer.getRvSessionInfo()
.getRvSession().getRvSessionId());
}
/**
* Uniquie ID that is identifying the request and then the FileTransfer
* if the request has been accepted.
*
* @return the id.
*/
public String getID()
{
return id;
}
/**
* Returns a String that represents the name of the file that is being
* received.
* If there is no name, returns null.
* @return a String that represents the name of the file
*/
public String getFileName()
{
return incomingFileTransfer.getRequestFileInfo().getFilename();
}
/**
* Returns a String that represents the description of the file that is
* being received.
* If there is no description available, returns null.
*
* @return a String that represents the description of the file
*/
public String getFileDescription()
{
return incomingFileTransfer.getInvitationMessage().getMessage();
}
/**
* Returns a long that represents the size of the file that is being
* received.
* If there is no file size available, returns null.
*
* @return a long that represents the size of the file
*/
public long getFileSize()
{
return incomingFileTransfer.getRequestFileInfo().getTotalFileSize();
}
/**
* Returns a String that represents the name of the sender of the file
* being received.
* If there is no sender name available, returns null.
*
* @return a String that represents the name of the sender
*/
public Contact getSender()
{
return sender;
}
/**
* Function called to accept and receive the file.
*
* @param file the file to accept
* @return the <tt>FileTransfer</tt> object managing the transfer
*/
public FileTransfer acceptFile(File file)
{
incomingFileTransfer.setFileMapper(new IcqFileMapper(file));
FileTransferImpl inFileTransfer =
new FileTransferImpl(
incomingFileTransfer,
id, sender, file,
FileTransfer.IN);
FileTransferCreatedEvent event
= new FileTransferCreatedEvent(inFileTransfer, date);
fileTransferOpSet.fireFileTransferCreated(event);
incomingFileTransfer.accept();
inFileTransfer.fireStatusChangeEvent(
FileTransferStatusChangeEvent.PREPARING);
return inFileTransfer;
}
/**
* Function called to refuse the file.
*/
public void rejectFile()
{
try
{
incomingFileTransfer.close();
fileTransferOpSet.fireFileTransferRequestRejected(
new FileTransferRequestEvent(fileTransferOpSet, this, date));
}
catch(IllegalStateException e)
{
if (logger.isDebugEnabled())
logger.debug("Error rejecting file",e);
return;
}
}
/**
* Class to say where the incoming file should be save
*
* @author Nicolas Riegel
*/
private class IcqFileMapper
implements FileMapper
{
/**
* Destination file
*/
File file = null;
/**
* Constructor
*
* @param file is the destination file
*/
public IcqFileMapper(File file)
{
this.file = file;
}
public File getDestinationFile(SegmentedFilename filename)
{
return file;
}
public File getUnspecifiedFilename()
{
return file;
}
}
/**
* Returns the thumbnail contained in this request.
*
* @return the thumbnail contained in this request
*/
public byte[] getThumbnail()
{
return null;
}
}
|