Fetch the repository succeeded.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package grpc
import (
"sync"
)
import (
"gitee.com/git4chen/gost/log/logger"
)
import (
"gitee.com/git4chen/dubbo-go/common"
"gitee.com/git4chen/dubbo-go/common/extension"
"gitee.com/git4chen/dubbo-go/protocol"
)
const (
// GRPC module name
GRPC = "grpc"
)
func init() {
extension.SetProtocol(GRPC, GetProtocol)
}
var grpcProtocol *GrpcProtocol
// GrpcProtocol is gRPC protocol
type GrpcProtocol struct {
protocol.BaseProtocol
serverMap map[string]*Server
serverLock sync.Mutex
}
// NewGRPCProtocol creates new gRPC protocol
func NewGRPCProtocol() *GrpcProtocol {
return &GrpcProtocol{
BaseProtocol: protocol.NewBaseProtocol(),
serverMap: make(map[string]*Server),
}
}
// Export gRPC service for remote invocation
func (gp *GrpcProtocol) Export(invoker protocol.Invoker) protocol.Exporter {
url := invoker.GetURL()
serviceKey := url.ServiceKey()
exporter := NewGrpcExporter(serviceKey, invoker, gp.ExporterMap())
gp.SetExporterMap(serviceKey, exporter)
logger.Infof("[GRPC Protocol] Export service: %s", url.String())
gp.openServer(url)
return exporter
}
func (gp *GrpcProtocol) openServer(url *common.URL) {
gp.serverLock.Lock()
defer gp.serverLock.Unlock()
if _, ok := gp.serverMap[url.Location]; ok {
return
}
if _, ok := gp.ExporterMap().Load(url.ServiceKey()); !ok {
panic("[GrpcProtocol]" + url.Key() + "is not existing")
}
srv := NewServer()
gp.serverMap[url.Location] = srv
srv.Start(url)
}
// Refer a remote gRPC service
func (gp *GrpcProtocol) Refer(url *common.URL) protocol.Invoker {
client, err := NewClient(url)
if err != nil {
logger.Warnf("can't dial the server: %s", url.Key())
return nil
}
invoker := NewGrpcInvoker(url, client)
gp.SetInvokers(invoker)
logger.Infof("[GRPC Protcol] Refer service: %s", url.String())
return invoker
}
// Destroy will destroy gRPC all invoker and exporter, so it only is called once.
func (gp *GrpcProtocol) Destroy() {
logger.Infof("GrpcProtocol destroy.")
gp.serverLock.Lock()
defer gp.serverLock.Unlock()
for key, server := range gp.serverMap {
delete(gp.serverMap, key)
server.GracefulStop()
}
gp.BaseProtocol.Destroy()
}
// GetProtocol gets gRPC protocol, will create if null.
func GetProtocol() protocol.Protocol {
if grpcProtocol == nil {
grpcProtocol = NewGRPCProtocol()
}
return grpcProtocol
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。