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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
use std::marker::PhantomData;
pub use crate::ffi::*;
#[derive(Clone)]
pub struct Rust2Dart {
pub(crate) channel: Channel,
}
const RUST2DART_ACTION_SUCCESS: i32 = 0;
const RUST2DART_ACTION_ERROR: i32 = 1;
const RUST2DART_ACTION_CLOSE_STREAM: i32 = 2;
impl Rust2Dart {
pub fn new(port: MessagePort) -> Self {
Rust2Dart {
channel: Channel::new(port),
}
}
pub fn success(&self, result: impl IntoDart) -> bool {
self.channel.post(vec![
RUST2DART_ACTION_SUCCESS.into_dart(),
result.into_dart(),
])
}
pub fn error(&self, error_code: String, error_message: String) -> bool {
self.error_full(error_code, error_message, ())
}
pub fn error_full(
&self,
error_code: String,
error_message: String,
error_details: impl IntoDart,
) -> bool {
self.channel.post(vec![
RUST2DART_ACTION_ERROR.into_dart(),
error_code.into_dart(),
error_message.into_dart(),
error_details.into_dart(),
])
}
pub fn close_stream(&self) -> bool {
self.channel
.post(vec![RUST2DART_ACTION_CLOSE_STREAM.into_dart()])
}
}
pub struct TaskCallback {
rust2dart: Rust2Dart,
}
impl TaskCallback {
pub fn new(rust2dart: Rust2Dart) -> Self {
Self { rust2dart }
}
pub fn stream_sink<T: IntoDart>(&self) -> StreamSink<T> {
StreamSink::new(self.rust2dart.clone())
}
}
#[derive(Clone)]
pub struct ChannelHandle(pub String);
impl ChannelHandle {
#[cfg(wasm)]
pub fn port(&self) -> MessagePort {
PortLike::broadcast(&self.0)
}
}
#[derive(Clone)]
pub struct StreamSink<T: IntoDart> {
#[cfg(not(wasm))]
rust2dart: Rust2Dart,
#[cfg(wasm)]
handle: ChannelHandle,
_phantom_data: PhantomData<T>,
}
impl<T: IntoDart> StreamSink<T> {
pub fn new(rust2dart: Rust2Dart) -> Self {
#[cfg(wasm)]
let name = rust2dart
.channel
.broadcast_name()
.expect("Not a BroadcastChannel");
Self {
#[cfg(not(wasm))]
rust2dart,
#[cfg(wasm)]
handle: ChannelHandle(name),
_phantom_data: PhantomData,
}
}
fn rust2dart(&self) -> Rust2Dart {
#[cfg(not(wasm))]
return self.rust2dart.clone();
#[cfg(wasm)]
Rust2Dart::new(self.handle.port())
}
pub fn add(&self, value: T) -> bool {
self.rust2dart().success(value)
}
pub fn close(&self) -> bool {
self.rust2dart().close_stream()
}
}