#region Copyright notice and license
// Copyright 2019 The gRPC Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#endregion
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Grpc.Core.Internal;
namespace Grpc.Core.Internal
{
internal static class ServerServiceDefinitionExtensions
{
///
/// Maps methods from ServerServiceDefinition to server call handlers.
///
internal static ReadOnlyDictionary GetCallHandlers(this ServerServiceDefinition serviceDefinition)
{
var binder = new DefaultServiceBinder();
serviceDefinition.BindService(binder);
return binder.GetCallHandlers();
}
///
/// Helper for converting ServerServiceDefinition to server call handlers.
///
private class DefaultServiceBinder : ServiceBinderBase
{
readonly Dictionary callHandlers = new Dictionary();
internal ReadOnlyDictionary GetCallHandlers()
{
return new ReadOnlyDictionary(this.callHandlers);
}
public override void AddMethod(
Method method,
UnaryServerMethod handler)
{
callHandlers.Add(method.FullName, ServerCalls.UnaryCall(method, handler));
}
public override void AddMethod(
Method method,
ClientStreamingServerMethod handler)
{
callHandlers.Add(method.FullName, ServerCalls.ClientStreamingCall(method, handler));
}
public override void AddMethod(
Method method,
ServerStreamingServerMethod handler)
{
callHandlers.Add(method.FullName, ServerCalls.ServerStreamingCall(method, handler));
}
public override void AddMethod(
Method method,
DuplexStreamingServerMethod handler)
{
callHandlers.Add(method.FullName, ServerCalls.DuplexStreamingCall(method, handler));
}
}
}
}