Starting from:

$25

COMP1210-Project 11 Wireless Networks – Part 3 Solved

Wireless Networks – Part 3 is the third of a three-part software project that involves the monthly cost and reporting for wireless networks.  The completed class hierarchy is shown in the UML class diagram above.  Part 3 of the project focuses on handling exceptions that are thrown as a result of erroneous input from the command line or the data file.  The main method in the WirelessNetworksPart3 class, which reads in the file name from the command line, will need to handle a FileNotFoundException that may result from attempting to open the file (e.g., if the file does not exist).  Also, the readFile method in WirelessNetworkList will need to handle exceptions that occur while processing the data file, including a new exception called InvalidCategoryException.     

 

WiFi, Cellular, LTE, and FiveG, BandwidthComparator, and MonthlyCostComparator

 

Requirements and Design:  There are no changes to these classes from Part 2.  

 

WirelessNetworkList.java
 

Requirements: The WirelessNetworkList class provides methods for reading in the data file and generating the reports.  The readFile method should redesigned to handle exceptions in the data.  Reading a “good” line of data results in a new element added the WirelessNetwork array, and reading a “bad” line of data results in the line + an exception message being added the to the invalid records String array.  A new report method produces the Invalid Records Report.

 

Design: The readFile method from Part 2 should be redesigned to handle exceptions. The WirelessNetworkList class has fields, a constructor, and methods as outlined below.

•        Fields: no change from Part 2.

•        Constructor: no change from Part 2.  

•        Methods: The readFile method needs to be reworked and the generateInvalidRecordsReport method needs to be added.  See Part 2 for the full description of other methods in this class. o readFile has no return value, accepts the data file name as a String, and throws FileNotFoundException.  If a FileNotFoundException occurs when attempting to open the data file, it should be ignored in this method so that it can be handled in the calling method (i.e., main).  If a line from the file is processed successfully, a WirelessNetwork object of the appropriate category (subclass) is added to the WirelessNetwork array in the class.  However, when an exception occurs as a result from erroneous data in a line read from the file, it should be caught and handled as follows.  The line should be concatenated with a newline and the exception message and then the resulting String should be added to the invalid records String array in the class.  The three exceptions that should be caught in this method are (1) InvalidCategoryException (described below), (2) NumberFormatException, and (3) NoSuchElementException.   Note that the InvalidCategoryException must be explicitly thrown by your code if the category is not W, C, L, or F.  The NumberFormatException will be thrown automatically if the item scanned in the line from the file is not a double when Double.parseDouble expects it to be a double. The NoSuchElementException will be thrown automatically if the item scanned does not exist (i.e., data is missing).  For examples, see the output below for the Invalid Records Report.

  

o generateInvalidRecordsReport processes the invalid records array to produce the Invalid Records Report and then returns the report as String.  See the example result near the end of the output for WirelessNetworksPart3 that begins on page 4 and ends on page 6.

Code and Test:  See examples of exception handling in the text and the class notes.  In the catch blocks for the NumberFormatException and NoSuchElementException, the invalid line should be concatenated with a newline and the exception message, and the resulting String should be added to the invalidRecords String array. Note that for the NoSuchElementException, ": For missing input data" will need to be concatenated to the end of the toString value of the NoSuchElementException to form the complete message.

 

Download wireless_network_data2_exceptions.csv from the assignment page in

Canvas to test your program. Your JUnit test methods should force the exceptions described above to thrown and caught.  Since the readFile method will propagate the FileNotFoundException if the file is not found when the Scanner is created to read the file, test method could catch this exception to check that it was thrown.  Any other test method involving the readFile method must have the throws FileNotFoundException clause. 

 

InvalidCategoryException.java
 

Requirements and Design: The InvalidCategoryException class defines a new subclass of the Exception class.  The constructor accepts a String categoryIn representing the invalid category, then invokes the super constructor with the message:  

"For category: " + categoryIn 

 See examples of creating user defined exceptions in text and class notes.   

 

WirelessNetworksPart3.java
 

Requirements: The WirelessNetworksPart3 class contains the main method for running the program. In addition to the specifications in Part 2, the main method should be modified as indicated below.  

 

Design: The WirelessNetworksPart3 class is the driver class and has a main method described below.

 

o main accepts a file name as a command line argument, then within a try block, creates a WirelessNetworkList object, and then invokes its methods to (1) read the file and process the wireless network records and (2) to generate and print the five reports as shown in the third run in example output beginning on page 4.  If no command line argument is provided, the program should indicate this and end as shown in the first run in the example output on page 4.  If an FileNotFoundException is thrown in the readFile method in the WirelessNetworkList class, it should be caught in the catch block of the try statement in main.  The catch block should print a message (“*** Attempted to read file: ” along with the exception’s message).  For example, if the user entered “nofile.csv” as the command line argument and this file does not exit, then the Run I/O in jGRASP would look like the second run in the example output beginning on page 4).  Note that since the main method is catching FileNotFoundException, it no longer needs the throws clause in its declaration.

 

   

Code and Test:  See examples of exception handling in the text and the class notes.  Download wireless_network_data2_exceptions.csv from the assignment page in Canvas to test your program.  One of your JUnit test methods should call your main method with no argument (i.e., an empty String array). Another should call your main method with an argument this is not a valid file name to ensure that your catch block is covered.  Finally, a third should call your main method with an argument that is the file name above. See “Code and Test” for WirelessNetworksPart2 in Part 2 to see how to invoke your main method.

More products