fmn

fmn

Hello there!

I am exploring ways of running external programs via Elixir, and to my surprise I didn’t found a way to read from called program’s stdout and stderr separately.

It seems that this is related to how Erlang primitives are handling that task.
Only thing I found, is open_port/2’s stderr_to_stdout option, to merge both streams, and it seems Elixir’s Port.open does the same.

I found some external modules for Erlang supposedly addressing my need, but my question would be: is there elegant / native way to do it in Elixir?

Alternatively, is there a way to call bare sysalls on POSIX platform?

P.S. I wasn’t really sure where to post that question or how exactly label / tag it - my apologies if something went wrong here!

Kind regards,
F.

Showing Posts 1 to 10

peerreynders

peerreynders

Welcome to the forum!

Have you had a look at this yet (if you were thinking about pipes)?

fmn

fmn OP

Hi @peerreynders, thank you for the response!

With my current knowledge of Elixir I guess that I can try to achieve what I want with - for example - 2 named pipes or named pipe plus stderr or stdout? All the moving parts around it seem to me bit intimidating.

Following links mentioned in the thread you’ve shared, I found also how do I communicate with non-Erlang programs, I guess I will go through it, but it will take time :slight_smile:

Thanks again!
F.

peerreynders

peerreynders

While back from 2015 this may still be of some help:

The Erlangelist: Outside Elixir: running external programs with ports

by Saša Jurić, author of Elixir in Action 2e.

OvermindDL1

OvermindDL1

For note, Port’s are more for running with programs designed to work with your BEAM program, it’s less for running ‘other’ things as it doesn’t have this control over file descriptors, PID handling, or anything. If you want to manage programs that aren’t designed to be Port programs then I recommend using something like erlexec or so as it uses a shim C program to act as the binding layer between a Port call and Everything else.

fmn

fmn OP

Thank you for the reply, much appreciated @OvermindDL1.
Yes, that’s the module I’ve found, but I was searching something more lightweight, native, so to speak, but after your post I think I understand situation better.

As a side-note - it feels quite exotic to me, I’ve never encountered such design during my adventures with other programming languages; it’s interesting.

Cheers,
F.

OvermindDL1

OvermindDL1

Yeah that is the native way here. ^.^

The only way to do mutability on the BEAM (short of some hacks) is via message passing, and Ports are just “Message Passing” back and forth to an external process designed for it, so it fulfills that model.

Multiple paths of streams doesn’t. So a hoisting program or NIF or something can fill that void by wrapping a higher level layer into the message passing structure. Which is what erlexec does. :slight_smile:

Yeah the BEAM is not so much a VM like Java, it’s designed to pretend to be it’s own standalone operating system internally within it. ^.^

tme_317

tme_317

You can also look at porcelain with or without goon plugin which despite its age still works well for me when I needed stdin control beyond what System.cmd can provide without digging into low-level Ports.

That said erlexec is better maintained and I found (but not tried) a more idiomatic Elixir wrapper for it exexec

NobbZ

NobbZ

There is also rambo which might come in handy as an alternative to porcelain and goon, as it’s wrapper does not use go and it’s runtime…

fmn

fmn OP

Thank you for all of the suggestions folks!

DiodonHystrix

DiodonHystrix

I had a similar problem, what I did was to pipe stderr to a temp file. A bit ugly, but it worked from what I remember :stuck_out_tongue:

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
psy-q
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
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