Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
ee9168d5
Commit
ee9168d5
authored
Aug 04, 2011
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gob: don't invoke GobEncoder on zero values.
R=golang-dev, dsymonds CC=golang-dev
https://golang.org/cl/4801076
parent
946cb0ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
encode.go
src/pkg/gob/encode.go
+24
-0
gobencdec_test.go
src/pkg/gob/gobencdec_test.go
+22
-0
No files found.
src/pkg/gob/encode.go
View file @
ee9168d5
...
...
@@ -466,6 +466,27 @@ func (enc *Encoder) encodeInterface(b *bytes.Buffer, iv reflect.Value) {
enc
.
freeEncoderState
(
state
)
}
// isZero returns whether the value is the zero of its type.
func
isZero
(
val
reflect
.
Value
)
bool
{
switch
val
.
Kind
()
{
case
reflect
.
Array
,
reflect
.
Map
,
reflect
.
Slice
,
reflect
.
String
:
return
val
.
Len
()
==
0
case
reflect
.
Bool
:
return
!
val
.
Bool
()
case
reflect
.
Complex64
,
reflect
.
Complex128
:
return
val
.
Complex
()
==
0
case
reflect
.
Chan
,
reflect
.
Func
,
reflect
.
Ptr
:
return
val
.
IsNil
()
case
reflect
.
Int
,
reflect
.
Int8
,
reflect
.
Int16
,
reflect
.
Int32
,
reflect
.
Int64
:
return
val
.
Int
()
==
0
case
reflect
.
Float32
,
reflect
.
Float64
:
return
val
.
Float
()
==
0
case
reflect
.
Uint
,
reflect
.
Uint8
,
reflect
.
Uint16
,
reflect
.
Uint32
,
reflect
.
Uint64
,
reflect
.
Uintptr
:
return
val
.
Uint
()
==
0
}
panic
(
"unknown type in isZero"
+
val
.
Type
()
.
String
())
}
// encGobEncoder encodes a value that implements the GobEncoder interface.
// The data is sent as a byte array.
func
(
enc
*
Encoder
)
encodeGobEncoder
(
b
*
bytes
.
Buffer
,
v
reflect
.
Value
)
{
...
...
@@ -614,6 +635,9 @@ func (enc *Encoder) gobEncodeOpFor(ut *userTypeInfo) (*encOp, int) {
}
else
{
v
=
reflect
.
ValueOf
(
unsafe
.
Unreflect
(
rt
,
p
))
}
if
!
state
.
sendZero
&&
isZero
(
v
)
{
return
}
state
.
update
(
i
)
state
.
enc
.
encodeGobEncoder
(
state
.
b
,
v
)
}
...
...
src/pkg/gob/gobencdec_test.go
View file @
ee9168d5
...
...
@@ -466,3 +466,25 @@ func TestGobEncoderIgnoreNonStructField(t *testing.T) {
t
.
Errorf
(
"expected 17 got %c"
,
x
.
X
)
}
}
func
TestGobEncoderIgnoreNilEncoder
(
t
*
testing
.
T
)
{
b
:=
new
(
bytes
.
Buffer
)
// First a field that's a structure.
enc
:=
NewEncoder
(
b
)
err
:=
enc
.
Encode
(
GobTest0
{
X
:
18
})
// G is nil
if
err
!=
nil
{
t
.
Fatal
(
"encode error:"
,
err
)
}
dec
:=
NewDecoder
(
b
)
x
:=
new
(
GobTest0
)
err
=
dec
.
Decode
(
x
)
if
err
!=
nil
{
t
.
Fatal
(
"decode error:"
,
err
)
}
if
x
.
X
!=
18
{
t
.
Errorf
(
"expected x.X = 18, got %v"
,
x
.
X
)
}
if
x
.
G
!=
nil
{
t
.
Errorf
(
"expected x.G = nil, got %v"
,
x
.
G
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment