-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServer.java
206 lines (182 loc) · 8.42 KB
/
Server.java
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
import java.net.ServerSocket;
import java.net.Socket;
import java.nio.charset.StandardCharsets;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;
import java.util.logging.Logger;
import java.util.HashMap;
import java.util.Map;
public class Server {
private static final Logger logger = Logger.getLogger(Server.class.getName());
private static final Encoder encoder = new Encoder();
private static final NotADataBase nDb = new NotADataBase();
private static final AtomicLong counter = new AtomicLong(0);
private static volatile boolean isServerRunning = true;
public static void main(String[] args) {
int port = 8080;
BlockingQueue<Runnable> blockingQueue = new LinkedBlockingQueue<>(Constants.QUEUE_SIZE);
ThreadPoolExecutor executor = new ThreadPoolExecutor(Constants.CORE_POOL_SIZE, Constants.MAX_POOL_SIZE,
Constants.KEEP_ALIVE_TIME, TimeUnit.SECONDS, blockingQueue);
try (ServerSocket serverSocket = new ServerSocket(port)) {
logger.info(String.format("Listening to requests from port %d", port));
Runtime.getRuntime().addShutdownHook(new Thread(() -> {
logger.info("Shutting down server");
isServerRunning = false;
try {
serverSocket.close();
} catch (IOException e) {
logger.severe("Encountered error while closing socket: " + e.getMessage());
}
logger.info("Successfully shutdown server");
}));
while (isServerRunning) {
Socket clientSocket = serverSocket.accept();
logger.info(String.format("Client InetAddress: %s", clientSocket.getInetAddress()));
executor.submit(() -> handleRequest(clientSocket));
}
} catch (IOException e) {
logger.severe(String.format("Encountered an exception %s, could not start the server", e.toString()));
}
}
private static void handleRequest(Socket clientSocket) {
try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
OutputStreamWriter outputStreamWriter = new OutputStreamWriter(clientSocket.getOutputStream(),
StandardCharsets.UTF_8)) {
String line = bufferedReader.readLine();
String request = line;
int contentLength = 0;
while (line != null && !line.isEmpty()) {
line = bufferedReader.readLine();
request = request + line;
if (line.startsWith("Content-Length")) {
contentLength = Integer.parseInt(line.split(":")[1].trim());
}
}
String[] requestParts = request.split(" ");
String method = requestParts[0];
String path = requestParts[1];
logger.info(String.format("Request: %s %s", method, path));
String response;
Map<String, String> responseBody = new HashMap<>();
switch (method) {
case "POST":
StringBuilder requestBody = new StringBuilder();
if (contentLength > 0) {
char[] bodyChars = new char[contentLength];
bufferedReader.read(bodyChars, 0, contentLength);
requestBody.append(bodyChars);
}
Map<String, String> body = parseJsonString(requestBody.toString());
logger.info("Request body: " + body.toString());;
if (path.equals("/shorten") && body.containsKey("url")) {
String urlPath = body.get("url");
if (urlPath == null || urlPath.trim().equals("")) {
response = createResponse(400, "Invalid url", "");
break;
}
try {
long counterValue = counter.incrementAndGet();
String shortenedUrl = encoder.encode(counterValue);
nDb.write(shortenedUrl, urlPath);
responseBody.put("shortenedUrl", shortenedUrl);
response = createResponse(200, "OK", stringifyJson(responseBody));
} catch (IOException e) {
response = createResponse(500, "Failed to persist url", "");
}
break;
}
case "GET":
String url = path.split("/")[1];
String result = nDb.query(url);
if (result == null) {
response = createResponse(400, "Invalid URL", "");
break;
}
logger.info("Retrieved result is NOT null: " + result);
response = createRedirectResponse(result);
break;
case "OPTIONS":
response = createResponse(204, "No Content", "");
break;
default:
responseBody.put("errorMessage", "Invalid request");
response = createResponse(400, "Bad Request", stringifyJson(responseBody));
break;
}
outputStreamWriter.write(response);
outputStreamWriter.flush();
} catch (IOException e) {
logger.severe(String.format("Unable to complete request: %s", e.getMessage()));
} finally {
try {
clientSocket.close();
} catch (IOException e) {
logger.severe(String.format("Exception while closing socket: %s", e));
}
}
}
private final class Constants {
public static int CORE_POOL_SIZE = 10;
public static int MAX_POOL_SIZE = 10;
public static long KEEP_ALIVE_TIME = 1000;
public static int QUEUE_SIZE = 10;
}
private static String createResponse(int statusCode, String message, String body) {
int contentLength = body.getBytes(StandardCharsets.UTF_8).length;
return "HTTP/1.1 " + statusCode + " " + message + "\n" +
"Content-Type: application/json\n" +
"Access-Control-Allow-Origin: *\n" +
"Acess-Control-Allow-Methods: GET, POST, OPTIONS\n" +
"Access-Control-Allow-Headers: Content-Type\n" +
"Content-Length: " + contentLength + "\n" +
"\n" + body;
}
private static String createRedirectResponse(String newUrl) {
if (!newUrl.startsWith("http://") && !newUrl.startsWith("https://")) {
newUrl = "https://" + newUrl;
}
return "HTTP/1.1 301 Permanently Moved\n" +
"Location: " + newUrl + "\n" +
"Access-Control-Allow-Origin: *\n" +
"Content-Length: 0\n";
}
private static String stringifyJson(Map<String, String> object) {
if (object == null) {
return "";
}
StringBuilder sb = new StringBuilder();
sb.append("{");
boolean isFirstItem = true;
for (Map.Entry<String, String> entry : object.entrySet()) {
if (!isFirstItem) {
sb.append(",");
}
sb.append("\"" + entry.getKey() + "\"");
sb.append(": ");
sb.append("\"" + entry.getValue() + "\"");
isFirstItem = false;
}
sb.append("}");
return sb.toString();
}
private static Map<String, String> parseJsonString(String jsonString) {
jsonString = jsonString.trim();
jsonString = jsonString.substring(1, jsonString.length() - 1).trim();
Map<String, String> result = new HashMap<>();
String[] items = jsonString.split(",");
for (String item : items) {
String[] keyValue = item.split(":", 2);
String key = keyValue[0].trim().replaceAll("^\"|\"$", "");
String value = keyValue[1].trim().replaceAll("^\"|\"$", "");
result.put(key, value);
}
return result;
}
}