blob: 29181bc858d2b12077c36da56bafcec84745d8e4 [file] [log] [blame]
Jan Tattermuscha7fff862015-02-13 11:08:08 -08001#region Copyright notice and license
2
Jan Tattermuschaf77b3d2015-02-13 11:22:21 -08003// Copyright 2015, Google Inc.
Jan Tattermuscha7fff862015-02-13 11:08:08 -08004// All rights reserved.
Craig Tiller190d3602015-02-18 09:23:38 -08005//
Jan Tattermuscha7fff862015-02-13 11:08:08 -08006// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met:
Craig Tiller190d3602015-02-18 09:23:38 -08009//
Jan Tattermuscha7fff862015-02-13 11:08:08 -080010// * Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12// * Redistributions in binary form must reproduce the above
13// copyright notice, this list of conditions and the following disclaimer
14// in the documentation and/or other materials provided with the
15// distribution.
16// * Neither the name of Google Inc. nor the names of its
17// contributors may be used to endorse or promote products derived from
18// this software without specific prior written permission.
Craig Tiller190d3602015-02-18 09:23:38 -080019//
Jan Tattermuscha7fff862015-02-13 11:08:08 -080020// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32#endregion
33
Jan Tattermusch15111f52015-02-05 18:15:14 -080034using System;
Jan Tattermusch15111f52015-02-05 18:15:14 -080035using System.Collections.Generic;
Jan Tattermusch30868622015-02-19 09:22:33 -080036using System.Threading;
37using System.Threading.Tasks;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070038using Grpc.Core;
Jan Tattermusch30868622015-02-19 09:22:33 -080039using Grpc.Core.Utils;
Jan Tattermusch15111f52015-02-05 18:15:14 -080040
Jan Tattermusch5c42d8d2015-08-03 08:14:30 -070041namespace Math
Jan Tattermusch15111f52015-02-05 18:15:14 -080042{
43 /// <summary>
44 /// Implementation of MathService server
45 /// </summary>
Jan Tattermusch085533e2015-05-07 14:34:45 -070046 public class MathServiceImpl : Math.IMath
Jan Tattermusch15111f52015-02-05 18:15:14 -080047 {
Jan Tattermusch25bb2ef2015-07-21 12:15:53 -070048 public Task<DivReply> Div(DivArgs request, ServerCallContext context)
Jan Tattermusch15111f52015-02-05 18:15:14 -080049 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070050 return Task.FromResult(DivInternal(request));
Jan Tattermusch15111f52015-02-05 18:15:14 -080051 }
52
Jan Tattermusch25bb2ef2015-07-21 12:15:53 -070053 public async Task Fib(FibArgs request, IServerStreamWriter<Num> responseStream, ServerCallContext context)
Jan Tattermusch15111f52015-02-05 18:15:14 -080054 {
55 if (request.Limit <= 0)
56 {
Jan Tattermuschf7cfc8a2015-07-23 17:26:35 -070057 // keep streaming the sequence until cancelled.
58 IEnumerator<Num> fibEnumerator = FibInternal(long.MaxValue).GetEnumerator();
59 while (!context.CancellationToken.IsCancellationRequested && fibEnumerator.MoveNext())
60 {
61 await responseStream.WriteAsync(fibEnumerator.Current);
62 await Task.Delay(100);
63 }
Jan Tattermusch15111f52015-02-05 18:15:14 -080064 }
Craig Tiller190d3602015-02-18 09:23:38 -080065
Jan Tattermusch15111f52015-02-05 18:15:14 -080066 if (request.Limit > 0)
67 {
68 foreach (var num in FibInternal(request.Limit))
69 {
Jan Tattermusch43dc50b2015-05-18 15:27:19 -070070 await responseStream.WriteAsync(num);
Jan Tattermusch15111f52015-02-05 18:15:14 -080071 }
Jan Tattermusch15111f52015-02-05 18:15:14 -080072 }
73 }
74
Jan Tattermusch25bb2ef2015-07-21 12:15:53 -070075 public async Task<Num> Sum(IAsyncStreamReader<Num> requestStream, ServerCallContext context)
Jan Tattermusch15111f52015-02-05 18:15:14 -080076 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070077 long sum = 0;
78 await requestStream.ForEach(async num =>
Jan Tattermusch075dde42015-03-11 18:21:00 -070079 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070080 sum += num.Num_;
Jan Tattermusch15111f52015-02-05 18:15:14 -080081 });
Jan Tattermuscha5272b62015-04-30 11:56:46 -070082 return Num.CreateBuilder().SetNum_(sum).Build();
Jan Tattermusch15111f52015-02-05 18:15:14 -080083 }
84
Jan Tattermusch25bb2ef2015-07-21 12:15:53 -070085 public async Task DivMany(IAsyncStreamReader<DivArgs> requestStream, IServerStreamWriter<DivReply> responseStream, ServerCallContext context)
Jan Tattermusch15111f52015-02-05 18:15:14 -080086 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070087 await requestStream.ForEach(async divArgs =>
88 {
Jan Tattermusch43dc50b2015-05-18 15:27:19 -070089 await responseStream.WriteAsync(DivInternal(divArgs));
Jan Tattermuscha5272b62015-04-30 11:56:46 -070090 });
Jan Tattermusch15111f52015-02-05 18:15:14 -080091 }
92
93 static DivReply DivInternal(DivArgs args)
94 {
95 long quotient = args.Dividend / args.Divisor;
96 long remainder = args.Dividend % args.Divisor;
97 return new DivReply.Builder { Quotient = quotient, Remainder = remainder }.Build();
98 }
99
100 static IEnumerable<Num> FibInternal(long n)
101 {
102 long a = 1;
Jan Tattermusch075dde42015-03-11 18:21:00 -0700103 yield return new Num.Builder { Num_ = a }.Build();
Jan Tattermusch15111f52015-02-05 18:15:14 -0800104
105 long b = 1;
106 for (long i = 0; i < n - 1; i++)
107 {
108 long temp = a;
109 a = b;
110 b = temp + b;
Jan Tattermusch075dde42015-03-11 18:21:00 -0700111 yield return new Num.Builder { Num_ = a }.Build();
Jan Tattermusch15111f52015-02-05 18:15:14 -0800112 }
Jan Tattermuscha5272b62015-04-30 11:56:46 -0700113 }
Jan Tattermusch15111f52015-02-05 18:15:14 -0800114 }
115}