blob: 99dfafcb7622dfde5fa6c2c965d261810c7a0d93 [file] [log] [blame]
// Copyright (C) 2016 The Android Open Source Project
//
// 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 main
import (
"flag"
"net"
"android.googlesource.com/platform/tools/gpu/framework/app"
"android.googlesource.com/platform/tools/gpu/framework/grpcutil"
"android.googlesource.com/platform/tools/gpu/framework/log"
"android.googlesource.com/platform/tools/gpu/gapid/stash"
"google.golang.org/grpc"
)
func init() {
verb := &app.Verb{
Name: "server",
ShortHelp: "Starts a stash server",
Run: doServer,
}
app.AddVerb(verb)
}
func doServer(ctx log.Context, flags flag.FlagSet) error {
serveAt := ""
switch flags.NArg() {
case 0:
serveAt = defaultStashServer
case 1:
serveAt = flags.Arg(0)
default:
app.Usage(ctx, "Expected at most 1 arg (the address to server on)")
return nil
}
ctx.Notice().Logf("Starting server on %s", serveAt)
return withStore(ctx, true, func(ctx log.Context, store stash.Store) error {
return serveStore(ctx, store, serveAt)
})
}
func serveStore(ctx log.Context, store stash.Store, address string) error {
ctx.Notice().Logf("Serving on %s", address)
return grpcutil.Serve(ctx, address, func(ctx log.Context, listener net.Listener, server *grpc.Server) error {
if err := stash.Serve(ctx, server, store); err != nil {
return err
}
return nil
})
}