从 Haskell 中的 git packfile 索引获取幻数
我想从 git packfile 索引中获取幻数,以确保它确实是一个 packfile。 包格式文档指出幻数是“/377tOc”。例如,当我用 Ruby 打开 packfile 时,我在读取文件时得到了这个:
> File.open("pack-4412d2306cfe9a0b6d1b9b4430abc767022e8a3c.idx").read(4)
=> "\377tOc"
但在 Haskell 中我得到了这个:
> h <- openFile "pack-4412d2306cfe9a0b6d1b9b4430abc767022e8a3c.idx" ReadMode
> Data.ByteString.hGet h 4
=> "\255tOc"
我认为我遗漏了一些明显的东西,但我不清楚那是什么。我在这里做错了什么?
I'm wanting to get the magic number from a git packfile index to ensure that it is indeed a packfile. The pack format documentation states that the magic number is "/377tOc". When I open the packfile with Ruby for example, I get this back when reading the file:
> File.open("pack-4412d2306cfe9a0b6d1b9b4430abc767022e8a3c.idx").read(4)
=> "\377tOc"
But in Haskell I get this:
> h <- openFile "pack-4412d2306cfe9a0b6d1b9b4430abc767022e8a3c.idx" ReadMode
> Data.ByteString.hGet h 4
=> "\255tOc"
I take it I'm missing something obvious, but it's not clear to me what that is. What am I doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
非 ascii 字符('\255')仅以十进制显示,而不是八进制。
确认,根据 od 前 4 个字节确实是八进制/ascii 或 1 字节十进制:
在 Haskell 中:
因此,只需记住十进制的 255 是八进制的 377。
The non-ascii character ('\255') is just being shown in decimal, not octal.
Confirming, according to
od
the first 4 bytes are indeed, in octal/ascii or 1 byte decimal:And in Haskell:
So, just remember that 255 in decimal is 377 in octal.