Code Monkey home page Code Monkey logo

Comments (3)

takluyver avatar takluyver commented on August 22, 2024

Pexpect has a read_nonblocking method:

https://github.com/pexpect/pexpect/blob/831052254a039531adc91ebfce945d9ca54fd00a/pexpect/pty_spawn.py#L415

from ptyprocess.

AXGKl avatar AXGKl commented on August 22, 2024

gevent's tp_read also works:

term.pty = PtyProcessUnicode.spawn(term.cmd, env=env, cwd=opts.get("cwd", None))

and then

    def from_pty(wsock_xtermjs_observer):
        while True:
            b = gevent_os.tp_read(term.pty.fd, 65536).decode("utf-8")
            wsock_xtermjs_observer.on_next(["stdout", b])

works like a charm, i.e. does not block other greenlets with gevent_os = gevent.os.

Other more manual method would be using gevent.select, i.e. before read you check:

readable, _, _ = select.select([pty.fd], [], [], timeout)

PS: No silly question, my kids did not get their fairytale yesterday evening, because of this :-/

from ptyprocess.

sentriz avatar sentriz commented on August 22, 2024

@AXGKl
wow, that works very nicely. thank you very much. :)

one thing though: how are you detecting when the process has ended / there is no data left, so you can break the while True?

from the docs "If end-of-file is reached, an empty string is returned.", and based on that, the following is not working:

while True:
    # proc is an instance of PtyProcessUnicode
    data = gevent_os.tp_read(proc.fd, 65536)
    if not data:
        break
    use(data)

because I get a OSError: [Errno 5] Input/output error on my second line when the program has quit (I think because the file desriptor is closed) so we never reach the if not data

I've tried

while not proc.closed:
    data = gevent_os.tp_read(proc.fd, 65536)
    use(data)

but it's the same issue

thank you very much

from ptyprocess.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.