bwanab

bwanab

Hi. I’m new to elixir, so this could be obvious. I’m reading and writing to a device that uses a binary line format. The format is fixed. It also has integer fields, but they are easy to interpret. Floats and doubles are a bit harder, so I’m wondering and hoping that this is a problem that’s already been solved.

Here’s an example of what I’m looking at:

SSSSSSSSSSSSIIIIIIIIFFFFDDDDDDDD

Where S..S is a string descriptor.
IIII is an integer that I unpack with ((i1 <<< 32) + (i2 <<< 16) + (i3 <<< 8) + i4)

The ones I’m struggling with are FFFF (32 bit float) and DDDDDDDD (double prec float).

I know I can look at the IEEE-754 spec and figure this out, but I’m thinking there might be a solution already. For example in python given the FFFF, I can use struct.unpack(FFFF) to get the floating point value.

Showing Posts 1 to 7

NobbZ

NobbZ

This should totally do it for you, unless you have to deal with NaN and infinties…

iex(1)> bin = <<1.22::float>>         
<<63, 243, 133, 30, 184, 81, 235, 133>>
iex(2)> <<x :: float>> = bin
<<63, 243, 133, 30, 184, 81, 235, 133>>
iex(3)> x
1.22
iex(4)> bin = <<1.22::float-size(32)>>
<<63, 156, 40, 246>>
bwanab

bwanab OP

Thanks. That’s just what I was looking for. NaN and infinity should be caught before they get on the line, so I think we’re good.

hauleth

hauleth

Just remember that binary pattern matching also supports integers, so instead of manual addition and shifts you can do:

<<describe::binary-size(12), i1::little-integer-32, i2::little-integer-32, f1::float-32, f2::float-64>> = input

That is why I love working with binary data in Erlang. It is just so enormously easy.

bwanab

bwanab OP

Thank you very much. That’s very helpful.

ityonemo

ityonemo

probably not an issue, but if things go south don’t forget to check the endianness (there are extra decorators for that if you need it).

bwanab

bwanab OP

I figured out I needed big-integer instead of little. Is there a good list of all the decorators? I looked briefly and didn’t find one.

hauleth

hauleth

It is in docs for <<>>/1.

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
jaybe78
Hello, I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter). The diffic...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New

Other Trending Topics Top

garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New
aseigo
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews