-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(*Stream).WriteMore: do not Flush #441
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
package test | ||
|
||
import ( | ||
"bytes" | ||
"strconv" | ||
"testing" | ||
|
||
jsoniter "github.com/json-iterator/go" | ||
) | ||
|
||
func Benchmark_stream_encode_big_object(b *testing.B) { | ||
var buf bytes.Buffer | ||
var stream = jsoniter.NewStream(jsoniter.ConfigDefault, &buf, 100) | ||
for i := 0; i < b.N; i++ { | ||
buf.Reset() | ||
stream.Reset(&buf) | ||
encodeObject(stream) | ||
if stream.Error != nil { | ||
b.Errorf("error: %+v", stream.Error) | ||
} | ||
} | ||
} | ||
|
||
func TestEncodeObject(t *testing.T) { | ||
var stream = jsoniter.NewStream(jsoniter.ConfigDefault, nil, 100) | ||
encodeObject(stream) | ||
if stream.Error != nil { | ||
t.Errorf("error encoding a test object: %+v", stream.Error) | ||
return | ||
} | ||
var m = make(map[string]interface{}) | ||
if err := jsoniter.Unmarshal(stream.Buffer(), &m); err != nil { | ||
t.Errorf("error unmarshaling a test object: %+v", err) | ||
return | ||
} | ||
} | ||
|
||
func encodeObject(stream *jsoniter.Stream) { | ||
stream.WriteObjectStart() | ||
|
||
stream.WriteObjectField("objectId") | ||
stream.WriteUint64(8838243212) | ||
|
||
stream.WriteMore() | ||
stream.WriteObjectField("name") | ||
stream.WriteString("Jane Doe") | ||
|
||
stream.WriteMore() | ||
stream.WriteObjectField("address") | ||
stream.WriteObjectStart() | ||
for i, field := range addressFields { | ||
if i != 0 { | ||
stream.WriteMore() | ||
} | ||
stream.WriteObjectField(field.key) | ||
stream.WriteString(field.val) | ||
} | ||
|
||
stream.WriteMore() | ||
stream.WriteObjectField("geo") | ||
{ | ||
stream.WriteObjectStart() | ||
stream.WriteObjectField("latitude") | ||
stream.WriteFloat64(-154.550817) | ||
stream.WriteMore() | ||
stream.WriteObjectField("longitude") | ||
stream.WriteFloat64(-84.176159) | ||
stream.WriteObjectEnd() | ||
|
||
} | ||
stream.WriteObjectEnd() | ||
|
||
stream.WriteMore() | ||
stream.WriteObjectField("specialties") | ||
stream.WriteArrayStart() | ||
for i, s := range specialties { | ||
if i != 0 { | ||
stream.WriteMore() | ||
} | ||
stream.WriteString(s) | ||
} | ||
stream.WriteArrayEnd() | ||
|
||
stream.WriteMore() | ||
for i, text := range longText { | ||
if i != 0 { | ||
stream.WriteMore() | ||
} | ||
stream.WriteObjectField("longText" + strconv.Itoa(i)) | ||
stream.WriteString(text) | ||
} | ||
|
||
for i := 0; i < 25; i++ { | ||
num := i * 18328 | ||
stream.WriteMore() | ||
stream.WriteObjectField("integerField" + strconv.Itoa(i)) | ||
stream.WriteInt64(int64(num)) | ||
} | ||
|
||
stream.WriteObjectEnd() | ||
} | ||
|
||
type field struct{ key, val string } | ||
|
||
var ( | ||
addressFields = []field{ | ||
{"address1", "123 Example St"}, | ||
{"address2", "Apartment 5D, Suite 3"}, | ||
{"city", "Miami"}, | ||
{"state", "FL"}, | ||
{"postalCode", "33133"}, | ||
{"country", "US"}, | ||
} | ||
specialties = []string{ | ||
"Web Design", | ||
"Go Programming", | ||
"Tennis", | ||
"Cycling", | ||
"Mixed martial arts", | ||
} | ||
longText = []string{ | ||
`Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.`, | ||
`Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?`, | ||
`But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?`, | ||
`At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.`, | ||
`On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.`, | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, except this line. Not sure what it's here for and if it could be removed. Pls have a check @taowen