summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/fileserv/FileServer.java
blob: 3232374e4aceaa1cb7e09fdea88d50fc1766f896 (plain) (blame)
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
package org.openslx.bwlp.sat.fileserv;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

import javax.net.ssl.SSLContext;

import org.apache.log4j.Logger;
import org.openslx.bwlp.sat.database.models.LocalImageVersion;
import org.openslx.bwlp.sat.util.Configuration;
import org.openslx.bwlp.sat.util.Constants;
import org.openslx.bwlp.sat.util.Formatter;
import org.openslx.bwlp.sat.util.Identity;
import org.openslx.bwlp.thrift.iface.ImageDetailsRead;
import org.openslx.bwlp.thrift.iface.TTransferRejectedException;
import org.openslx.bwlp.thrift.iface.UserInfo;
import org.openslx.filetransfer.Downloader;
import org.openslx.filetransfer.IncomingEvent;
import org.openslx.filetransfer.Listener;
import org.openslx.filetransfer.Uploader;

public class FileServer implements IncomingEvent {

	private static final Logger LOGGER = Logger.getLogger(FileServer.class);

	/**
	 * Listener for incoming unencrypted connections
	 */
	private final Listener plainListener = new Listener(this, null, 9092, Constants.TRANSFER_TIMEOUT); // TODO: Config

	private final Listener sslListener;

	private final ThreadPoolExecutor transferPool = new ThreadPoolExecutor(2, Constants.MAX_UPLOADS
			+ Constants.MAX_DOWNLOADS, 1, TimeUnit.MINUTES, new ArrayBlockingQueue<Runnable>(1));

	/**
	 * All currently running uploads, indexed by token
	 */
	private final Map<String, ActiveUpload> uploads = new ConcurrentHashMap<>();

	/**
	 * All currently running downloads, indexed by token
	 */
	private final Map<String, ActiveDownload> downloads = new ConcurrentHashMap<>();

	private static final FileServer globalInstance = new FileServer();

	private FileServer() {
		SSLContext ctx = Identity.getSSLContext();
		sslListener = ctx == null ? null : new Listener(this, ctx, 9093, Constants.TRANSFER_TIMEOUT);
	}

	public static FileServer instance() {
		return globalInstance;
	}

	public boolean start() {
		boolean ret = plainListener.start();
		if (sslListener != null) {
			ret |= sslListener.start();
		}
		return ret;
	}

	@Override
	public void incomingDownloadRequest(Uploader uploader) throws IOException {
		String token = uploader.getToken();
		LOGGER.info("Incoming filetransfer with token " + token);
		ActiveDownload download = downloads.get(token);
		if (download == null) {
			LOGGER.warn("Unknown token " + token);
			uploader.cancel();
			return;
		}
		if (!download.addConnection(uploader, transferPool)) {
			uploader.cancel();
		}
	}

	@Override
	public void incomingUploadRequest(Downloader downloader) throws IOException {
		String token = downloader.getToken();
		LOGGER.info("Incoming filetransfer with token " + token);
		ActiveUpload upload = uploads.get(token);
		if (upload == null) {
			LOGGER.warn("Unknown token " + token);
			downloader.cancel();
			return;
		}
		if (!upload.addConnection(downloader, transferPool)) {
			downloader.cancel();
		}
	}

	/**
	 * Get an upload instance by given token.
	 * 
	 * @param uploadToken
	 * @return
	 */
	public ActiveUpload getUploadByToken(String uploadToken) {
		if (uploadToken == null)
			return null;
		return uploads.get(uploadToken);
	}

	public ActiveUpload createNewUserUpload(UserInfo owner, ImageDetailsRead image, long fileSize,
			List<ByteBuffer> sha1Sums, byte[] machineDescription) throws TTransferRejectedException {
		Iterator<ActiveUpload> it = uploads.values().iterator();
		int activeUploads = 0;
		while (it.hasNext()) {
			ActiveUpload upload = it.next();
			if (upload.isComplete()) {
				// TODO: Check age (short timeout) and remove
				continue;
			} else {
				// Check age (long timeout) and remove
			}
			activeUploads++;
		}
		if (activeUploads > Constants.MAX_UPLOADS)
			throw new TTransferRejectedException("Server busy. Too many running uploads.");
		File destinationFile = null;
		do {
			destinationFile = Formatter.getTempImageName();
		} while (destinationFile.exists());
		destinationFile.getParentFile().mkdirs();

		String key = UUID.randomUUID().toString();
		ActiveUpload upload;
		try {
			upload = new ActiveUpload(key, owner, image, destinationFile, fileSize, sha1Sums,
					machineDescription);
		} catch (FileNotFoundException e) {
			LOGGER.error("Could not open destination file for writing", e);
			throw new TTransferRejectedException("Destination file not writable!");
		}

		uploads.put(key, upload);
		return upload;
	}

	public int getPlainPort() {
		return plainListener.getPort();
	}

	public int getSslPort() {
		if (sslListener == null)
			return 0;
		return sslListener.getPort();
	}

	public ActiveDownload createNewUserDownload(LocalImageVersion localImageData)
			throws TTransferRejectedException {
		Iterator<ActiveDownload> it = downloads.values().iterator();
		int activeDownloads = 0;
		while (it.hasNext()) {
			ActiveDownload download = it.next();
			if (download.isComplete()) {
				// TODO: Check age (short timeout) and remove
				continue;
			} else {
				// Check age (long timeout) and remove
			}
			activeDownloads++;
		}
		if (activeDownloads > Constants.MAX_DOWNLOADS)
			throw new TTransferRejectedException("Server busy. Too many running downloads.");
		// Determine src file and go
		File srcFile = new File(Configuration.getVmStoreBasePath(), localImageData.filePath);
		if (!srcFile.canRead()) {
			LOGGER.warn("Rejecting download of VID " + localImageData.imageVersionId + ": Missing "
					+ srcFile.getPath());
			// TODO: Mark as invalid in DB
			throw new TTransferRejectedException("File missing on server");
		}
		String key = UUID.randomUUID().toString();
		ActiveDownload transfer = new ActiveDownload(key, srcFile);
		downloads.put(key, transfer);
		return transfer;
	}

}