blob: c4a62a1bfd9fda706a7c80913a6f82e3f72dc0e0 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package internal
import (
"sync"
"v.io/v23"
"v.io/v23/context"
"v.io/v23/naming"
"v.io/v23/rpc"
"v.io/v23/security"
"v.io/x/lib/vlog"
"v.io/x/ref/profiles/internal/rpc/stress"
)
type impl struct {
statsMu sync.Mutex
stats stress.SumStats // GUARDED_BY(statsMu)
stop chan struct{}
}
func (s *impl) Echo(_ *context.T, _ rpc.ServerCall, payload []byte) ([]byte, error) {
return payload, nil
}
func (s *impl) Sum(_ *context.T, _ rpc.ServerCall, arg stress.SumArg) ([]byte, error) {
sum, err := doSum(&arg)
if err != nil {
return nil, err
}
s.addSumStats(false, uint64(lenSumArg(&arg)), uint64(len(sum)))
return sum, nil
}
func (s *impl) SumStream(_ *context.T, call stress.StressSumStreamServerCall) error {
rStream := call.RecvStream()
sStream := call.SendStream()
var bytesRecv, bytesSent uint64
for rStream.Advance() {
arg := rStream.Value()
sum, err := doSum(&arg)
if err != nil {
return err
}
sStream.Send(sum)
bytesRecv += uint64(lenSumArg(&arg))
bytesSent += uint64(len(sum))
}
if err := rStream.Err(); err != nil {
return err
}
s.addSumStats(true, bytesRecv, bytesSent)
return nil
}
func (s *impl) addSumStats(stream bool, bytesRecv, bytesSent uint64) {
s.statsMu.Lock()
if stream {
s.stats.SumStreamCount++
} else {
s.stats.SumCount++
}
s.stats.BytesRecv += bytesRecv
s.stats.BytesSent += bytesSent
s.statsMu.Unlock()
}
func (s *impl) GetSumStats(*context.T, rpc.ServerCall) (stress.SumStats, error) {
s.statsMu.Lock()
defer s.statsMu.Unlock()
return s.stats, nil
}
func (s *impl) Stop(*context.T, rpc.ServerCall) error {
s.stop <- struct{}{}
return nil
}
// StartServer starts a server that implements the Stress service, and returns
// the server and its vanadium address. It also returns a channel carrying stop
// requests. After reading from the stop channel, the application should exit.
func StartServer(ctx *context.T, listenSpec rpc.ListenSpec) (rpc.Server, naming.Endpoint, <-chan struct{}) {
server, err := v23.NewServer(ctx)
if err != nil {
vlog.Fatalf("NewServer failed: %v", err)
}
eps, err := server.Listen(listenSpec)
if err != nil {
vlog.Fatalf("Listen failed: %v", err)
}
if len(eps) == 0 {
vlog.Fatal("No local address to listen on")
}
s := impl{stop: make(chan struct{})}
if err := server.Serve("", stress.StressServer(&s), security.AllowEveryone()); err != nil {
vlog.Fatalf("Serve failed: %v", err)
}
return server, eps[0], s.stop
}