blob: 83ec2a8c3df20fcda82be12209088e0812adadc6 [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;
36using System.Reactive.Linq;
Jan Tattermusch30868622015-02-19 09:22:33 -080037using System.Threading;
38using System.Threading.Tasks;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070039using Grpc.Core;
Jan Tattermusch30868622015-02-19 09:22:33 -080040using Grpc.Core.Utils;
Jan Tattermusch15111f52015-02-05 18:15:14 -080041
42namespace math
43{
44 /// <summary>
45 /// Implementation of MathService server
46 /// </summary>
47 public class MathServiceImpl : MathGrpc.IMathService
48 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070049 public Task<DivReply> Div(DivArgs request)
Jan Tattermusch15111f52015-02-05 18:15:14 -080050 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070051 return Task.FromResult(DivInternal(request));
Jan Tattermusch15111f52015-02-05 18:15:14 -080052 }
53
Jan Tattermuscha5272b62015-04-30 11:56:46 -070054 public async Task Fib(FibArgs request, IServerStreamWriter<Num> responseStream)
Jan Tattermusch15111f52015-02-05 18:15:14 -080055 {
56 if (request.Limit <= 0)
57 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070058 // TODO(jtattermusch): support cancellation
Jan Tattermusch15111f52015-02-05 18:15:14 -080059 throw new NotImplementedException("Not implemented yet");
60 }
Craig Tiller190d3602015-02-18 09:23:38 -080061
Jan Tattermusch15111f52015-02-05 18:15:14 -080062 if (request.Limit > 0)
63 {
64 foreach (var num in FibInternal(request.Limit))
65 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070066 await responseStream.Write(num);
Jan Tattermusch15111f52015-02-05 18:15:14 -080067 }
Jan Tattermusch15111f52015-02-05 18:15:14 -080068 }
69 }
70
Jan Tattermuscha5272b62015-04-30 11:56:46 -070071 public async Task<Num> Sum(IAsyncStreamReader<Num> requestStream)
Jan Tattermusch15111f52015-02-05 18:15:14 -080072 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070073 long sum = 0;
74 await requestStream.ForEach(async num =>
Jan Tattermusch075dde42015-03-11 18:21:00 -070075 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070076 sum += num.Num_;
Jan Tattermusch15111f52015-02-05 18:15:14 -080077 });
Jan Tattermuscha5272b62015-04-30 11:56:46 -070078 return Num.CreateBuilder().SetNum_(sum).Build();
Jan Tattermusch15111f52015-02-05 18:15:14 -080079 }
80
Jan Tattermuscha5272b62015-04-30 11:56:46 -070081 public async Task DivMany(IAsyncStreamReader<DivArgs> requestStream, IServerStreamWriter<DivReply> responseStream)
Jan Tattermusch15111f52015-02-05 18:15:14 -080082 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070083 await requestStream.ForEach(async divArgs =>
84 {
85 await responseStream.Write(DivInternal(divArgs));
86 });
Jan Tattermusch15111f52015-02-05 18:15:14 -080087 }
88
89 static DivReply DivInternal(DivArgs args)
90 {
91 long quotient = args.Dividend / args.Divisor;
92 long remainder = args.Dividend % args.Divisor;
93 return new DivReply.Builder { Quotient = quotient, Remainder = remainder }.Build();
94 }
95
96 static IEnumerable<Num> FibInternal(long n)
97 {
98 long a = 1;
Jan Tattermusch075dde42015-03-11 18:21:00 -070099 yield return new Num.Builder { Num_ = a }.Build();
Jan Tattermusch15111f52015-02-05 18:15:14 -0800100
101 long b = 1;
102 for (long i = 0; i < n - 1; i++)
103 {
104 long temp = a;
105 a = b;
106 b = temp + b;
Jan Tattermusch075dde42015-03-11 18:21:00 -0700107 yield return new Num.Builder { Num_ = a }.Build();
Jan Tattermusch15111f52015-02-05 18:15:14 -0800108 }
Jan Tattermuscha5272b62015-04-30 11:56:46 -0700109 }
Jan Tattermusch15111f52015-02-05 18:15:14 -0800110 }
111}