mirror of
https://github.com/ziglang/zig.git
synced 2024-11-24 21:30:14 +00:00
json.ArrayHashMapUnmanaged
This commit is contained in:
parent
ba8bc8ffcd
commit
c991da1339
@ -69,6 +69,8 @@ pub const ObjectMap = @import("json/dynamic.zig").ObjectMap;
|
||||
pub const Array = @import("json/dynamic.zig").Array;
|
||||
pub const Value = @import("json/dynamic.zig").Value;
|
||||
|
||||
pub const ArrayHashMapUnmanaged = @import("json/hashmap.zig").ArrayHashMapUnmanaged;
|
||||
|
||||
pub const validate = @import("json/scanner.zig").validate;
|
||||
pub const Error = @import("json/scanner.zig").Error;
|
||||
pub const reader = @import("json/scanner.zig").reader;
|
||||
@ -117,6 +119,7 @@ test {
|
||||
_ = @import("json/scanner.zig");
|
||||
_ = @import("json/write_stream.zig");
|
||||
_ = @import("json/dynamic.zig");
|
||||
_ = @import("json/hashmap_test.zig");
|
||||
_ = @import("json/static.zig");
|
||||
_ = @import("json/stringify.zig");
|
||||
_ = @import("json/JSONTestSuite_test.zig");
|
||||
|
103
lib/std/json/hashmap.zig
Normal file
103
lib/std/json/hashmap.zig
Normal file
@ -0,0 +1,103 @@
|
||||
const std = @import("std");
|
||||
const Allocator = std.mem.Allocator;
|
||||
|
||||
const ParseOptions = @import("static.zig").ParseOptions;
|
||||
const innerParse = @import("static.zig").innerParse;
|
||||
const innerParseFromValue = @import("static.zig").innerParseFromValue;
|
||||
const Value = @import("dynamic.zig").Value;
|
||||
const StringifyOptions = @import("stringify.zig").StringifyOptions;
|
||||
const stringify = @import("stringify.zig").stringify;
|
||||
const encodeJsonString = @import("stringify.zig").encodeJsonString;
|
||||
|
||||
/// A thin wrapper around `std.StringArrayHashMapUnmanaged` that implements
|
||||
/// `jsonParse`, `jsonParseFromValue`, and `jsonStringify`.
|
||||
/// This is useful when your JSON schema has an object with arbitrary data keys
|
||||
/// instead of comptime-known struct field names.
|
||||
pub fn ArrayHashMapUnmanaged(comptime T: type) type {
|
||||
return struct {
|
||||
map: std.StringArrayHashMapUnmanaged(T) = .{},
|
||||
|
||||
pub fn deinit(self: *@This(), allocator: Allocator) void {
|
||||
self.map.deinit(allocator);
|
||||
}
|
||||
|
||||
pub fn jsonParse(allocator: Allocator, source: anytype, options: ParseOptions) !@This() {
|
||||
var map = std.StringArrayHashMapUnmanaged(T){};
|
||||
errdefer map.deinit(allocator);
|
||||
|
||||
if (.object_begin != try source.next()) return error.UnexpectedToken;
|
||||
while (true) {
|
||||
const token = try source.nextAlloc(allocator, .alloc_if_needed);
|
||||
switch (token) {
|
||||
inline .string, .allocated_string => |k| {
|
||||
const gop = try map.getOrPut(allocator, k);
|
||||
if (token == .allocated_string) {
|
||||
// Free the key before recursing in case we're using an allocator
|
||||
// that optimizes freeing the last allocated object.
|
||||
allocator.free(k);
|
||||
}
|
||||
if (gop.found_existing) {
|
||||
switch (options.duplicate_field_behavior) {
|
||||
.use_first => {
|
||||
// Parse and ignore the redundant value.
|
||||
// We don't want to skip the value, because we want type checking.
|
||||
_ = try innerParse(T, allocator, source, options);
|
||||
continue;
|
||||
},
|
||||
.@"error" => return error.DuplicateField,
|
||||
.use_last => {},
|
||||
}
|
||||
}
|
||||
gop.value_ptr.* = try innerParse(T, allocator, source, options);
|
||||
},
|
||||
.object_end => break,
|
||||
else => unreachable,
|
||||
}
|
||||
}
|
||||
return .{ .map = map };
|
||||
}
|
||||
|
||||
pub fn jsonParseFromValue(allocator: Allocator, source: Value, options: ParseOptions) !@This() {
|
||||
if (source != .object) return error.UnexpectedToken;
|
||||
|
||||
var map = std.StringArrayHashMapUnmanaged(T){};
|
||||
errdefer map.deinit(allocator);
|
||||
|
||||
var it = source.object.iterator();
|
||||
while (it.next()) |kv| {
|
||||
try map.put(allocator, kv.key_ptr.*, try innerParseFromValue(T, allocator, kv.value_ptr.*, options));
|
||||
}
|
||||
return .{ .map = map };
|
||||
}
|
||||
|
||||
pub fn jsonStringify(self: @This(), options: StringifyOptions, out_stream: anytype) !void {
|
||||
try out_stream.writeByte('{');
|
||||
var field_output = false;
|
||||
var child_options = options;
|
||||
child_options.whitespace.indent_level += 1;
|
||||
var it = self.map.iterator();
|
||||
while (it.next()) |kv| {
|
||||
if (!field_output) {
|
||||
field_output = true;
|
||||
} else {
|
||||
try out_stream.writeByte(',');
|
||||
}
|
||||
try child_options.whitespace.outputIndent(out_stream);
|
||||
try encodeJsonString(kv.key_ptr.*, options, out_stream);
|
||||
try out_stream.writeByte(':');
|
||||
if (child_options.whitespace.separator) {
|
||||
try out_stream.writeByte(' ');
|
||||
}
|
||||
try stringify(kv.value_ptr.*, child_options, out_stream);
|
||||
}
|
||||
if (field_output) {
|
||||
try options.whitespace.outputIndent(out_stream);
|
||||
}
|
||||
try out_stream.writeByte('}');
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
test {
|
||||
_ = @import("hashmap_test.zig");
|
||||
}
|
139
lib/std/json/hashmap_test.zig
Normal file
139
lib/std/json/hashmap_test.zig
Normal file
@ -0,0 +1,139 @@
|
||||
const std = @import("std");
|
||||
const testing = std.testing;
|
||||
|
||||
const ArrayHashMapUnmanaged = @import("hashmap.zig").ArrayHashMapUnmanaged;
|
||||
|
||||
const parseFromSlice = @import("static.zig").parseFromSlice;
|
||||
const parseFromSliceLeaky = @import("static.zig").parseFromSliceLeaky;
|
||||
const parseFromValue = @import("static.zig").parseFromValue;
|
||||
const stringifyAlloc = @import("stringify.zig").stringifyAlloc;
|
||||
const Value = @import("dynamic.zig").Value;
|
||||
|
||||
const T = struct {
|
||||
i: i32,
|
||||
s: []const u8,
|
||||
};
|
||||
|
||||
test "parse json hashmap" {
|
||||
const doc =
|
||||
\\{
|
||||
\\ "abc": {"i": 0, "s": "d"},
|
||||
\\ "xyz": {"i": 1, "s": "w"}
|
||||
\\}
|
||||
;
|
||||
const parsed = try parseFromSlice(ArrayHashMapUnmanaged(T), testing.allocator, doc, .{});
|
||||
defer parsed.deinit();
|
||||
|
||||
try testing.expectEqual(@as(usize, 2), parsed.value.map.count());
|
||||
try testing.expectEqualStrings("d", parsed.value.map.get("abc").?.s);
|
||||
try testing.expectEqual(@as(i32, 1), parsed.value.map.get("xyz").?.i);
|
||||
}
|
||||
|
||||
test "parse json hashmap duplicate fields" {
|
||||
var arena = std.heap.ArenaAllocator.init(std.testing.allocator);
|
||||
defer arena.deinit();
|
||||
|
||||
const doc =
|
||||
\\{
|
||||
\\ "abc": {"i": 0, "s": "d"},
|
||||
\\ "abc": {"i": 1, "s": "w"}
|
||||
\\}
|
||||
;
|
||||
|
||||
try testing.expectError(error.DuplicateField, parseFromSliceLeaky(ArrayHashMapUnmanaged(T), arena.allocator(), doc, .{
|
||||
.duplicate_field_behavior = .@"error",
|
||||
}));
|
||||
|
||||
const first = try parseFromSliceLeaky(ArrayHashMapUnmanaged(T), arena.allocator(), doc, .{
|
||||
.duplicate_field_behavior = .use_first,
|
||||
});
|
||||
try testing.expectEqual(@as(usize, 1), first.map.count());
|
||||
try testing.expectEqual(@as(i32, 0), first.map.get("abc").?.i);
|
||||
|
||||
const last = try parseFromSliceLeaky(ArrayHashMapUnmanaged(T), arena.allocator(), doc, .{
|
||||
.duplicate_field_behavior = .use_last,
|
||||
});
|
||||
try testing.expectEqual(@as(usize, 1), last.map.count());
|
||||
try testing.expectEqual(@as(i32, 1), last.map.get("abc").?.i);
|
||||
}
|
||||
|
||||
test "stringify json hashmap" {
|
||||
var value = ArrayHashMapUnmanaged(T){};
|
||||
defer value.deinit(testing.allocator);
|
||||
{
|
||||
const doc = try stringifyAlloc(testing.allocator, value, .{});
|
||||
defer testing.allocator.free(doc);
|
||||
try testing.expectEqualStrings("{}", doc);
|
||||
}
|
||||
|
||||
try value.map.put(testing.allocator, "abc", .{ .i = 0, .s = "d" });
|
||||
try value.map.put(testing.allocator, "xyz", .{ .i = 1, .s = "w" });
|
||||
|
||||
{
|
||||
const doc = try stringifyAlloc(testing.allocator, value, .{});
|
||||
defer testing.allocator.free(doc);
|
||||
try testing.expectEqualStrings(
|
||||
\\{"abc":{"i":0,"s":"d"},"xyz":{"i":1,"s":"w"}}
|
||||
, doc);
|
||||
}
|
||||
|
||||
try testing.expect(value.map.swapRemove("abc"));
|
||||
{
|
||||
const doc = try stringifyAlloc(testing.allocator, value, .{});
|
||||
defer testing.allocator.free(doc);
|
||||
try testing.expectEqualStrings(
|
||||
\\{"xyz":{"i":1,"s":"w"}}
|
||||
, doc);
|
||||
}
|
||||
|
||||
try testing.expect(value.map.swapRemove("xyz"));
|
||||
{
|
||||
const doc = try stringifyAlloc(testing.allocator, value, .{});
|
||||
defer testing.allocator.free(doc);
|
||||
try testing.expectEqualStrings("{}", doc);
|
||||
}
|
||||
}
|
||||
|
||||
test "stringify json hashmap whitespace" {
|
||||
var value = ArrayHashMapUnmanaged(T){};
|
||||
defer value.deinit(testing.allocator);
|
||||
try value.map.put(testing.allocator, "abc", .{ .i = 0, .s = "d" });
|
||||
try value.map.put(testing.allocator, "xyz", .{ .i = 1, .s = "w" });
|
||||
|
||||
{
|
||||
const doc = try stringifyAlloc(testing.allocator, value, .{
|
||||
.whitespace = .{
|
||||
.indent = .{ .space = 2 },
|
||||
},
|
||||
});
|
||||
defer testing.allocator.free(doc);
|
||||
try testing.expectEqualStrings(
|
||||
\\{
|
||||
\\ "abc": {
|
||||
\\ "i": 0,
|
||||
\\ "s": "d"
|
||||
\\ },
|
||||
\\ "xyz": {
|
||||
\\ "i": 1,
|
||||
\\ "s": "w"
|
||||
\\ }
|
||||
\\}
|
||||
, doc);
|
||||
}
|
||||
}
|
||||
|
||||
test "json parse from value hashmap" {
|
||||
const doc =
|
||||
\\{
|
||||
\\ "abc": {"i": 0, "s": "d"},
|
||||
\\ "xyz": {"i": 1, "s": "w"}
|
||||
\\}
|
||||
;
|
||||
const parsed1 = try parseFromSlice(Value, testing.allocator, doc, .{});
|
||||
defer parsed1.deinit();
|
||||
|
||||
const parsed2 = try parseFromValue(ArrayHashMapUnmanaged(T), testing.allocator, parsed1.value, .{});
|
||||
defer parsed2.deinit();
|
||||
|
||||
try testing.expectEqualStrings("d", parsed2.value.map.get("abc").?.s);
|
||||
}
|
Loading…
Reference in New Issue
Block a user