kgio RubyGem user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [PATCH 2/3] sock_for_fd: drop 1.8/1.9/2.x/3.0-specific hacks
  2023-09-10 18:49  7% [PATCH 0/3] remove some Ruby 1.8 codepaths Eric Wong
@ 2023-09-10 18:49  6% ` Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2023-09-10 18:49 UTC (permalink / raw)
  To: kgio-public

The generic version works for all Rubies
---
 ext/kgio/sock_for_fd.h | 58 +-----------------------------------------
 1 file changed, 1 insertion(+), 57 deletions(-)

diff --git a/ext/kgio/sock_for_fd.h b/ext/kgio/sock_for_fd.h
index 55f9ccb..cfec302 100644
--- a/ext/kgio/sock_for_fd.h
+++ b/ext/kgio/sock_for_fd.h
@@ -1,71 +1,15 @@
 #ifndef SOCK_FOR_FD_H
 #define SOCK_FOR_FD_H
 #include <ruby.h>
-#ifdef HAVE_RUBY_IO_H
-#  include <ruby/io.h>
-#else
-#  include <stdio.h>
-#  include <rubyio.h>
-#endif
 
-#if defined(MakeOpenFile) && \
-    defined(HAVE_RB_IO_T) && (HAVE_RB_IO_T == 1) && \
-    defined(HAVE_RB_IO_ASCII8BIT_BINMODE) && \
-    defined(HAVE_ST_FD) && \
-    defined(HAVE_ST_MODE)
-#  define SOCK_FOR_FD (19)
-#  define FMODE_NOREVLOOKUP 0x100
-#elif defined(MakeOpenFile) && \
-      (defined(OpenFile) || defined(HAVE_RB_IO_T)) && \
-      defined(HAVE_RB_FDOPEN) && \
-      defined(HAVE_ST_F) && \
-      defined(HAVE_ST_F2) && \
-      defined(HAVE_ST_MODE)
-#  define SOCK_FOR_FD (18)
-#else
-#  define SOCK_FOR_FD (-1)
-#endif
-
-#if SOCK_FOR_FD == 19  /* modeled after ext/socket/init.c */
-static VALUE sock_for_fd(VALUE klass, int fd)
-{
-	VALUE sock;
-	rb_io_t *fp;
-
-	rb_update_max_fd(fd); /* 1.9.3+ API */
-	sock = rb_obj_alloc(klass);
-	MakeOpenFile(sock, fp);
-	fp->fd = fd;
-	fp->mode = FMODE_READWRITE|FMODE_DUPLEX|FMODE_NOREVLOOKUP;
-	rb_io_ascii8bit_binmode(sock);
-	rb_io_synchronized(fp);
-	return sock;
-}
-#elif SOCK_FOR_FD == 18 /* modeled after init_sock() in ext/socket/socket.c */
-static VALUE sock_for_fd(VALUE klass, int fd)
-{
-	VALUE sock = rb_obj_alloc(klass);
-	OpenFile *fp;
-
-	MakeOpenFile(sock, fp);
-	fp->f = rb_fdopen(fd, "r");
-	fp->f2 = rb_fdopen(fd, "w");
-	fp->mode = FMODE_READWRITE;
-	rb_io_synchronized(fp);
-	return sock;
-}
-#else /* Rubinius, et al. */
 static ID id_for_fd;
 static VALUE sock_for_fd(VALUE klass, int fd)
 {
 	return rb_funcall(klass, id_for_fd, 1, INT2NUM(fd));
 }
+
 static void init_sock_for_fd(void)
 {
 	id_for_fd = rb_intern("for_fd");
 }
-#endif /* sock_for_fd */
-#if SOCK_FOR_FD > 0
-#  define init_sock_for_fd() for (;0;)
-#endif
 #endif /* SOCK_FOR_FD_H */

^ permalink raw reply related	[relevance 6%]

* [PATCH 0/3] remove some Ruby 1.8 codepaths
@ 2023-09-10 18:49  7% Eric Wong
  2023-09-10 18:49  6% ` [PATCH 2/3] sock_for_fd: drop 1.8/1.9/2.x/3.0-specific hacks Eric Wong
  0 siblings, 1 reply; 2+ results
From: Eric Wong @ 2023-09-10 18:49 UTC (permalink / raw)
  To: kgio-public

I haven't been motivated to build 1.8 in ages due to
toolchain changes in distros.

Eric Wong (3):
  my_fileno: drop Ruby 1.8 support, really require 1.9.3
  sock_for_fd: drop 1.8/1.9/2.x/3.0-specific hacks
  drop remaining 1.8 and fragile autopush code paths

 ext/kgio/ancient_ruby.h  | 24 -----------------
 ext/kgio/autopush.c      | 21 ---------------
 ext/kgio/extconf.rb      | 18 -------------
 ext/kgio/kgio.h          |  8 +-----
 ext/kgio/my_fileno.h     | 32 ++++------------------
 ext/kgio/set_file_path.h | 22 ---------------
 ext/kgio/sock_for_fd.h   | 58 +---------------------------------------
 ext/kgio/tryopen.c       | 32 +---------------------
 kgio.gemspec             |  1 +
 lib/kgio.rb              |  5 ++++
 10 files changed, 14 insertions(+), 207 deletions(-)
 delete mode 100644 ext/kgio/ancient_ruby.h

^ permalink raw reply	[relevance 7%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2023-09-10 18:49  7% [PATCH 0/3] remove some Ruby 1.8 codepaths Eric Wong
2023-09-10 18:49  6% ` [PATCH 2/3] sock_for_fd: drop 1.8/1.9/2.x/3.0-specific hacks Eric Wong

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/kgio.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).