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
use crate::helpers::*;
use ::syn::*;

/// The std lib's `String` type behavior.
///
/// We currently use a `CString` from to ingest all `String` values. This might be unsafe if the string
/// was instantiated by the caller without using rust's instanciation mechanism. In that case, it
/// would be safe to use a `CStr`. See https://doc.rust-lang.org/std/ffi/struct.CString.html
pub struct Behavior;

impl super::Behavior for Behavior {
    fn is(&self, sty: &Type) -> bool {
        if let Type::Path(tp) = sty {
            is_same_id(&tp.path, "String")
        } else {
            false
        }
    }
    fn imports(&self, _sty: &Type, pkg: &str, _crate_name: &str) -> Vec<String> {
        vec![
            "dart:ffi".to_owned(),
            "dart:convert".to_owned(),
            "package:ffi/ffi.dart".to_owned(),
            format!("package:{}/dustr/string.dart", pkg),
        ]
    }
    fn name(&self, _sty: &Type) -> String { "string".to_owned() }

    fn ffi(&self, _sty: &Type) -> String {
        "Pointer<Utf8>".to_owned()
    }
    fn native(&self, _sty: &Type) -> String {
        "String".to_owned()
    }

    fn native_to_ffi(&self, _sty: &Type, expr: String) -> String {
        format!("stringToCString({})", expr)
    }
    fn ffi_to_native(&self, _sty: &Type, expr: String) -> String {
        format!("Utf8.fromUtf8({})", expr)
    }
}