Adding initial web server and storage server module infrastructure

This commit is contained in:
Frederick F. Kautz IV
2015-01-18 13:31:22 -08:00
parent 34b3cb7f9f
commit f356599e22
4 changed files with 108 additions and 0 deletions

54
pkg/server/server.go Normal file
View File

@@ -0,0 +1,54 @@
package server
import (
"log"
"reflect"
"github.com/minio-io/minio/pkg/httpserver"
"github.com/minio-io/minio/pkg/storage"
)
func Start() {
ctrlChans := make([]chan<- string, 0)
statusChans := make([]<-chan error, 0)
ctrlChan, statusChan := storage.Start()
ctrlChans = append(ctrlChans, ctrlChan)
statusChans = append(statusChans, statusChan)
ctrlChan, statusChan = httpserver.Start(storage.GetHttpHandler())
ctrlChans = append(ctrlChans, ctrlChan)
statusChans = append(statusChans, statusChan)
cases := createSelectCases(statusChans)
for {
chosen, value, recvOk := reflect.Select(cases)
if recvOk == true {
// Status Message Received
log.Println(chosen, value.Interface(), recvOk)
} else {
// Channel closed, remove from list
aliveStatusChans := make([]<-chan error, 0)
for i, ch := range statusChans {
if i != chosen {
aliveStatusChans = append(aliveStatusChans, ch)
}
}
statusChans = aliveStatusChans
cases = createSelectCases(statusChans)
}
// create new select case
}
}
func createSelectCases(channels []<-chan error) []reflect.SelectCase {
cases := make([]reflect.SelectCase, len(channels))
for i, ch := range channels {
cases[i] = reflect.SelectCase{
Dir: reflect.SelectRecv,
Chan: reflect.ValueOf(ch),
}
}
return cases
}