mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* Implements graceful shutdown of agent.DataAccess and underlying Datastore/Logstore/MessageQueue * adds tests for closing agent.DataAccess and Datastore
124 lines
3.7 KiB
Go
124 lines
3.7 KiB
Go
package datastoreutil
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"go.opencensus.io/trace"
|
|
|
|
"github.com/fnproject/fn/api/models"
|
|
"github.com/jmoiron/sqlx"
|
|
)
|
|
|
|
func MetricDS(ds models.Datastore) models.Datastore {
|
|
return &metricds{ds}
|
|
}
|
|
|
|
type metricds struct {
|
|
ds models.Datastore
|
|
}
|
|
|
|
func (m *metricds) GetAppID(ctx context.Context, appName string) (string, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_get_app_id")
|
|
defer span.End()
|
|
return m.ds.GetAppID(ctx, appName)
|
|
}
|
|
|
|
func (m *metricds) GetAppByID(ctx context.Context, appID string) (*models.App, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_get_app_by_id")
|
|
defer span.End()
|
|
return m.ds.GetAppByID(ctx, appID)
|
|
}
|
|
|
|
func (m *metricds) GetApps(ctx context.Context, filter *models.AppFilter) ([]*models.App, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_get_apps")
|
|
defer span.End()
|
|
return m.ds.GetApps(ctx, filter)
|
|
}
|
|
|
|
func (m *metricds) InsertApp(ctx context.Context, app *models.App) (*models.App, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_insert_app")
|
|
defer span.End()
|
|
return m.ds.InsertApp(ctx, app)
|
|
}
|
|
|
|
func (m *metricds) UpdateApp(ctx context.Context, app *models.App) (*models.App, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_update_app")
|
|
defer span.End()
|
|
return m.ds.UpdateApp(ctx, app)
|
|
}
|
|
|
|
func (m *metricds) RemoveApp(ctx context.Context, appID string) error {
|
|
ctx, span := trace.StartSpan(ctx, "ds_remove_app")
|
|
defer span.End()
|
|
return m.ds.RemoveApp(ctx, appID)
|
|
}
|
|
|
|
func (m *metricds) GetRoute(ctx context.Context, appID, routePath string) (*models.Route, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_get_route")
|
|
defer span.End()
|
|
return m.ds.GetRoute(ctx, appID, routePath)
|
|
}
|
|
|
|
func (m *metricds) GetRoutesByApp(ctx context.Context, appID string, filter *models.RouteFilter) (routes []*models.Route, err error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_get_routes_by_app")
|
|
defer span.End()
|
|
return m.ds.GetRoutesByApp(ctx, appID, filter)
|
|
}
|
|
|
|
func (m *metricds) InsertRoute(ctx context.Context, route *models.Route) (*models.Route, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_insert_route")
|
|
defer span.End()
|
|
return m.ds.InsertRoute(ctx, route)
|
|
}
|
|
|
|
func (m *metricds) UpdateRoute(ctx context.Context, route *models.Route) (*models.Route, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_update_route")
|
|
defer span.End()
|
|
return m.ds.UpdateRoute(ctx, route)
|
|
}
|
|
|
|
func (m *metricds) RemoveRoute(ctx context.Context, appID string, routePath string) error {
|
|
ctx, span := trace.StartSpan(ctx, "ds_remove_route")
|
|
defer span.End()
|
|
return m.ds.RemoveRoute(ctx, appID, routePath)
|
|
}
|
|
|
|
func (m *metricds) InsertCall(ctx context.Context, call *models.Call) error {
|
|
ctx, span := trace.StartSpan(ctx, "ds_insert_call")
|
|
defer span.End()
|
|
return m.ds.InsertCall(ctx, call)
|
|
}
|
|
|
|
func (m *metricds) GetCall(ctx context.Context, appName, callID string) (*models.Call, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_get_call")
|
|
defer span.End()
|
|
return m.ds.GetCall(ctx, appName, callID)
|
|
}
|
|
|
|
func (m *metricds) GetCalls(ctx context.Context, filter *models.CallFilter) ([]*models.Call, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_get_calls")
|
|
defer span.End()
|
|
return m.ds.GetCalls(ctx, filter)
|
|
}
|
|
|
|
func (m *metricds) InsertLog(ctx context.Context, appName, callID string, callLog io.Reader) error {
|
|
ctx, span := trace.StartSpan(ctx, "ds_insert_log")
|
|
defer span.End()
|
|
return m.ds.InsertLog(ctx, appName, callID, callLog)
|
|
}
|
|
|
|
func (m *metricds) GetLog(ctx context.Context, appName, callID string) (io.Reader, error) {
|
|
ctx, span := trace.StartSpan(ctx, "ds_get_log")
|
|
defer span.End()
|
|
return m.ds.GetLog(ctx, appName, callID)
|
|
}
|
|
|
|
// instant & no context ;)
|
|
func (m *metricds) GetDatabase() *sqlx.DB { return m.ds.GetDatabase() }
|
|
|
|
// Close calls Close on the underlying Datastore
|
|
func (m *metricds) Close() error {
|
|
return m.ds.Close()
|
|
}
|