]> Cypherpunks repositories - gostls13.git/commit
net/http: use dynamic type assertion to remove HTTP server code from cmd/go
authorBrad Fitzpatrick <bradfitz@golang.org>
Wed, 16 Mar 2016 18:26:43 +0000 (18:26 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 16 Mar 2016 19:43:44 +0000 (19:43 +0000)
commita96884cf6c76a5d409ec4b193b6cc52534b80bad
tree89ee0431a57add24c85a30be9dc3a3b48082a5f8
parentbb3b10214d2d3a4403144d2edd420c27ca1a09e4
net/http: use dynamic type assertion to remove HTTP server code from cmd/go

I was wondering why cmd/go includes the HTTP server implementations.

Dumping the linker's deadcode dependency graph into a file and doing
some graph analysis, I found that the only reason cmd/go included an
HTTP server was because the maxBytesReader type (used by both the HTTP
transport & HTTP server) did a static type assertion to an HTTP server
type.

Changing it to a interface type assertion reduces the size of cmd/go
by 533KB (5.2%)

On linux/amd64, cmd/go goes from 10549200 to 10002624 bytes.

Add a test too so this doesn't regress. The test uses cmd/go as the
binary to test (a binary which needs the HTTP client but not the HTTP
server), but this change and test are equally applicable to any such
program.

Change-Id: I93865f43ec03b06d09241fbd9ea381817c2909c5
Reviewed-on: https://go-review.googlesource.com/20763
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: David Crawshaw <crawshaw@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
src/net/http/http_test.go
src/net/http/request.go