本文整理匯總了Golang中github.com/flynn/flynn/Godeps/_workspace/src/github.com/go-martini/martini.Context類的典型用法代碼示例。如果您正苦於以下問題:Golang Context類的具體用法?Golang Context怎麽用?Golang Context使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Context類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: getFormationMiddleware
func getFormationMiddleware(c martini.Context, app *ct.App, params martini.Params, repo *FormationRepo, r ResponseHelper) {
formation, err := repo.Get(app.ID, params["releases_id"])
if err != nil {
r.Error(err)
return
}
c.Map(formation)
}
示例2: getResourceMiddleware
func getResourceMiddleware(c martini.Context, params martini.Params, repo *ResourceRepo, r ResponseHelper) {
resource, err := repo.Get(params["resources_id"])
if err != nil {
r.Error(err)
return
}
c.Map(resource)
}
示例3: resourceServerMiddleware
func resourceServerMiddleware(c martini.Context, p *ct.Provider, dc resource.DiscoverdClient, r ResponseHelper) {
server, err := resource.NewServerWithDiscoverd(p.URL, dc)
if err != nil {
r.Error(err)
return
}
c.Map(server)
c.Next()
server.Close()
}
示例4: getRouteMiddleware
func getRouteMiddleware(app *ct.App, c martini.Context, params martini.Params, router routerc.Client, r ResponseHelper) {
route, err := router.GetRoute(routeID(params))
if err == routerc.ErrNotFound || err == nil && route.ParentRef != routeParentRef(app) {
err = ErrNotFound
}
if err != nil {
r.Error(err)
return
}
c.Map(route)
}
示例5: reqHelperMiddleware
func reqHelperMiddleware(c martini.Context, req *http.Request, w http.ResponseWriter, r render.Render, conf *Config) {
rh := &reqHelper{
Render: r,
ResponseWriter: w,
req: req,
conf: conf,
}
rh.session, _ = conf.SessionStore.Get(req, "session")
c.MapTo(rh, (*RequestHelper)(nil))
}
示例6: validateAndMap
// Performs validation and combines errors from validation
// with errors from deserialization, then maps both the
// resulting struct and the errors to the context.
func validateAndMap(obj reflect.Value, context martini.Context, errors *Errors, ifacePtr ...interface{}) {
context.Invoke(Validate(obj.Interface()))
errors.combine(getErrors(context))
context.Map(*errors)
context.Map(obj.Elem().Interface())
if len(ifacePtr) > 0 {
context.MapTo(obj.Elem().Interface(), ifacePtr[0])
}
}
示例7: connectHostMiddleware
func connectHostMiddleware(c martini.Context, params martini.Params, cl clusterClient, r ResponseHelper) {
hostID, jobID := parseJobID(params["jobs_id"])
if hostID == "" {
log.Printf("Unable to parse hostID from %q", params["jobs_id"])
r.Error(ErrNotFound)
return
}
params["jobs_id"] = jobID
client, err := cl.DialHost(hostID)
if err != nil {
r.Error(err)
return
}
c.MapTo(client, (*cluster.Host)(nil))
c.Next()
client.Close()
}
示例8: getErrors
func getErrors(context martini.Context) Errors {
return context.Get(reflect.TypeOf(Errors{})).Interface().(Errors)
}
示例9: responseHelperHandler
func responseHelperHandler(c martini.Context, w http.ResponseWriter, r render.Render) {
c.MapTo(&responseHelper{w, r}, (*ResponseHelper)(nil))
}