Josh Wolfe
8f2af35eaa
std.json: WriteStream.print instead of writePreformatted
2023-07-27 10:23:58 -07:00
Josh Wolfe
c72a9feabe
std.json: support parsing json at comptime using FixedBufferAllocator ( #16488 )
2023-07-22 18:52:26 -04:00
Josh Wolfe
2ad16248d7
std.json.WriteStream: eliminate dead memory in optimized modes ( #16485 )
2023-07-22 18:49:59 -04:00
Garrett
04c7b55de4
std.json: fix key allocation in HashMap for streaming json parsing ( #16422 )
2023-07-22 22:33:50 +00:00
Josh Wolfe
8924f81d8c
std.json: Unify stringify and writeStream ( #16405 )
2023-07-21 19:56:46 -04:00
antlilja
b463e429b8
Remove len parameter from splat in standard lib
2023-07-12 15:35:57 -07:00
Techatrix
3bf0b8eada
explicitly specify error set of std.json.stringify
2023-07-10 10:50:57 -07:00
Josh Wolfe
874d2dd9f7
std.json: add generic hash map that parses/stringifies with arbitrary string keys ( #16366 )
...
* expose innerParseFromValue
2023-07-09 22:18:59 -04:00
Garrett
131bfe2f74
std.json: expose innerParse and add .allocate option ( #16312 )
2023-07-08 22:49:31 -04:00
Techatrix
89396ff02b
add jsonParseFromValue to std.json.Value ( #16324 )
2023-07-07 23:33:47 -04:00
Evin Yulo
ba6e5e65a0
json: give enums a default stringify implementation
2023-07-03 20:33:36 -07:00
yujiri8
b26fa4ec4b
add docstring to std.json.stringify ( #16241 )
2023-07-03 19:26:11 -04:00
mlugg
f26dda2117
all: migrate code to new cast builtin syntax
...
Most of this migration was performed automatically with `zig fmt`. There
were a few exceptions which I had to manually fix:
* `@alignCast` and `@addrSpaceCast` cannot be automatically rewritten
* `@truncate`'s fixup is incorrect for vectors
* Test cases are not formatted, and their error locations change
2023-06-24 16:56:39 -07:00
Josh Wolfe
0f2339f55b
std: json.parseFromValue() ( #15981 )
2023-06-20 19:01:34 -04:00
Eric Joldasov
50339f595a
all: zig fmt and rename "@XToY" to "@YFromX"
...
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
2023-06-19 12:34:42 -07:00
Josh Wolfe
32cb9462ff
std: Support user-provided jsonParse method. Unify json.Parser and json.parse* ( #15705 )
2023-06-19 11:21:37 -04:00
Josh Wolfe
018b743c7a
std: Rewrite low-level json api to support streaming ( #15602 )
2023-05-13 14:31:53 -04:00
Andrew Kelley
6261c13731
update codebase to use @memset and @memcpy
2023-04-28 13:24:43 -07:00
Janne Hellsten
61236c2aa1
std: @Vector support for std.json.parse
2023-04-26 00:52:17 +03:00
Marcus Ramse
1e087d3a64
std.json: support tuples
2023-03-21 15:01:45 +02:00
Andrew Kelley
aeaef8c0ff
update std lib and compiler sources to new for loop syntax
2023-02-18 19:17:21 -07:00
John Schmidt
b1dd4b17d8
std.json: don't free struct default values
...
Closes https://github.com/ziglang/zig/issues/9509 .
2023-02-04 20:51:15 +01:00
John Schmidt
b42caff2a2
std.json: avoid dangling pointers in ValueTree
...
Closes https://github.com/ziglang/zig/issues/5229 .
2023-02-04 20:34:47 +01:00
John Schmidt
73c857415e
std.json: fix parsing of structs with default value const pointers
2023-02-04 18:28:36 +01:00
Jon-Eric Cook
4c11684184
std.json: check output and source lengths in std.json
2023-01-28 16:26:36 +00:00
ominitay
889efddd1a
std.json: Fix parsing of large numbers
...
Numbers greater than about 2^53 are encoded as strings in JSON.
std.json.parseInternal previously errored out in this condition.
2022-07-23 13:52:16 +03:00
Andrew Kelley
c9006d9479
std.json: move tests to json/test.zig file
...
This accomplishes two things:
* Works around #8442 by putting stage1-specific logic in to disable all
the std.json tests.
* Slightly reduces installation size of zig since std lib files ending
in "test.zig" are excluded from being installed.
2022-07-07 00:05:21 -07:00
May B
ea13437ac5
std.json: Support disabling indent ( #11823 )
...
Newline Delimited JSON (ndjson) expect compact json without newline inside its content
Add None to StringfyOptions.indent and move newline writeByte inside StringfyOptions.outputIndent
2022-06-29 11:53:01 +02:00
Lee Cannon
1093b09a98
allocgate: renamed getAllocator function to allocator
2021-11-30 23:32:47 +00:00
Lee Cannon
85de022c56
allocgate: std Allocator interface refactor
2021-11-30 23:32:47 +00:00
Andrew Kelley
d29871977f
remove redundant license headers from zig standard library
...
We already have a LICENSE file that covers the Zig Standard Library. We
no longer need to remind everyone that the license is MIT in every single
file.
Previously this was introduced to clarify the situation for a fork of
Zig that made Zig's LICENSE file harder to find, and replaced it with
their own license that required annual payments to their company.
However that fork now appears to be dead. So there is no need to
reinforce the copyright notice in every single file.
2021-08-24 12:25:09 -07:00
Matthew Borkowski
e902c19c0e
std/json: Fix premature closing brace being considered valid JSON
...
return error from StreamingParser when reading closing brace when expecting value for an object key
2021-05-13 11:11:28 +02:00
Veikka Tuominen
fd77f2cfed
std: update usage of std.testing
2021-05-08 15:15:30 +03:00
xackus
a5007d819a
std.meta: add isError
2021-04-11 16:26:29 +02:00
Lewis Gaul
7302b096bd
Tidy-up in json test module ( #8431 )
...
* Switch json testing 'roundTrip()' to use FixedBufferStream, improve error handling, remove comptime from param
* Add 'try' to calls to roundTrip() that can now return an error
* Remove comptime from params in json testing, replace expect(false) with letting error propagate
* Add 'try' to calls to ok() that can now return an error
Co-authored-by: Lewis Gaul <legaul@cisco.com>
2021-04-04 19:27:47 -04:00
Lewis Gaul
74fd7107e8
Switch std.json to use an ordered hashmap
2021-04-04 10:16:59 +02:00
daurnimator
d4af35b3fe
HashMap.put returns !void, not a !bool
2021-02-27 13:11:47 +02:00
Jay Petacat
a9b505fa77
Reduce use of deprecated IO types
...
Related: #4917
2021-01-07 23:48:58 -08:00
Frank Denis
6c2e0c2046
Year++
2020-12-31 15:45:24 -08:00
xackus
21550bb7cd
std.json: unreachable -> expect in tests
2020-12-08 19:16:17 -05:00
Tadeo Kondrak
25ec2dbc1e
Add builtin.Signedness, use it instead of is_signed
2020-11-19 18:59:21 +02:00
LemonBoy
02efc2236a
std: Fix json utf{8,16} decoding on BE targets
...
Byteswap some values when LE ordering is required.
2020-11-02 11:46:50 +01:00
Andrew Kelley
4a69b11e74
add license header to all std lib files
...
add SPDX license identifier
copyright ownership is zig contributors
2020-08-20 16:07:04 -04:00
Vexu
e85fe13e44
run zig fmt on std lib and self hosted
2020-07-11 20:41:19 +03:00
Andrew Kelley
dd05f2be80
run zig fmt on std lib
2020-05-24 10:04:09 -04:00
Vexu
80d0c2f166
Merge pull request #5118 from xackus/fix-json-writestream
...
fix json.WriteStream.emitJson
2020-05-12 17:44:06 +03:00
Vexu
b1ebaba408
std.json properly handle comptime int/float
2020-05-12 15:15:21 +03:00
Timon Kruiper
c829f2f7b7
Add mips support to standard library
2020-04-24 15:28:55 -04:00
xackus
ebbd137a0e
fix json.WriteStream.emitJson
2020-04-23 22:14:23 +02:00
daurnimator
7a3d700fd9
std: introduce json.WriteStream.stringify
2020-04-01 00:13:00 +11:00