phollyer

phollyer

I’m trying to set up some custom mix tasks for working with elm but when I call:

Mix.shell.cmd("elm init")

I get the prompt from elm asking whether to proceed in creating elm.json, but after I type ‘y’ and hit enter the process hangs.

When I break out, the message

thread blocked indefinitely in an MVar operation

is printed to the console. I searched for this string, and only get back results relating to Haskell so I’m guessing the elm compiler and mix/elixir aren’t playing nice together when user input is required.

The following command works fine (presumably because it doesn’t require any user input from the cmd line):

Mix.shell.cmd("elm make #{@elm_src}  --output=#{@elm_output_file} --debug")

I’ve also tried with System.cmd to no avail.

Any ideas on how to interact with Elm/Haskell from a mix task? Is it even possible?

Thanks

Showing Posts 1 to 7

kokolegorille

kokolegorille

I don’t know Elm, but would this work?

Mix.shell.cmd("elm init -y")
NobbZ

NobbZ

The BEAM in general doesn’t like it.

stdin of your application isn’t magically wired to stdin of the executed shell program.

You need to find a way to either enforce overwriting all, or to cancel in case of a conflict.

Or to write a Port on your own, that intercepts output and splices input in a way that you can remote control the Port depending on the users input.

If I had a choice, I’d try with enforcing/canceling approach…

phollyer

phollyer OP

Unfortunately Elm doesn’t accept flags on the init cmd, so that’s not an option.

phollyer

phollyer OP

Not too sure what you mean here. Would you be able to elaborate/explain further?

Thanks

NobbZ

NobbZ

A well designed generator has flags to either assume hard confirmation of overwrites on conflict or to abort the process on conflicts. You already said elm init does not support this.

In my opinion this is worth a feature request on the elm side of things…

phollyer

phollyer OP

Wasn’t sure if you meant the flag option or something above my ‘pay grade’ :slight_smile: Thanks for clarifying.

That was my thought’s too so I’ll head over to Elm and add the request.

This itself is not a major issue, the generator only generates a simple json file which I could do myself, but other cmds such as install also require y/n input so was hoping it was going to possible from a mix task.

The Port option might be outside my current elixir/IO skills, but I’ll dip my toes into the water over the weekend and see what transpires.

Thanks

OvermindDL1

OvermindDL1

It’s not that hard, I recommend it. The erlexec library (yes it’s erlang but works perfect in elixir) wraps up that work with a much better interface and error handling. :slight_smile:

But yeah, you’ll need to send the information (the y<enter> in this case) to elm’s stdin.

— All posts loaded —

Where Next? Top

Trending in Questions Top

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
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
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
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

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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews