tests-to-c.xsl 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:output method="text"/>
  4. <xsl:template match="/">
  5. <xsl:text><![CDATA[
  6. #include <libxml/parser.h>
  7. #include <libxml/tree.h>
  8. #include <libxml/xpath.h>
  9. #include <libxml/xpathInternals.h>
  10. ]]>
  11. </xsl:text>
  12. <xsl:call-template name="serializer"/>
  13. <xsl:apply-templates select="tests/test"/>
  14. <xsl:text>
  15. int main(int argc, char **argv) {&#xA;</xsl:text>
  16. <xsl:apply-templates select="tests/test" mode="call"/>
  17. <xsl:text>
  18. /* printf("finished.\n"); */
  19. return (0);
  20. }
  21. </xsl:text>
  22. </xsl:template>
  23. <xsl:template match="tests/test" mode="call">
  24. <xsl:text> nsTest_</xsl:text>
  25. <xsl:value-of select="@name"/>
  26. <xsl:text>();&#xA;</xsl:text>
  27. </xsl:template>
  28. <xsl:template name="xml-text">
  29. <xsl:param name="text"/>
  30. <xsl:call-template name="replace-string">
  31. <!-- Substitute #10 for " -->
  32. <xsl:with-param name="from" select="'&#10;'"/>
  33. <xsl:with-param name="to" select="'&quot;&#10;&quot;'"/>
  34. <xsl:with-param name="text">
  35. <xsl:call-template name="replace-string">
  36. <!-- Substitute " for \" -->
  37. <xsl:with-param name="from" select="'&quot;'"/>
  38. <xsl:with-param name="to" select="'\&quot;'"/>
  39. <xsl:with-param name="text">
  40. <xsl:call-template name="replace-string">
  41. <!-- Remove tabs. -->
  42. <xsl:with-param name="from" select="'&#9;'"/>
  43. <xsl:with-param name="to" select="''"/>
  44. <xsl:with-param name="text" select="$text"/>
  45. </xsl:call-template>
  46. </xsl:with-param>
  47. </xsl:call-template>
  48. </xsl:with-param>
  49. </xsl:call-template>
  50. </xsl:template>
  51. <xsl:template match="doc" mode="define">
  52. <xsl:text> xmlDocPtr </xsl:text>
  53. <xsl:value-of select="@name"/>
  54. <xsl:text>;&#xA;</xsl:text>
  55. <xsl:text> const char * </xsl:text>
  56. <xsl:value-of select="@name"/>
  57. <xsl:text>_str = "</xsl:text>
  58. <xsl:call-template name="xml-text">
  59. <xsl:with-param name="text" select="."/>
  60. </xsl:call-template>
  61. <xsl:text>";&#xA;</xsl:text>
  62. </xsl:template>
  63. <xsl:template match="expected" mode="define">
  64. <xsl:text> const char * </xsl:text>
  65. <xsl:text>exp_str = "</xsl:text>
  66. <xsl:call-template name="xml-text">
  67. <xsl:with-param name="text" select="."/>
  68. </xsl:call-template>
  69. <xsl:text>";&#xA;</xsl:text>
  70. </xsl:template>
  71. <xsl:template match="doc">
  72. <xsl:text> </xsl:text>
  73. <xsl:value-of select="@name"/>
  74. <xsl:text> = xmlReadDoc(BAD_CAST </xsl:text>
  75. <xsl:value-of select="@name"/>
  76. <xsl:text>_str, NULL, NULL, 0);&#xA;</xsl:text>
  77. <xsl:apply-templates select="following-sibling::*[1]"/>
  78. <xsl:text> xmlFreeDoc(</xsl:text>
  79. <xsl:value-of select="@name"/>
  80. <xsl:text>);&#xA;</xsl:text>
  81. </xsl:template>
  82. <xsl:template match="xpath">
  83. </xsl:template>
  84. <xsl:template match="var" mode="define">
  85. <xsl:text> xmlNodePtr </xsl:text>
  86. <xsl:value-of select="@name"/>
  87. <xsl:text>;&#xA;</xsl:text>
  88. </xsl:template>
  89. <xsl:template match="var">
  90. <xsl:if test="xpath">
  91. <!-- Create XPath context. -->
  92. <xsl:text> /* Selecting node "</xsl:text><xsl:value-of select="@name"/><xsl:text>". */&#xA;</xsl:text>
  93. <xsl:text> xp = xmlXPathNewContext(</xsl:text>
  94. <xsl:value-of select="xpath/@doc"/>
  95. <xsl:text>);&#xA;</xsl:text>
  96. <!-- Register namespaces. -->
  97. <xsl:for-each select="xpath/reg-ns">
  98. <xsl:text> xmlXPathRegisterNs(xp, BAD_CAST "</xsl:text>
  99. <xsl:value-of select="@prefix"/>
  100. <xsl:text>", BAD_CAST "</xsl:text>
  101. <xsl:value-of select="@ns"/>
  102. <xsl:text>");&#xA;</xsl:text>
  103. </xsl:for-each>
  104. <!-- Evaluate. -->
  105. <xsl:text> </xsl:text>
  106. <xsl:value-of select="@name"/>
  107. <xsl:text> = nsSelectNode(xp, "</xsl:text>
  108. <xsl:value-of select="xpath/@select-node"/>
  109. <xsl:text>");&#xA;</xsl:text>
  110. <xsl:text> xmlXPathFreeContext(xp);&#xA;</xsl:text>
  111. </xsl:if>
  112. <xsl:apply-templates select="following-sibling::*[1]"/>
  113. </xsl:template>
  114. <xsl:template match="reconcile-ns">
  115. <xsl:text> /* Reconcile node "</xsl:text><xsl:value-of select="@ref"/><xsl:text>". */&#xA;</xsl:text>
  116. <xsl:text> xmlDOMWrapReconcileNamespaces(NULL, </xsl:text>
  117. <xsl:value-of select="@node"/>
  118. <xsl:text>, 0);&#xA;</xsl:text>
  119. <xsl:apply-templates select="following-sibling::*[1]"/>
  120. </xsl:template>
  121. <xsl:template match="remove">
  122. <xsl:text> xmlDOMWrapRemoveNode(NULL, </xsl:text>
  123. <xsl:value-of select="@node"/>
  124. <xsl:text>->doc, </xsl:text>
  125. <xsl:value-of select="@node"/>
  126. <xsl:text>, 0);&#xA;</xsl:text>
  127. <xsl:apply-templates select="following-sibling::*[1]"/>
  128. </xsl:template>
  129. <xsl:template match="adopt">
  130. <xsl:text> /* Adopt "</xsl:text><xsl:value-of select="@node"/><xsl:text>". */&#xA;</xsl:text>
  131. <xsl:text> xmlDOMWrapAdoptNode(NULL, </xsl:text>
  132. <xsl:value-of select="@node"/>
  133. <xsl:text>->doc, </xsl:text>
  134. <xsl:value-of select="@node"/>
  135. <xsl:text>, </xsl:text>
  136. <xsl:value-of select="@dest-doc"/>
  137. <xsl:text>, </xsl:text>
  138. <xsl:choose>
  139. <xsl:when test="@dest-parent">
  140. <xsl:value-of select="@dest-parent"/>
  141. </xsl:when>
  142. <xsl:otherwise>
  143. <xsl:text>NULL</xsl:text>
  144. </xsl:otherwise>
  145. </xsl:choose>
  146. <xsl:text>, 0);&#xA;</xsl:text>
  147. <xsl:apply-templates select="following-sibling::*[1]"/>
  148. </xsl:template>
  149. <xsl:template match="append-child">
  150. <xsl:text> xmlAddChild(</xsl:text>
  151. <xsl:value-of select="@parent"/>
  152. <xsl:text>, </xsl:text>
  153. <xsl:value-of select="@child"/>
  154. <xsl:text>);&#xA;</xsl:text>
  155. <xsl:apply-templates select="following-sibling::*[1]"/>
  156. </xsl:template>
  157. <xsl:template match="expected">
  158. <xsl:text> /* Serialize "</xsl:text><xsl:value-of select="@doc"/><xsl:text>". */&#xA;</xsl:text>
  159. <xsl:text> result_str = nsSerializeNode(xmlDocGetRootElement(</xsl:text>
  160. <xsl:value-of select="@doc"/>
  161. <xsl:text>));&#xA;</xsl:text>
  162. <xsl:text> /* Compare result. */
  163. if (! xmlStrEqual(BAD_CAST result_str, BAD_CAST exp_str)) {
  164. printf("FAILED\n");
  165. printf("%s\n", (const char *) result_str);
  166. printf("- - -\n");
  167. printf("Expected:\n%s\n", exp_str);
  168. printf("= = =\n");
  169. }
  170. xmlFree(result_str);&#xA;</xsl:text>
  171. </xsl:template>
  172. <!--********
  173. * TEST *
  174. ********-->
  175. <xsl:template match="test">
  176. <xsl:text>void nsTest_</xsl:text>
  177. <xsl:value-of select="@name"/>
  178. <xsl:text>(void) {
  179. xmlChar * result_str;
  180. xmlXPathContextPtr xp;
  181. int memory;&#xA;</xsl:text>
  182. <xsl:apply-templates select="*" mode="define"/>
  183. <xsl:text>
  184. memory = xmlMemUsed();
  185. xmlInitParser();&#xA;&#xA;</xsl:text>
  186. <xsl:apply-templates select="child::*[1]"/>
  187. <xsl:text>
  188. xmlCleanupParser();
  189. memory = xmlMemUsed() - memory;
  190. if (memory != 0) {
  191. printf("## '%s' MEMORY leak: %d\n", "</xsl:text>
  192. <xsl:value-of select="@name"/>
  193. <xsl:text>", memory);
  194. }
  195. }
  196. </xsl:text>
  197. </xsl:template>
  198. <xsl:template name="serializer">
  199. <xsl:text>
  200. xmlChar * nsSerializeNode(xmlNodePtr node) {
  201. xmlChar * ret;
  202. xmlOutputBufferPtr buf;
  203. buf = xmlAllocOutputBuffer(NULL);
  204. xmlNodeDumpOutput(buf, node->doc, node, 0, 0, NULL);
  205. xmlOutputBufferFlush(buf);
  206. ret = (xmlChar *) buf->buffer->content;
  207. buf->buffer->content = NULL;
  208. (void) xmlOutputBufferClose(buf);
  209. return (ret);
  210. }
  211. xmlNodePtr nsSelectNode(xmlXPathContextPtr xp, const char * xpath) {
  212. xmlXPathObjectPtr xpres;
  213. xmlNodePtr ret;
  214. xpres = xmlXPathEval(BAD_CAST xpath, xp);
  215. ret = xpres->nodesetval->nodeTab[0];
  216. xmlXPathFreeObject(xpres);
  217. return (ret);
  218. }
  219. </xsl:text>
  220. </xsl:template>
  221. <xsl:template name="replace-string">
  222. <xsl:param name="text"/>
  223. <xsl:param name="from"/>
  224. <xsl:param name="to"/>
  225. <xsl:choose>
  226. <xsl:when test="contains($text, $from)">
  227. <xsl:variable name="before" select="substring-before($text, $from)"/>
  228. <xsl:variable name="after" select="substring-after($text, $from)"/>
  229. <xsl:variable name="prefix" select="concat($before, $to)"/>
  230. <xsl:value-of select="$before"/>
  231. <xsl:value-of select="$to"/>
  232. <xsl:call-template name="replace-string">
  233. <xsl:with-param name="text" select="$after"/>
  234. <xsl:with-param name="from" select="$from"/>
  235. <xsl:with-param name="to" select="$to"/>
  236. </xsl:call-template>
  237. </xsl:when>
  238. <xsl:otherwise>
  239. <xsl:value-of select="$text"/>
  240. </xsl:otherwise>
  241. </xsl:choose>
  242. </xsl:template>
  243. </xsl:stylesheet>