polyphony 0.82 → 0.84.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f80cdfe71dec5b03bd98ffb4150beec84fd6e35b70b6e099fb223a1c78706bc
4
- data.tar.gz: 8a245a57849a917814d5b8dbb563315e42291c0063f5fc353578af16002209bb
3
+ metadata.gz: 39c23d00aec4c469e920a44562c790e5d60dd26a24628f04e9c695b42f46f6b5
4
+ data.tar.gz: a2787409f8a164401ee7e9ebe3d571a632b82a30daba11b1456f21d937e2c7a1
5
5
  SHA512:
6
- metadata.gz: 0450fcbbe868c731f2e0b41bb196522f33487700eaf2636bb65d65def95af81d341057c071271aa726934008e19969a36a4e8e97e4775d9bb2660f5750708dc3
7
- data.tar.gz: b789f4ad289136b91a24c3f68ddfc4864dbc2ede4989d7dafec09393527f6f93e44362843a406599a8d38f6f6f8e99626cffb88eb7395fdc99c1cbeafead87dc
6
+ metadata.gz: 99f668f39d0d54783ad7c527299075a742fabe4859be0d61307354c2eed4b309b5ddf3e089a928b55dfcdb3563a73d3e913d6533e9a36c9dc42e9065132193bb
7
+ data.tar.gz: 4b48c6cd8a2e7d814c090c1f2fe260a58bd83b70b131288d306ceac55261913ff4070abe63854bf7cbf182098529c4a87b1c5b33646253de6e9c752ed9d0b96f
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,15 @@
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
+
1
13
  ## 0.82 2022-03-04
2
14
 
3
15
  - Use `POLYPHONY_LIBEV` instead of `POLYPHONY_USE_LIBEV` environment variable
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- polyphony (0.82)
4
+ polyphony (0.84.1)
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 polyphony-#{version}.gem`
37
+
38
+ puts "Cleaning up..."
39
+ `rm *.gem`
40
+ end
@@ -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
 
@@ -58,12 +58,12 @@ struct backend_stats backend_base_stats(struct Backend_base *base);
58
58
  // raw buffers
59
59
 
60
60
  struct raw_buffer {
61
- char *ptr;
61
+ unsigned char *ptr;
62
62
  int len;
63
63
  };
64
64
 
65
65
  struct io_buffer {
66
- char *ptr;
66
+ unsigned char *ptr;
67
67
  int len;
68
68
  int raw;
69
69
  };
@@ -114,14 +114,14 @@ VALUE backend_snooze(struct Backend_base *backend);
114
114
 
115
115
  #define READ_LOOP_YIELD_STR() { \
116
116
  io_set_read_length(str, total, shrinkable); \
117
- io_enc_str(str, fptr); \
117
+ if (fptr) io_enc_str(str, fptr); \
118
118
  rb_yield(str); \
119
119
  READ_LOOP_PREPARE_STR(); \
120
120
  }
121
121
 
122
122
  #define READ_LOOP_PASS_STR_TO_RECEIVER(receiver, method_id) { \
123
123
  io_set_read_length(str, total, shrinkable); \
124
- io_enc_str(str, fptr); \
124
+ if (fptr) io_enc_str(str, fptr); \
125
125
  rb_funcall_passing_block(receiver, method_id, 1, &str); \
126
126
  READ_LOOP_PREPARE_STR(); \
127
127
  }
@@ -136,6 +136,7 @@ VALUE Backend_sendv(VALUE self, VALUE io, VALUE ary, VALUE flags);
136
136
  VALUE Backend_stats(VALUE self);
137
137
  VALUE Backend_verify_blocking_mode(VALUE self, VALUE io, VALUE blocking);
138
138
  void backend_run_idle_tasks(struct Backend_base *base);
139
+ void set_fd_blocking_mode(int fd, int blocking);
139
140
  void io_verify_blocking_mode(rb_io_t *fptr, VALUE io, VALUE blocking);
140
141
  void backend_setup_stats_symbols();
141
142
  int backend_getaddrinfo(VALUE host, VALUE port, struct sockaddr **ai_addr);