-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMovieAnalyzer.java
429 lines (385 loc) · 15.6 KB
/
MovieAnalyzer.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class MovieAnalyzer {
Stream<Movie> movieStream;
private String datasetPath;
/**
* Movie class to store the relevant information.
*/
public static class Movie {
private String posterLink;
private String seriesTitle;
private int releasedYear;
private String certificate; // nullable
private int runtime;
private String[] genre;
private double imdbRating;
private String overview;
private int metaScore; // nullable -1
private String director;
private String star1;
private String star2;
private String star3;
private String star4;
private String[] stars;
private int noOfVotes;
private int gross; // nullable -1
public String getPosterLink() {
return posterLink;
}
public String getSeriesTitle() {
return seriesTitle;
}
public int getReleasedYear() {
return releasedYear;
}
public String getCertificate() {
return certificate;
}
public int getRuntime() {
return runtime;
}
public String[] getGenre() {
return genre;
}
public double getImdbRating() {
return imdbRating;
}
public String getOverview() {
return overview;
}
public int getMetaScore() {
return metaScore;
}
public String getDirector() {
return director;
}
public String getStar1() {
return star1;
}
public String getStar2() {
return star2;
}
public String getStar3() {
return star3;
}
@Override
public String toString() {
return "Movie{"
+ "Poster_Link='" + posterLink + '\''
+ ", Series_Title='" + seriesTitle + '\''
+ ", Released_Year=" + releasedYear
+ ", Certificate='" + certificate + '\''
+ ", Runtime=" + runtime
+ ", Genre='" + Arrays.toString(genre) + '\''
+ ", IMDB_Rating=" + imdbRating
+ ", Overview='" + overview + '\''
+ ", Meta_score=" + metaScore
+ ", Director='" + director + '\''
+ ", Star1='" + star1 + '\''
+ ", Star2='" + star2 + '\''
+ ", Star3='" + star3 + '\''
+ ", Star4='" + star4 + '\''
+ ", No_of_Votes=" + noOfVotes
+ ", Gross=" + gross
+ '}';
}
public String getStar4() {
return star4;
}
public String[] getStars() {
return stars;
}
public int getNoOfVotes() {
return noOfVotes;
}
public int getGross() {
return gross;
}
/**
* Creates the Movie instance based on the given parameters.
*/
public Movie(String posterLink, String seriesTitle, String releasedYear,
String certificate, String runtime, String genre, String imdbRating,
String overview, String metaScore, String director, String star1,
String star2, String star3, String star4, String noOfVotes, String gross) {
posterLink = removeTerminalQuotes(posterLink);
this.posterLink = posterLink;
this.seriesTitle = removeTerminalQuotes(seriesTitle);
this.releasedYear = Integer.parseInt(releasedYear);
this.certificate = certificate;
this.runtime = Integer.parseInt(runtime.substring(0, runtime.length() - 4));
genre = removeTerminalQuotes(genre);
this.genre = genre.split(", ");
this.imdbRating = Float.parseFloat(imdbRating);
this.overview = removeTerminalQuotes(overview);
if (metaScore.length() > 0) {
this.metaScore = Integer.parseInt(metaScore);
} else {
this.metaScore = -1;
}
this.director = director;
this.star1 = star1;
this.star2 = star2;
this.star3 = star3;
this.star4 = star4;
this.stars = new String[]{star1, star2, star3, star4};
Arrays.sort(this.stars);
this.noOfVotes = Integer.parseInt(noOfVotes);
gross = removeTerminalQuotes(gross);
gross = gross.replace(",", "");
if (gross.length() > 0) {
this.gross = Integer.parseInt(gross);
} else {
this.gross = -1;
}
}
/**
* process the string to excise the terminal quotes.
*
* @param string string to be processed
* @return string with quotes
*/
public String removeTerminalQuotes(String string) {
if (string.startsWith("\"")) {
string = string.substring(1);
}
if (string.endsWith("\"")) {
string = string.substring(0, string.length() - 1);
}
return string;
}
}
public MovieAnalyzer(String datasetPath) throws IOException {
this.datasetPath = datasetPath;
readPath();
this.movieStream = Files.lines(Paths.get(datasetPath)).skip(1)
.map(l -> l.split(",(?=([^\\\"]*\\\"[^\\\"]*\\\")*[^\\\"]*$)", -1))
.map(a -> new Movie(a[0], a[1], a[2], a[3], a[4],
a[5], a[6], a[7], a[8], a[9], a[10],
a[11], a[12], a[13], a[14], a[15]));
}
public void readPath() throws IOException {
this.movieStream = Files.lines(Paths.get(datasetPath)).skip(1)
.map(l -> l.split(",(?=([^\\\"]*\\\"[^\\\"]*\\\")*[^\\\"]*$)", -1))
.map(a -> new Movie(a[0], a[1], a[2], a[3], a[4],
a[5], a[6], a[7], a[8], a[9], a[10],
a[11], a[12], a[13], a[14], a[15]));
}
public Map<Integer, Integer> getMovieCountByYear() {
try {
readPath();
Map<Integer, Integer> yearCnt = new LinkedHashMap<>();
this.movieStream.forEach(m -> yearCnt.put(m.getReleasedYear(), 0));
readPath();
this.movieStream.forEach(m ->
yearCnt.put(m.getReleasedYear(), yearCnt.get(m.getReleasedYear()) + 1));
Stream<Map.Entry<Integer, Integer>> mapStream = yearCnt.entrySet().stream().sorted(
(o1, o2) -> o2.getKey() - o1.getKey());
Map<Integer, Integer> reversedYearCnt = new LinkedHashMap<>();
mapStream.forEachOrdered(x -> reversedYearCnt.put(x.getKey(), x.getValue()));
return reversedYearCnt;
} catch (IOException e) {
System.out.println(e);
}
return null;
}
public Map<String, Integer> getMovieCountByGenre() {
try {
readPath();
Map<String, Integer> genreCnt = new LinkedHashMap<>();
this.movieStream.forEach(m -> {
String[] genres = m.getGenre();
for (String genre : genres) {
genreCnt.put(genre, 0);
}
});
readPath();
this.movieStream.forEach(m -> {
String[] genres = m.getGenre();
for (String genre : genres) {
genreCnt.put(genre, genreCnt.get(genre) + 1);
}
});
Stream<Map.Entry<String, Integer>> mapStream = genreCnt.entrySet().stream().sorted(
(o1, o2) -> {
if (o1.getValue() > o2.getValue()) {
return -1;
} else if (o1.getValue() < o2.getValue()) {
return 1;
} else {
return o1.getKey().compareTo(o2.getKey());
}
});
Map<String, Integer> reversedGenreCnt = new LinkedHashMap<>();
mapStream.forEachOrdered(x -> reversedGenreCnt.put(x.getKey(), x.getValue()));
return reversedGenreCnt;
} catch (IOException e) {
System.out.println(e);
}
return null;
}
public Map<List<String>, Integer> getCoStarCount() {
try {
readPath();
Map<List<String>, Integer> genreCnt = new LinkedHashMap<>();
this.movieStream.forEach(m -> {
String[] stars = m.getStars();
genreCnt.put(List.of(stars[0], stars[1]), 0);
genreCnt.put(List.of(stars[0], stars[2]), 0);
genreCnt.put(List.of(stars[0], stars[3]), 0);
genreCnt.put(List.of(stars[1], stars[2]), 0);
genreCnt.put(List.of(stars[1], stars[3]), 0);
genreCnt.put(List.of(stars[2], stars[3]), 0);
});
readPath();
this.movieStream.forEach(m -> {
String[] stars = m.getStars();
genreCnt.put(List.of(stars[0], stars[1]),
genreCnt.get(List.of(stars[0], stars[1])) + 1);
genreCnt.put(List.of(stars[0], stars[2]),
genreCnt.get(List.of(stars[0], stars[2])) + 1);
genreCnt.put(List.of(stars[1], stars[2]),
genreCnt.get(List.of(stars[1], stars[2])) + 1);
genreCnt.put(List.of(stars[0], stars[3]),
genreCnt.get(List.of(stars[0], stars[3])) + 1);
genreCnt.put(List.of(stars[1], stars[3]),
genreCnt.get(List.of(stars[1], stars[3])) + 1);
genreCnt.put(List.of(stars[2], stars[3]),
genreCnt.get(List.of(stars[2], stars[3])) + 1);
});
return genreCnt;
} catch (IOException e) {
System.out.println(e);
}
return null;
}
public List<String> getTopMovies(int topK, String by) {
try {
readPath();
if ("runtime".equals(by)) {
Map<String[], Integer> titleTime = new LinkedHashMap<>();
this.movieStream.forEach(m ->
titleTime.put(
new String[]{m.getSeriesTitle(), m.getReleasedYear() + ""},
m.getRuntime()));
return getRankedTitleList(topK, titleTime);
} else if ("overview".equals(by)) {
Map<String[], Integer> titleOverview = new LinkedHashMap<>();
this.movieStream.forEach(m ->
titleOverview.put(
new String[]{m.getSeriesTitle(), m.getReleasedYear() + ""},
m.getOverview().length()));
return getRankedTitleList(topK, titleOverview);
}
} catch (IOException e) {
System.out.println(e);
}
return null;
}
private List<String> getRankedTitleList(int topK, Map<String[], Integer> titleTime) {
Stream<Map.Entry<String[], Integer>> mapStream = titleTime.entrySet().stream().sorted(
(o1, o2) -> {
if (o1.getValue() > o2.getValue()) {
return -1;
} else if (o1.getValue() < o2.getValue()) {
return 1;
} else {
return o1.getKey()[0].compareTo(o2.getKey()[0]);
}
});
List<String> titleByTime = new ArrayList<>();
mapStream.limit(topK).forEachOrdered(x -> titleByTime.add(x.getKey()[0]));
return titleByTime;
}
public List<String> getTopStars(int topK, String by) {
try {
readPath();
if ("rating".equals(by)) {
Map<String, Double[]> starRating = new LinkedHashMap<>();
this.movieStream.forEach(m -> {
String[] stars = m.getStars();
for (String star : stars) {
starRating.put(star, new Double[]{0d, 0d});
}
});
readPath();
this.movieStream.forEach(m -> {
String[] stars = m.getStars();
for (String star : stars) {
Double[] ratingCnt = starRating.get(star);
starRating.put(star, new Double[]{
ratingCnt[0] + m.getImdbRating(), ratingCnt[1] + 1
});
}
});
return getRankedStarList(topK, starRating);
} else if ("gross".equals(by)) {
Map<String, Double[]> starGross = new LinkedHashMap<>();
this.movieStream.forEach(m -> {
if (m.getGross() != -1) {
String[] stars = m.getStars();
for (String star : stars) {
starGross.put(star, new Double[]{0d, 0d});
}
}
});
readPath();
this.movieStream.forEach(m -> {
if (m.getGross() != -1) {
String[] stars = m.getStars();
for (String star : stars) {
Double[] grossCnt = starGross.get(star);
starGross.put(star, new Double[]{
grossCnt[0] + m.getGross(), grossCnt[1] + 1
});
}
}
});
return getRankedStarList(topK, starGross);
}
} catch (IOException e) {
System.out.println(e);
}
return null;
}
private List<String> getRankedStarList(int topK, Map<String, Double[]> starRating) {
Stream<Map.Entry<String, Double[]>> mapStream = starRating.entrySet().stream().sorted(
(o1, o2) -> {
double o1Rate = o1.getValue()[0] / o1.getValue()[1];
double o2Rate = o2.getValue()[0] / o2.getValue()[1];
if (o1Rate > o2Rate) {
return -1;
} else if (o1Rate < o2Rate) {
return 1;
} else {
return o1.getKey().compareTo(o2.getKey());
}
});
List<String> starByRating = new ArrayList<>();
mapStream.limit(topK).forEachOrdered(x -> starByRating.add(x.getKey()));
return starByRating;
}
public List<String> searchMovies(String genre, float minRating, int maxRuntime) {
try {
readPath();
List<String> searchedMovie = new ArrayList<>();
this.movieStream.forEach(m -> {
String genres = Arrays.toString(m.getGenre());
if (genres.contains(genre)
&& m.getImdbRating() >= minRating && m.getRuntime() <= maxRuntime) {
searchedMovie.add(m.getSeriesTitle());
}
});
Stream<String> mapStream = searchedMovie.stream().sorted(String::compareTo);
return mapStream.collect(Collectors.toList());
} catch (IOException e) {
System.out.println(e);
}
return null;
}
}