123456789101112131415161718192021222324252627282930313233343536373839404142434445464748(* YOCaml a static blog generator.
Copyright (C) 2024 The Funkyworkers and The YOCaml's developers
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. *)moduleData_provider=structtypet=Yaml.valueletnormalize_numberx=(* Projecting a potential float into an integer may seem a little radical
(especially as the function is far from trivial, from my point of view),
but data validation has been relaxed to accept, when a float is expected,
an integer. *)matchFloat.classify_float(fst(Float.modfx))with|Float.FP_zero->Yocaml.Data.int(int_of_floatx)|_->Yocaml.Data.floatxletrecnormalize=function|`Null->Yocaml.Data.null|`Boolb->Yocaml.Data.boolb|`Floatf->normalize_numberf|`Strings->Yocaml.Data.strings|`Aarr->Yocaml.Data.list@@List.mapnormalizearr|`Ofields->Yocaml.Data.record@@List.map(fun(k,v)->(k,normalizev))fieldsletfrom_stringstr=str|>Yaml.of_string|>Result.map_error(funerror->letmessage=matcherrorwith`Msgmsg->msginletgiven=strinletmessage="Yaml: "^messageinYocaml.Required.Parsing_error{given;message})endincludeYocaml.Make.Data_reader(Data_provider)