variables.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Summary: interface for the variable matching and lookup.
  3. * Description: interface for the variable matching and lookup.
  4. *
  5. * Copy: See Copyright for the status of this software.
  6. *
  7. * Author: Daniel Veillard
  8. */
  9. #ifndef __XML_XSLT_VARIABLES_H__
  10. #define __XML_XSLT_VARIABLES_H__
  11. #include <libxml/xpath.h>
  12. #include <libxml/xpathInternals.h>
  13. #include "xsltexports.h"
  14. #include "xsltInternals.h"
  15. #include "functions.h"
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /**
  20. * XSLT_REGISTER_VARIABLE_LOOKUP:
  21. *
  22. * Registering macro, not general purpose at all but used in different modules.
  23. */
  24. #define XSLT_REGISTER_VARIABLE_LOOKUP(ctxt) \
  25. xmlXPathRegisterVariableLookup((ctxt)->xpathCtxt, \
  26. xsltXPathVariableLookup, (void *)(ctxt)); \
  27. xsltRegisterAllFunctions((ctxt)->xpathCtxt); \
  28. xsltRegisterAllElement(ctxt); \
  29. (ctxt)->xpathCtxt->extra = ctxt
  30. /*
  31. * Interfaces for the variable module.
  32. */
  33. XSLTPUBFUN int XSLTCALL
  34. xsltEvalGlobalVariables (xsltTransformContextPtr ctxt);
  35. XSLTPUBFUN int XSLTCALL
  36. xsltEvalUserParams (xsltTransformContextPtr ctxt,
  37. const char **params);
  38. XSLTPUBFUN int XSLTCALL
  39. xsltQuoteUserParams (xsltTransformContextPtr ctxt,
  40. const char **params);
  41. XSLTPUBFUN int XSLTCALL
  42. xsltEvalOneUserParam (xsltTransformContextPtr ctxt,
  43. const xmlChar * name,
  44. const xmlChar * value);
  45. XSLTPUBFUN int XSLTCALL
  46. xsltQuoteOneUserParam (xsltTransformContextPtr ctxt,
  47. const xmlChar * name,
  48. const xmlChar * value);
  49. XSLTPUBFUN void XSLTCALL
  50. xsltParseGlobalVariable (xsltStylesheetPtr style,
  51. xmlNodePtr cur);
  52. XSLTPUBFUN void XSLTCALL
  53. xsltParseGlobalParam (xsltStylesheetPtr style,
  54. xmlNodePtr cur);
  55. XSLTPUBFUN void XSLTCALL
  56. xsltParseStylesheetVariable (xsltTransformContextPtr ctxt,
  57. xmlNodePtr cur);
  58. XSLTPUBFUN void XSLTCALL
  59. xsltParseStylesheetParam (xsltTransformContextPtr ctxt,
  60. xmlNodePtr cur);
  61. XSLTPUBFUN xsltStackElemPtr XSLTCALL
  62. xsltParseStylesheetCallerParam (xsltTransformContextPtr ctxt,
  63. xmlNodePtr cur);
  64. XSLTPUBFUN int XSLTCALL
  65. xsltAddStackElemList (xsltTransformContextPtr ctxt,
  66. xsltStackElemPtr elems);
  67. XSLTPUBFUN void XSLTCALL
  68. xsltFreeGlobalVariables (xsltTransformContextPtr ctxt);
  69. XSLTPUBFUN xmlXPathObjectPtr XSLTCALL
  70. xsltVariableLookup (xsltTransformContextPtr ctxt,
  71. const xmlChar *name,
  72. const xmlChar *ns_uri);
  73. XSLTPUBFUN xmlXPathObjectPtr XSLTCALL
  74. xsltXPathVariableLookup (void *ctxt,
  75. const xmlChar *name,
  76. const xmlChar *ns_uri);
  77. #ifdef __cplusplus
  78. }
  79. #endif
  80. #endif /* __XML_XSLT_VARIABLES_H__ */