2

我目前正在尝试使用与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

4

1 回答 1

1

不要指定out output,它只是在堆栈上保留一个结构大小的内存块并传递一个指向它的指针。从 Crystal 0.7.6 开始,它没有归零,所以你传递垃圾。

使用output = XML::LibC14N::OutputBuffer.new已经是正确的第一步,因为这会将内存归零。现在要通过它,只需替换out outputpointerof(output).

于 2015-08-27T00:01:12.783 回答