Actualiser src/main/scala/TopSongs/TopSongs.scala

This commit is contained in:
jpcik 2025-03-11 09:45:15 +00:00
parent 046c984634
commit 9446c9d3c1

View File

@ -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