2020-08-20 04:51:45 +03:00
/**********************************************************************
scheduler . c
$ Author $
Copyright ( C ) 2020 Samuel Grant Dawson Williams
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2020-10-16 04:25:58 +03:00
# include "vm_core.h"
2021-02-09 09:39:56 +03:00
# include "ruby/fiber/scheduler.h"
2020-08-20 04:51:45 +03:00
# include "ruby/io.h"
2020-09-20 02:34:02 +03:00
static ID id_close ;
2020-09-17 15:30:40 +03:00
static ID id_block ;
static ID id_unblock ;
2020-09-20 02:34:02 +03:00
static ID id_kernel_sleep ;
2020-12-07 23:29:09 +03:00
static ID id_process_wait ;
2020-09-20 02:34:02 +03:00
2020-08-20 04:51:45 +03:00
static ID id_io_read ;
static ID id_io_write ;
static ID id_io_wait ;
void
2021-02-09 09:39:56 +03:00
Init_Fiber_Scheduler ( void )
2020-08-20 04:51:45 +03:00
{
2020-09-20 02:34:02 +03:00
id_close = rb_intern_const ( " close " ) ;
2020-09-17 15:30:40 +03:00
id_block = rb_intern_const ( " block " ) ;
id_unblock = rb_intern_const ( " unblock " ) ;
2020-09-20 02:34:02 +03:00
id_kernel_sleep = rb_intern_const ( " kernel_sleep " ) ;
2020-12-07 23:29:09 +03:00
id_process_wait = rb_intern_const ( " process_wait " ) ;
2020-09-20 02:34:02 +03:00
2020-08-20 04:51:45 +03:00
id_io_read = rb_intern_const ( " io_read " ) ;
id_io_write = rb_intern_const ( " io_write " ) ;
id_io_wait = rb_intern_const ( " io_wait " ) ;
}
2020-10-16 04:25:58 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_get ( void )
2020-10-16 04:25:58 +03:00
{
rb_thread_t * thread = GET_THREAD ( ) ;
VM_ASSERT ( thread ) ;
return thread - > scheduler ;
}
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_set ( VALUE scheduler )
2020-10-16 04:25:58 +03:00
{
rb_thread_t * thread = GET_THREAD ( ) ;
VM_ASSERT ( thread ) ;
// We invoke Scheduler#close when setting it to something else, to ensure the previous scheduler runs to completion before changing the scheduler. That way, we do not need to consider interactions, e.g., of a Fiber from the previous scheduler with the new scheduler.
if ( thread - > scheduler ! = Qnil ) {
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_close ( thread - > scheduler ) ;
2020-10-16 04:25:58 +03:00
}
thread - > scheduler = scheduler ;
return thread - > scheduler ;
}
static VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_current_for_threadptr ( rb_thread_t * thread )
2020-10-16 04:25:58 +03:00
{
VM_ASSERT ( thread ) ;
if ( thread - > blocking = = 0 ) {
return thread - > scheduler ;
} else {
return Qnil ;
}
}
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_current ( void )
2020-10-16 04:25:58 +03:00
{
2021-02-09 09:39:56 +03:00
return rb_fiber_scheduler_current_for_threadptr ( GET_THREAD ( ) ) ;
2020-10-16 04:25:58 +03:00
}
2021-02-09 09:39:56 +03:00
VALUE rb_fiber_scheduler_current_for_thread ( VALUE thread )
2020-10-16 04:25:58 +03:00
{
2021-02-09 09:39:56 +03:00
return rb_fiber_scheduler_current_for_threadptr ( rb_thread_ptr ( thread ) ) ;
2020-10-16 04:25:58 +03:00
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_close ( VALUE scheduler )
2020-09-20 02:34:02 +03:00
{
2020-10-01 03:42:58 +03:00
if ( rb_respond_to ( scheduler , id_close ) ) {
return rb_funcall ( scheduler , id_close , 0 ) ;
}
2020-10-01 07:45:50 +03:00
return Qnil ;
2020-09-20 02:34:02 +03:00
}
2020-08-20 04:51:45 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_make_timeout ( struct timeval * timeout )
2020-10-01 07:44:29 +03:00
{
2020-08-20 04:51:45 +03:00
if ( timeout ) {
return rb_float_new ( ( double ) timeout - > tv_sec + ( 0.000001f * timeout - > tv_usec ) ) ;
}
return Qnil ;
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_kernel_sleep ( VALUE scheduler , VALUE timeout )
2020-08-20 04:51:45 +03:00
{
return rb_funcall ( scheduler , id_kernel_sleep , 1 , timeout ) ;
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_kernel_sleepv ( VALUE scheduler , int argc , VALUE * argv )
2020-08-20 04:51:45 +03:00
{
return rb_funcallv ( scheduler , id_kernel_sleep , argc , argv ) ;
}
2020-12-07 23:29:09 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_process_wait ( VALUE scheduler , rb_pid_t pid , int flags )
2020-12-07 23:29:09 +03:00
{
2021-02-09 09:39:56 +03:00
VALUE arguments [ ] = {
PIDT2NUM ( pid ) , RB_INT2NUM ( flags )
} ;
return rb_check_funcall ( scheduler , id_process_wait , 2 , arguments ) ;
2020-12-07 23:29:09 +03:00
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_block ( VALUE scheduler , VALUE blocker , VALUE timeout )
2020-09-05 07:26:24 +03:00
{
2020-09-21 00:54:08 +03:00
return rb_funcall ( scheduler , id_block , 2 , blocker , timeout ) ;
2020-09-05 07:26:24 +03:00
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_unblock ( VALUE scheduler , VALUE blocker , VALUE fiber )
2020-09-05 07:26:24 +03:00
{
2020-09-17 15:30:40 +03:00
return rb_funcall ( scheduler , id_unblock , 2 , blocker , fiber ) ;
2020-09-05 07:26:24 +03:00
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_io_wait ( VALUE scheduler , VALUE io , VALUE events , VALUE timeout )
2020-08-20 04:51:45 +03:00
{
return rb_funcall ( scheduler , id_io_wait , 3 , io , events , timeout ) ;
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_io_wait_readable ( VALUE scheduler , VALUE io )
2020-08-20 04:51:45 +03:00
{
2021-02-09 09:39:56 +03:00
return rb_fiber_scheduler_io_wait ( scheduler , io , RB_UINT2NUM ( RUBY_IO_READABLE ) , Qnil ) ;
2020-08-20 04:51:45 +03:00
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_io_wait_writable ( VALUE scheduler , VALUE io )
2020-08-20 04:51:45 +03:00
{
2021-02-09 09:39:56 +03:00
return rb_fiber_scheduler_io_wait ( scheduler , io , RB_UINT2NUM ( RUBY_IO_WRITABLE ) , Qnil ) ;
2020-08-20 04:51:45 +03:00
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_io_read ( VALUE scheduler , VALUE io , VALUE buffer , size_t offset , size_t length )
2020-08-20 15:53:08 +03:00
{
2021-02-09 09:39:56 +03:00
VALUE arguments [ ] = {
io , buffer , SIZET2NUM ( offset ) , SIZET2NUM ( length )
} ;
return rb_check_funcall ( scheduler , id_io_read , 4 , arguments ) ;
2020-08-20 15:53:08 +03:00
}
2020-10-01 07:44:29 +03:00
VALUE
2021-02-09 09:39:56 +03:00
rb_fiber_scheduler_io_write ( VALUE scheduler , VALUE io , VALUE buffer , size_t offset , size_t length )
2020-08-20 04:51:45 +03:00
{
2021-02-09 09:39:56 +03:00
VALUE arguments [ ] = {
io , buffer , SIZET2NUM ( offset ) , SIZET2NUM ( length )
} ;
2020-08-20 04:51:45 +03:00
// We should ensure string has capacity to receive data, and then resize it afterwards.
2021-02-09 09:39:56 +03:00
return rb_check_funcall ( scheduler , id_io_write , 4 , arguments ) ;
2020-08-20 04:51:45 +03:00
}