-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHttpQueryExecution.java
134 lines (110 loc) · 5.2 KB
/
HttpQueryExecution.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
import org.apache.http.ParseException;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
/**
* Created by Karan on 12/5/2016.
*/
public class HttpQueryExecution {
String query;
String ip_address = "35.165.111.84:8983";//"35.161.205.123:8983";
String url_query = "";
//ArrayList<String> al_entity = new ArrayList<String>();
/*
public HttpQueryExecution(ArrayList<String> al_entity){
this.al_entity = al_entity;
//this.query = query;
}
*/
public ArrayList<String> fireQuery(StringBuilder query, String text, ArrayList<String> objects, ArrayList<String> subjects, String root){
/* StringBuilder sb = new StringBuilder();
for (String s : al_entities) {
sb.append(s);
sb.append("+");
}*/
url_query = "http://" + ip_address + "/solr/VSM/select?fl=*,score&indent=on&defType=dismax&q="+query+"&qf=text_en&rows=100&wt=json&";
System.out.println("url_query: "+ url_query);
CloseableHttpClient httpclient = HttpClients.createDefault();
HttpGet httpget = new HttpGet(url_query);
ArrayList<String> tweet_text = new ArrayList<String>();
try {
CloseableHttpResponse response = httpclient.execute(httpget);
String json_string = EntityUtils.toString(response.getEntity(), "UTF-8");
//JSONObject myObject = new JSONObject(json_string);
JSONParser parser = new JSONParser();
JSONObject obj = (JSONObject) parser.parse(json_string);
JSONObject resp = (JSONObject) obj.get("response");
JSONArray docs = (JSONArray) resp.get("docs");
String[][] scores = new String[docs.size()][2];
for (int j = 0; j < docs.size(); j++ ){
JSONObject doc = (JSONObject) docs.get(j);
//System.out.println(doc);
//scores[j][0] = doc.get("score").toString();
//String content = doc.get("text").toString();
//scores[j][1] = content.substring(2, content.length() - 2);
System.out.println("OLDScore: "+ doc.get("score").toString() +" Text: "+ doc.get("text").toString());
}
for(int i=0; i<docs.size(); i++){
JSONObject docs_iterator = (JSONObject) docs.get(i);
double score1 = 0.0;
score1 = Double.parseDouble(docs_iterator.get("score").toString());
String content = docs_iterator.get("text").toString();
String tweet = content.substring(2, content.length() - 2);
String jsonString = docs_iterator.toString();
if (text.toLowerCase().contains("who")){
if(jsonString.contains("PERSON")){
score1 = score1 + 1;
}
}else if(text.toLowerCase().contains("when")){
if(jsonString.contains("TIME")){
score1 = score1 + 1;
}
}else if(text.toLowerCase().contains("where")){
if(jsonString.contains("LOCATION") || jsonString.contains("EVENT")){
score1 = score1 + 1;
}
}
/*if (jsonString.contains(ansType)){
score = score + 0.5 ;
}*/
if (jsonString.contains("SUBJECT")){
Iterator<String> iterator = subjects.iterator();
while(iterator.hasNext()){
if (docs_iterator.get("SUBJECT").toString().contains(iterator.next())){
score1 = score1 + 1;
}
}
}
if (jsonString.contains("OBJECT")){
Iterator<String> iterator = subjects.iterator();
while(iterator.hasNext()){
if (docs_iterator.get("OBJECT").toString().contains(iterator.next())){
score1 = score1 + 1;
}
}
}
scores[i][0] = Double.toString(score1);
scores[i][1] = tweet;
//tweet_text.add(scores[i][1]);
}
Arrays.sort(scores, (a, b) -> Double.compare(Double.parseDouble(b[0]), Double.parseDouble(a[0])));
for (int k = 0; k < 10; k++){
System.out.println("Score: "+ scores[k][0] +" Text: "+ scores[k][1]);
tweet_text.add(scores[k][1].replace("\\","").replace("?*", ""));
}
//System.out.println(docs.toString());
} catch (Exception e) {
e.printStackTrace();
}
return tweet_text;
}
}