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
pub mod fragment;
pub mod invokable;
pub mod property;
pub mod qobject;
pub mod signal;
pub mod types;
use crate::parser::Parser;
use qobject::GeneratedCppQObject;
use syn::Result;
pub const RUST_OBJ_MUTEX_LOCK_GUARD: &str =
"const std::lock_guard<std::recursive_mutex> guard(*m_rustObjMutex);";
pub const CXX_QT_CONVERT: &str = "rust::cxxqtlib1::cxx_qt_convert";
pub struct GeneratedCppBlocks {
pub cxx_file_stem: String,
pub namespace: String,
pub qobjects: Vec<GeneratedCppQObject>,
}
impl GeneratedCppBlocks {
pub fn from(parser: &Parser) -> Result<GeneratedCppBlocks> {
Ok(GeneratedCppBlocks {
cxx_file_stem: parser.cxx_file_stem.clone(),
namespace: parser.cxx_qt_data.namespace.clone(),
qobjects: parser
.cxx_qt_data
.qobjects
.values()
.map(GeneratedCppQObject::from)
.collect::<Result<Vec<GeneratedCppQObject>>>()?,
})
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::parser::Parser;
use crate::tests::tokens_to_syn;
use quote::quote;
use syn::ItemMod;
#[test]
fn test_generated_cpp_blocks() {
let module: ItemMod = tokens_to_syn(quote! {
#[cxx_qt::bridge]
mod ffi {
#[cxx_qt::qobject]
struct MyObject;
}
});
let parser = Parser::from(module).unwrap();
let cpp = GeneratedCppBlocks::from(&parser).unwrap();
assert_eq!(cpp.cxx_file_stem, "ffi");
assert_eq!(cpp.namespace, "");
assert_eq!(cpp.qobjects.len(), 1);
}
#[test]
fn test_generated_cpp_blocks_cxx_file_stem() {
let module: ItemMod = tokens_to_syn(quote! {
#[cxx_qt::bridge(cxx_file_stem = "my_object")]
mod ffi {
#[cxx_qt::qobject]
struct MyObject;
}
});
let parser = Parser::from(module).unwrap();
let cpp = GeneratedCppBlocks::from(&parser).unwrap();
assert_eq!(cpp.cxx_file_stem, "my_object");
assert_eq!(cpp.namespace, "");
assert_eq!(cpp.qobjects.len(), 1);
}
#[test]
fn test_generated_cpp_blocks_namespace() {
let module: ItemMod = tokens_to_syn(quote! {
#[cxx_qt::bridge(namespace = "cxx_qt")]
mod ffi {
#[cxx_qt::qobject]
struct MyObject;
}
});
let parser = Parser::from(module).unwrap();
let cpp = GeneratedCppBlocks::from(&parser).unwrap();
assert_eq!(cpp.namespace, "cxx_qt");
}
}