12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667(* TyXML
* http://www.ocsigen.org/tyxml
* Copyright (C) 2018 Gabriel Radanne
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1301, USA.
*)typename=string*string(** Input *)typesignal=[|`Commentofstring|`End_element|`Start_elementofname*(name*string)list|`Textofstringlist]exceptionMalformed_streammoduleImport(Xml:Xml_sigs.T)=structletof_listl=List.fold_right(funab->Xml.W.(cons(returna)b))l(Xml.W.nil())letmk_attribsattrs=(* TODO: This is not very structured *)letf((_,name),v)=Xml.string_attribname(Xml.W.returnv)inList.mapfattrsletrecmkchildren(seq:signalSeq.t)=matchseq()with|Cons(`Comments,q)->mk(Xml.comments::children)q|Cons(`Texts,q)->mk(List.map(funx->Xml.pcdata@@Xml.W.returnx)s@children)q|Cons(`Start_element((_,name),attrs),q)->leta=mk_attribsattrsinletsub_children,rest=mk[]qinmk(Xml.node~anamesub_children::children)rest|Cons(`End_element,rest)->of_list(List.revchildren),rest|Nil->of_list(List.revchildren),Seq.emptyletof_seqseq=letl,rest=mk[]seqinmatchrest()with|Seq.Nil->l|_->raiseMalformed_streamend