| // Copyright 2015 The LUCI Authors. |
| // |
| // Licensed 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 main |
| |
| import ( |
| "net/http" |
| |
| "google.golang.org/appengine" |
| |
| "go.chromium.org/luci/appengine/gaemiddleware/standard" |
| "go.chromium.org/luci/dm/appengine/deps" |
| "go.chromium.org/luci/dm/appengine/distributor" |
| "go.chromium.org/luci/dm/appengine/distributor/jobsim" |
| "go.chromium.org/luci/dm/appengine/distributor/swarming/v1" |
| "go.chromium.org/luci/dm/appengine/mutate" |
| "go.chromium.org/luci/grpc/discovery" |
| "go.chromium.org/luci/grpc/prpc" |
| "go.chromium.org/luci/server/router" |
| "go.chromium.org/luci/tumble" |
| ) |
| |
| func main() { |
| tmb := tumble.Service{} |
| |
| distributors := distributor.FactoryMap{} |
| jobsim.AddFactory(distributors) |
| swarming.AddFactory(distributors) |
| |
| reg := distributor.NewRegistry(distributors, mutate.FinishExecutionFn) |
| |
| basemw := standard.Base().Extend(func(c *router.Context, next router.Handler) { |
| c.Context = distributor.WithRegistry(c.Context, reg) |
| next(c) |
| }) |
| |
| r := router.New() |
| |
| svr := prpc.Server{} |
| deps.RegisterDepsServer(&svr) |
| discovery.Enable(&svr) |
| |
| distributor.InstallHandlers(r, basemw) |
| svr.InstallHandlers(r, basemw) |
| tmb.InstallHandlers(r, basemw) |
| standard.InstallHandlers(r) |
| |
| http.Handle("/", r) |
| appengine.Main() |
| } |