From 9446c9d3c16730399aee1f9e542f325c6b75605c Mon Sep 17 00:00:00 2001 From: jpcik Date: Tue, 11 Mar 2025 09:45:15 +0000 Subject: [PATCH] Actualiser src/main/scala/TopSongs/TopSongs.scala --- src/main/scala/TopSongs/TopSongs.scala | 51 +++++++++++--------------- 1 file changed, 22 insertions(+), 29 deletions(-) diff --git a/src/main/scala/TopSongs/TopSongs.scala b/src/main/scala/TopSongs/TopSongs.scala index 5630173..4b96a9c 100644 --- a/src/main/scala/TopSongs/TopSongs.scala +++ b/src/main/scala/TopSongs/TopSongs.scala @@ -3,6 +3,8 @@ import scala.io.Source import java.io.File import com.github.tototoshi.csv._ +//jpc: seems all ok but can you add more interesting things to make the class structure more interesting? +//jpc perhaps adding enum for the Genre or type of band or person, or the sub-genre: hard rock, etc. If you don't have enough data you can add some data yourself just for fun trait Person: val name: String @@ -10,28 +12,21 @@ case class Artist(name: String) extends Person case class Writer(name: String) extends Person case class Producer(name: String) extends Person class Album(title: String, label: String) -class Streak(val s: String) { - val streak: Option[Int] = { +class Streak(val s: String) : + val streak: Option[Int] = val regex = "\\d+".r - if(s.equalsIgnoreCase("Did not chart")) { - Some(0) - } else { - regex.findFirstIn(s) match { - case Some(value) => Some(Integer.parseInt(value)) - case None => None - } - } - } -} -class Position(val p: String) { - val position: Option[Int] = { - val regex = "\\d+".r - regex.findFirstIn(p) match { + if(s.equalsIgnoreCase("Did not chart")) then Some(0) + else regex.findFirstIn(s) match case Some(value) => Some(Integer.parseInt(value)) case None => None - } - } -} + +class Position(val p: String) : + val position: Option[Int] = + val regex = "\\d+".r + regex.findFirstIn(p) match + case Some(value) => Some(Integer.parseInt(value)) + case None => None + class Song( val title: String, @@ -44,21 +39,19 @@ class Song( val position: Position ) - -object TopSongs { - var songs: List[Song] = List() - def addSong(song: Song): Unit = { +object TopSongs : + var songs: List[Song] = List() //jpc: consider not using mutable variables + def addSong(song: Song): Unit = songs = song :: songs - } - def printSongs(): Unit = { + + def printSongs(): Unit = songs.foreach(song => println( s"${song.title} by ${song.artist.map(_.name).mkString(", ")} " + s"produced by ${song.producer.map(_.name).mkString(", ")} " + s"spent ${song.streak.streak.getOrElse("no")} weeks " + s"on the charts on Pos. ${song.position.position.getOrElse("NA")}" )) - } -} + @main def main(): Unit = // create a new TopSongs object @@ -66,7 +59,7 @@ object TopSongs { val reader = CSVReader.open(new File("src/main/resources/songs.csv")) val allRows = reader.allWithHeaders() - for (row <- allRows) { + for (row <- allRows) do val s = Song( title = row("title"), description = Some(row("description")), @@ -80,7 +73,7 @@ object TopSongs { // add the song to the TopSongs object topSongs.addSong(s) - } + reader.close() // print the songs