luci-lib-jsonc: improve handling of integral numeric values
authorJo-Philipp Wich <jo@mein.io>
Wed, 25 Oct 2023 20:35:08 +0000 (22:35 +0200)
committerJo-Philipp Wich <jo@mein.io>
Wed, 25 Oct 2023 20:42:51 +0000 (22:42 +0200)
commit62eb53513e54831c622ea80b830caf545592581e
treef4d697a6c96784efbf87217ebca007497a16bb6e
parent412a55a662f58b620f48c71cfe6085bd147c8216
luci-lib-jsonc: improve handling of integral numeric values

Properly deal with integral numeric values exceeding the int32_t range
by replacing the cast logic with more fine grained checks:

 - Lua numbers which are integers in the first place are directly converted
   to JSON integers

 - Finite double Lua numbers which are integral are converted to JSON
   integer values

 - All other numeric values are converted to JSON doubles

This should bring the handling of large integral value in line with the
documented behavior of turning non-fractional Lua numbers into JSON
integers.

Fixes: #6647
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit efcd4879781ee6c428b467052957534a7919d36d)
libs/luci-lib-jsonc/src/jsonc.c