Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f21383383a |
Generated
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
</list>
|
</list>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_25" project-jdk-name="25" project-jdk-type="JavaSDK">
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_25" project-jdk-name="homebrew-26" project-jdk-type="JavaSDK">
|
||||||
<output url="file://$PROJECT_DIR$/out" />
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
@@ -13,15 +13,25 @@
|
|||||||
<maven.compiler.target>23</maven.compiler.target>
|
<maven.compiler.target>23</maven.compiler.target>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>central</id>
|
||||||
|
<url>https://repo.maven.apache.org/maven2</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>aliyun-maven</id>
|
||||||
|
<url>https://maven.aliyun.com/repository/public</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- GSON: Google JSON parsing library -->
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.code.gson</groupId>
|
<groupId>com.google.code.gson</groupId>
|
||||||
<artifactId>gson</artifactId>
|
<artifactId>gson</artifactId>
|
||||||
<version>2.11.0</version>
|
<version>2.10.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Jackson: Another JSON parsing library -->
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<artifactId>jackson-databind</artifactId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
|
|||||||
@@ -51,45 +51,44 @@ public class Rational {
|
|||||||
return r1.add(r2);
|
return r1.add(r2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Instance method - this - other
|
//* Calculates the difference between this rational number and another.
|
||||||
// Formula: a/b - c/d = (a*d - c*b) / (b*d)
|
//* Formula: (a/b) - (c/d) = (a*d - c*b) / (b*d)
|
||||||
public Rational subtract(Rational other) {
|
public Rational subtract(Rational other) {
|
||||||
// YOUR CODE HERE
|
int newNumerator = this.numerator * other.denominator - other.numerator * this.denominator;
|
||||||
return null; // Remove this line when implemented
|
int newDenominator = this.denominator * other.denominator;
|
||||||
|
return new Rational(newNumerator, newDenominator);
|
||||||
}
|
}
|
||||||
|
//* Static helper method to subtract two rational numbers.
|
||||||
// TODO: Static method - r1 - r2
|
|
||||||
public static Rational subtract(Rational r1, Rational r2) {
|
public static Rational subtract(Rational r1, Rational r2) {
|
||||||
// YOUR CODE HERE
|
return r1.subtract(r2);
|
||||||
return null; // Remove this line when implemented
|
|
||||||
}
|
}
|
||||||
|
//* Multiplies this rational number by another.
|
||||||
// TODO: Instance method - this * other
|
//* Formula: (a/b) * (c/d) = (a*c) / (b*d)
|
||||||
// Formula: (a/b) * (c/d) = (a*c) / (b*d)
|
|
||||||
public Rational multiply(Rational other) {
|
public Rational multiply(Rational other) {
|
||||||
// YOUR CODE HERE
|
int newNumerator = this.numerator * other.numerator;
|
||||||
return null; // Remove this line when implemented
|
int newDenominator = this.denominator * other.denominator;
|
||||||
|
return new Rational(newNumerator, newDenominator);
|
||||||
}
|
}
|
||||||
|
//* Static helper method to multiply two rational numbers.
|
||||||
// TODO: Static method - r1 * r2
|
|
||||||
public static Rational multiply(Rational r1, Rational r2) {
|
public static Rational multiply(Rational r1, Rational r2) {
|
||||||
// YOUR CODE HERE
|
return r1.multiply(r2);
|
||||||
return null; // Remove this line when implemented
|
|
||||||
}
|
}
|
||||||
|
//* Divides this rational number by another.
|
||||||
// TODO: Instance method - this / other
|
//* Division is performed by multiplying with the reciprocal of the other fraction.
|
||||||
// Formula: (a/b) ÷ (c/d) = (a*d) / (b*c)
|
//* Formula: (a/b) ÷ (c/d) = (a*d) / (b*c)
|
||||||
public Rational divide(Rational other) {
|
public Rational divide(Rational other) {
|
||||||
// YOUR CODE HERE
|
// Check for division by zero before performing the calculation
|
||||||
// HINT: Division is multiplication by reciprocal
|
if (other.numerator == 0) {
|
||||||
// Don't forget to check if other.numerator is zero!
|
throw new ArithmeticException("Cannot divide by zero");
|
||||||
return null; // Remove this line when implemented
|
}
|
||||||
|
int newNumerator = this.numerator * other.denominator;
|
||||||
|
int newDenominator = this.denominator * other.numerator;
|
||||||
|
return new Rational(newNumerator, newDenominator);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Static method - r1 / r2
|
//* Static helper method to divide two rational numbers.
|
||||||
public static Rational divide(Rational r1, Rational r2) {
|
public static Rational divide(Rational r1, Rational r2) {
|
||||||
// YOUR CODE HERE
|
return r1.divide(r2);
|
||||||
return null; // Remove this line when implemented
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// PROVIDED - String representation
|
// PROVIDED - String representation
|
||||||
|
|||||||
@@ -21,8 +21,11 @@ public class Main {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
// TODO: Get genre ID and page from user, then call movieService.displayMoviesByGenre()
|
// Get genre ID and page from user, then call movieService.displayMoviesByGenre()
|
||||||
|
Long genreId= getLongInput("Enter Genre ID:");
|
||||||
|
Long page =getLongInput("Enter Page Number:");
|
||||||
|
// delegate the business logic execution to MovieService
|
||||||
|
movieService.displayMoviesByGenre(genreId, page);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,6 @@
|
|||||||
package movie.apis;
|
package movie.apis;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
|
||||||
* Model class representing a movie
|
|
||||||
* Fields: id, title, genres, images
|
|
||||||
*/
|
|
||||||
public class Movie {
|
public class Movie {
|
||||||
|
|
||||||
private Long id;
|
private Long id;
|
||||||
private String title;
|
private String title;
|
||||||
private List<String> genres;
|
private List<String> genres;
|
||||||
@@ -15,10 +8,75 @@ public class Movie {
|
|||||||
private String year;
|
private String year;
|
||||||
private String imdb_rating;
|
private String imdb_rating;
|
||||||
private String country;
|
private String country;
|
||||||
|
//* Comprehensive constructor to initialize all available fields of a movie.
|
||||||
|
public Movie(Long id, String title, List<String> genres, List<String> images, String year, String imdb_rating, String country) {
|
||||||
|
this.id = id;
|
||||||
|
this.title = title;
|
||||||
|
this.genres = genres;
|
||||||
|
this.images = images;
|
||||||
|
this.year = year;
|
||||||
|
this.imdb_rating = imdb_rating;
|
||||||
|
this.country = country;
|
||||||
|
}
|
||||||
|
//* Simplified constructor used when only the basic identification is needed.
|
||||||
|
public Movie(Long id, String title) {
|
||||||
|
this.id = id;
|
||||||
|
this.title = title;
|
||||||
|
}
|
||||||
|
//* Getter and setter
|
||||||
|
public Long getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Create a constructor with all fields
|
public void setId(Long id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Create a simple constructor with id and title only
|
public String getTitle() {
|
||||||
|
return title;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Create getters and setters for all fields
|
public void setTitle(String title) {
|
||||||
|
this.title = title;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<String> getGenres() {
|
||||||
|
return genres;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGenres(List<String> genres) {
|
||||||
|
this.genres = genres;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<String> getImages() {
|
||||||
|
return images;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setImages(List<String> images) {
|
||||||
|
this.images = images;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getYear() {
|
||||||
|
return year;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setYear(String year) {
|
||||||
|
this.year = year;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getImdb_rating() {
|
||||||
|
return imdb_rating;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setImdb_rating(String imdb_rating) {
|
||||||
|
this.imdb_rating = imdb_rating;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCountry() {
|
||||||
|
return country;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCountry(String country) {
|
||||||
|
this.country = country;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -87,33 +87,55 @@ public class MovieService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public void displayMoviesByGenre(Long genreId,Long page){
|
||||||
* TODO 1: Display movies for a specific genre and page
|
// Fetch raw JSON string response from the network API
|
||||||
*
|
String jsonResponse = getMoviesByGenreList(genreId, page);
|
||||||
* Open this link in your browser (and check Pretty-print checkbox) to view json format:
|
|
||||||
* https://api.meshcomp.ir/api/v1/genres/1/movies
|
if (jsonResponse== null) {
|
||||||
*
|
System.out.println("Failed to get movies for this genre.");
|
||||||
* Steps:
|
return;
|
||||||
* - Call getMoviesByGenreList(genreId, page) to get JSON
|
|
||||||
* - Parse JSON to JsonObject
|
}
|
||||||
* - Get "movies" array (NOT "data")
|
|
||||||
* - Loop through array and print: "ID: {id} | {title} ({year})"
|
|
||||||
* - Also print total and total_pages
|
|
||||||
*
|
|
||||||
* PUT ALL PARSING CODE INSIDE try-catch
|
|
||||||
*/
|
|
||||||
public void displayMoviesByGenre(Long genreId, Long page) {
|
|
||||||
// TODO: Write your code here
|
|
||||||
// All parsing code must be inside try-catch
|
|
||||||
try {
|
try {
|
||||||
// Your code here
|
|
||||||
|
// Parse the raw string into a JsonObject
|
||||||
|
JsonObject rootObject =JsonParser.parseString(jsonResponse).getAsJsonObject();
|
||||||
|
|
||||||
|
// Extract the 'movies' JSON array from the root object
|
||||||
|
JsonArray moviesArray = rootObject.getAsJsonArray("movies");
|
||||||
|
// Define the collection type to safely convert JsonArray into List<Movie>
|
||||||
|
Type movieListType = new TypeToken<ArrayList<Movie>>(){}.getType();
|
||||||
|
Gson gson = new Gson();
|
||||||
|
List<Movie> movies = gson.fromJson(moviesArray, movieListType);
|
||||||
|
// Iterate through the parsed movies list and safely print core details
|
||||||
|
System.out.println("\nMOVIES IN GENRE (Page " + page + "):");
|
||||||
|
for (Movie movie : movies) {
|
||||||
|
// Safeguard against missing 'year' fields in the dataset
|
||||||
|
String year = movie.getYear() != null ? movie.getYear() : "N/A";
|
||||||
|
System.out.println("ID: " + movie.getId() + " | " + movie.getTitle() + " (" + year + ")");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//Extract and safely print pagination metadata if available
|
||||||
|
if (rootObject.has("metadata") && !rootObject.get("metadata").isJsonNull()) {
|
||||||
|
JsonObject metadata = rootObject.getAsJsonObject("metadata");
|
||||||
|
|
||||||
|
|
||||||
|
// read fields as String to fully avoid conversion exceptions (e.g. String vs Int)
|
||||||
|
String total = metadata.has("total_count") ? metadata.get("total_count").getAsString() : "Unknown";
|
||||||
|
String totalPages = metadata.has("page_count") ? metadata.get("page_count").getAsString() : "Unknown";
|
||||||
|
|
||||||
|
System.out.println("\nTotal Movies: " + total + " | Total Pages: " + totalPages);
|
||||||
|
}
|
||||||
|
System.out.println();
|
||||||
|
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.err.println("ERROR: " + e.getMessage());
|
// Log parsing or structural anomalies without crashing the whole application
|
||||||
|
System.err.println("ERROR parsing movies: " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* BONUS: Fetch movie details from API using movie ID
|
* BONUS: Fetch movie details from API using movie ID
|
||||||
* URL format: https://api.meshcomp.ir/api/v1/movies/{movieId}
|
* URL format: https://api.meshcomp.ir/api/v1/movies/{movieId}
|
||||||
|
|||||||
Reference in New Issue
Block a user