import net.pterodactylus.irc.event.ChannelMessageReceived;
import net.pterodactylus.irc.event.ClientQuit;
import net.pterodactylus.irc.event.ConnectionEstablished;
+import net.pterodactylus.irc.event.DccAcceptReceived;
import net.pterodactylus.irc.event.DccDownloadFailed;
import net.pterodactylus.irc.event.DccDownloadFinished;
import net.pterodactylus.irc.event.DccSendReceived;
import net.pterodactylus.xdcc.core.event.DownloadFailed;
import net.pterodactylus.xdcc.core.event.DownloadFinished;
import net.pterodactylus.xdcc.core.event.DownloadStarted;
+import net.pterodactylus.xdcc.core.event.GenericError;
import net.pterodactylus.xdcc.core.event.GenericMessage;
import net.pterodactylus.xdcc.core.event.MessageReceived;
import net.pterodactylus.xdcc.data.Bot;
return;
}
- logger.info(String.format("Starting download of %s.", dccSendReceived.filename()));
+ /* check if the file already exists. */
+ File outputFile = new File(temporaryDirectory, dccSendReceived.filename());
+ if (outputFile.exists()) {
+ long existingFileSize = outputFile.length();
+
+ /* file already complete? */
+ if ((dccSendReceived.filesize() > -1) && (existingFileSize >= dccSendReceived.filesize())) {
+ /* file is apparently already complete. just move it. */
+ if (outputFile.renameTo(new File(finalDirectory, download.pack().name()))) {
+ eventBus.post(new GenericMessage(String.format("File %s already downloaded.", download.pack().name())));
+ } else {
+ eventBus.post(new GenericMessage(String.format("File %s already downloaded but not moved to %s.", download.pack().name(), finalDirectory)));
+ }
+
+ /* remove download. */
+ downloads.remove(download);
+ return;
+ }
+
+ /* file not complete yet, DCC resume it. */
+ try {
+ download.remoteAddress(dccSendReceived.inetAddress()).filesize(dccSendReceived.filesize());
+ dccSendReceived.connection().sendDccResume(dccSendReceived.source().nick().get(), dccSendReceived.filename(), dccSendReceived.port(), existingFileSize);
+ } catch (IOException ioe1) {
+ eventBus.post(new GenericError(String.format("Could not send DCC RESUME %s to %s (%s).", dccSendReceived.filename(), dccSendReceived.source().nick().get(), ioe1.getMessage())));
+ }
+
+ return;
+ }
+
+ /* file does not exist, start the download. */
try {
- File outputFile = new File(temporaryDirectory, dccSendReceived.filename());
OutputStream fileOutputStream = new FileOutputStream(outputFile);
DccReceiver dccReceiver = new DccReceiver(eventBus, dccSendReceived.inetAddress(), dccSendReceived.port(), dccSendReceived.filename(), dccSendReceived.filesize(), fileOutputStream);
download.filename(outputFile.getPath()).outputStream(fileOutputStream).dccReceiver(dccReceiver);
dccReceiver.start();
eventBus.post(new DownloadStarted(download));
} catch (FileNotFoundException fnfe1) {
- logger.log(Level.WARNING, "Could not open file for download!", fnfe1);
+ eventBus.post(new GenericError(String.format("Could not start download of %s from %s (%s).", dccSendReceived.filename(), dccSendReceived.source().nick().get(), fnfe1.getMessage())));
+ }
+ }
+
+ @Subscribe
+ public void dccAcceptReceived(DccAcceptReceived dccAcceptReceived) {
+ Optional<Network> network = getNetwork(dccAcceptReceived.connection());
+ if (!network.isPresent()) {
+ return;
+ }
+
+ Download download = downloads.get(dccAcceptReceived.filename());
+ if (download == null) {
+ /* unknown download, ignore. */
+ return;
+ }
+
+ try {
+ File outputFile = new File(temporaryDirectory, dccAcceptReceived.filename());
+ if (outputFile.length() != dccAcceptReceived.position()) {
+ eventBus.post(new GenericError(String.format("Download %s from %s does not start at the right position!")));
+ logger.log(Level.WARNING, String.format("Download %s from %s: have %d bytes but wants to resume from %d!", dccAcceptReceived.filename(), dccAcceptReceived.source(), outputFile.length(), dccAcceptReceived.position()));
+
+ downloads.remove(download);
+ return;
+ }
+ OutputStream outputStream = new FileOutputStream(outputFile, true);
+ DccReceiver dccReceiver = new DccReceiver(eventBus, download.remoteAddress(), dccAcceptReceived.port(), dccAcceptReceived.filename(), dccAcceptReceived.position(), download.filesize(), outputStream);
+ download.filename(outputFile.getPath()).outputStream(outputStream).dccReceiver(dccReceiver);
+ dccReceivers.add(dccReceiver);
+ dccReceiver.start();
+ eventBus.post(new DownloadStarted(download));
+ } catch (FileNotFoundException fnfe1) {
}
}
package net.pterodactylus.xdcc.data;
import java.io.OutputStream;
+import java.net.InetAddress;
import net.pterodactylus.irc.DccReceiver;
/** The name of the file being downloaded. */
private String filename;
+ /** The size of the file being downloaded. */
+ private long filesize;
+
+ /** The remote address. */
+ private InetAddress remoteAddress;
+
/** The output stream. */
private OutputStream outputStream;
}
/**
+ * Returns the size of the file.
+ *
+ * @return The size of the file
+ */
+ public long filesize() {
+ return filesize;
+ }
+
+ /**
+ * Returns the remote address to download from.
+ *
+ * @return The remote address to download from
+ */
+ public InetAddress remoteAddress() {
+ return remoteAddress;
+ }
+
+ /**
* The output stream that writes to the file.
*
* @return The output stream
}
/**
+ * Sets the size of the download.
+ *
+ * @param filesize
+ * The size of the download
+ * @return This download
+ */
+ public Download filesize(long filesize) {
+ this.filesize = filesize;
+ return this;
+ }
+
+ /**
+ * Sets the remote address of the download.
+ *
+ * @param remoteAddress
+ * The remote address of the download
+ * @return This download
+ */
+ public Download remoteAddress(InetAddress remoteAddress) {
+ this.remoteAddress = remoteAddress;
+ return this;
+ }
+
+ /**
* Sets the output stream the download is being written to
*
* @param outputStream