jeramyRR

jeramyRR

How to pad a binary with 0's?

Hi all,

I’m trying to write out a string, in binary, using Elixir’s <<>> syntax, and am having a dumb moment. I have a requirement where if a template name string isn’t 16 characters long then the remaining bytes must be padded with zeros.

Here is the header I’m trying to write:

┌──────────────────┬───────────┬────────────────┬──────────────────┬───────────┬───────────┐
│       TAG        │ Label Len │ Content Length │   Template Name  │  Contents │ Signature │
├──────────────────┼───────────┼────────────────┼──────────────────┼───────────┼───────────┤
│4x Unsigned Chars │    u16    │      u64       │  16byte char str │           │           │
└──────────────────┴───────────┴────────────────┴──────────────────┴───────────┴───────────┘

What I have so far is:

label_bin =
      <<"TAG1", label_metadata.label_len::16, label_metadata.content_length::64>>

I’m not sure how to write the Template name in the same way as above. Do I need to create another IO structure and just append the 0’s?

Thanks,
Jeramy

Marked As Solved

Sebb

Sebb

template_name = "foo"
pad = 16 - byte_size(template_name)
<<template_name::binary, 0::pad*8>>

Edit: Note that this may crash: How to pad a binary with 0's? - #6 by al2o3cr

Also Liked

Sebb

Sebb

here: Kernel.SpecialForms — Elixir v1.12.3

also useful: Erlang -- binary
(but there is nothing there that helps you with this, would be nice).

Don’t use String for this.

al2o3cr

al2o3cr

The given solution will crash if template_name is longer than 16 characters; this may be fine, depending on where the name is coming from etc.

If crashing isn’t acceptable, than the string will need to be truncated. You can do both the padding and the truncating together with a little pattern matching:

<<padded_and_trimmed::bits-size(128), _::bits>> = <<template_name::binary, 0::128>>

This works by initially padding template_name with 16 bytes of zeros, then taking only the first 16 bytes of the remainder.

The truncation can also be done as part of a larger step, like your label_bin:

padded_name = <<template_name::binary, 0::128>>
label_bin =
      <<"TAG1", label_metadata.label_len::16, label_metadata.content_length::64, padded_name::bits-size(128), ...>>

Where Next?

Popular in Questions Top

itssasanka
Hi all, Trying to get some more clarity over utc_datetime and naive_datetime for Ecto: https://hexdocs.pm/ecto/Ecto.Schema.html#module-...
New
New
quazar
How to set Jason to encode all fields in ecto schema, I don’t care about security and implementing only is taking long list of attributes...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
mgjohns61585
Could someone help me? I'm making my first elixir program, number guessing game. I can't figure out how to convert the user's guess from ...
New
minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
chensan
I have a User schema with a :from_id field set to type :string: defmodule TweetBot.Repo.Migrations.CreateUsers do use Ecto.Migration ...
New
Fl4m3Ph03n1x
Background Let’s assume I have a typical GenServer that receives messages as requests, does some operation in a DB and returns responses....
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
vrod
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors: [WARN] - (starship::utils): Executing command ...
New

Other popular topics Top

peerreynders
Manning 2016 Halloween weekend sale via Deal of the Day Friday, October 28 - Half off all MEAPs - code WM102816LT Saturday, October 29 ...
326 29600 154
New
hariharasudhan94
I would like to know what is the best IDE for elixir development?
New
script
If I have a string “1000 cfu/ml” . I want to remove the characters and / and space . So the string is like this "1000" What is the ...
New
chrismccord
As promised, the first release candidate of Phoenix 1.3.0 is out! This release focuses on code generators with improved project structure...
New
aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
TunkShif
This post is an instruction guide to help you setup your Neovim for Elixir development from scratch. It includes general information on h...
273 38985 115
New
AstonJ
We’ve put together this wiki for Phoenix LiveView - please feel free to add any info you feel is worth including. What is Phoenix LiveV...
New
aesmail
Hello guys, I have finally made it. I created an admin interface for a framework. It’s been on my todo list for years and with the curre...
New
Nvim
Elixir appears to be a superior language to Python. I don’t see any advantage of Python over Elixir. Are there any?
New

We're in Beta

About us Mission Statement