使用 Delphi 利用 AsmXML

发布于 2024-12-18 03:47:05 字数 181 浏览 2 评论 0原文

Marc Kerbiquet 编写的 AsmXML 似乎作为 xml 解析器很有前途。我想用 Delphi 进一步利用它,但由于对象格式兼容性问题而陷入困境。是否可以调整 fasm 源代码来解决问题,还是应该将其移植到 Tasm32 ?

AsmXML written by Marc Kerbiquet seems to be promising as an xml parser. I want to harness it further with Delphi but I stumble because of an object format compatibily issue. Is it possible to tweak the fasm source code to fix the trouble or should it ported to Tasm32 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

百思不得你姐 2024-12-25 03:47:05

您不必将其转换为由 Delphi 编译。

您可以简单地使用生成的目标文件,然后使用某种工具将其转换为 .obj,例如 此处提供的工具

然后,可以将小的 asm-xml.h 转换为小的 Delphi 单元,调用外部 .obj 文件。然后你就会有一个新单位。

我怀疑这是否值得。例如,您将失去 64 位编译。解析和内联数据是获得最佳速度的非常常见的模式。我在纯 pascal 中对 JSON 使用了类似的技术,而且速度非常快 - 请参阅 Delphi 中 JSON 与 XML 解析速度

这个解析器非常快,但也非常简单,而且恕我直言,缺少很多 XML 相关功能。在大多数情况下,瓶颈不是解析,而是存储或搜索。

You do not have to convert it to be compiled by Delphi.

You can simply use the generated object files then convert it to .obj using some tool like the one provided here.

Then the small asm-xml.h can be converted to a small Delphi unit, calling the external .obj files. Then you'll have a new unit.

Put I doubt it will be worth it. For instance, you'll loose 64 bit compilation. Parsing and inlining the data is a very common pattern for best speed. I've used a similar technique for JSON in pure pascal, and it is very fast - see JSON vs XML parsing speed in Delphi

This parser is very fast, but also very simple, and IMHO lacks a lot of XML related functionalities. The bottleneck won't be parsing, but storing or searching, in most cases.

智商已欠费 2024-12-25 03:47:05

我想将您链接到我的两篇文章,描述如何在 Delphi 中使用 .obj 文件< /a> (但目前仅适用于 32 位)和 如何使用 NASM(抱歉,不FASM)与德尔福。他们还提到了您可能需要的工具,例如 objconv

I'd like to link you to two articles of mine, describing how to use .obj files with Delphi (but currently only for 32 bit) and how to use NASM (sorry, not FASM) with Delphi. They also mention the tools you might need, like objconv.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文