Skip to content

Commit

Permalink
Switch back to value, filter accorridng to type.
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Dec 11, 2024
1 parent d975b7c commit e29c6e3
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 13 deletions.
64 changes: 64 additions & 0 deletions :Format
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
let rec methods_of_xml = function
| Xml.PCData s -> ("text", Lang.string s)
| Xml.Element (name, params, ([Xml.PCData s] as children)) ->
(name, Lang.meth (Lang.string s) (xml_node ~params ~children))
| Xml.Element (name, params, children) ->
( name,
Lang.record (
(List.fold_left
(fun methods el ->
let (name, v) = methods_of_xml el in
let v =
match Methods.find_opt name methods with
| None -> v
| Some (`Tuple {value}) -> Value.make (`Tuple (value @[v]))
| Some value -> (name, Value.make (`Tuple [value; v]))
in
Methods.add name value methods)
Methods.append elements (methods_of_xml el))
(xml_node ~params ~children)
children)

and xml_node ~params ~children =
Methods.from_list
[
( "xml_params",
Term.make
~methods:
(Methods.from_list
(List.map (fun (k, v) -> (k, Term.make (`String v))) params))
Term.unit );
( "xml_children",
Term.make (`Tuple (List.map (fun v -> term_of_xml v) children)) );
]

and term_of_xml v = Term.make ~methods:(methods_of_xml v) `Null

let _ =
Lang.add_builtin "_internal_xml_parser_" ~category:`String ~flags:[`Hidden]
~descr:"Internal xml parser"
[
("type", Value.RuntimeType.t, None, Some "Runtime type");
("", Lang.string_t, None, None);
]
(Lang.univ_t ())
(fun p ->
let s = Lang.to_string (List.assoc "" p) in
let ty = Value.RuntimeType.of_value (List.assoc "type" p) in
let ty = Type.fresh ty in
try
let xml = Xml.parse_string s in
let tm = term_of_xml xml in
Typechecking.check ~throw:(fun exn -> raise exn) tm;
Typing.(ty <: tm.Term.t);
Evaluation.eval tm
with exn -> (
let bt = Printexc.get_raw_backtrace () in
match exn with
| _ ->
Runtime_error.raise ~bt ~pos:(Lang.pos p)
~message:
(Printf.sprintf
"Parse error: xml value cannot be parsed as type: %s"
(Type.to_string ty))
"xml"))
26 changes: 13 additions & 13 deletions src/libs/extra/audioscrobbler.liq
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ def audioscrobbler.api.track.updateNowPlaying(
{
lfm: {
nowplaying: {
track: string.{ xml_params: {corrected: string} },
artist: string.{ xml_params: {corrected: string} },
album: string?.{ xml_params: {corrected: string} },
albumArtist: string?.{ xml_params: {corrected: string} },
timestamp: string,
ignoredMessage: {xml_params: {code: string}}
track: string.{ xml_params: {corrected: int} },
artist: string.{ xml_params: {corrected: int} },
album: string?.{ xml_params: {corrected: int} },
albumArtist: string?.{ xml_params: {corrected: int} },
timestamp: float,
ignoredMessage: {xml_params: {code: int}}
},
xml_params: {status: string}
}
Expand Down Expand Up @@ -277,14 +277,14 @@ def audioscrobbler.api.track.scrobble(
lfm: {
scrobbles: {
scrobble: {
track: string.{ xml_params: {corrected: string} },
artist: string.{ xml_params: {corrected: string} },
album: string?.{ xml_params: {corrected: string} },
albumArtist: string?.{ xml_params: {corrected: string} },
timestamp: string,
ignoredMessage: {xml_params: {code: string}}
track: string.{ xml_params: {corrected: int} },
artist: string.{ xml_params: {corrected: int} },
album: string?.{ xml_params: {corrected: int} },
albumArtist: string?.{ xml_params: {corrected: int} },
timestamp: float,
ignoredMessage: {xml_params: {code: int}}
},
xml_params: {ignored: string, accepted: string}
xml_params: {ignored: int, accepted: int}
},
xml_params: {status: string}
}
Expand Down

0 comments on commit e29c6e3

Please sign in to comment.