Sandwich是一个go的HTTP中间件框架,能够让你轻松编写和测试处理程序

网友投稿 679 2022-10-12

Sandwich是一个go的HTTP中间件框架,能够让你轻松编写和测试处理程序

Sandwich是一个go的HTTP中间件框架,能够让你轻松编写和测试处理程序

Keep pilin' it on!

Sandwich is a middleware framework that lets you write your handlers and middleware the way you want to and it takes care of tracking & validating dependencies. Use any router you like!

Features

Keeps middleware and handlers simple and testable.Consolidates error handling.Ensures that middleware dependencies are safely provided -- avoids unsafe casting from generic context objects.Detects missing dependencies during route construction (before the server starts listening!), not when the route is actually called.Provides clear and helpful error messages.Compatible with the http.Handler interface and lots of existing middleware.Provides just a touch of magic: enough to make things easier, but not enough to induce a debugging nightmare.When extreme performance is necessary, sandwich can generate reflection-free, non-magical idiomatic go code for your handlers.

Getting started

Here's a very simple example of using sandwich with the standard HTTP stack:

package mainimport ( "fmt" "log" "net/http" "github.com/augustoroman/sandwich")func main() { // Create a default sandwich middlware stack that includes logging and // a simple error handler. s := sandwich.TheUsual() http.Handle("/", s.With(func(w http.ResponseWriter) { fmt.Fprintf(w, "Hello world!") })) if err := http.ListenAndServe(":6060", nil); err != nil { log.Fatal(err) }}

See the examples directory for:

A hello-world sampleA basic usage demoA TODO app showing advanced usage including custom error handling, embedded files, code generation, & login and authentication via oauth.

Note that sandwich doesn't provide any routing. You can use it with any other router, for example:

net/http stdlib routerhttprouter (use the httprouter_sandwich adapter)gorilla/muxmartini (use the martini_sandwich adapter)...or any other one you like.

Usage

Providing

Sandwich automatically calls your middleware with the necessary arguments to run them based on the types they require. These types can be provided by previous middleware or directly during the initial setup.

For example, you can use this to provide your database to all handlers:

func main() { db_conn := ConnectToDatabase(...) s := sandwich.TheUsual().Provide(db_conn) http.Handle("/", s.With(home))}func Home(w http.ResponseWriter, r *http.Request, db_conn *Database) { // process the request here, using the provided db_conn}

Provide(...) and ProvideAs(...) are excellent alternatives to using global values, plus they keep your functions easy to test!

Handlers

In many cases you want to initialize a value based on the request, for example extracting the user login:

func main() { s := sandwich.TheUsual().With(ParseUserCookie) http.Handle("/", s.With(SayHi))}// You can write & test exactly this signature:func ParseUserCookie(r *http.Request) (User, error) { ... }// Then write your handler assuming User is available:func SayHi(w http.ResponseWriter, u User) { fmt.Fprintf(w, "Hello %s", u.Name)}

This starts to show off the real power of sandwich. For each request, the following occurs:

First ParseUserCookie is called. If it returns a non-nil error, sandwich's HandleError is called and the request is aborted. If the error is nil, processing continues.Next SayHi is called with User returned from ParseUserCookie.

This allows you to write small, independently testable functions and let sandwich chain them together for you. Sandwich works hard to ensure that you don't get annoying run-time errors: it's structured such that it must always be possible to call your functions when the middleware is initialized rather than when the http handler is being executed, so you don't get surprised while your server is running.

Error Handlers

When a handler returns an error, sandwich aborts the middleware chain and looks for the most recently registered error handler and calls that. Error handlers may accept any types that have been provided so far in the middleware stack as well as the error type. They must not have any return values.

Here's an example of rendering errors with a custom error page:

type ErrorPageTemplate *template.Templatefunc main() { tpl := template.Must(template.ParseFiles("path/to/my/error_page.tpl")) s := sandwich.TheUsual(). Provide(ErrorPageTemplate(tpl)). OnErr(MyErrorHandler) ...}func MyErrorHandler(w http.ResponseWriter, t ErrorPageTemplate, l *sandwich.LogEntry, err error) { if err == sandwich.Done { // sandwich.Done can be returned to abort middleware. return // It indicates there was no actual error, so just return. } // Unwrap to a sandwich.Error that has Code, ClientMsg, and internal LogMsg. e := sandwich.ToError(err) // If there's an internal log message, add it to the request log. e.LogIfMsg(l) // Respond with my custom html error page, including the client-facing msg. w.WriteHeader(e.Code) t.Execute(w, map[string]string{Msg: e.ClientMsg})}

Error handlers allow you consolidate the error handling of your web app. You can customize the error page, assign user-facing error codes, detect and fire alerts for certain errors, and control which errors get logged -- all in one place.

Sandwich never sends internal error details to the client and insteads logs the details.

Wrapping Handlers

Sandwich also allows registering handlers to run during AND after the middleware (and error handling) stack has completed. This is especially useful for handles such as logging or gzip wrappers. Once the before handle is run, the 'after' handlers are queued to run and will be run regardless of whether an error aborts any subsequent middleware handlers.

Typically this is done with the first function creating and initializing some state to pass to the deferred handler. For example, the logging handlers are:

// StartLog creates a *LogEntry and initializes it with basic request// information.func StartLog(r *http.Request) *LogEntry { return &LogEntry{Start: time.Now(), ...}}// Commit fills in the remaining *LogEntry fields and writes the entry out.func (entry *LogEntry) Commit(w *ResponseWriter) { entry.Elapsed = time.Since(entry.Start) ... WriteLog(*entry)}

and are added to the chain using:

Wrap(StartLog, (*LogEntry).Commit)

In this case, StartLog returns a *LogEntry that is then provided to downstream handlers, including the deferred Commit handler -- in this case a method expression that takes the *LogEntry as its value receiver.

Providing Interfaces

Unfortunately, providing interfaces is a little tricky. Since interfaces in Go are only used for static typing, the encapsulation isn't passed to functions that accept interface{}, like Provide().

This means that if you have an interface and a concrete implementation, such as:

type UserDatabase interface{ GetUserProfile(u User) (Profile, error)}type userDbImpl struct { ... }func (u *userDbImpl) GetUserProfile(u User) (Profile, error) { ... }

You cannot provide this to handlers directly via the Provide() call.

udb := &userDbImpl{...}// DOESN'T WORK: this will provide *userDbImpl, not UserDatabases.Provide(udb)s.Provide((UserDatabase)(udb)) // DOESN'T WORK EITHERudb_iface := UserDatabase(udb)s.Provide(&udb_iface) // STILL DOESN'T WORK!

Instead, you have to either use ProvideAs() or With():

udb := &userDbImpl{...}// either use ProvideAs() with a pointer to the interfaces.ProvideAs(udb, (*UserDatabase)(nil))// or add a handler that returns the interfaces.With(func() UserDatabase { return udb })

It's a bit silly, but there you are.

FAQ

Sandwich uses reflection-based dependency-injection to call the middleware functions with the parameters they need.

Q: How does this compare to martini?

For those of you familiar with martini, sandwich has a lot of similarities but isn't exactly the same. Compared to martini, sandwich DOESN'T:

...have a router, it's only middleware handling. You can use martini, httprouter, the default Go lib, etc to do routing....stop processing middleware when something is written to the response. You must return an error (e.g. sandwich.Done) to abort the middleware processing....do some of the more esoteric things that martini does, like if a handler returns a string, then Martini assumes that's the response. I've never seen those used outside of toy examples.

On the other hand, sandwich DOES:

...explicitly ensure that dependencies must be provided by enforcing that inputs to middleware are provided as return values of previous middleware. Failures occur at route creation rather than during an HTTP request....special-case error return values and provide explicit, consolidated error handling in the middleware chain.

Q: OMG reflection and dependency-injection, isn't that terrible and slow and non-idiomatic go?!

Whoa, nelly. Let's deal with those one at time, m'kay?

Q: Isn't reflection slow?

Not compared to everything else a webserver needs to do.

Yes, sandwich's reflection-based dependency-injection code is slower than middleware code that directly calls functions, however the vast majority of server code (especially during development) is not impacted by time spent calling a few functions, but rather by HTTP network I/O, request parsing, database I/O, response marshalling, etc.

Q: Ok, but aren't both reflection and dependency-injection non-idiomatic Go?

Sorta. The use of reflection in and of itself isn't non-idiomatic, but the use of magical dependency injection is: Go eschews magic.

However, one of the major goals of this library is to allow the HTTP handler code (and all middleware) to be really clean, idiomatic go functions that are testable by themselves. The idea is that the magic is small, contained, doesn't leak, and provides substantial benefit.

Q: But wait, don't you get annoying run-time "dependency-not-found" errors with dependency-injection?

While it's true that you can't get the same compile-time checking that you do with direct-call-based middleware, sandwich works really hard to ensure that you don't get surprises while running your server.

At the time each middleware function is added to the stack, the library ensures that it's dependencies have been explicitly provided. One of the features of sandwich is that you can't arbitrary inject values -- they need to have an explicit provisioning source.

Q: Doesn't the http.Request.Context in go 1.7 solve the middleware dependency problem?

Have a request-scoped context allows you to pass values between middleware handlers, it's true. However, there's no guarantee that the values are available, so you get the same run-time bugs that you might get with a naive dependency-injection framework. In addition, you have to do type-assertions to get your values, so there's another possible source of bugs. One of the goals of sandwich is to avoid these two types of bugs.

Q: Why do I have to use two functions (before & after) to wrap a request. Why can't I just have one with a next() function?

Many middleware frameworks provide the capability to wrap a request via a next() function. Sometimes it's part of a context object (martini's Context.Next(), gin's Context.Next()) and sometimes it's directly provided (negroni's third handler arg).

While implementing sandwich, I initially included a next() function until I realized it was impossible to validate the dependencies with such a function. Sandwich guarantees that dependencies can be supplied, and therefore next() had to go.

Instead, I took a tip from go and instead implemented defer. The wrap interface simply makes it obvious that there's a before and after. This allows me to keep my dependency guarantee.

Q: I like my hand-coded handlers, they are super fast!

Guess what?! Because of the structure that sandwich imposes on constructing middleware chains, it can actually generate an idiomatic Go middleware function (with no reflection or depedency injection) to replace the sandwich calls! So for those ultra time-sensitive functions, you can replace them with fast, generated code and still reap the benefits of using sandwich with your handlers!

Q: I don't know, it's still scary and terrible!

Don't get scared off. Take a look at the library, try it out, and I hope you enjoy it. If you don't, there are lots of great alternatives.

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:PG jsonb 实例
下一篇:力扣 83双周赛T4 6131.不可能得到的最短骰子序列、303 周赛T4 6127.优质数对的数目
相关文章

 发表评论

暂时没有评论,来抢沙发吧~