Coder Social home page Coder Social logo

Comments (3)

HertzDevil avatar HertzDevil commented on September 26, 2024

IIRC Win32 console handles do not support overlapped I/O, so any kind of asynchronous capability requires threads; the standard input and output streams are not opened with FILE_FLAG_OVERLAPPED, and additional console handles opened using CreateFile do not respect that flag

from crystal.

HertzDevil avatar HertzDevil commented on September 26, 2024

This snippet echoes the standard input while printing an asterisk every second in the background, using a dedicated thread for reading from STDIN. It should work with or without -Dpreview_mt, and with both redirected or console input:

require "colorize"

lib LibC
  fun PostQueuedCompletionStatus(completionPort : HANDLE, dwNumberOfBytesTransferred : DWORD, dwCompletionKey : ULONG_PTR, lpOverlapped : OVERLAPPED*) : BOOL
end

module AsyncStdin
  @@read_cv = Thread::ConditionVariable.new
  @@read_mtx = Thread::Mutex.new

  @@iocp : LibC::HANDLE = LibC::INVALID_HANDLE_VALUE
  @@read_key = Crystal::IOCP::CompletionKey.new

  @@done_cv = Thread::ConditionVariable.new
  @@done_mtx = Thread::Mutex.new

  @@buf : String?

  @@stdin_read = Thread.new do
    while true
      @@read_mtx.synchronize do
        until @@read_key.fiber
          @@read_cv.wait(@@read_mtx)
        end
      end

      # this shall be baked into `ConsoleUtils.read_console` instead, which also implies
      # this entire thread shouldn't need to interact with any Crystal scheduler directly
      @@buf = STDIN.gets.not_nil!

      # `JOB_OBJECT_MSG_EXIT_PROCESS` is to reuse the resumption mechanism for `Process.run`
      LibC.PostQueuedCompletionStatus(@@iocp, LibC::JOB_OBJECT_MSG_EXIT_PROCESS, @@read_key.object_id, nil)

      @@done_mtx.synchronize do
        while @@buf
          @@done_cv.wait(@@done_mtx)
        end
      end
    end
  end

  def self.read_stdin
    @@read_mtx.synchronize do
      # TODO: what happens if there are concurrent reads? replace these with a queue?
      @@iocp = Crystal::EventLoop.current.iocp
      @@read_key.fiber = Fiber.current
      @@read_cv.signal
    end

    Fiber.suspend

    @@done_mtx.synchronize do
      buf, @@buf = @@buf, nil
      @@done_cv.signal
      buf
    end
  end

  spawn do
    while true
      print '*'.colorize.magenta
      sleep 1
    end
  end

  while true
    print read_stdin.colorize.green
  end
end

from crystal.

HertzDevil avatar HertzDevil commented on September 26, 2024

I'm sure STDOUT and STDERR can be made non-blocking in a similar manner, but what differences would that make?

from crystal.

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.