blob: 5b819ba1e2156d10f0b755974e69bb8f60c5fa09 [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:math';
import 'dart:convert';
class JsonRoundTripBenchmark {
void run() {
final res = json.decode(jsonData);
final out = json.encode(res);
if (out[0] != jsonData[0]) {
throw 'json conversion error';
}
}
}
// Builds around 350 KB of json data - small enough so the decoded object graph
// fits into new space.
final String jsonData = () {
final rnd = Random(42);
dynamic buildTree(int depth) {
final int coin = rnd.nextInt(1000);
if (depth == 0) {
if (coin % 2 == 0) return coin;
return 'foo-$coin';
}
if (coin % 2 == 0) {
final map = <String, dynamic>{};
final int length = rnd.nextInt(19);
for (int i = 0; i < length; ++i) {
map['bar-$i'] = buildTree(depth - 1);
}
return map;
} else {
final list = <dynamic>[];
final int length = rnd.nextInt(18);
for (int i = 0; i < length; ++i) {
list.add(buildTree(depth - 1));
}
return list;
}
}
return json.encode({'data': buildTree(5)});
}();