1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
//! Types and traits for decoding values from the database.

use serde::de::DeserializeOwned;

use crate::database::Database;
use crate::value::HasRawValue;

/// A type that can be decoded from the database.

pub trait Decode<'de, DB>
    where
        Self: Sized + 'de,
        DB: Database,
{
    fn decode(value: <DB as HasRawValue<'de>>::RawValue) -> crate::Result<Self>;
}

/// decode json vec to an object

/// support decode types:

/// serde_json::Value,BigDecimal, i8..i64,u8..u64,serde_json::Number,bool,String

/// or object used serde_json macro object

pub fn json_decode<T: ?Sized>(datas: Vec<serde_json::Value>) -> Result<T, crate::Error>
    where T: DeserializeOwned {
    let mut js = serde_json::Value::Null;
    let type_name = std::any::type_name::<T>();
    if is_array(type_name) {
        //decode array

        js = serde_json::Value::Array(datas);
    } else {
        match type_name {
            //decode single type option

            "core::option::Option<i8>" | "core::option::Option<i16>" | "core::option::Option<i32>" | "core::option::Option<i64>" |
            "core::option::Option<u8>" | "core::option::Option<u16>" | "core::option::Option<u32>" | "core::option::Option<u64>" |
            "core::option::Option<f32>" | "core::option::Option<f64>" |
            "core::option::Option<serde_json::number::Number>" |
            "core::option::Option<bigdecimal::BigDecimal>" |
            "core::option::Option<bool>" |
            "core::option::Option<alloc::string::String>" |
            //decode single type(from map type get an value)

            "i8" | "i16" | "i32" | "i64" |
            "u8" | "u16" | "u32" | "u64" |
            "f32" | "f64" |
            "serde_json::number::Number" |
            "bigdecimal::BigDecimal" |
            "bool" |
            "alloc::string::String" => {
                //decode struct

                if datas.len() > 1 {
                    return Result::Err(decode_err!("[rbatis] rows.affected_rows > 1,but decode one result({})!", type_name));
                }
                for item in datas {
                    match item {
                        serde_json::Value::Object(arg) => {
                            for (_, r) in arg {
                                match type_name {
                                    "alloc::string::String" | "bigdecimal::BigDecimal" => {
                                        js = serde_json::Value::String(r.to_string());
                                    }
                                    _ => {
                                        js = r;
                                    }
                                }
                                break;
                            }
                        }
                        _ => {}
                    }
                    break;
                }
            }
            "serde_json::value::Value" => {
                //decode json

                js = serde_json::Value::Array(datas)
            }
            _ => {
                //decode struct

                if datas.len() > 1 {
                    return Result::Err(decode_err!("[rbatis] rows.affected_rows > 1,but decode one result({})!", type_name));
                }
                //decode single object

                for x in datas {
                    js = x;
                    break;
                }
            }
        }
    }
    let decode_result = serde_json::from_value(js);
    if decode_result.is_ok() {
        return Result::Ok(decode_result.unwrap());
    } else {
        let e = decode_result.err().unwrap().to_string();
        return Result::Err(decode_err!("[rbatis] json decode: {}, fail:{}" ,type_name, e));
    }
}

fn is_array(type_name: &str) -> bool {
    if type_name.starts_with("alloc::collections::linked_list")
        || type_name.starts_with("alloc::vec::Vec<")
        || type_name.starts_with("[")
        || type_name.starts_with("&[")

        || type_name.starts_with("core::option::Option<alloc::collections::linked_list")
        || type_name.starts_with("core::option::Option<alloc::vec::Vec<")
        || type_name.starts_with("core::option::Option<[")
        || type_name.starts_with("core::option::Option<&[")
    {
        return true;
    }
    return false;
}