]> Cypherpunks repositories - gostls13.git/commit
archive/tar: isolate regular and sparse file handling as methods
authorJoe Tsai <joetsai@digital-static.net>
Sat, 20 Aug 2016 08:46:32 +0000 (01:46 -0700)
committerJoe Tsai <thebrokentoaster@gmail.com>
Thu, 25 Aug 2016 18:33:09 +0000 (18:33 +0000)
commit6af7639ae147689cbabd06287bf4ff15a4dfd896
tree506d51d22b75cb4d05766873cfd149128684c120
parentaa9b3d70142afb75a510c2c92b8c387fce10b2c9
archive/tar: isolate regular and sparse file handling as methods

Factor out the regular file handling logic into handleRegularFile
from nextHeader. We will need to reuse this logic when fixing #15573
in a future CL.

Factor out the sparse file handling logic into handleSparseFile.
Currently this logic is split between nextHeader (for GNU sparse
files) and Next (for PAX sparse files). Instead, we move this
related code into a single method.

There is no overall logic change. Thus, no unit tests.

Updates #15573 #15564

Change-Id: I3b8270d8b4e080e77d6c0df6a123d677c82cc466
Reviewed-on: https://go-review.googlesource.com/27454
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
src/archive/tar/reader.go