-
Notifications
You must be signed in to change notification settings - Fork 272
/
ParseThenWrite.cs
90 lines (77 loc) · 2.43 KB
/
ParseThenWrite.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
using BenchmarkDotNet.Attributes;
using MicroBenchmarks;
using System.Buffers;
using System.Collections.Generic;
using System.Text.Json.Document.Tests;
using System.Text.Json.Nodes;
using System.Text.Json.Tests;
namespace System.Text.Json.Node.Tests
{
[BenchmarkCategory(Categories.Libraries, Categories.JSON)]
public class Perf_ParseThenWrite
{
public enum TestCaseType
{
HelloWorld,
DeepTree,
BroadTree,
LotsOfNumbers,
LotsOfStrings,
Json400B,
Json4KB,
Json400KB
}
private byte[] _dataUtf8;
private Utf8JsonWriter _writer;
[ParamsAllValues]
public TestCaseType TestCase;
[Params(true, false)]
public bool IsDataIndented;
[GlobalSetup]
public void Setup()
{
string jsonString = JsonStrings.ResourceManager.GetString(TestCase.ToString());
if (!IsDataIndented)
{
_dataUtf8 = DocumentHelpers.RemoveFormatting(jsonString);
}
else
{
_dataUtf8 = Encoding.UTF8.GetBytes(jsonString);
}
var abw = new ArrayBufferWriter<byte>();
_writer = new Utf8JsonWriter(abw, new JsonWriterOptions { Indented = IsDataIndented });
}
[GlobalCleanup]
public void CleanUp()
{
_writer.Dispose();
}
[Benchmark]
[MemoryRandomization]
public void ParseThenWrite()
{
_writer.Reset();
JsonNode jsonNode = JsonNode.Parse(_dataUtf8);
WalkNode(jsonNode);
jsonNode.WriteTo(_writer);
static void WalkNode(JsonNode node)
{
// Forces conversion of lazy JsonElement representation of document into
// a materialized JsonNode tree so that we measure writing performance
// of the latter representation.
switch (node)
{
case JsonObject obj:
foreach (KeyValuePair<string, JsonNode> kvp in obj)
WalkNode(kvp.Value);
break;
case JsonArray arr:
foreach (JsonNode elem in arr)
WalkNode(elem);
break;
}
}
}
}
}