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.
Trending in Questions
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
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
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
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
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
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
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
peerreynders
Welcome to the forum!
Have you had a look at this yet (if you were thinking about pipes)?
fmn
Hi @peerreynders, thank you for the response!
With my current knowledge of
ElixirI guess that I can try to achieve what I want with - for example - 2 named pipes or named pipe plusstderrorstdout? 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
Thanks again!
F.
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
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
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
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
erlexecdoes.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
You can also look at porcelain with or without
goonplugin which despite its age still works well for me when I needed stdin control beyond whatSystem.cmdcan provide without digging into low-level Ports.That said
erlexecis better maintained and I found (but not tried) a more idiomatic Elixir wrapper for it exexecNobbZ
There is also
rambowhich might come in handy as an alternative to porcelain and goon, as it’s wrapper does not use go and it’s runtime…fmn
Thank you for all of the suggestions folks!
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