1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

json: use &

This commit is contained in:
Alexander Medvednikov 2019-09-02 19:17:05 +03:00
parent 9b8de9b59c
commit bb9eec8696

View File

@ -14,70 +14,70 @@ struct C.cJSON {
valuestring byteptr valuestring byteptr
} }
fn jsdecode_int(root *C.cJSON) int { fn jsdecode_int(root &C.cJSON) int {
if isnil(root) { if isnil(root) {
return 0 return 0
} }
return root.valueint return root.valueint
} }
fn jsdecode_i8(root *C.cJSON) i8 { fn jsdecode_i8(root &C.cJSON) i8 {
if isnil(root) { if isnil(root) {
return i8(0) return i8(0)
} }
return i8(root.valueint) return i8(root.valueint)
} }
fn jsdecode_i16(root *C.cJSON) i16 { fn jsdecode_i16(root &C.cJSON) i16 {
if isnil(root) { if isnil(root) {
return i16(0) return i16(0)
} }
return i16(root.valueint) return i16(root.valueint)
} }
fn jsdecode_i64(root *C.cJSON) i64 { fn jsdecode_i64(root &C.cJSON) i64 {
if isnil(root) { if isnil(root) {
return i64(0) return i64(0)
} }
return i64(root.valuedouble) //i64 is double in C return i64(root.valuedouble) //i64 is double in C
} }
fn jsdecode_byte(root *C.cJSON) byte { fn jsdecode_byte(root &C.cJSON) byte {
if isnil(root) { if isnil(root) {
return byte(0) return byte(0)
} }
return byte(root.valueint) return byte(root.valueint)
} }
fn jsdecode_u16(root *C.cJSON) u16 { fn jsdecode_u16(root &C.cJSON) u16 {
if isnil(root) { if isnil(root) {
return u16(0) return u16(0)
} }
return u16(root.valueint) return u16(root.valueint)
} }
fn jsdecode_u32(root *C.cJSON) u32 { fn jsdecode_u32(root &C.cJSON) u32 {
if isnil(root) { if isnil(root) {
return u32(0) return u32(0)
} }
return u32(root.valueint) return u32(root.valueint)
} }
fn jsdecode_u64(root *C.cJSON) u64 { fn jsdecode_u64(root &C.cJSON) u64 {
if isnil(root) { if isnil(root) {
return u64(0) return u64(0)
} }
return u64(root.valueint) return u64(root.valueint)
} }
fn jsdecode_f32(root *C.cJSON) f32 { fn jsdecode_f32(root &C.cJSON) f32 {
if isnil(root) { if isnil(root) {
return f32(0) return f32(0)
} }
return f32(root.valuedouble) return f32(root.valuedouble)
} }
fn jsdecode_f64(root *C.cJSON) f64 { fn jsdecode_f64(root &C.cJSON) f64 {
if isnil(root) { if isnil(root) {
return f64(0) return f64(0)
} }
@ -85,7 +85,7 @@ fn jsdecode_f64(root *C.cJSON) f64 {
} }
fn jsdecode_string(root *C.cJSON) string { fn jsdecode_string(root &C.cJSON) string {
if isnil(root) { if isnil(root) {
return '' return ''
} }
@ -97,7 +97,7 @@ fn jsdecode_string(root *C.cJSON) string {
return tos_clone(root.valuestring)// , _strlen(root.valuestring)) return tos_clone(root.valuestring)// , _strlen(root.valuestring))
} }
fn jsdecode_bool(root *C.cJSON) bool { fn jsdecode_bool(root &C.cJSON) bool {
if isnil(root) { if isnil(root) {
return false return false
} }
@ -105,51 +105,51 @@ fn jsdecode_bool(root *C.cJSON) bool {
} }
// /////////////////// // ///////////////////
fn jsencode_int(val int) *C.cJSON { fn jsencode_int(val int) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_i8(val i8) *C.cJSON { fn jsencode_i8(val i8) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_i16(val i16) *C.cJSON { fn jsencode_i16(val i16) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_i64(val i64) *C.cJSON { fn jsencode_i64(val i64) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_byte(val byte) *C.cJSON { fn jsencode_byte(val byte) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_u16(val u16) *C.cJSON { fn jsencode_u16(val u16) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_u32(val u32) *C.cJSON { fn jsencode_u32(val u32) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_u64(val u64) *C.cJSON { fn jsencode_u64(val u64) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_f32(val f32) *C.cJSON { fn jsencode_f32(val f32) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_f64(val f64) *C.cJSON { fn jsencode_f64(val f64) &C.cJSON {
return C.cJSON_CreateNumber(val) return C.cJSON_CreateNumber(val)
} }
fn jsencode_bool(val bool) *C.cJSON { fn jsencode_bool(val bool) &C.cJSON {
return C.cJSON_CreateBool(val) return C.cJSON_CreateBool(val)
} }
fn jsencode_string(val string) *C.cJSON { fn jsencode_string(val string) &C.cJSON {
clone := val.clone() clone := val.clone()
return C.cJSON_CreateString(clone.str) return C.cJSON_CreateString(clone.str)
// return C.cJSON_CreateString2(val.str, val.len) // return C.cJSON_CreateString2(val.str, val.len)
@ -157,17 +157,17 @@ fn jsencode_string(val string) *C.cJSON {
// /////////////////////// // ///////////////////////
// user := decode_User(json_parse(js_string_var)) // user := decode_User(json_parse(js_string_var))
fn json_parse(s string) *C.cJSON { fn json_parse(s string) &C.cJSON {
return C.cJSON_Parse(s.str) return C.cJSON_Parse(s.str)
} }
// json_string := json_print(encode_User(user)) // json_string := json_print(encode_User(user))
fn json_print(json *C.cJSON) string { fn json_print(json &C.cJSON) string {
s := C.cJSON_PrintUnformatted(json) s := C.cJSON_PrintUnformatted(json)
return tos(s, C.strlen(s)) return tos(s, C.strlen(s))
} }
// / cjson wrappers // / cjson wrappers
// fn json_array_for_each(val, root *C.cJSON) { // fn json_array_for_each(val, root &C.cJSON) {
// #cJSON_ArrayForEach (val ,root) // #cJSON_ArrayForEach (val ,root)
// } // }