grpc 1.4.5-x86-linux → 1.6.0.pre1-x86-linux

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/etc/roots.pem +0 -412
  3. data/grpc_c.32.ruby +0 -0
  4. data/grpc_c.64.ruby +0 -0
  5. data/src/ruby/bin/apis/google/protobuf/empty.rb +10 -25
  6. data/src/ruby/bin/apis/pubsub_demo.rb +10 -25
  7. data/src/ruby/bin/apis/tech/pubsub/proto/pubsub.rb +10 -25
  8. data/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb +10 -25
  9. data/src/ruby/bin/math_client.rb +10 -25
  10. data/src/ruby/bin/math_server.rb +10 -25
  11. data/src/ruby/bin/math_services_pb.rb +10 -25
  12. data/src/ruby/bin/noproto_client.rb +10 -25
  13. data/src/ruby/bin/noproto_server.rb +10 -25
  14. data/src/ruby/ext/grpc/extconf.rb +10 -25
  15. data/src/ruby/ext/grpc/rb_byte_buffer.c +10 -25
  16. data/src/ruby/ext/grpc/rb_byte_buffer.h +10 -25
  17. data/src/ruby/ext/grpc/rb_call.c +44 -25
  18. data/src/ruby/ext/grpc/rb_call.h +10 -25
  19. data/src/ruby/ext/grpc/rb_call_credentials.c +10 -25
  20. data/src/ruby/ext/grpc/rb_call_credentials.h +10 -25
  21. data/src/ruby/ext/grpc/rb_channel.c +10 -25
  22. data/src/ruby/ext/grpc/rb_channel.h +10 -25
  23. data/src/ruby/ext/grpc/rb_channel_args.c +10 -25
  24. data/src/ruby/ext/grpc/rb_channel_args.h +10 -25
  25. data/src/ruby/ext/grpc/rb_channel_credentials.c +10 -25
  26. data/src/ruby/ext/grpc/rb_channel_credentials.h +10 -25
  27. data/src/ruby/ext/grpc/rb_completion_queue.c +10 -25
  28. data/src/ruby/ext/grpc/rb_completion_queue.h +10 -25
  29. data/src/ruby/ext/grpc/rb_compression_options.c +10 -25
  30. data/src/ruby/ext/grpc/rb_compression_options.h +10 -25
  31. data/src/ruby/ext/grpc/rb_event_thread.c +10 -25
  32. data/src/ruby/ext/grpc/rb_event_thread.h +10 -25
  33. data/src/ruby/ext/grpc/rb_grpc.c +10 -25
  34. data/src/ruby/ext/grpc/rb_grpc.h +10 -25
  35. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +10 -25
  36. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +16 -31
  37. data/src/ruby/ext/grpc/rb_loader.c +10 -25
  38. data/src/ruby/ext/grpc/rb_loader.h +10 -25
  39. data/src/ruby/ext/grpc/rb_server.c +10 -25
  40. data/src/ruby/ext/grpc/rb_server.h +10 -25
  41. data/src/ruby/ext/grpc/rb_server_credentials.c +10 -25
  42. data/src/ruby/ext/grpc/rb_server_credentials.h +10 -25
  43. data/src/ruby/lib/grpc.rb +10 -25
  44. data/src/ruby/lib/grpc/2.0/grpc_c.so +0 -0
  45. data/src/ruby/lib/grpc/2.1/grpc_c.so +0 -0
  46. data/src/ruby/lib/grpc/2.2/grpc_c.so +0 -0
  47. data/src/ruby/lib/grpc/2.3/grpc_c.so +0 -0
  48. data/src/ruby/lib/grpc/2.4/grpc_c.so +0 -0
  49. data/src/ruby/lib/grpc/core/time_consts.rb +10 -25
  50. data/src/ruby/lib/grpc/errors.rb +16 -30
  51. data/src/ruby/lib/grpc/generic/active_call.rb +25 -27
  52. data/src/ruby/lib/grpc/generic/bidi_call.rb +17 -27
  53. data/src/ruby/lib/grpc/generic/client_stub.rb +10 -25
  54. data/src/ruby/lib/grpc/generic/rpc_desc.rb +10 -25
  55. data/src/ruby/lib/grpc/generic/rpc_server.rb +10 -25
  56. data/src/ruby/lib/grpc/generic/service.rb +10 -25
  57. data/src/ruby/lib/grpc/grpc.rb +10 -25
  58. data/src/ruby/lib/grpc/grpc_c.so +0 -0
  59. data/src/ruby/lib/grpc/logconfig.rb +10 -25
  60. data/src/ruby/lib/grpc/notifier.rb +10 -25
  61. data/src/ruby/lib/grpc/version.rb +11 -26
  62. data/src/ruby/pb/generate_proto_ruby.sh +10 -25
  63. data/src/ruby/pb/grpc/health/checker.rb +10 -25
  64. data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +10 -25
  65. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +10 -25
  66. data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +10 -25
  67. data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +10 -25
  68. data/src/ruby/pb/test/client.rb +10 -25
  69. data/src/ruby/pb/test/server.rb +10 -25
  70. data/src/ruby/spec/call_credentials_spec.rb +10 -25
  71. data/src/ruby/spec/call_spec.rb +43 -25
  72. data/src/ruby/spec/channel_connection_spec.rb +10 -25
  73. data/src/ruby/spec/channel_credentials_spec.rb +11 -26
  74. data/src/ruby/spec/channel_spec.rb +10 -25
  75. data/src/ruby/spec/client_auth_spec.rb +10 -25
  76. data/src/ruby/spec/client_server_spec.rb +66 -25
  77. data/src/ruby/spec/compression_options_spec.rb +10 -25
  78. data/src/ruby/spec/error_sanity_spec.rb +10 -25
  79. data/src/ruby/spec/generic/active_call_spec.rb +10 -25
  80. data/src/ruby/spec/generic/client_stub_spec.rb +146 -35
  81. data/src/ruby/spec/generic/rpc_desc_spec.rb +10 -25
  82. data/src/ruby/spec/generic/rpc_server_pool_spec.rb +10 -25
  83. data/src/ruby/spec/generic/rpc_server_spec.rb +124 -34
  84. data/src/ruby/spec/generic/service_spec.rb +10 -25
  85. data/src/ruby/spec/pb/duplicate/codegen_spec.rb +10 -25
  86. data/src/ruby/spec/pb/health/checker_spec.rb +10 -25
  87. data/src/ruby/spec/server_credentials_spec.rb +10 -25
  88. data/src/ruby/spec/server_spec.rb +10 -25
  89. data/src/ruby/spec/spec_helper.rb +10 -25
  90. data/src/ruby/spec/time_consts_spec.rb +10 -25
  91. metadata +5 -5
@@ -1,31 +1,16 @@
1
- # Copyright 2015, Google Inc.
2
- # All rights reserved.
1
+ # Copyright 2015 gRPC authors.
3
2
  #
4
- # Redistribution and use in source and binary forms, with or without
5
- # modification, are permitted provided that the following conditions are
6
- # met:
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
7
6
  #
8
- # * Redistributions of source code must retain the above copyright
9
- # notice, this list of conditions and the following disclaimer.
10
- # * Redistributions in binary form must reproduce the above
11
- # copyright notice, this list of conditions and the following disclaimer
12
- # in the documentation and/or other materials provided with the
13
- # distribution.
14
- # * Neither the name of Google Inc. nor the names of its
15
- # contributors may be used to endorse or promote products derived from
16
- # this software without specific prior written permission.
7
+ # http://www.apache.org/licenses/LICENSE-2.0
17
8
  #
18
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
29
14
 
30
15
  require 'grpc'
31
16
  require 'grpc/generic/rpc_desc'
@@ -1,31 +1,16 @@
1
- # Copyright 2015, Google Inc.
2
- # All rights reserved.
1
+ # Copyright 2015 gRPC authors.
3
2
  #
4
- # Redistribution and use in source and binary forms, with or without
5
- # modification, are permitted provided that the following conditions are
6
- # met:
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
7
6
  #
8
- # * Redistributions of source code must retain the above copyright
9
- # notice, this list of conditions and the following disclaimer.
10
- # * Redistributions in binary form must reproduce the above
11
- # copyright notice, this list of conditions and the following disclaimer
12
- # in the documentation and/or other materials provided with the
13
- # distribution.
14
- # * Neither the name of Google Inc. nor the names of its
15
- # contributors may be used to endorse or promote products derived from
16
- # this software without specific prior written permission.
7
+ # http://www.apache.org/licenses/LICENSE-2.0
17
8
  #
18
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
29
14
 
30
15
  require 'grpc'
31
16
 
@@ -1,31 +1,16 @@
1
- # Copyright 2015, Google Inc.
2
- # All rights reserved.
1
+ # Copyright 2015 gRPC authors.
3
2
  #
4
- # Redistribution and use in source and binary forms, with or without
5
- # modification, are permitted provided that the following conditions are
6
- # met:
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
7
6
  #
8
- # * Redistributions of source code must retain the above copyright
9
- # notice, this list of conditions and the following disclaimer.
10
- # * Redistributions in binary form must reproduce the above
11
- # copyright notice, this list of conditions and the following disclaimer
12
- # in the documentation and/or other materials provided with the
13
- # distribution.
14
- # * Neither the name of Google Inc. nor the names of its
15
- # contributors may be used to endorse or promote products derived from
16
- # this software without specific prior written permission.
7
+ # http://www.apache.org/licenses/LICENSE-2.0
17
8
  #
18
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
29
14
 
30
15
  require 'grpc'
31
16
 
@@ -126,6 +111,32 @@ end
126
111
 
127
112
  SlowStub = SlowService.rpc_stub_class
128
113
 
114
+ # A test service that allows a synchronized RPC cancellation
115
+ class SynchronizedCancellationService
116
+ include GRPC::GenericService
117
+ rpc :an_rpc, EchoMsg, EchoMsg
118
+ attr_reader :received_md, :delay
119
+
120
+ # notify_request_received and wait_until_rpc_cancelled are
121
+ # callbacks to synchronously allow the client to proceed with
122
+ # cancellation (after the unary request has been received),
123
+ # and to synchronously wait until the client has cancelled the
124
+ # current RPC.
125
+ def initialize(notify_request_received, wait_until_rpc_cancelled)
126
+ @notify_request_received = notify_request_received
127
+ @wait_until_rpc_cancelled = wait_until_rpc_cancelled
128
+ end
129
+
130
+ def an_rpc(req, _call)
131
+ GRPC.logger.info('starting a synchronusly cancelled rpc')
132
+ @notify_request_received.call(req)
133
+ @wait_until_rpc_cancelled.call
134
+ req # send back the req as the response
135
+ end
136
+ end
137
+
138
+ SynchronizedCancellationStub = SynchronizedCancellationService.rpc_stub_class
139
+
129
140
  # a test service that hangs onto call objects
130
141
  # and uses them after the server-side call has been
131
142
  # finished
@@ -167,6 +178,18 @@ end
167
178
 
168
179
  CheckCallAfterFinishedServiceStub = CheckCallAfterFinishedService.rpc_stub_class
169
180
 
181
+ # A service with a bidi streaming method.
182
+ class BidiService
183
+ include GRPC::GenericService
184
+ rpc :server_sends_bad_input, stream(EchoMsg), stream(EchoMsg)
185
+
186
+ def server_sends_bad_input(_, _)
187
+ 'bad response. (not an enumerable, client sees an error)'
188
+ end
189
+ end
190
+
191
+ BidiStub = BidiService.rpc_stub_class
192
+
170
193
  describe GRPC::RpcServer do
171
194
  RpcServer = GRPC::RpcServer
172
195
  StatusCodes = GRPC::Core::StatusCodes
@@ -399,20 +422,64 @@ describe GRPC::RpcServer do
399
422
  end
400
423
 
401
424
  it 'should handle cancellation correctly', server: true do
402
- service = SlowService.new
425
+ request_received = false
426
+ request_received_mu = Mutex.new
427
+ request_received_cv = ConditionVariable.new
428
+ notify_request_received = proc do |req|
429
+ request_received_mu.synchronize do
430
+ fail 'req is nil' if req.nil?
431
+ expect(req.is_a?(EchoMsg)).to be true
432
+ fail 'test bug - already set' if request_received
433
+ request_received = true
434
+ request_received_cv.signal
435
+ end
436
+ end
437
+
438
+ rpc_cancelled = false
439
+ rpc_cancelled_mu = Mutex.new
440
+ rpc_cancelled_cv = ConditionVariable.new
441
+ wait_until_rpc_cancelled = proc do
442
+ rpc_cancelled_mu.synchronize do
443
+ loop do
444
+ break if rpc_cancelled
445
+ rpc_cancelled_cv.wait(rpc_cancelled_mu)
446
+ end
447
+ end
448
+ end
449
+
450
+ service = SynchronizedCancellationService.new(notify_request_received,
451
+ wait_until_rpc_cancelled)
403
452
  @srv.handle(service)
404
- t = Thread.new { @srv.run }
453
+ srv_thd = Thread.new { @srv.run }
405
454
  @srv.wait_till_running
406
455
  req = EchoMsg.new
407
- stub = SlowStub.new(@host, :this_channel_is_insecure, **client_opts)
408
- op = stub.an_rpc(req, metadata: { k1: 'v1', k2: 'v2' }, return_op: true)
409
- Thread.new do # cancel the call
410
- sleep 0.1
411
- op.cancel
456
+ stub = SynchronizedCancellationStub.new(@host,
457
+ :this_channel_is_insecure,
458
+ **client_opts)
459
+ op = stub.an_rpc(req, return_op: true)
460
+
461
+ client_thd = Thread.new do
462
+ expect { op.execute }.to raise_error GRPC::Cancelled
463
+ end
464
+
465
+ request_received_mu.synchronize do
466
+ loop do
467
+ break if request_received
468
+ request_received_cv.wait(request_received_mu)
469
+ end
470
+ end
471
+
472
+ op.cancel
473
+
474
+ rpc_cancelled_mu.synchronize do
475
+ fail 'test bug - already set' if rpc_cancelled
476
+ rpc_cancelled = true
477
+ rpc_cancelled_cv.signal
412
478
  end
413
- expect { op.execute }.to raise_error GRPC::Cancelled
479
+
480
+ client_thd.join
414
481
  @srv.stop
415
- t.join
482
+ srv_thd.join
416
483
  end
417
484
 
418
485
  it 'should handle multiple parallel requests', server: true do
@@ -465,6 +532,29 @@ describe GRPC::RpcServer do
465
532
  t.join
466
533
  expect(one_failed_as_unavailable).to be(true)
467
534
  end
535
+
536
+ it 'should send a status UNKNOWN with a relevant message when the' \
537
+ 'servers response stream is not an enumerable' do
538
+ @srv.handle(BidiService)
539
+ t = Thread.new { @srv.run }
540
+ @srv.wait_till_running
541
+ stub = BidiStub.new(@host, :this_channel_is_insecure, **client_opts)
542
+ responses = stub.server_sends_bad_input([])
543
+ exception = nil
544
+ begin
545
+ responses.each { |r| r }
546
+ rescue GRPC::Unknown => e
547
+ exception = e
548
+ end
549
+ # Erroneous responses sent from the server handler should cause an
550
+ # exception on the client with relevant info.
551
+ expected_details = 'NoMethodError: undefined method `each\' for '\
552
+ '"bad response. (not an enumerable, client sees an error)"'
553
+
554
+ expect(exception.inspect.include?(expected_details)).to be true
555
+ @srv.stop
556
+ t.join
557
+ end
468
558
  end
469
559
 
470
560
  context 'with connect metadata' do
@@ -1,31 +1,16 @@
1
- # Copyright 2015, Google Inc.
2
- # All rights reserved.
1
+ # Copyright 2015 gRPC authors.
3
2
  #
4
- # Redistribution and use in source and binary forms, with or without
5
- # modification, are permitted provided that the following conditions are
6
- # met:
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
7
6
  #
8
- # * Redistributions of source code must retain the above copyright
9
- # notice, this list of conditions and the following disclaimer.
10
- # * Redistributions in binary form must reproduce the above
11
- # copyright notice, this list of conditions and the following disclaimer
12
- # in the documentation and/or other materials provided with the
13
- # distribution.
14
- # * Neither the name of Google Inc. nor the names of its
15
- # contributors may be used to endorse or promote products derived from
16
- # this software without specific prior written permission.
7
+ # http://www.apache.org/licenses/LICENSE-2.0
17
8
  #
18
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
29
14
 
30
15
  require 'grpc'
31
16
  require 'grpc/generic/rpc_desc'
@@ -1,31 +1,16 @@
1
- # Copyright 2016, Google Inc.
2
- # All rights reserved.
1
+ # Copyright 2016 gRPC authors.
3
2
  #
4
- # Redistribution and use in source and binary forms, with or without
5
- # modification, are permitted provided that the following conditions are
6
- # met:
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
7
6
  #
8
- # * Redistributions of source code must retain the above copyright
9
- # notice, this list of conditions and the following disclaimer.
10
- # * Redistributions in binary form must reproduce the above
11
- # copyright notice, this list of conditions and the following disclaimer
12
- # in the documentation and/or other materials provided with the
13
- # distribution.
14
- # * Neither the name of Google Inc. nor the names of its
15
- # contributors may be used to endorse or promote products derived from
16
- # this software without specific prior written permission.
7
+ # http://www.apache.org/licenses/LICENSE-2.0
17
8
  #
18
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
29
14
 
30
15
  require 'open3'
31
16
  require 'tmpdir'
@@ -1,31 +1,16 @@
1
- # Copyright 2015, Google Inc.
2
- # All rights reserved.
1
+ # Copyright 2015 gRPC authors.
3
2
  #
4
- # Redistribution and use in source and binary forms, with or without
5
- # modification, are permitted provided that the following conditions are
6
- # met:
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
7
6
  #
8
- # * Redistributions of source code must retain the above copyright
9
- # notice, this list of conditions and the following disclaimer.
10
- # * Redistributions in binary form must reproduce the above
11
- # copyright notice, this list of conditions and the following disclaimer
12
- # in the documentation and/or other materials provided with the
13
- # distribution.
14
- # * Neither the name of Google Inc. nor the names of its
15
- # contributors may be used to endorse or promote products derived from
16
- # this software without specific prior written permission.
7
+ # http://www.apache.org/licenses/LICENSE-2.0
17
8
  #
18
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
29
14
 
30
15
  require 'grpc'
31
16
  require 'grpc/health/v1/health_pb'
@@ -1,31 +1,16 @@
1
- # Copyright 2015, Google Inc.
2
- # All rights reserved.
1
+ # Copyright 2015 gRPC authors.
3
2
  #
4
- # Redistribution and use in source and binary forms, with or without
5
- # modification, are permitted provided that the following conditions are
6
- # met:
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
7
6
  #
8
- # * Redistributions of source code must retain the above copyright
9
- # notice, this list of conditions and the following disclaimer.
10
- # * Redistributions in binary form must reproduce the above
11
- # copyright notice, this list of conditions and the following disclaimer
12
- # in the documentation and/or other materials provided with the
13
- # distribution.
14
- # * Neither the name of Google Inc. nor the names of its
15
- # contributors may be used to endorse or promote products derived from
16
- # this software without specific prior written permission.
7
+ # http://www.apache.org/licenses/LICENSE-2.0
17
8
  #
18
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
29
14
 
30
15
  require 'grpc'
31
16