puma 3.11.1 → 6.6.0

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 (98) hide show
  1. checksums.yaml +5 -5
  2. data/History.md +2092 -422
  3. data/LICENSE +23 -20
  4. data/README.md +301 -69
  5. data/bin/puma-wild +3 -9
  6. data/docs/architecture.md +59 -21
  7. data/docs/compile_options.md +55 -0
  8. data/docs/deployment.md +69 -58
  9. data/docs/fork_worker.md +41 -0
  10. data/docs/java_options.md +54 -0
  11. data/docs/jungle/README.md +9 -0
  12. data/docs/jungle/rc.d/README.md +74 -0
  13. data/docs/jungle/rc.d/puma +61 -0
  14. data/docs/jungle/rc.d/puma.conf +10 -0
  15. data/docs/kubernetes.md +78 -0
  16. data/docs/nginx.md +2 -2
  17. data/docs/plugins.md +26 -12
  18. data/docs/rails_dev_mode.md +28 -0
  19. data/docs/restart.md +48 -22
  20. data/docs/signals.md +13 -11
  21. data/docs/stats.md +147 -0
  22. data/docs/systemd.md +108 -117
  23. data/docs/testing_benchmarks_local_files.md +150 -0
  24. data/docs/testing_test_rackup_ci_files.md +36 -0
  25. data/ext/puma_http11/PumaHttp11Service.java +2 -2
  26. data/ext/puma_http11/ext_help.h +1 -1
  27. data/ext/puma_http11/extconf.rb +68 -3
  28. data/ext/puma_http11/http11_parser.c +106 -118
  29. data/ext/puma_http11/http11_parser.h +2 -2
  30. data/ext/puma_http11/http11_parser.java.rl +22 -38
  31. data/ext/puma_http11/http11_parser.rl +6 -4
  32. data/ext/puma_http11/http11_parser_common.rl +6 -6
  33. data/ext/puma_http11/mini_ssl.c +474 -94
  34. data/ext/puma_http11/no_ssl/PumaHttp11Service.java +15 -0
  35. data/ext/puma_http11/org/jruby/puma/Http11.java +136 -121
  36. data/ext/puma_http11/org/jruby/puma/Http11Parser.java +84 -99
  37. data/ext/puma_http11/org/jruby/puma/MiniSSL.java +251 -88
  38. data/ext/puma_http11/puma_http11.c +53 -58
  39. data/lib/puma/app/status.rb +71 -49
  40. data/lib/puma/binder.rb +257 -151
  41. data/lib/puma/cli.rb +61 -38
  42. data/lib/puma/client.rb +464 -224
  43. data/lib/puma/cluster/worker.rb +183 -0
  44. data/lib/puma/cluster/worker_handle.rb +96 -0
  45. data/lib/puma/cluster.rb +343 -239
  46. data/lib/puma/commonlogger.rb +23 -14
  47. data/lib/puma/configuration.rb +144 -96
  48. data/lib/puma/const.rb +194 -115
  49. data/lib/puma/control_cli.rb +135 -81
  50. data/lib/puma/detect.rb +34 -2
  51. data/lib/puma/dsl.rb +1092 -153
  52. data/lib/puma/error_logger.rb +113 -0
  53. data/lib/puma/events.rb +17 -111
  54. data/lib/puma/io_buffer.rb +44 -5
  55. data/lib/puma/jruby_restart.rb +2 -73
  56. data/lib/puma/json_serialization.rb +96 -0
  57. data/lib/puma/launcher/bundle_pruner.rb +104 -0
  58. data/lib/puma/launcher.rb +205 -138
  59. data/lib/puma/log_writer.rb +147 -0
  60. data/lib/puma/minissl/context_builder.rb +96 -0
  61. data/lib/puma/minissl.rb +279 -70
  62. data/lib/puma/null_io.rb +61 -2
  63. data/lib/puma/plugin/systemd.rb +90 -0
  64. data/lib/puma/plugin/tmp_restart.rb +3 -1
  65. data/lib/puma/plugin.rb +9 -13
  66. data/lib/puma/rack/builder.rb +10 -11
  67. data/lib/puma/rack/urlmap.rb +3 -1
  68. data/lib/puma/rack_default.rb +21 -4
  69. data/lib/puma/reactor.rb +97 -185
  70. data/lib/puma/request.rb +688 -0
  71. data/lib/puma/runner.rb +114 -69
  72. data/lib/puma/sd_notify.rb +146 -0
  73. data/lib/puma/server.rb +409 -704
  74. data/lib/puma/single.rb +29 -72
  75. data/lib/puma/state_file.rb +48 -9
  76. data/lib/puma/thread_pool.rb +234 -93
  77. data/lib/puma/util.rb +23 -10
  78. data/lib/puma.rb +68 -5
  79. data/lib/rack/handler/puma.rb +119 -86
  80. data/tools/Dockerfile +16 -0
  81. data/tools/trickletest.rb +0 -1
  82. metadata +55 -33
  83. data/ext/puma_http11/io_buffer.c +0 -155
  84. data/lib/puma/accept_nonblock.rb +0 -23
  85. data/lib/puma/compat.rb +0 -14
  86. data/lib/puma/convenient.rb +0 -23
  87. data/lib/puma/daemon_ext.rb +0 -31
  88. data/lib/puma/delegation.rb +0 -11
  89. data/lib/puma/java_io_buffer.rb +0 -45
  90. data/lib/puma/rack/backports/uri/common_193.rb +0 -33
  91. data/lib/puma/tcp_logger.rb +0 -39
  92. data/tools/jungle/README.md +0 -13
  93. data/tools/jungle/init.d/README.md +0 -59
  94. data/tools/jungle/init.d/puma +0 -421
  95. data/tools/jungle/init.d/run-puma +0 -18
  96. data/tools/jungle/upstart/README.md +0 -61
  97. data/tools/jungle/upstart/puma-manager.conf +0 -31
  98. data/tools/jungle/upstart/puma.conf +0 -69
@@ -1,111 +1,144 @@
1
- require 'rack/handler'
2
-
3
- module Rack
4
- module Handler
5
- module Puma
6
- DEFAULT_OPTIONS = {
7
- :Verbose => false,
8
- :Silent => false
9
- }
10
-
11
- def self.config(app, options = {})
12
- require 'puma/configuration'
13
- require 'puma/events'
14
- require 'puma/launcher'
15
-
16
- default_options = DEFAULT_OPTIONS.dup
17
-
18
- # Libraries pass in values such as :Port and there is no way to determine
19
- # if it is a default provided by the library or a special value provided
20
- # by the user. A special key `user_supplied_options` can be passed. This
21
- # contains an array of all explicitly defined user options. We then
22
- # know that all other values are defaults
23
- if user_supplied_options = options.delete(:user_supplied_options)
24
- (options.keys - user_supplied_options).each do |k|
25
- default_options[k] = options.delete(k)
26
- end
1
+ # frozen_string_literal: true
2
+
3
+ module Puma
4
+
5
+ # This module is used as an 'include' file in code at bottom of file. It loads
6
+ # into either `Rackup::Handler::Puma` or `Rack::Handler::Puma`.
7
+
8
+ module RackHandler
9
+ DEFAULT_OPTIONS = {
10
+ :Verbose => false,
11
+ :Silent => false
12
+ }
13
+
14
+ def config(app, options = {})
15
+ require_relative '../../puma'
16
+ require_relative '../../puma/configuration'
17
+ require_relative '../../puma/log_writer'
18
+ require_relative '../../puma/launcher'
19
+
20
+ default_options = DEFAULT_OPTIONS.dup
21
+
22
+ # Libraries pass in values such as :Port and there is no way to determine
23
+ # if it is a default provided by the library or a special value provided
24
+ # by the user. A special key `user_supplied_options` can be passed. This
25
+ # contains an array of all explicitly defined user options. We then
26
+ # know that all other values are defaults
27
+ if user_supplied_options = options.delete(:user_supplied_options)
28
+ (options.keys - user_supplied_options).each do |k|
29
+ default_options[k] = options.delete(k)
27
30
  end
31
+ end
28
32
 
29
- conf = ::Puma::Configuration.new(options, default_options) do |user_config, file_config, default_config|
30
- user_config.quiet
31
-
32
- if options.delete(:Verbose)
33
- app = Rack::CommonLogger.new(app, STDOUT)
34
- end
33
+ @events = options[:events] || ::Puma::Events.new
35
34
 
36
- if options[:environment]
37
- user_config.environment options[:environment]
35
+ conf = ::Puma::Configuration.new(options, default_options.merge({events: @events})) do |user_config, file_config, default_config|
36
+ if options.delete(:Verbose)
37
+ begin
38
+ require 'rack/commonlogger' # Rack 1.x
39
+ rescue LoadError
40
+ require 'rack/common_logger' # Rack 2 and later
38
41
  end
42
+ app = ::Rack::CommonLogger.new(app, STDOUT)
43
+ end
39
44
 
40
- if options[:Threads]
41
- min, max = options.delete(:Threads).split(':', 2)
42
- user_config.threads min, max
43
- end
45
+ if options[:environment]
46
+ user_config.environment options[:environment]
47
+ end
44
48
 
45
- if options[:Host] || options[:Port]
46
- host = options[:Host] || default_options[:Host]
47
- port = options[:Port] || default_options[:Port]
48
- self.set_host_port_to_config(host, port, user_config)
49
- end
49
+ if options[:Threads]
50
+ min, max = options.delete(:Threads).split(':', 2)
51
+ user_config.threads min, max
52
+ end
50
53
 
51
- self.set_host_port_to_config(default_options[:Host], default_options[:Port], default_config)
54
+ if options[:Host] || options[:Port]
55
+ host = options[:Host] || default_options[:Host]
56
+ port = options[:Port] || default_options[:Port]
57
+ self.set_host_port_to_config(host, port, user_config)
58
+ end
52
59
 
53
- user_config.app app
60
+ if default_options[:Host]
61
+ file_config.set_default_host(default_options[:Host])
54
62
  end
55
- conf
63
+ self.set_host_port_to_config(default_options[:Host], default_options[:Port], default_config)
64
+
65
+ user_config.app app
56
66
  end
67
+ conf
68
+ end
69
+
70
+ def run(app, **options)
71
+ conf = self.config(app, options)
72
+
73
+ log_writer = options.delete(:Silent) ? ::Puma::LogWriter.strings : ::Puma::LogWriter.stdio
57
74
 
75
+ launcher = ::Puma::Launcher.new(conf, :log_writer => log_writer, events: @events)
58
76
 
77
+ yield launcher if block_given?
78
+ begin
79
+ launcher.run
80
+ rescue Interrupt
81
+ puts "* Gracefully stopping, waiting for requests to finish"
82
+ launcher.stop
83
+ puts "* Goodbye!"
84
+ end
85
+ end
59
86
 
60
- def self.run(app, options = {})
61
- conf = self.config(app, options)
87
+ def valid_options
88
+ {
89
+ "Host=HOST" => "Hostname to listen on (default: localhost)",
90
+ "Port=PORT" => "Port to listen on (default: 8080)",
91
+ "Threads=MIN:MAX" => "min:max threads to use (default 0:16)",
92
+ "Verbose" => "Don't report each request (default: false)"
93
+ }
94
+ end
62
95
 
63
- events = options.delete(:Silent) ? ::Puma::Events.strings : ::Puma::Events.stdio
96
+ def set_host_port_to_config(host, port, config)
97
+ config.clear_binds! if host || port
64
98
 
65
- launcher = ::Puma::Launcher.new(conf, :events => events)
99
+ if host&.start_with? '.', '/', '@'
100
+ config.bind "unix://#{host}"
101
+ elsif host&.start_with? 'ssl://'
102
+ uri = URI.parse(host)
103
+ uri.port ||= port || ::Puma::Configuration::DEFAULTS[:tcp_port]
104
+ config.bind uri.to_s
105
+ else
66
106
 
67
- yield launcher if block_given?
68
- begin
69
- launcher.run
70
- rescue Interrupt
71
- puts "* Gracefully stopping, waiting for requests to finish"
72
- launcher.stop
73
- puts "* Goodbye!"
107
+ if host
108
+ port ||= ::Puma::Configuration::DEFAULTS[:tcp_port]
74
109
  end
75
- end
76
110
 
77
- def self.valid_options
78
- {
79
- "Host=HOST" => "Hostname to listen on (default: localhost)",
80
- "Port=PORT" => "Port to listen on (default: 8080)",
81
- "Threads=MIN:MAX" => "min:max threads to use (default 0:16)",
82
- "Verbose" => "Don't report each request (default: false)"
83
- }
111
+ if port
112
+ host ||= ::Puma::Configuration::DEFAULTS[:tcp_host]
113
+ config.port port, host
114
+ end
84
115
  end
85
- private
86
- def self.set_host_port_to_config(host, port, config)
87
- config.clear_binds! if host || port
88
-
89
- if host && (host[0,1] == '.' || host[0,1] == '/')
90
- config.bind "unix://#{host}"
91
- elsif host && host =~ /^ssl:\/\//
92
- uri = URI.parse(host)
93
- uri.port ||= port || ::Puma::Configuration::DefaultTCPPort
94
- config.bind uri.to_s
95
- else
96
-
97
- if host
98
- port ||= ::Puma::Configuration::DefaultTCPPort
99
- end
116
+ end
117
+ end
118
+ end
100
119
 
101
- if port
102
- host ||= ::Puma::Configuration::DefaultTCPHost
103
- config.port port, host
104
- end
120
+ # rackup was removed in Rack 3, it is now a separate gem
121
+ if Object.const_defined?(:Rackup) && ::Rackup.const_defined?(:Handler)
122
+ module Rackup
123
+ module Handler
124
+ module Puma
125
+ class << self
126
+ include ::Puma::RackHandler
127
+ end
128
+ end
129
+ register :puma, Puma
130
+ end
131
+ end
132
+ else
133
+ do_register = Object.const_defined?(:Rack) && ::Rack.release < '3'
134
+ module Rack
135
+ module Handler
136
+ module Puma
137
+ class << self
138
+ include ::Puma::RackHandler
105
139
  end
106
140
  end
107
141
  end
108
-
109
- register :puma, Puma
110
142
  end
143
+ ::Rack::Handler.register(:puma, ::Rack::Handler::Puma) if do_register
111
144
  end
data/tools/Dockerfile ADDED
@@ -0,0 +1,16 @@
1
+ # Use this Dockerfile to create minimal reproductions of issues
2
+
3
+ FROM ruby:3.2
4
+
5
+ # throw errors if Gemfile has been modified since Gemfile.lock
6
+ RUN bundle config --global frozen 1
7
+
8
+ WORKDIR /usr/src/app
9
+
10
+ COPY . .
11
+
12
+ RUN bundle install
13
+ RUN bundle exec rake compile
14
+
15
+ EXPOSE 9292
16
+ CMD bundle exec bin/puma test/rackup/hello.ru
data/tools/trickletest.rb CHANGED
@@ -38,7 +38,6 @@ ARGV[1].to_i.times do
38
38
  do_test(st, size)
39
39
  end
40
40
 
41
- t.abort_on_exception = true
42
41
  threads << t
43
42
  end
44
43
 
metadata CHANGED
@@ -1,19 +1,33 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puma
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.11.1
4
+ version: 6.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Phoenix
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2018-01-19 00:00:00.000000000 Z
12
- dependencies: []
13
- description: Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server
14
- for Ruby/Rack applications. Puma is intended for use in both development and production
15
- environments. It's great for highly concurrent Ruby implementations such as Rubinius
16
- and JRuby as well as as providing process worker support to support CRuby well.
10
+ date: 2025-01-28 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: nio4r
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '2.0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '2.0'
26
+ description: |
27
+ Puma is a simple, fast, multi-threaded, and highly parallel HTTP 1.1 server
28
+ for Ruby/Rack applications. Puma is intended for use in both development and
29
+ production environments. It's great for highly parallel Ruby implementations such as
30
+ JRuby and TruffleRuby as well as as providing process worker support to support CRuby well.
17
31
  email:
18
32
  - evan@phx.io
19
33
  executables:
@@ -30,15 +44,27 @@ files:
30
44
  - bin/puma-wild
31
45
  - bin/pumactl
32
46
  - docs/architecture.md
47
+ - docs/compile_options.md
33
48
  - docs/deployment.md
49
+ - docs/fork_worker.md
34
50
  - docs/images/puma-connection-flow-no-reactor.png
35
51
  - docs/images/puma-connection-flow.png
36
52
  - docs/images/puma-general-arch.png
53
+ - docs/java_options.md
54
+ - docs/jungle/README.md
55
+ - docs/jungle/rc.d/README.md
56
+ - docs/jungle/rc.d/puma
57
+ - docs/jungle/rc.d/puma.conf
58
+ - docs/kubernetes.md
37
59
  - docs/nginx.md
38
60
  - docs/plugins.md
61
+ - docs/rails_dev_mode.md
39
62
  - docs/restart.md
40
63
  - docs/signals.md
64
+ - docs/stats.md
41
65
  - docs/systemd.md
66
+ - docs/testing_benchmarks_local_files.md
67
+ - docs/testing_test_rackup_ci_files.md
42
68
  - ext/puma_http11/PumaHttp11Service.java
43
69
  - ext/puma_http11/ext_help.h
44
70
  - ext/puma_http11/extconf.rb
@@ -47,65 +73,64 @@ files:
47
73
  - ext/puma_http11/http11_parser.java.rl
48
74
  - ext/puma_http11/http11_parser.rl
49
75
  - ext/puma_http11/http11_parser_common.rl
50
- - ext/puma_http11/io_buffer.c
51
76
  - ext/puma_http11/mini_ssl.c
77
+ - ext/puma_http11/no_ssl/PumaHttp11Service.java
52
78
  - ext/puma_http11/org/jruby/puma/Http11.java
53
79
  - ext/puma_http11/org/jruby/puma/Http11Parser.java
54
80
  - ext/puma_http11/org/jruby/puma/MiniSSL.java
55
81
  - ext/puma_http11/puma_http11.c
56
82
  - lib/puma.rb
57
- - lib/puma/accept_nonblock.rb
58
83
  - lib/puma/app/status.rb
59
84
  - lib/puma/binder.rb
60
85
  - lib/puma/cli.rb
61
86
  - lib/puma/client.rb
62
87
  - lib/puma/cluster.rb
88
+ - lib/puma/cluster/worker.rb
89
+ - lib/puma/cluster/worker_handle.rb
63
90
  - lib/puma/commonlogger.rb
64
- - lib/puma/compat.rb
65
91
  - lib/puma/configuration.rb
66
92
  - lib/puma/const.rb
67
93
  - lib/puma/control_cli.rb
68
- - lib/puma/convenient.rb
69
- - lib/puma/daemon_ext.rb
70
- - lib/puma/delegation.rb
71
94
  - lib/puma/detect.rb
72
95
  - lib/puma/dsl.rb
96
+ - lib/puma/error_logger.rb
73
97
  - lib/puma/events.rb
74
98
  - lib/puma/io_buffer.rb
75
- - lib/puma/java_io_buffer.rb
76
99
  - lib/puma/jruby_restart.rb
100
+ - lib/puma/json_serialization.rb
77
101
  - lib/puma/launcher.rb
102
+ - lib/puma/launcher/bundle_pruner.rb
103
+ - lib/puma/log_writer.rb
78
104
  - lib/puma/minissl.rb
105
+ - lib/puma/minissl/context_builder.rb
79
106
  - lib/puma/null_io.rb
80
107
  - lib/puma/plugin.rb
108
+ - lib/puma/plugin/systemd.rb
81
109
  - lib/puma/plugin/tmp_restart.rb
82
- - lib/puma/rack/backports/uri/common_193.rb
83
110
  - lib/puma/rack/builder.rb
84
111
  - lib/puma/rack/urlmap.rb
85
112
  - lib/puma/rack_default.rb
86
113
  - lib/puma/reactor.rb
114
+ - lib/puma/request.rb
87
115
  - lib/puma/runner.rb
116
+ - lib/puma/sd_notify.rb
88
117
  - lib/puma/server.rb
89
118
  - lib/puma/single.rb
90
119
  - lib/puma/state_file.rb
91
- - lib/puma/tcp_logger.rb
92
120
  - lib/puma/thread_pool.rb
93
121
  - lib/puma/util.rb
94
122
  - lib/rack/handler/puma.rb
95
- - tools/jungle/README.md
96
- - tools/jungle/init.d/README.md
97
- - tools/jungle/init.d/puma
98
- - tools/jungle/init.d/run-puma
99
- - tools/jungle/upstart/README.md
100
- - tools/jungle/upstart/puma-manager.conf
101
- - tools/jungle/upstart/puma.conf
123
+ - tools/Dockerfile
102
124
  - tools/trickletest.rb
103
- homepage: http://puma.io
125
+ homepage: https://puma.io
104
126
  licenses:
105
127
  - BSD-3-Clause
106
128
  metadata:
107
- msys2_mingw_dependencies: openssl
108
- post_install_message:
129
+ bug_tracker_uri: https://github.com/puma/puma/issues
130
+ changelog_uri: https://github.com/puma/puma/blob/master/History.md
131
+ homepage_uri: https://puma.io
132
+ source_code_uri: https://github.com/puma/puma
133
+ rubygems_mfa_required: 'true'
109
134
  rdoc_options: []
110
135
  require_paths:
111
136
  - lib
@@ -113,17 +138,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
113
138
  requirements:
114
139
  - - ">="
115
140
  - !ruby/object:Gem::Version
116
- version: 1.9.3
141
+ version: '2.4'
117
142
  required_rubygems_version: !ruby/object:Gem::Requirement
118
143
  requirements:
119
144
  - - ">="
120
145
  - !ruby/object:Gem::Version
121
146
  version: '0'
122
147
  requirements: []
123
- rubyforge_project:
124
- rubygems_version: 2.6.8
125
- signing_key:
148
+ rubygems_version: 3.6.3
126
149
  specification_version: 4
127
- summary: Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for
128
- Ruby/Rack applications
150
+ summary: A Ruby/Rack web server built for parallelism.
129
151
  test_files: []
@@ -1,155 +0,0 @@
1
- #define RSTRING_NOT_MODIFIED 1
2
- #include "ruby.h"
3
-
4
- #include <sys/types.h>
5
-
6
- struct buf_int {
7
- uint8_t* top;
8
- uint8_t* cur;
9
-
10
- size_t size;
11
- };
12
-
13
- #define BUF_DEFAULT_SIZE 4096
14
- #define BUF_TOLERANCE 32
15
-
16
- static void buf_free(struct buf_int* internal) {
17
- xfree(internal->top);
18
- xfree(internal);
19
- }
20
-
21
- static VALUE buf_alloc(VALUE self) {
22
- VALUE buf;
23
- struct buf_int* internal;
24
-
25
- buf = Data_Make_Struct(self, struct buf_int, 0, buf_free, internal);
26
-
27
- internal->size = BUF_DEFAULT_SIZE;
28
- internal->top = ALLOC_N(uint8_t, BUF_DEFAULT_SIZE);
29
- internal->cur = internal->top;
30
-
31
- return buf;
32
- }
33
-
34
- static VALUE buf_append(VALUE self, VALUE str) {
35
- struct buf_int* b;
36
- size_t used, str_len, new_size;
37
-
38
- Data_Get_Struct(self, struct buf_int, b);
39
-
40
- used = b->cur - b->top;
41
-
42
- StringValue(str);
43
- str_len = RSTRING_LEN(str);
44
-
45
- new_size = used + str_len;
46
-
47
- if(new_size > b->size) {
48
- size_t n = b->size + (b->size / 2);
49
- uint8_t* top;
50
- uint8_t* old;
51
-
52
- new_size = (n > new_size ? n : new_size + BUF_TOLERANCE);
53
-
54
- top = ALLOC_N(uint8_t, new_size);
55
- old = b->top;
56
- memcpy(top, old, used);
57
- b->top = top;
58
- b->cur = top + used;
59
- b->size = new_size;
60
- xfree(old);
61
- }
62
-
63
- memcpy(b->cur, RSTRING_PTR(str), str_len);
64
- b->cur += str_len;
65
-
66
- return self;
67
- }
68
-
69
- static VALUE buf_append2(int argc, VALUE* argv, VALUE self) {
70
- struct buf_int* b;
71
- size_t used, new_size;
72
- int i;
73
- VALUE str;
74
-
75
- Data_Get_Struct(self, struct buf_int, b);
76
-
77
- used = b->cur - b->top;
78
- new_size = used;
79
-
80
- for(i = 0; i < argc; i++) {
81
- StringValue(argv[i]);
82
-
83
- str = argv[i];
84
-
85
- new_size += RSTRING_LEN(str);
86
- }
87
-
88
- if(new_size > b->size) {
89
- size_t n = b->size + (b->size / 2);
90
- uint8_t* top;
91
- uint8_t* old;
92
-
93
- new_size = (n > new_size ? n : new_size + BUF_TOLERANCE);
94
-
95
- top = ALLOC_N(uint8_t, new_size);
96
- old = b->top;
97
- memcpy(top, old, used);
98
- b->top = top;
99
- b->cur = top + used;
100
- b->size = new_size;
101
- xfree(old);
102
- }
103
-
104
- for(i = 0; i < argc; i++) {
105
- long str_len;
106
- str = argv[i];
107
- str_len = RSTRING_LEN(str);
108
- memcpy(b->cur, RSTRING_PTR(str), str_len);
109
- b->cur += str_len;
110
- }
111
-
112
- return self;
113
- }
114
-
115
- static VALUE buf_to_str(VALUE self) {
116
- struct buf_int* b;
117
- Data_Get_Struct(self, struct buf_int, b);
118
-
119
- return rb_str_new((const char*)(b->top), b->cur - b->top);
120
- }
121
-
122
- static VALUE buf_used(VALUE self) {
123
- struct buf_int* b;
124
- Data_Get_Struct(self, struct buf_int, b);
125
-
126
- return INT2FIX(b->cur - b->top);
127
- }
128
-
129
- static VALUE buf_capa(VALUE self) {
130
- struct buf_int* b;
131
- Data_Get_Struct(self, struct buf_int, b);
132
-
133
- return INT2FIX(b->size);
134
- }
135
-
136
- static VALUE buf_reset(VALUE self) {
137
- struct buf_int* b;
138
- Data_Get_Struct(self, struct buf_int, b);
139
-
140
- b->cur = b->top;
141
- return self;
142
- }
143
-
144
- void Init_io_buffer(VALUE puma) {
145
- VALUE buf = rb_define_class_under(puma, "IOBuffer", rb_cObject);
146
-
147
- rb_define_alloc_func(buf, buf_alloc);
148
- rb_define_method(buf, "<<", buf_append, 1);
149
- rb_define_method(buf, "append", buf_append2, -1);
150
- rb_define_method(buf, "to_str", buf_to_str, 0);
151
- rb_define_method(buf, "to_s", buf_to_str, 0);
152
- rb_define_method(buf, "used", buf_used, 0);
153
- rb_define_method(buf, "capacity", buf_capa, 0);
154
- rb_define_method(buf, "reset", buf_reset, 0);
155
- }
@@ -1,23 +0,0 @@
1
- require 'openssl'
2
-
3
- module OpenSSL
4
- module SSL
5
- class SSLServer
6
- unless public_method_defined? :accept_nonblock
7
- def accept_nonblock
8
- sock = @svr.accept_nonblock
9
-
10
- begin
11
- ssl = OpenSSL::SSL::SSLSocket.new(sock, @ctx)
12
- ssl.sync_close = true
13
- ssl.accept if @start_immediately
14
- ssl
15
- rescue SSLError => ex
16
- sock.close
17
- raise ex
18
- end
19
- end
20
- end
21
- end
22
- end
23
- end
data/lib/puma/compat.rb DELETED
@@ -1,14 +0,0 @@
1
- # Provides code to work properly on 1.8 and 1.9
2
-
3
- class String
4
- unless method_defined? :bytesize
5
- alias_method :bytesize, :size
6
- end
7
-
8
- unless method_defined? :byteslice
9
- def byteslice(*arg)
10
- enc = self.encoding
11
- self.dup.force_encoding(Encoding::ASCII_8BIT).slice(*arg).force_encoding(enc)
12
- end
13
- end
14
- end
@@ -1,23 +0,0 @@
1
- require 'puma/launcher'
2
- require 'puma/configuration'
3
-
4
- module Puma
5
- def self.run(opts={})
6
- cfg = Puma::Configuration.new do |user_config|
7
- if port = opts[:port]
8
- user_config.port port
9
- end
10
-
11
- user_config.quiet
12
-
13
- yield c
14
- end
15
-
16
- cfg.clamp
17
-
18
- events = Puma::Events.null
19
-
20
- launcher = Puma::Launcher.new cfg, :events => events
21
- launcher.run
22
- end
23
- end
@@ -1,31 +0,0 @@
1
- module Process
2
-
3
- # This overrides the default version because it is broken if it
4
- # exists.
5
-
6
- if respond_to? :daemon
7
- class << self
8
- remove_method :daemon
9
- end
10
- end
11
-
12
- def self.daemon(nochdir=false, noclose=false)
13
- exit if fork # Parent exits, child continues.
14
-
15
- Process.setsid # Become session leader.
16
-
17
- exit if fork # Zap session leader. See [1].
18
-
19
- Dir.chdir "/" unless nochdir # Release old working directory.
20
-
21
- if !noclose
22
- STDIN.reopen File.open("/dev/null", "r")
23
-
24
- null_out = File.open "/dev/null", "w"
25
- STDOUT.reopen null_out
26
- STDERR.reopen null_out
27
- end
28
-
29
- 0
30
- end
31
- end