Ruby 3.5.0dev (2025-04-25 revision 62a7f17157c5c67956d95a2582f8f256df13f9e2)
io.h
Go to the documentation of this file.
1#ifndef RUBY_IO_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RUBY_IO_H 1
13#include "ruby/internal/config.h"
14
15#include <stdio.h>
16#include "ruby/encoding.h"
17
18#if defined(HAVE_STDIO_EXT_H)
19#include <stdio_ext.h>
20#endif
21
22#include <errno.h>
23
25#if defined(HAVE_POLL)
26# ifdef _AIX
27# define reqevents events
28# define rtnevents revents
29# endif
30# include <poll.h>
31# ifdef _AIX
32# undef reqevents
33# undef rtnevents
34# undef events
35# undef revents
36# endif
37# define RB_WAITFD_IN POLLIN
38# if defined(POLLPRI)
39# define RB_WAITFD_PRI POLLPRI
40# else
41# define RB_WAITFD_PRI 0
42# endif
43# define RB_WAITFD_OUT POLLOUT
44#else
45# define RB_WAITFD_IN 0x001
46# define RB_WAITFD_PRI 0x002
47# define RB_WAITFD_OUT 0x004
48#endif
56#include "ruby/internal/value.h"
57
58// IO#wait, IO#wait_readable, IO#wait_writable, IO#wait_priority are defined by this implementation.
59#define RUBY_IO_WAIT_METHODS
60
61// Used as the default timeout argument to `rb_io_wait` to use the `IO#timeout` value.
62#define RUBY_IO_TIMEOUT_DEFAULT Qnil
63
65
66struct stat;
67struct timeval;
68
73
82 RUBY_IO_READABLE = RB_WAITFD_IN,
83 RUBY_IO_WRITABLE = RB_WAITFD_OUT,
84 RUBY_IO_PRIORITY = RB_WAITFD_PRI,
85};
86
87typedef enum rb_io_event rb_io_event_t;
88
93RBIMPL_ATTR_PACKED_STRUCT_UNALIGNED_BEGIN()
95
97 char *ptr; /* off + len <= capa */
98
100 int off;
101
103 int len;
104
106 int capa;
107} RBIMPL_ATTR_PACKED_STRUCT_UNALIGNED_END();
108
111
113/*
114 * enc enc2 read action write action
115 * NULL NULL force_encoding(default_external) write the byte sequence of str
116 * e1 NULL force_encoding(e1) convert str.encoding to e1
117 * e1 e2 convert from e2 to e1 convert str.encoding to e2
118 */
139
147#define FMODE_READABLE 0x00000001
148
150#define FMODE_WRITABLE 0x00000002
151
153#define FMODE_READWRITE (FMODE_READABLE|FMODE_WRITABLE)
154
164#define FMODE_BINMODE 0x00000004
165
171#define FMODE_SYNC 0x00000008
172
177#define FMODE_TTY 0x00000010
178
185#define FMODE_DUPLEX 0x00000020
186
192#define FMODE_APPEND 0x00000040
193
200#define FMODE_CREATE 0x00000080
201/* #define FMODE_NOREVLOOKUP 0x00000100 */
202
208#define FMODE_EXCL 0x00000400
209
214#define FMODE_TRUNC 0x00000800
215
228#define FMODE_TEXTMODE 0x00001000
237#define FMODE_EXTERNAL 0x00010000
238
239/* #define FMODE_SIGNAL_ON_EPIPE 0x00020000 */
240
245#define FMODE_SETENC_BY_BOM 0x00100000
246/* #define FMODE_UNIX 0x00200000 */
247/* #define FMODE_INET 0x00400000 */
248/* #define FMODE_INET6 0x00800000 */
249
252enum rb_io_mode {
253 RUBY_IO_MODE_EXTERNAL = FMODE_EXTERNAL,
254
255 RUBY_IO_MODE_READABLE = FMODE_READABLE,
256 RUBY_IO_MODE_WRITABLE = FMODE_WRITABLE,
257 RUBY_IO_MODE_READABLE_WRITABLE = (RUBY_IO_MODE_READABLE|RUBY_IO_MODE_WRITABLE),
258
259 RUBY_IO_MODE_BINARY = FMODE_BINMODE,
260 RUBY_IO_MODE_TEXT = FMODE_TEXTMODE,
261 RUBY_IO_MODE_TEXT_SET_ENCODING_FROM_BOM = FMODE_SETENC_BY_BOM,
262
263 RUBY_IO_MODE_SYNCHRONISED = FMODE_SYNC,
264
265 RUBY_IO_MODE_TTY = FMODE_TTY,
266
267 RUBY_IO_MODE_DUPLEX = FMODE_DUPLEX,
268
269 RUBY_IO_MODE_APPEND = FMODE_APPEND,
270 RUBY_IO_MODE_CREATE = FMODE_CREATE,
271 RUBY_IO_MODE_EXCLUSIVE = FMODE_EXCL,
272 RUBY_IO_MODE_TRUNCATE = FMODE_TRUNC,
273};
274
275typedef enum rb_io_mode rb_io_mode_t;
276
277#ifndef HAVE_RB_IO_T
278#define HAVE_RB_IO_T 1
280struct rb_io {
282 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
284
286 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
288
291 int fd;
292
294 RBIMPL_ATTR_DEPRECATED(("rb_io_mode"))
295 enum rb_io_mode mode;
296
298 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
299 rb_pid_t pid;
300
302 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
304
308
310 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
311 void (*finalize)(struct rb_io*,int);
312
314 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
316
321 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
323
331
332 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
336 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
338
343 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
345
347 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
349
356 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
358
360 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
362
367 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
369
374 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
376
384 RBIMPL_ATTR_DEPRECATED(("with no replacement"))
386
392};
393#endif
394
395typedef struct rb_io rb_io_t;
396
399
403VALUE rb_io_open_descriptor(VALUE klass, int descriptor, int mode, VALUE path, VALUE timeout, struct rb_io_encoding *encoding);
404
411
421#define RB_IO_POINTER(obj,fp) rb_io_check_closed((fp) = RFILE(rb_io_taint_check(obj))->fptr)
422
427#define GetOpenFile RB_IO_POINTER
428
442#define RB_IO_OPEN(obj, fp) do {\
443 (fp) = rb_io_make_open_file(obj);\
444} while (0)
445
450#define MakeOpenFile RB_IO_OPEN
451
463rb_io_t *rb_io_make_open_file(VALUE obj);
464
521
536FILE *rb_fdopen(int fd, const char *modestr);
537
553enum rb_io_mode rb_io_modestr_fmode(const char *modestr);
554
568int rb_io_modestr_oflags(const char *modestr);
569
578int rb_io_oflags_fmode(int oflags);
579
591void rb_io_check_writable(rb_io_t *fptr);
592
594void rb_io_check_readable(rb_io_t *fptr);
595
615
625
636
646void rb_io_synchronized(rb_io_t *fptr);
647
656
664void rb_io_check_closed(rb_io_t *fptr);
665
677
691
716
733
768void rb_io_set_nonblock(rb_io_t *fptr);
769
775
783int rb_io_descriptor(VALUE io);
784
789int rb_io_mode(VALUE io);
790
808int rb_io_extract_encoding_option(VALUE opt, rb_encoding **enc_p, rb_encoding **enc2_p, enum rb_io_mode *fmode_p);
809
877void rb_io_extract_modeenc(VALUE *vmode_p, VALUE *vperm_p, VALUE opthash, int *oflags_p, enum rb_io_mode *fmode_p, rb_io_enc_t *convconfig_p);
878
879/* :TODO: can this function be __attribute__((warn_unused_result)) or not? */
895ssize_t rb_io_bufwrite(VALUE io, const void *buf, size_t size);
896
897//RBIMPL_ATTR_DEPRECATED(("use rb_io_maybe_wait_readable"))
907int rb_io_wait_readable(int fd);
908
909//RBIMPL_ATTR_DEPRECATED(("use rb_io_maybe_wait_writable"))
918int rb_io_wait_writable(int fd);
919
920//RBIMPL_ATTR_DEPRECATED(("use rb_io_wait"))
935int rb_wait_for_single_fd(int fd, int events, struct timeval *tv);
936
945
955
976
1007VALUE rb_io_maybe_wait(int error, VALUE io, VALUE events, VALUE timeout);
1008
1026int rb_io_maybe_wait_readable(int error, VALUE io, VALUE timeout);
1027
1045int rb_io_maybe_wait_writable(int error, VALUE io, VALUE timeout);
1046
1048/* compatibility for ruby 1.8 and older */
1049#define rb_io_mode_flags(modestr) [<"rb_io_mode_flags() is obsolete; use rb_io_modestr_fmode()">]
1050#define rb_io_modenum_flags(oflags) [<"rb_io_modenum_flags() is obsolete; use rb_io_oflags_fmode()">]
1063
1071void rb_eof_error(void);
1072
1080void rb_io_read_check(rb_io_t *fptr);
1081
1091int rb_io_read_pending(rb_io_t *fptr);
1092
1099VALUE rb_stat_new(const struct stat *st);
1100
1101/* gc.c */
1102
1104
1105#endif /* RUBY_IO_H */
Defines RBIMPL_ATTR_CONST.
#define RBIMPL_ATTR_CONST()
Wraps (or simulates) __attribute__((const))
Definition const.h:36
#define RBIMPL_ATTR_DEPRECATED(msg)
Wraps (or simulates) [[deprecated]]
Definition deprecated.h:64
Tweaking visibility of C variables/functions.
#define RUBY_EXTERN
Declaration of externally visible global variables.
Definition dllexport.h:45
#define RBIMPL_SYMBOL_EXPORT_END()
Counterpart of RBIMPL_SYMBOL_EXPORT_BEGIN.
Definition dllexport.h:74
#define RBIMPL_SYMBOL_EXPORT_BEGIN()
Shortcut macro equivalent to RUBY_SYMBOL_EXPORT_BEGIN extern "C" {.
Definition dllexport.h:65
Encoding relates APIs.
#define FMODE_READABLE
The IO is opened for reading.
Definition io.h:147
enum rb_io_mode rb_io_modestr_fmode(const char *modestr)
Maps a file mode string (that rb_file_open() takes) into a mixture of FMODE_ flags.
Definition io.c:6459
VALUE rb_io_get_io(VALUE io)
Identical to rb_io_check_io(), except it raises exceptions on conversion failures.
Definition io.c:811
VALUE rb_io_timeout(VALUE io)
Get the timeout associated with the specified io object.
Definition io.c:857
VALUE rb_io_taint_check(VALUE obj)
Definition io.c:781
void rb_io_read_check(rb_io_t *fptr)
Blocks until there is a pending read in the passed IO.
Definition io.c:1069
int rb_io_modestr_oflags(const char *modestr)
Identical to rb_io_modestr_fmode(), except it returns a mixture of O_ flags.
Definition io.c:6592
#define FMODE_SETENC_BY_BOM
This flag amends the encoding of the IO so that the BOM of the contents of the IO takes effect.
Definition io.h:245
rb_io_event
Type of events that an IO can wait.
Definition io.h:81
@ RUBY_IO_READABLE
IO::READABLE
Definition io.h:82
@ RUBY_IO_PRIORITY
IO::PRIORITY
Definition io.h:84
@ RUBY_IO_WRITABLE
IO::WRITABLE
Definition io.h:83
#define FMODE_EXTERNAL
This flag means that an IO object is wrapping an "external" file descriptor, which is owned by someth...
Definition io.h:237
void rb_io_check_byte_readable(rb_io_t *fptr)
Asserts that an IO is opened for byte-based reading.
Definition io.c:1015
#define FMODE_TTY
The IO is a TTY.
Definition io.h:177
#define FMODE_CREATE
The IO is opened for creating.
Definition io.h:200
void rb_io_check_readable(rb_io_t *fptr)
Just another name of rb_io_check_byte_readable.
Definition io.c:1024
int rb_wait_for_single_fd(int fd, int events, struct timeval *tv)
Blocks until the passed file descriptor is ready for the passed events.
Definition io.c:1592
FILE * rb_fdopen(int fd, const char *modestr)
Identical to rb_io_stdio_file(), except it takes file descriptors instead of Ruby's IO.
Definition io.c:7075
int rb_io_extract_encoding_option(VALUE opt, rb_encoding **enc_p, rb_encoding **enc2_p, enum rb_io_mode *fmode_p)
This function breaks down the option hash that IO#initialize takes into components.
Definition io.c:6741
int rb_io_descriptor(VALUE io)
Returns an integer representing the numeric file descriptor for io.
Definition io.c:2899
#define FMODE_WRITABLE
The IO is opened for writing.
Definition io.h:150
FILE * rb_io_stdio_file(rb_io_t *fptr)
Finds or creates a stdio's file structure from a Ruby's one.
Definition io.c:9394
#define FMODE_APPEND
The IO is opened for appending.
Definition io.h:192
#define FMODE_DUPLEX
Ruby eventually detects that the IO is bidirectional.
Definition io.h:185
#define FMODE_BINMODE
The IO is in "binary mode".
Definition io.h:164
int rb_io_maybe_wait_readable(int error, VALUE io, VALUE timeout)
Blocks until the passed IO is ready for reading, if that makes sense for the passed errno.
Definition io.c:1651
VALUE rb_io_maybe_wait(int error, VALUE io, VALUE events, VALUE timeout)
Identical to rb_io_wait() except it additionally takes previous errno.
Definition io.c:1610
VALUE rb_eIOTimeoutError
Indicates that a timeout has occurred while performing an IO operation.
Definition io.c:190
#define FMODE_SYNC
The IO is in "sync mode".
Definition io.h:171
VALUE rb_io_path(VALUE io)
Returns the path for the given IO.
Definition io.c:2973
void rb_io_extract_modeenc(VALUE *vmode_p, VALUE *vperm_p, VALUE opthash, int *oflags_p, enum rb_io_mode *fmode_p, rb_io_enc_t *convconfig_p)
This function can be seen as an extended version of rb_io_extract_encoding_option() that not only con...
Definition io.c:6866
void rb_io_check_initialized(rb_io_t *fptr)
Asserts that the passed IO is initialised.
Definition io.c:788
#define FMODE_EXCL
This flag amends the effect of FMODE_CREATE, so that if there already is a file at the given path the...
Definition io.h:208
#define FMODE_TEXTMODE
The IO is in "text mode".
Definition io.h:228
int rb_io_fptr_finalize(rb_io_t *fptr)
Destroys the given IO.
Definition io.c:5679
VALUE rb_io_check_io(VALUE io)
Try converting an object to its IO representation using its to_io method, if any.
Definition io.c:817
VALUE rb_io_closed_p(VALUE io)
Returns whether or not the underlying IO is closed.
Definition io.c:5855
VALUE rb_io_set_timeout(VALUE io, VALUE timeout)
Set the timeout associated with the specified io object.
Definition io.c:886
ssize_t rb_io_bufwrite(VALUE io, const void *buf, size_t size)
Buffered write to the passed IO.
Definition io.c:2016
void rb_io_check_char_readable(rb_io_t *fptr)
Asserts that an IO is opened for character-based reading.
Definition io.c:996
#define FMODE_TRUNC
This flag amends the effect of FMODE_CREATE, so that if there already is a file at the given path it ...
Definition io.h:214
VALUE rb_io_get_write_io(VALUE io)
Queries the tied IO for writing.
Definition io.c:823
void rb_io_set_nonblock(rb_io_t *fptr)
Instructs the OS to put its internal file structure into "nonblocking mode".
Definition io.c:3425
int rb_io_wait_writable(int fd)
Blocks until the passed file descriptor gets writable.
Definition io.c:1549
VALUE rb_io_open_descriptor(VALUE klass, int descriptor, int mode, VALUE path, VALUE timeout, struct rb_io_encoding *encoding)
Allocate a new IO object, with the given file descriptor.
Definition io.c:9265
VALUE rb_io_set_write_io(VALUE io, VALUE w)
Assigns the tied IO for writing.
Definition io.c:834
void rb_io_check_writable(rb_io_t *fptr)
Asserts that an IO is opened for writing.
Definition io.c:1048
int rb_io_maybe_wait_writable(int error, VALUE io, VALUE timeout)
Blocks until the passed IO is ready for writing, if that makes sense for the passed errno.
Definition io.c:1666
void rb_io_check_closed(rb_io_t *fptr)
This badly named function asserts that the passed IO is open.
Definition io.c:796
int rb_io_wait_readable(int fd)
Blocks until the passed file descriptor gets readable.
Definition io.c:1515
void rb_io_synchronized(rb_io_t *fptr)
Sets FMODE_SYNC.
Definition io.c:7362
VALUE rb_io_wait(VALUE io, VALUE events, VALUE timeout)
Blocks until the passed IO is ready for the passed events.
Definition io.c:1454
Defines RBIMPL_ATTR_NORETURN.
#define RBIMPL_ATTR_NORETURN()
Wraps (or simulates) [[noreturn]]
Definition noreturn.h:38
Defines RBIMPL_ATTR_PACKED_STRUCT_BEGIN, RBIMPL_ATTR_PACKED_STRUCT_END, RBIMPL_ATTR_PACKED_STRUCT_UNA...
Defines RBIMPL_ATTR_PURE.
#define RBIMPL_ATTR_PURE()
Wraps (or simulates) __attribute__((pure))
Definition pure.h:33
Decomposed encoding flags (e.g.
Definition io.h:119
int ecflags
Flags.
Definition io.h:129
VALUE ecopts
Flags as Ruby hash.
Definition io.h:137
rb_encoding * enc2
External encoding.
Definition io.h:123
rb_encoding * enc
Internal encoding.
Definition io.h:121
IO buffers.
Definition io.h:94
char * ptr
Pointer to the underlying memory region, of at least capa bytes.
Definition io.h:97
int off
Offset inside of ptr.
Definition io.h:100
int len
Length of the buffer.
Definition io.h:103
int capa
Designed capacity of the buffer.
Definition io.h:106
Ruby's IO, metadata and buffers.
Definition io.h:280
rb_io_buffer_t wbuf
Write buffer.
Definition io.h:315
enum rb_io_mode mode
mode flags: FMODE_XXXs
Definition io.h:295
void(* finalize)(struct rb_io *, int)
finalize proc
Definition io.h:311
rb_econv_t * readconv
Encoding converter used when reading from this IO.
Definition io.h:337
rb_econv_t * writeconv
Encoding converter used when writing to this IO.
Definition io.h:348
struct rb_io_encoding encs
Decomposed encoding flags.
Definition io.h:333
VALUE self
The IO's Ruby level counterpart.
Definition io.h:283
VALUE write_lock
This is a Ruby level mutex.
Definition io.h:385
VALUE timeout
The timeout associated with this IO when performing blocking operations.
Definition io.h:391
FILE * stdio_file
stdio ptr for read/write, if available.
Definition io.h:287
VALUE writeconv_pre_ecopts
Value of ::rb_io_t::rb_io_enc_t::ecopts stored right before initialising rb_io_t::writeconv.
Definition io.h:375
VALUE tied_io_for_writing
Duplex IO object, if set.
Definition io.h:330
int writeconv_initialized
Whether rb_io_t::writeconv is already set up.
Definition io.h:361
int fd
file descriptor.
Definition io.h:291
rb_io_buffer_t rbuf
(Byte) read buffer.
Definition io.h:322
int lineno
number of lines read
Definition io.h:303
VALUE writeconv_asciicompat
This is, when set, an instance of rb_cString which holds the "common" encoding.
Definition io.h:357
rb_io_buffer_t cbuf
rb_io_ungetc() destination.
Definition io.h:344
rb_pid_t pid
child's pid (for pipes)
Definition io.h:299
int writeconv_pre_ecflags
Value of ::rb_io_t::rb_io_enc_t::ecflags stored right before initialising rb_io_t::writeconv.
Definition io.h:368
VALUE pathv
pathname for file
Definition io.h:307
Defines VALUE and ID.
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40