mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-13 09:49:11 +03:00
59 lines
2.0 KiB
Plaintext
59 lines
2.0 KiB
Plaintext
app "parse-movies-csv"
|
|
packages { pf: "platform/main.roc" }
|
|
imports [Parser.Core.{ Parser, map, keep }, Parser.Str.{ RawStr }, Parser.CSV.{ CSV, record, field, string, nat }]
|
|
provides [main] to pf
|
|
|
|
input : Str
|
|
input = "Airplane!,1980,\"Robert Hays,Julie Hagerty\"\r\nCaddyshack,1980,\"Chevy Chase,Rodney Dangerfield,Ted Knight,Michael O'Keefe,Bill Murray\""
|
|
|
|
main : Str
|
|
main =
|
|
when Parser.CSV.parseStr movieInfoParser input is
|
|
Ok movies ->
|
|
moviesString =
|
|
movies
|
|
|> List.map movieInfoExplanation
|
|
|> Str.joinWith ("\n")
|
|
nMovies = List.len movies |> Num.toStr
|
|
|
|
"\(nMovies) movies were found:\n\n\(moviesString)\n\nParse success!\n"
|
|
|
|
Err problem ->
|
|
when problem is
|
|
ParsingFailure failure ->
|
|
"Parsing failure: \(failure)\n"
|
|
|
|
ParsingIncomplete leftover ->
|
|
leftoverStr = leftover |> List.map Parser.Str.strFromRaw |> List.map (\val -> "\"\(val)\"") |> Str.joinWith ", "
|
|
|
|
"Parsing incomplete. Following leftover fields while parsing a record: \(leftoverStr)\n"
|
|
|
|
SyntaxError error ->
|
|
"Parsing failure. Syntax error in the CSV: \(error)"
|
|
|
|
MovieInfo := { title : Str, releaseYear : Nat, actors : List Str }
|
|
|
|
movieInfoParser =
|
|
record (\title -> \releaseYear -> \actors -> @MovieInfo { title, releaseYear, actors })
|
|
|> keep (field string)
|
|
|> keep (field nat)
|
|
|> keep (field actorsParser)
|
|
|
|
actorsParser =
|
|
string
|
|
|> map (\val -> Str.split val ",")
|
|
|
|
movieInfoExplanation = \@MovieInfo { title, releaseYear, actors } ->
|
|
enumeratedActors = enumerate actors
|
|
releaseYearStr = Num.toStr releaseYear
|
|
|
|
"The movie '\(title)' was released in \(releaseYearStr) and stars \(enumeratedActors)"
|
|
|
|
enumerate : List Str -> Str
|
|
enumerate = \elements ->
|
|
{ before: inits, others: last } = List.split elements (List.len elements - 1)
|
|
|
|
last
|
|
|> List.prepend (inits |> Str.joinWith ", ")
|
|
|> Str.joinWith " and "
|