Homework 5: Music Library Part 1



Due Monday, November 13 @ 8:00pm on Gradescope

1. Introduction

Over the next two homeworks, you’ll be writing the code for a music manager. We don’t specify which data structures you should use to store the information about your songs, but we do specify efficiency requirements for various pieces of functionality. These efficiency requirements should guide your choices of data structures.

You are given a plain text file of songs (there are multiple examples in the pre-prepared Eclipse project, such as tunes.txt). Each song entry in the file is formatted in the following manner:

Download a pre-prepared Eclipse Project hw5.zip and and import it into Eclipse using these instructions. You will make all of your changes inside the Java files in this project.

For this assignment you have 5 submissions. You should write your own testcases while you work so that you don’t waste submissions. After you have used your submissions, you may continue to submit, but your submission will be penalized 4 points for every extra submission. (So, your 6th submission receives a -4, your 7th submission a -8, etc.)

2. Your Tasks

You have two main tasks:

  1. Finish the Song class.

  2. Finish the MusicLibrary implementation with all of the requested methods.

2.1. Finishing the Song class

You need to write a class to contain the information about an individual song.

A song object stores information about an individual song. A song will have an artist, title, album, and genre. Two songs are considered to be the same song if exactly those four things are the same.

You can decide on your own design for this class, but it must at least have the specified constructor and a correct toString(). You will also certainly need to add more methods to it. You will likely need to override both equals and hashCode, depending on how you store your data.

The toString() for this class should produce results such as…

Song [artist=Johnny Cash, title=If I Told You Who It Was, album=Out Among The Stars, genre=outlaw country]
Song [artist=Johnny Cash, title=If I Were a Carpenter, album=Hello, I'm Johnny Cash, genre=outlaw country]
Song [artist=Johnny Cash, title=I Won't Back Down, album=American III: Solitary Man, genre=arkansas country]
Song [artist=Diana Haddad, title=Ela Hona, album=Ela Hona, genre=lebanese pop]

2.2. Finish MusicLibrary

The MusicLibrary class is the core of this homework. It contains a variety of methods that you need to write that are all involved in managing songs. Many of the methods have specific efficiency requirements that your implementation must meet.

Before you jump into writing code for this class, you should carefully plan what data structures you will use to store which data, ensuring you know how you will meet the efficiency requirements. If you don’t plan this properly, then you may end up needing to rewrite large parts of the homework to meet the efficiency requirements.

Check the documentation inside of MusicLibrary.java for details regarding the methods you need to write and the efficiency requirements they have. Pay careful attention to how the efficiency requirements are specified. If, for example, an efficiency requirement says: “This must be O(M), where M is the number of artists,” then your efficiency must depend only on the total number of different artists; it cannot depend on the number of songs.

3. Grading and Submission

There are multiple parts of the grading of this assignment:

  1. For the first 90 points, your submission will be auto-graded based on your implementation of the MusicLibrary

  2. For the next 5 points, your submission will be manually graded to check for good implementation methodologies. (Did you use a good approach to solving the problems?)

  3. For the next 5 points, your submission will be manually graded to check for good testcases that you include in the main method. (Do you have 2-3 of your own testcases for each method, and do they all execute automatically?)

  4. Your code will also be checked for style. The parts of style that can be checked automatically (things like spacing, indentation, the use of CamelCase, etc.) are automatically checked by the autograder. Other parts of style, such as choosing good variable names, will be checked manually. Autograded style guide violations can result in, at most, -10 points. Manually checked style guide violations can result in, at most, -5 points.

You will submit your program to Gradescope. Log in to the system and you will see the homework. Once there, you need to submit a zip file containing your code. Lucky for you, however, Eclipse can create this zip file for you. Check out these instructions for exporting. On Gradescope, you’ll submit that exported zip file. On the page that follows your submission, you will see your live score. If you receive a lower score than you expect, you should study the autograder output to see which testcases you failed.

3.1. Testcases

In this homework, we are providing only a single, basic testcase.

For MusicLibrary you need to provide at least three testcases for each of the new methods. At least one of those must be advanced or test error situations. All of your testcases should be in the MusicLibraryTester class included with the skeleton code. You must follow the model of our testcases from previous assignments (meaning you print when you start, print the results (pass/fail) when you finish, etc.) Additionally, you must comment each testcase with a note describing what it tests.

When grading, in addition to counting testcases we will also look at the quality of what you are testing.

4. Hints

5. Important Notes