v/vlib/json/json_primitives.v

197 lines
3.5 KiB
V
Raw Normal View History

// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
2019-06-23 04:21:30 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-06-22 20:20:28 +02:00
module json
2019-07-13 16:47:23 +02:00
#flag -I @VROOT/thirdparty/cJSON
2019-09-01 21:37:22 +02:00
#flag @VROOT/thirdparty/cJSON/cJSON.o
2019-06-23 09:03:52 +02:00
#include "cJSON.h"
2020-05-04 16:46:36 +02:00
#define js_get(object, key) cJSON_GetObjectItemCaseSensitive((object), (key))
2019-06-22 20:20:28 +02:00
struct C.cJSON {
valueint int
2019-09-01 21:37:22 +02:00
valuedouble f32
2019-06-22 20:20:28 +02:00
valuestring byteptr
}
2020-05-01 12:02:31 +02:00
pub fn decode(typ voidptr, s string) ?voidptr {
2020-04-14 00:37:47 +02:00
// compiler implementation
return 0
}
pub fn encode(x voidptr) string {
// compiler implementation
return ''
}
2020-05-04 16:46:36 +02:00
fn decode_int(root &C.cJSON) int {
2019-06-22 20:20:28 +02:00
if isnil(root) {
return 0
}
return root.valueint
}
2020-05-04 16:46:36 +02:00
fn decode_i8(root &C.cJSON) i8 {
if isnil(root) {
return i8(0)
}
return i8(root.valueint)
}
2020-05-04 16:46:36 +02:00
fn decode_i16(root &C.cJSON) i16 {
if isnil(root) {
return i16(0)
}
return i16(root.valueint)
}
2020-05-04 16:46:36 +02:00
fn decode_i64(root &C.cJSON) i64 {
if isnil(root) {
return i64(0)
}
2019-12-21 23:41:42 +01:00
return i64(root.valuedouble) // i64 is double in C
}
2020-05-04 16:46:36 +02:00
fn decode_byte(root &C.cJSON) byte {
if isnil(root) {
2019-09-01 21:37:22 +02:00
return byte(0)
}
2019-09-01 21:37:22 +02:00
return byte(root.valueint)
}
2020-05-04 16:46:36 +02:00
fn decode_u16(root &C.cJSON) u16 {
if isnil(root) {
return u16(0)
}
return u16(root.valueint)
}
2020-05-04 16:46:36 +02:00
fn decode_u32(root &C.cJSON) u32 {
if isnil(root) {
return u32(0)
}
return u32(root.valueint)
}
2020-05-04 16:46:36 +02:00
fn decode_u64(root &C.cJSON) u64 {
if isnil(root) {
return u64(0)
}
return u64(root.valueint)
}
2020-05-04 16:46:36 +02:00
fn decode_f32(root &C.cJSON) f32 {
if isnil(root) {
return f32(0)
}
return root.valuedouble
}
2020-05-04 16:46:36 +02:00
fn decode_f64(root &C.cJSON) f64 {
if isnil(root) {
return f64(0)
}
return f64(root.valuedouble)
}
2020-05-04 16:46:36 +02:00
fn decode_string(root &C.cJSON) string {
2019-06-22 20:20:28 +02:00
if isnil(root) {
return ''
}
if isnil(root.valuestring) {
return ''
}
2020-05-04 16:46:36 +02:00
// println('decode string valuestring="$root.valuestring"')
2019-06-22 20:20:28 +02:00
// return tos(root.valuestring, _strlen(root.valuestring))
2019-12-21 23:41:42 +01:00
return tos_clone(root.valuestring) // , _strlen(root.valuestring))
2019-06-22 20:20:28 +02:00
}
2019-11-24 04:27:02 +01:00
fn C.cJSON_IsTrue() bool
2019-12-21 23:41:42 +01:00
2019-11-24 04:27:02 +01:00
fn C.cJSON_CreateNumber() &C.cJSON
2019-12-21 23:41:42 +01:00
2019-11-24 04:27:02 +01:00
fn C.cJSON_CreateBool() &C.cJSON
2019-12-21 23:41:42 +01:00
2019-11-24 04:27:02 +01:00
fn C.cJSON_CreateString() &C.cJSON
2019-12-21 23:41:42 +01:00
2019-11-24 04:27:02 +01:00
fn C.cJSON_Parse() &C.cJSON
2019-12-21 23:41:42 +01:00
2019-11-24 04:27:02 +01:00
fn C.cJSON_PrintUnformatted() byteptr
2019-12-21 23:41:42 +01:00
2020-05-04 16:46:36 +02:00
fn decode_bool(root &C.cJSON) bool {
2019-06-22 20:20:28 +02:00
if isnil(root) {
return false
}
return C.cJSON_IsTrue(root)
}
// ///////////////////
2020-04-14 00:37:47 +02:00
fn encode_int(val int) &C.cJSON {
2019-06-22 20:20:28 +02:00
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_i8(val i8) &C.cJSON {
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_i16(val i16) &C.cJSON {
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_i64(val i64) &C.cJSON {
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_byte(val byte) &C.cJSON {
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_u16(val u16) &C.cJSON {
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_u32(val u32) &C.cJSON {
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_u64(val u64) &C.cJSON {
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_f32(val f32) &C.cJSON {
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_f64(val f64) &C.cJSON {
return C.cJSON_CreateNumber(val)
}
2020-04-14 00:37:47 +02:00
fn encode_bool(val bool) &C.cJSON {
2019-06-22 20:20:28 +02:00
return C.cJSON_CreateBool(val)
}
2020-04-14 00:37:47 +02:00
fn encode_string(val string) &C.cJSON {
return C.cJSON_CreateString(val.str)
2019-06-22 20:20:28 +02:00
}
// ///////////////////////
// user := decode_User(json_parse(js_string_var))
2019-09-02 18:17:05 +02:00
fn json_parse(s string) &C.cJSON {
2019-06-22 20:20:28 +02:00
return C.cJSON_Parse(s.str)
}
// json_string := json_print(encode_User(user))
2019-09-02 18:17:05 +02:00
fn json_print(json &C.cJSON) string {
2019-06-22 20:20:28 +02:00
s := C.cJSON_PrintUnformatted(json)
return unsafe { tos(s, C.strlen(s)) }
2019-06-22 20:20:28 +02:00
}
// / cjson wrappers
2019-09-02 18:17:05 +02:00
// fn json_array_for_each(val, root &C.cJSON) {
2019-06-22 20:20:28 +02:00
// #cJSON_ArrayForEach (val ,root)
// }