web provider post
ramify
This commit is contained in:
parent
8dabe42a8a
commit
f6d587b16a
4 changed files with 8 additions and 9 deletions
151
ramify.go
Normal file
151
ramify.go
Normal file
|
@ -0,0 +1,151 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"github.com/gorilla/mux"
|
||||
"github.com/mailgun/oxy/forward"
|
||||
"github.com/mailgun/oxy/roundrobin"
|
||||
"github.com/tylerb/graceful"
|
||||
"net"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"os"
|
||||
"os/signal"
|
||||
"reflect"
|
||||
"syscall"
|
||||
"time"
|
||||
"log"
|
||||
"github.com/BurntSushi/toml"
|
||||
"github.com/gorilla/handlers"
|
||||
)
|
||||
|
||||
type FileConfiguration struct {
|
||||
Docker *DockerProvider
|
||||
File *FileProvider
|
||||
Web *WebProvider
|
||||
}
|
||||
|
||||
var srv *graceful.Server
|
||||
var configurationRouter *mux.Router
|
||||
var currentConfiguration = new(Configuration)
|
||||
var configurationChan = make(chan *Configuration)
|
||||
var providers = []Provider{}
|
||||
|
||||
func main() {
|
||||
sigs := make(chan os.Signal, 1)
|
||||
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
|
||||
|
||||
go func() {
|
||||
for {
|
||||
configuration := <-configurationChan
|
||||
log.Println("Configuration receveived", configuration)
|
||||
if configuration == nil {
|
||||
log.Println("Skipping empty configuration")
|
||||
} else if(reflect.DeepEqual(currentConfiguration, configuration)){
|
||||
log.Println("Skipping same configuration")
|
||||
} else{
|
||||
currentConfiguration = configuration
|
||||
configurationRouter = LoadConfig(configuration)
|
||||
srv.Stop(10 * time.Second)
|
||||
time.Sleep(3 * time.Second)
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
||||
configuration := LoadFileConfig()
|
||||
if(configuration.Docker != nil){
|
||||
providers = append(providers, configuration.Docker)
|
||||
}
|
||||
|
||||
if(configuration.File != nil){
|
||||
providers = append(providers, configuration.File)
|
||||
}
|
||||
|
||||
if(configuration.Web != nil){
|
||||
providers = append(providers, configuration.Web)
|
||||
}
|
||||
|
||||
for _, provider := range providers {
|
||||
log.Printf("Starting provider %v %+v\n", reflect.TypeOf(provider), provider)
|
||||
currentProvider := provider
|
||||
go func() {
|
||||
currentProvider.Provide(configurationChan)
|
||||
}()
|
||||
}
|
||||
|
||||
goAway := false
|
||||
go func() {
|
||||
sig := <-sigs
|
||||
log.Println("I have to go...", sig)
|
||||
goAway = true
|
||||
srv.Stop(10 * time.Second)
|
||||
}()
|
||||
|
||||
for {
|
||||
if goAway {
|
||||
break
|
||||
}
|
||||
srv = &graceful.Server{
|
||||
Timeout: 10 * time.Second,
|
||||
NoSignalHandling: true,
|
||||
|
||||
ConnState: func(conn net.Conn, state http.ConnState) {
|
||||
// conn has a new state
|
||||
},
|
||||
|
||||
Server: &http.Server{
|
||||
Addr: ":8001",
|
||||
Handler: configurationRouter,
|
||||
},
|
||||
}
|
||||
|
||||
go srv.ListenAndServe()
|
||||
log.Println("Started")
|
||||
<-srv.StopChan()
|
||||
log.Println("Stopped")
|
||||
}
|
||||
}
|
||||
|
||||
func LoadConfig(configuration *Configuration) *mux.Router {
|
||||
router := mux.NewRouter()
|
||||
for routeName, route := range configuration.Routes {
|
||||
log.Println("Creating route", routeName)
|
||||
fwd, _ := forward.New()
|
||||
newRoutes := []*mux.Route{}
|
||||
for ruleName, rule := range route.Rules {
|
||||
log.Println("Creating rule", ruleName)
|
||||
newRouteReflect := Invoke(router.NewRoute(), rule.Category, rule.Value)
|
||||
newRoute := newRouteReflect[0].Interface().(*mux.Route)
|
||||
newRoutes = append(newRoutes, newRoute)
|
||||
}
|
||||
for _, backendName := range route.Backends {
|
||||
log.Println("Creating backend", backendName)
|
||||
lb, _ := roundrobin.New(fwd)
|
||||
rb, _ := roundrobin.NewRebalancer(lb)
|
||||
for serverName, server := range configuration.Backends[backendName].Servers {
|
||||
log.Println("Creating server", serverName)
|
||||
url, _ := url.Parse(server.Url)
|
||||
rb.UpsertServer(url)
|
||||
}
|
||||
for _, route := range newRoutes {
|
||||
route.Handler(handlers.CombinedLoggingHandler(os.Stdout, lb))
|
||||
}
|
||||
}
|
||||
}
|
||||
return router
|
||||
}
|
||||
|
||||
func Invoke(any interface{}, name string, args ...interface{}) []reflect.Value {
|
||||
inputs := make([]reflect.Value, len(args))
|
||||
for i, _ := range args {
|
||||
inputs[i] = reflect.ValueOf(args[i])
|
||||
}
|
||||
return reflect.ValueOf(any).MethodByName(name).Call(inputs)
|
||||
}
|
||||
|
||||
func LoadFileConfig() *FileConfiguration {
|
||||
configuration := new(FileConfiguration)
|
||||
if _, err := toml.DecodeFile("ramify.toml", configuration); err != nil {
|
||||
log.Fatal("Error reading file:", err)
|
||||
}
|
||||
return configuration
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue