-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable CI for badger and grpc-plugin (#2474)
* Enable CI for badger and grpc-plugin Signed-off-by: Yuri Shkuro <[email protected]> * refactor Signed-off-by: Yuri Shkuro <[email protected]> * fmt Signed-off-by: Yuri Shkuro <[email protected]> * test Signed-off-by: Yuri Shkuro <[email protected]>
- Loading branch information
1 parent
a8e83cd
commit df2582d
Showing
8 changed files
with
95 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Copyright (c) 2020 The Jaeger 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. | ||
|
||
package shared | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/hashicorp/go-plugin" | ||
"google.golang.org/grpc" | ||
|
||
"github.com/jaegertracing/jaeger/proto-gen/storage_v1" | ||
) | ||
|
||
// Ensure plugin.GRPCPlugin API match. | ||
var _ plugin.GRPCPlugin = (*StorageGRPCPlugin)(nil) | ||
|
||
// StorageGRPCPlugin is the implementation of plugin.GRPCPlugin. | ||
type StorageGRPCPlugin struct { | ||
plugin.Plugin | ||
|
||
// Concrete implementation, This is only used for plugins that are written in Go. | ||
Impl StoragePlugin | ||
} | ||
|
||
// GRPCServer implements plugin.GRPCPlugin. It is used by go-plugin to create a grpc plugin server. | ||
func (p *StorageGRPCPlugin) GRPCServer(broker *plugin.GRPCBroker, s *grpc.Server) error { | ||
server := &grpcServer{Impl: p.Impl} | ||
storage_v1.RegisterSpanReaderPluginServer(s, server) | ||
storage_v1.RegisterSpanWriterPluginServer(s, server) | ||
storage_v1.RegisterDependenciesReaderPluginServer(s, server) | ||
return nil | ||
} | ||
|
||
// GRPCClient implements plugin.GRPCPlugin. It is used by go-plugin to create a grpc plugin client. | ||
func (*StorageGRPCPlugin) GRPCClient(ctx context.Context, broker *plugin.GRPCBroker, c *grpc.ClientConn) (interface{}, error) { | ||
return &grpcClient{ | ||
readerClient: storage_v1.NewSpanReaderPluginClient(c), | ||
writerClient: storage_v1.NewSpanWriterPluginClient(c), | ||
depsReaderClient: storage_v1.NewDependenciesReaderPluginClient(c), | ||
}, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters