我目前正在尝试使用与libxml2的 c 绑定来添加对水晶语言的 c14n 支持。我已经成功地能够使用 xmlC14NDocSave 将规范的 xml 保存到文件中。我遇到的问题是 xmlC14NDocSaveTo 和 xmlC14NExecute 的 xmlOutputBufferPtr。
我收到的错误是(Mac 和 Linux)
xmlC14NExecute:输出缓冲区编码器!= NULL,但 C14N 需要 UTF8 输出
该文件指出
这个缓冲区必须有 encoder==NULL 因为 C14N 需要 UTF-8 输出
在src/C14N/lib_C14N.cr
我有以下代码
type CharEncodingHandler = Void*
type Buff = Void*
#type OutputBuffer = Void*
struct OutputBuffer
context : Void*
writecallback : OutputWriteCallback
closecallback : OutputCloseCallback
encoder : CharEncodingHandler
buffer : Buff
conv : Buff
written : Int32
error : Int32
end
....
fun xmlC14NDocSaveTo(doc : LibXML::Node*, nodes : LibXML::NodeSet*, mode : Mode, inclusive_ns_prefixes : UInt8**, with_comments : Int32, buf : OutputBuffer*) : Int32
fun xmlC14NExecute(doc : LibXML::Node*, is_visible_callback : IsVisibleCallback, user_data : Void*, mode : Mode, inclusive_ns_prefixes : UInt8**, with_comments : Int32, buf : OutputBuffer*) : Int32
在src/C14N.cr
output = XML::LibC14N::OutputBuffer.new
p output.encoder
XML::LibC14N.xmlC14NDocSaveTo(@xml, nil, @mode, nil, 0, out output)
p ouput.encoder 的结果Pointer(Void).null
如此看来该值为空。
该c14n.c
函数只是在 buf->encoder 结构上检查 null
if (buf->encoder != NULL) {
xmlGenericError(xmlGenericErrorContext,
"xmlC14NExecute: output buffer encoder != NULL but C14N requires UTF8 output\n");
return (-1);
}
任何帮助将不胜感激,代码可以在我的github帐户上找到。克隆并运行crystal spec