blob: ea37108022bc619c6cf7036c09d9c387e971d2d0 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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 webservice
import (
"context"
"fmt"
"net/http"
"sync"
"time"
"github.com/gorilla/mux"
"go.uber.org/zap"
"github.com/apache/yunikorn-core/pkg/log"
"github.com/apache/yunikorn-core/pkg/metrics/history"
"github.com/apache/yunikorn-core/pkg/scheduler"
)
var imHistory *history.InternalMetricsHistory
var lock sync.RWMutex
var schedulerContext *scheduler.ClusterContext
type WebService struct {
httpServer *http.Server
}
func newRouter() *mux.Router {
router := mux.NewRouter().StrictSlash(true)
for _, webRoute := range webRoutes {
handler := loggingHandler(webRoute.HandlerFunc, webRoute.Name)
router.
Methods(webRoute.Method).
Path(webRoute.Pattern).
Name(webRoute.Name).
Handler(handler)
}
return router
}
func loggingHandler(inner http.Handler, name string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
start := time.Now()
inner.ServeHTTP(w, r)
log.Logger().Debug(fmt.Sprintf("%s\t%s\t%s\t%s",
r.Method, r.RequestURI, name, time.Since(start)))
})
}
// TODO we need the port to be configurable
func (m *WebService) StartWebApp() {
router := newRouter()
m.httpServer = &http.Server{Addr: ":9080", Handler: router}
log.Logger().Info("web-app started", zap.Int("port", 9080))
go func() {
httpError := m.httpServer.ListenAndServe()
if httpError != nil && httpError != http.ErrServerClosed {
log.Logger().Error("HTTP serving error",
zap.Error(httpError))
}
}()
}
func NewWebApp(context *scheduler.ClusterContext, internalMetrics *history.InternalMetricsHistory) *WebService {
m := &WebService{}
schedulerContext = context
imHistory = internalMetrics
return m
}
func (m *WebService) StopWebApp() error {
if m.httpServer != nil {
// graceful shutdown in 5 seconds
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
return m.httpServer.Shutdown(ctx)
}
return nil
}