I need to do some static analysis of QML-format files (wiki), but I can't find any parsers for them. The only way I see is to reuse source code of the Qt Declarative module or write my own parser. I can't find anything on the web. Can anyone point me to some tool, converter to XML or Perl/Python module to easily parse elements from QML files?

Thanks a lot for your help!

link|improve this question

Is there a reason to not use code from the QT Declarative module? I'd avoid writing a parser, on the grounds that you are unlikely to know the precise grammar (unless it is hiding in the Qt sources somewhere). – Ira Baxter Mar 26 '11 at 1:04
It is one of the possible solutions, but my preferred languages are Perl and Python and I'll try to avoid writing a C++ code in my project. Also I don't want to depend on Qt in order to run the analysis on the servers that may not have it installed. – aponomarenko Mar 26 '11 at 1:34
feedback

1 Answer

up vote 1 down vote accepted

You could look at the source code of the QML Viewer that comes with the SDK. The source code is available on Gitorious. QML Viewer code is in C++ not Python nor Perl.

Another possible solution, to use Python with no dependencies with Qt, is to use a standard Javascript parser and modify it so it can understand QML. From the wiki link you provided :

Because QML and JavaScript are very similar almost all code editors supporting JavaScript will do the job.

I found pynarcissus which is a Javascript interpreter in Python. May be you could modify it slightly so it can interprete corretly QML files?

link|improve this answer
It is an excellent idea to use a JavaScript parser! Thanks! – aponomarenko Mar 26 '11 at 2:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.