You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"flag"
|
|
|
|
|
|
|
|
"zero/core/conf"
|
|
|
|
"zero/example/tracing/remote/portal"
|
|
|
|
"zero/example/tracing/remote/user"
|
|
|
|
"zero/rpcx"
|
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
var configFile = flag.String("f", "etc/config.json", "the config file")
|
|
|
|
|
|
|
|
type (
|
|
|
|
Config struct {
|
|
|
|
rpcx.RpcServerConf
|
|
|
|
UserRpc rpcx.RpcClientConf
|
|
|
|
}
|
|
|
|
|
|
|
|
PortalServer struct {
|
|
|
|
userRpc *rpcx.RpcClient
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func NewPortalServer(client *rpcx.RpcClient) *PortalServer {
|
|
|
|
return &PortalServer{
|
|
|
|
userRpc: client,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gs *PortalServer) Portal(ctx context.Context, req *portal.PortalRequest) (*portal.PortalResponse, error) {
|
|
|
|
conn := gs.userRpc.Conn()
|
|
|
|
greet := user.NewUserClient(conn)
|
|
|
|
resp, err := greet.GetGrade(ctx, &user.UserRequest{
|
|
|
|
Name: req.Name,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return &portal.PortalResponse{
|
|
|
|
Response: err.Error(),
|
|
|
|
}, nil
|
|
|
|
} else {
|
|
|
|
return &portal.PortalResponse{
|
|
|
|
Response: resp.Response,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
var c Config
|
|
|
|
conf.MustLoad(*configFile, &c)
|
|
|
|
|
|
|
|
client := rpcx.MustNewClient(c.UserRpc)
|
|
|
|
server := rpcx.MustNewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
|
|
|
|
portal.RegisterPortalServer(grpcServer, NewPortalServer(client))
|
|
|
|
})
|
|
|
|
server.Start()
|
|
|
|
}
|