forked from ucsd-cse15l-f22/wavelet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchEngine.java
60 lines (51 loc) · 1.91 KB
/
SearchEngine.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
import java.io.IOException;
import java.net.URI;
import java.util.ArrayList;
class SearchHandler implements URLHandler {
// The one bit of state on the server: string can be added and searched by
// various requests.
ArrayList <String> list = new ArrayList<String>();
public String handleRequest(URI url) {
String[] parameters = url.getQuery().split("=");
if (parameters[0].equals("s")) {
if (url.getPath().contains("/add")) {
list.add(parameters[1]);
return parameters[1] + " is now added to search engine";
}
if (url.getPath().contains("search")){
ArrayList <String> resultList = new ArrayList<String>();
for (int i = 0; i < list.size(); i++){
if (list.get(i).contains(parameters[1])){
resultList.add(list.get(i));
}
}
if (resultList.size()!=0){
String result;
result = returnArrayList(resultList);
return result;
}
else {
return "No words in search engine with " + parameters[1];
}
}
}
return "404 Not Found!";
}
public String returnArrayList(ArrayList<String> list){
String result = "";
for (int i=0; i<list.size();i++){
result = result + list.get(i) + " ";
}
return result;
}
}
class SearchEngine {
public static void main(String[] args) throws IOException {
if(args.length == 0){
System.out.println("Missing port number! Try any number between 1024 to 49151");
return;
}
int port = Integer.parseInt(args[0]);
Server.start(port, new SearchHandler());
}
}