class Nokogiri::XSLT::Stylesheet

def self.parse_stylesheet_doc(document) # :nodoc:

:nodoc:
def self.parse_stylesheet_doc(document) # :nodoc:
  LibXML.exsltRegisterAll
  generic_exception_handler = lambda do |ctx, msg|
    raise RuntimeError.new(msg) # TODO: varargs
  end
  LibXML.xsltSetGenericErrorFunc(nil, generic_exception_handler)
  ss = LibXML.xsltParseStylesheetDoc(LibXML.xmlCopyDoc(document.cstruct, 1)) # 1 => recursive
  LibXML.xsltSetGenericErrorFunc(nil, nil)
  obj = allocate
  obj.cstruct = LibXML::XsltStylesheet.new(ss)
  obj
end

def apply_to document, params = []

returns serialized document
+params+ is an array of strings used as XSLT parameters.
Apply an XSLT stylesheet to an XML::Document.
##
def apply_to document, params = []
  serialize(transform(document, params))
end

def serialize(document) # :nodoc:

:nodoc:
def serialize(document) # :nodoc:
  buf_ptr = FFI::MemoryPointer.new :pointer
  buf_len = FFI::MemoryPointer.new :int
  LibXML.xsltSaveResultToString(buf_ptr, buf_len, document.cstruct, cstruct)
  buf = Nokogiri::LibXML::XmlAlloc.new(buf_ptr.read_pointer)
  buf.pointer.read_string(buf_len.read_int)
end

def transform(document, params=[]) # :nodoc:

:nodoc:
def transform(document, params=[]) # :nodoc:
  param_arr = FFI::MemoryPointer.new(:pointer, params.length + 1)
  params.each_with_index do |param, j|
    param_arr[j].put_pointer(0, FFI::MemoryPointer.from_string(param.to_s))
  end
  param_arr[params.length].put_pointer(0,nil)
  ptr = LibXML.xsltApplyStylesheet(cstruct, document.cstruct, param_arr)
  raise(RuntimeError, "could not perform xslt transform on document") if ptr.null?
  XML::Document.wrap(ptr)
end