szajbus

szajbus

I understand what runtime and compile dependencies between modules are and when they happen. But I have a problem understanding one particular situation in which a recompilation of some files is required after changes in others.

Here’s what xref graph shows:

~/dev/elixir/dep-example $ elixir --version
Erlang/OTP 21 [erts-10.2] [source] [64-bit] [smp:12:12] [ds:12:12:10] [async-threads:1] [hipe]

Elixir 1.10.0 (compiled with Erlang/OTP 21)
~/dev/elixir/dep-example $ mix xref graph
lib/a.ex
└── lib/b.ex (compile)
    └── lib/c.ex
lib/b.ex
lib/c.ex

There’s only only one compile dependency: A depends on B at compile-time.
However when C changes, it causes recompilation of A.

~/dev/elixir/dep-example $ touch lib/c.ex
~/dev/elixir/dep-example $ mix compile --verbose
Compiling 2 files (.ex)
Compiled lib/c.ex
Compiled lib/a.ex

The compiler works like this: it walks through a list of modules, checks dependencies between them and determines what has changed and what needs to be recompiled in the consequence of the changes.

The process in above situation is as follows:

  1. compiler detects that C changed (on disk), marks it as stale and for recompilation
  2. compiler sees that B depends on something stale (C), so marks it as stale as well, but doesn’t mark it for recompilation because it’s only runtime dependency
  3. compiler sees that A depends on something stale (B), marks it as stale, but this time it’s a compile dependency, so the file is marked for recompilation too.

In the end, both A and C are recompiled, B is left intact.

Clearly A has an implicit compile dependency on C.

What’s the reasoning for that?

I cannot think of any scenario (usage of imports, macros, etc) when lack of recompilation of A in this situation would cause bugs. Can you help me find some examples?

Showing Posts 1 to 4

LostKobrakai

LostKobrakai

As far as I understand it the compiler doesn’t know if any code B holds for changing A at compile time is provided by calling into C. Therefore if C changes A needs to change as well.

wojtekmach

wojtekmach

Hex Core Team

Right, if A has compile-time dependency on B, and B has runtime dependency on C, when C changes, A has to be re-compiled even though B does not have to!

See https://milhouse.dev/2016/08/11/understanding-elixir-recompilation/,
https://telnyx.com/resources/renan-ranelli-understanding-elixirs-re-compilation-at-elixirconf-2018 for more information.

axelson

axelson

Scenic Core Team

A concrete example of A that would showcase this issue like this might look like this:

defmodule A
  @the_answer B.search()
  def get_the_answer, do: @the_answer
end

So when C changes, A needs to be recompiled because B.search/0 might call a function in C

szajbus

szajbus OP

Thanks, it makes perfect sense now!

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
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
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
ryanwinchester
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted” Version...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews