mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-29 11:31:28 -05:00
4eba5cb02c
* add host option for docker-compose workflows * [ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh Co-authored-by: max-hoffman <max-hoffman@users.noreply.github.com>
144 lines
3.6 KiB
Go
144 lines
3.6 KiB
Go
// Copyright 2019 Dolthub, Inc.
|
|
//
|
|
// 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 (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"net"
|
|
"net/http"
|
|
"os"
|
|
"os/signal"
|
|
"sync"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
remotesapi "github.com/dolthub/dolt/go/gen/proto/dolt/services/remotesapi/v1alpha1"
|
|
"github.com/dolthub/dolt/go/libraries/utils/filesys"
|
|
)
|
|
|
|
func main() {
|
|
dirParam := flag.String("dir", "", "root directory that this command will run in.")
|
|
grpcPortParam := flag.Int("grpc-port", -1, "root directory that this command will run in.")
|
|
httpPortParam := flag.Int("http-port", -1, "root directory that this command will run in.")
|
|
httpHostParam := flag.String("http-host", "localhost", "host url that this command will assume.")
|
|
flag.Parse()
|
|
|
|
if dirParam != nil && len(*dirParam) > 0 {
|
|
err := os.Chdir(*dirParam)
|
|
|
|
if err != nil {
|
|
log.Fatalln("failed to chdir to:", *dirParam)
|
|
log.Fatalln("error:", err.Error())
|
|
os.Exit(1)
|
|
} else {
|
|
log.Println("cwd set to " + *dirParam)
|
|
}
|
|
} else {
|
|
log.Println("'dir' parameter not provided. Using the current working dir.")
|
|
}
|
|
|
|
if *httpPortParam != -1 {
|
|
*httpHostParam = fmt.Sprintf("%s:%d", *httpHostParam, *httpPortParam)
|
|
} else {
|
|
*httpPortParam = 80
|
|
log.Println("'http-port' parameter not provided. Using default port 80")
|
|
}
|
|
|
|
if *grpcPortParam == -1 {
|
|
*grpcPortParam = 50051
|
|
log.Println("'grpc-port' parameter not provided. Using default port 50051")
|
|
}
|
|
|
|
stopChan, wg := startServer(*httpHostParam, *httpPortParam, *grpcPortParam)
|
|
waitForSignal()
|
|
|
|
close(stopChan)
|
|
wg.Wait()
|
|
}
|
|
|
|
func waitForSignal() {
|
|
c := make(chan os.Signal, 1)
|
|
signal.Notify(c, os.Interrupt, os.Kill)
|
|
<-c
|
|
}
|
|
|
|
func startServer(httpHost string, httpPort, grpcPort int) (chan interface{}, *sync.WaitGroup) {
|
|
wg := sync.WaitGroup{}
|
|
stopChan := make(chan interface{})
|
|
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
httpServer(httpPort, stopChan)
|
|
}()
|
|
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
grpcServer(httpHost, grpcPort, stopChan)
|
|
}()
|
|
|
|
return stopChan, &wg
|
|
}
|
|
|
|
func grpcServer(httpHost string, grpcPort int, stopChan chan interface{}) {
|
|
defer func() {
|
|
log.Println("exiting grpc Server go routine")
|
|
}()
|
|
|
|
dbCache := NewLocalCSCache(filesys.LocalFS)
|
|
chnkSt := NewHttpFSBackedChunkStore(httpHost, dbCache)
|
|
|
|
lis, err := net.Listen("tcp", fmt.Sprintf(":%d", grpcPort))
|
|
if err != nil {
|
|
log.Fatalf("failed to listen: %v", err)
|
|
}
|
|
|
|
grpcServer := grpc.NewServer(grpc.MaxRecvMsgSize(128 * 1024 * 1024))
|
|
go func() {
|
|
remotesapi.RegisterChunkStoreServiceServer(grpcServer, chnkSt)
|
|
|
|
log.Println("Starting grpc server on port", grpcPort)
|
|
err := grpcServer.Serve(lis)
|
|
log.Println("grpc server exited. error:", err)
|
|
}()
|
|
|
|
<-stopChan
|
|
grpcServer.GracefulStop()
|
|
}
|
|
|
|
func httpServer(httpPort int, stopChan chan interface{}) {
|
|
defer func() {
|
|
log.Println("exiting http Server go routine")
|
|
}()
|
|
|
|
server := http.Server{
|
|
Addr: fmt.Sprintf(":%d", httpPort),
|
|
Handler: http.HandlerFunc(ServeHTTP),
|
|
}
|
|
|
|
go func() {
|
|
log.Println("Starting http server on port ", httpPort)
|
|
err := server.ListenAndServe()
|
|
log.Println("http server exited. exit error:", err)
|
|
}()
|
|
|
|
<-stopChan
|
|
server.Shutdown(context.Background())
|
|
}
|