aicra/server.go

78 lines
1.7 KiB
Go
Raw Normal View History

package aicra
import (
2019-05-01 19:30:16 +00:00
"io"
2019-04-30 22:02:28 +00:00
"log"
"os"
2019-04-30 22:02:28 +00:00
"git.xdrm.io/go/aicra/api"
2020-03-21 13:49:36 +00:00
"git.xdrm.io/go/aicra/datatype"
"git.xdrm.io/go/aicra/internal/config"
)
// Server represents an AICRA instance featuring: type checkers, services
type Server struct {
2020-03-21 13:49:36 +00:00
config *config.Server
handlers []*api.Handler
}
// New creates a framework instance from a configuration file
2020-03-21 13:49:36 +00:00
func New(configPath string, dtypes ...datatype.T) (*Server, error) {
2019-05-01 19:30:16 +00:00
var (
err error
configFile io.ReadCloser
)
// 1. init instance
var i = &Server{
config: nil,
handlers: make([]*api.Handler, 0),
}
// 2. open config file
2019-05-01 19:30:16 +00:00
configFile, err = os.Open(configPath)
if err != nil {
return nil, err
}
defer configFile.Close()
// 3. load configuration
2020-03-21 13:49:36 +00:00
i.config, err = config.Parse(configFile, dtypes...)
if err != nil {
return nil, err
}
// 4. log configuration services
2019-11-19 18:19:55 +00:00
log.Printf("🔧 Reading configuration '%s'\n", configPath)
2020-03-21 13:49:36 +00:00
for _, service := range i.config.Services {
log.Printf(" ->\t%s\t'%s'\n", service.Method, service.Pattern)
}
2018-07-07 17:21:00 +00:00
return i, nil
2018-07-07 17:21:00 +00:00
}
// HandleFunc sets a new handler for an HTTP method to a path
func (s *Server) HandleFunc(httpMethod, path string, handlerFunc api.HandlerFunc) {
handler := api.NewHandler(httpMethod, path, handlerFunc)
s.handlers = append(s.handlers, handler)
}
// Handle sets a new handler
func (s *Server) Handle(handler *api.Handler) {
s.handlers = append(s.handlers, handler)
}
// HTTP converts the server to a http server
func (s Server) HTTP() httpServer {
// 1. log available handlers
2019-11-19 18:19:55 +00:00
log.Printf("🔗 Mapping handlers\n")
for i := 0; i < len(s.handlers); i++ {
2019-11-19 18:19:55 +00:00
log.Printf(" ->\t%s\t'%s'\n", s.handlers[i].GetMethod(), s.handlers[i].GetPath())
}
// 2. cast to http server
return httpServer(s)
}