polyphony 0.81.1 → 0.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +1 -1
  3. data/.gitmodules +3 -0
  4. data/CHANGELOG.md +17 -0
  5. data/Gemfile.lock +1 -1
  6. data/Rakefile +14 -0
  7. data/bin/test +1 -1
  8. data/ext/polyphony/backend_common.c +33 -10
  9. data/ext/polyphony/backend_common.h +20 -2
  10. data/ext/polyphony/backend_io_uring.c +182 -220
  11. data/ext/polyphony/backend_libev.c +212 -197
  12. data/ext/polyphony/extconf.rb +21 -2
  13. data/ext/polyphony/io_extensions.c +440 -0
  14. data/ext/polyphony/pipe.c +109 -0
  15. data/ext/polyphony/polyphony.c +50 -1
  16. data/ext/polyphony/polyphony.h +6 -11
  17. data/ext/polyphony/polyphony_ext.c +7 -2
  18. data/ext/polyphony/zlib_conf.rb +119 -0
  19. data/lib/polyphony/extensions/io.rb +20 -2
  20. data/lib/polyphony/extensions/pipe.rb +171 -0
  21. data/lib/polyphony/extensions.rb +1 -0
  22. data/lib/polyphony/version.rb +1 -1
  23. data/lib/polyphony.rb +4 -0
  24. data/test/helper.rb +4 -0
  25. data/test/test_backend.rb +3 -48
  26. data/test/test_global_api.rb +23 -23
  27. data/test/test_io.rb +426 -0
  28. data/test/test_pipe.rb +41 -0
  29. data/test/test_process_supervision.rb +1 -1
  30. data/test/test_raw_buffer.rb +37 -0
  31. data/test/test_socket.rb +50 -0
  32. metadata +8 -13
  33. data/ext/liburing/liburing/README.md +0 -4
  34. data/ext/liburing/liburing/barrier.h +0 -73
  35. data/ext/liburing/liburing/compat.h +0 -15
  36. data/ext/liburing/liburing/io_uring.h +0 -343
  37. data/ext/liburing/liburing.h +0 -585
  38. data/ext/liburing/queue.c +0 -333
  39. data/ext/liburing/register.c +0 -187
  40. data/ext/liburing/setup.c +0 -210
  41. data/ext/liburing/syscall.c +0 -54
  42. data/ext/liburing/syscall.h +0 -18
  43. data/ext/polyphony/liburing.c +0 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4584f87975e018fe58887f4c6786bfe8c631a7d2fed3717e6822d72741fcc92
4
- data.tar.gz: 9353ed759d256a035619d0b18dc53569fba6fdbb0709d79defb585fbf5f63f5a
3
+ metadata.gz: ce9742f5b50581c5569df4ad3e2232c7c32392a92e7ab23960373c8a4e3b0de4
4
+ data.tar.gz: a695f3191cc7cefb7d720565c3564b24784beb836528342e8d4fd9e8d0231dda
5
5
  SHA512:
6
- metadata.gz: c4d2d6e7457e49b4803b44e2125b54465a1104635b3d0a1d127538335401eeca6612095a2dcde9b6e149d939d15c6de2a1cbdf892a114535a5f0bd00ea1936e8
7
- data.tar.gz: 5f4eb0a66dec6614d542d2c89cad791e2eb7e27ab9ae74f6bf60c8d4bd9831a098f531be6a619d4f13662631e86f1ac6ddc7bf5bf5f005b8926a4dfc3c7e43ef
6
+ metadata.gz: 041cb949e600ef328ed6d1c92badcaa9ef502e4776043d6a7786a811d5935de450f933b8eff4dd6100db6e55ff19878186bd9ef6bb840ac1cdcdb8c53341f51c
7
+ data.tar.gz: fc0542606c3ee5ab044cc5e8175a60fb3fa6a8466422643ff1446fb0271a6db09236b5c0dbc7a632fa47853ae0ac3a2007fa4644a85283b4225f453f6155dbce
@@ -16,7 +16,7 @@ jobs:
16
16
  runs-on: ${{matrix.os}}
17
17
 
18
18
  env:
19
- POLYPHONY_USE_LIBEV: "1"
19
+ POLYPHONY_LIBEV: "1"
20
20
 
21
21
  steps:
22
22
  - name: Setup machine
data/.gitmodules CHANGED
@@ -0,0 +1,3 @@
1
+ [submodule "vendor/liburing"]
2
+ path = vendor/liburing
3
+ url = https://github.com/axboe/liburing
data/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## 0.84 2022-03-11
2
+
3
+ - Implement `IO.tee` (#82)
4
+ - Implement `IO#tee_from` (#81)
5
+ - Bundle liburing as git submodule
6
+
7
+ ## 0.83 2022-03-10
8
+
9
+ - Implement `Polyphony::Pipe` class, `Polyphony.pipe` method (#83)
10
+ - Add `IO.splice`, `IO.splice_to_eof` (#82)
11
+ - Implement compression/decompression methods (#77)
12
+
13
+ ## 0.82 2022-03-04
14
+
15
+ - Use `POLYPHONY_LIBEV` instead of `POLYPHONY_USE_LIBEV` environment variable
16
+ - Add support for working with raw buffers (#78)
17
+
1
18
  ## 0.81.1 2022-03-03
2
19
 
3
20
  - Fix `Backend_recv` regression
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- polyphony (0.81.1)
4
+ polyphony (0.84)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/Rakefile CHANGED
@@ -24,3 +24,17 @@ task :docs do
24
24
  end
25
25
 
26
26
  CLEAN.include "**/*.o", "**/*.so", "**/*.so.*", "**/*.a", "**/*.bundle", "**/*.jar", "pkg", "tmp"
27
+
28
+ task :release do
29
+ require_relative './lib/polyphony/version'
30
+ version = Polyphony::VERSION
31
+
32
+ puts 'Building polyphony...'
33
+ `gem build polyphony.gemspec`
34
+
35
+ puts "Pushing polyphony #{version}..."
36
+ `gem push extralite-#{version}.gem`
37
+
38
+ puts "Cleaning up..."
39
+ `rm *.gem`
40
+ end
data/bin/test CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env bash
2
2
  set -e
3
- clear && POLYPHONY_USE_LIBEV=1 rake recompile && ruby test/run.rb
3
+ clear && POLYPHONY_LIBEV=1 rake recompile && ruby test/run.rb
4
4
  clear && rake recompile && ruby test/run.rb
@@ -340,33 +340,38 @@ VALUE Backend_sendv(VALUE self, VALUE io, VALUE ary, VALUE flags) {
340
340
  }
341
341
  }
342
342
 
343
- inline void io_verify_blocking_mode(rb_io_t *fptr, VALUE io, VALUE blocking) {
343
+ inline void set_fd_blocking_mode(int fd, int blocking) {
344
344
  int flags;
345
345
  int is_nonblocking;
346
- VALUE blocking_mode = rb_ivar_get(io, ID_ivar_blocking_mode);
347
- if (blocking == blocking_mode) return;
348
-
349
- rb_ivar_set(io, ID_ivar_blocking_mode, blocking);
350
346
 
351
347
  #ifdef _WIN32
352
- if (blocking != Qtrue)
353
- rb_w32_set_nonblock(fptr->fd);
348
+ if (!blocking) rb_w32_set_nonblock(fd);
354
349
  #elif defined(F_GETFL)
355
- flags = fcntl(fptr->fd, F_GETFL);
350
+ flags = fcntl(fd, F_GETFL);
356
351
  if (flags == -1) return;
357
352
  is_nonblocking = flags & O_NONBLOCK;
358
353
 
359
- if (blocking == Qtrue) {
354
+ if (blocking) {
360
355
  if (!is_nonblocking) return;
361
356
  flags &= ~O_NONBLOCK;
362
357
  } else {
363
358
  if (is_nonblocking) return;
364
359
  flags |= O_NONBLOCK;
365
360
  }
366
- fcntl(fptr->fd, F_SETFL, flags);
361
+ fcntl(fd, F_SETFL, flags);
367
362
  #endif
368
363
  }
369
364
 
365
+ inline void io_verify_blocking_mode(rb_io_t *fptr, VALUE io, VALUE blocking) {
366
+ int flags;
367
+ int is_nonblocking;
368
+ VALUE blocking_mode = rb_ivar_get(io, ID_ivar_blocking_mode);
369
+ if (blocking == blocking_mode) return;
370
+
371
+ rb_ivar_set(io, ID_ivar_blocking_mode, blocking);
372
+ set_fd_blocking_mode(fptr->fd, blocking == Qtrue);
373
+ }
374
+
370
375
  inline void backend_run_idle_tasks(struct Backend_base *base) {
371
376
  double now;
372
377
 
@@ -470,3 +475,21 @@ int backend_getaddrinfo(VALUE host, VALUE port, struct sockaddr **ai_addr) {
470
475
  *ai_addr = addrinfo_result->ai_addr;
471
476
  return addrinfo_result->ai_addrlen;
472
477
  }
478
+
479
+ struct io_buffer get_io_buffer(VALUE in) {
480
+ if (FIXNUM_P(in)) {
481
+ struct raw_buffer *raw = FIX2PTR(in);
482
+ return (struct io_buffer){ raw->ptr, raw->len, 1 };
483
+ }
484
+ return (struct io_buffer){ RSTRING_PTR(in), RSTRING_LEN(in), 0 };
485
+ }
486
+
487
+ VALUE coerce_io_string_or_buffer(VALUE buf) {
488
+ switch (TYPE(buf)) {
489
+ case T_STRING:
490
+ case T_FIXNUM:
491
+ return buf;
492
+ default:
493
+ return StringValue(buf);
494
+ }
495
+ }
@@ -55,7 +55,24 @@ struct backend_stats backend_base_stats(struct Backend_base *base);
55
55
  }
56
56
  #define COND_TRACE(base, ...) if (SHOULD_TRACE(base)) { TRACE(base, __VA_ARGS__); }
57
57
 
58
+ // raw buffers
58
59
 
60
+ struct raw_buffer {
61
+ unsigned char *ptr;
62
+ int len;
63
+ };
64
+
65
+ struct io_buffer {
66
+ unsigned char *ptr;
67
+ int len;
68
+ int raw;
69
+ };
70
+
71
+ #define FIX2PTR(v) ((void *)(FIX2LONG(v)))
72
+ #define PTR2FIX(p) LONG2FIX((long)p)
73
+
74
+ struct io_buffer get_io_buffer(VALUE in);
75
+ VALUE coerce_io_string_or_buffer(VALUE buf);
59
76
 
60
77
  #ifdef POLYPHONY_USE_PIDFD_OPEN
61
78
  int pidfd_open(pid_t pid, unsigned int flags);
@@ -97,14 +114,14 @@ VALUE backend_snooze(struct Backend_base *backend);
97
114
 
98
115
  #define READ_LOOP_YIELD_STR() { \
99
116
  io_set_read_length(str, total, shrinkable); \
100
- io_enc_str(str, fptr); \
117
+ if (fptr) io_enc_str(str, fptr); \
101
118
  rb_yield(str); \
102
119
  READ_LOOP_PREPARE_STR(); \
103
120
  }
104
121
 
105
122
  #define READ_LOOP_PASS_STR_TO_RECEIVER(receiver, method_id) { \
106
123
  io_set_read_length(str, total, shrinkable); \
107
- io_enc_str(str, fptr); \
124
+ if (fptr) io_enc_str(str, fptr); \
108
125
  rb_funcall_passing_block(receiver, method_id, 1, &str); \
109
126
  READ_LOOP_PREPARE_STR(); \
110
127
  }
@@ -119,6 +136,7 @@ VALUE Backend_sendv(VALUE self, VALUE io, VALUE ary, VALUE flags);
119
136
  VALUE Backend_stats(VALUE self);
120
137
  VALUE Backend_verify_blocking_mode(VALUE self, VALUE io, VALUE blocking);
121
138
  void backend_run_idle_tasks(struct Backend_base *base);
139
+ void set_fd_blocking_mode(int fd, int blocking);
122
140
  void io_verify_blocking_mode(rb_io_t *fptr, VALUE io, VALUE blocking);
123
141
  void backend_setup_stats_symbols();
124
142
  int backend_getaddrinfo(VALUE host, VALUE port, struct sockaddr **ai_addr);