edu.pdx.cs410J.rmi.GetMoviesInYear Maven / Gradle / Ivy
The newest version!
package edu.pdx.cs410J.rmi;
import java.rmi.NotBoundException;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import java.util.Comparator;
/**
* This program queries the remote movie database an prints out the
* movies that were released in a given year. The interesting thing
* about this program is that the query class is sent to the server
* from the client.
*/
public class GetMoviesInYear {
public static void main(String[] args) {
String host = args[0];
int port = Integer.parseInt(args[1]);
final int year = Integer.parseInt(args[2]);
try {
MovieDatabase db = (MovieDatabase) LocateRegistry.getRegistry(host, port).lookup(MovieDatabase.RMI_OBJECT_NAME);
Query query = movie -> movie.getYear() == year;
Comparator sorter = new SortMoviesByTitle();
db.executeQuery(query, sorter).forEach(System.out::println);
} catch (RemoteException | NotBoundException ex) {
ex.printStackTrace(System.err);
}
}
/**
* An inner serializable comparator that sorts movies alphabetically
* by their titles.
*/
static class SortMoviesByTitle
implements Comparator, java.io.Serializable {
@Override
public int compare(Movie m1, Movie m2) {
return m1.getTitle().compareTo(m2.getTitle());
}
}
}