From: Stefan Monnier via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Byte swapping and bindat
Date: Fri, 10 Jun 2022 13:03:46 -0400 [thread overview]
Message-ID: <jwvmtek8nbz.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: jwv8rq4hcou.fsf-monnier+emacs@gnu.org
Stefan Monnier via Users list for the GNU Emacs text editor [2022-06-10 09:32:31] wrote:
>> Is there a way to specify a bindat type with fields whose endianess
>> depends on an external parameter (or another field of the type?)
>
> I'm so glad you asked:
>
> (let* ((threshold 32)
> (type (bindat-type (kind uint 8)
> (length sint 32 (> kind threshold)))))
> (list (bindat-unpack type "\x10\x00\x00\x01\x01")
> (bindat-unpack type "\x80\x00\x00\x01\x01")))
> =>
> (((kind . 16) (length . 257))
> ((kind . 128) (length . 16842752)))
>
> That's one of the benefits of the new Bindat :-)
Oh, and if you want to do that for `uint` (which currently doesn't take
a "reverse" argument (patch welcome)), you can do:
(let* ((threshold 32)
(type (bindat-type (kind uint 8)
(length if (> kind threshold)
(uintr 32) (uint 32)))))
(list (bindat-unpack type "\x10\x00\x00\x01\x01")
(bindat-unpack type "\x80\x00\x00\x01\x01")))
=>
(((kind . 16) (length . 257))
((kind . 128) (length . 16842752)))
-- Stefan
next prev parent reply other threads:[~2022-06-10 17:03 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <87pmjglllc.fsf.ref@yahoo.com>
2022-06-10 13:00 ` Byte swapping and bindat Po Lu
2022-06-10 13:32 ` Stefan Monnier via Users list for the GNU Emacs text editor
2022-06-10 15:53 ` Eli Zaretskii
2022-06-10 17:03 ` Stefan Monnier via Users list for the GNU Emacs text editor [this message]
2022-06-11 0:54 ` Po Lu
2022-06-11 1:08 ` Stefan Monnier
2022-06-11 1:15 ` Po Lu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=jwvmtek8nbz.fsf-monnier+emacs@gnu.org \
--to=help-gnu-emacs@gnu.org \
--cc=monnier@iro.umontreal.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).