7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# File 'lib/universal_renderer/client/stream/execution.rb', line 7
def self.perform_streaming(
http_client,
http_post_request,
response,
stream_uri
)
success = false
chunks_written = false
upstream_connection = nil
begin
http_client.request(http_post_request) do |node_res, connection|
upstream_connection = connection
if node_res.is_a?(Net::HTTPSuccess)
node_res.read_body do |chunk|
chunks_written = true
response.stream.write(chunk)
end
success = true
else
UniversalRenderer.log do |log|
log.error(
"SSR stream server at #{stream_uri} responded with #{node_res.code} #{node_res.message}."
)
end
end
end
rescue StandardError => e
UniversalRenderer.log do |log|
log.error(
"Error during SSR data transfer or stream writing from #{stream_uri}: #{e.class.name} - #{e.message}"
)
end
HttpPool.close(upstream_connection) if upstream_connection
success = chunks_written
ensure
response.stream.close if success && !response.stream.closed?
end
success
end
|