I'm writing my own validating XML parser. (Yes, I'm aware this is a very complex task, and that using an existing product such as libxml2 or Xerces would be the saner choice. This is not an option however, so please bear with me.)
Parsing the XML and XSD files into tree structures should not be very difficult. However I cannot seem to figure out what algorithm to use to validate the XML tree against the XSD one.
I've done some research, but everything I find is either too generic (how to write compilers, etc.) or too specific (such as incremental validation).
I have some ideas of my own but they're all rather complex, so I'd really like to be a bit more sure about the validity (no pun intended) of my ideas before I start coding away.
Thanks in advance, don't hesitate to ask for more details if you think you can help!