@@ -7,10 +7,9 @@ Keep in mind that what is shown here is not entirely typical of Rust code, as th
7
7
in order to facilitate the aforementioned interoperability.
8
8
*/
9
9
10
- use crossbeam:: channel:: { unbounded, Receiver , Sender , TryRecvError } ;
10
+ use crossbeam:: channel:: { unbounded, Receiver , Sender } ;
11
11
use interprocess:: local_socket:: {
12
- prelude:: * , GenericFilePath , GenericNamespaced , ListenerNonblockingMode , NameType , Stream ,
13
- ToFsName ,
12
+ prelude:: * , GenericFilePath , GenericNamespaced , NameType , Stream , ToFsName ,
14
13
} ;
15
14
use std:: {
16
15
io:: { prelude:: * , BufReader } ,
@@ -45,7 +44,7 @@ impl ThreadWrapper {
45
44
pub fn start ( & mut self ) {
46
45
// Rust does not have nulls. If you do not understand Options, read the Rust Book chapter 6.1
47
46
let None = self . thread else {
48
- // println!("Thread already started!");
47
+ println ! ( "Thread already started!" ) ;
49
48
return ;
50
49
} ;
51
50
@@ -80,44 +79,23 @@ impl ThreadWrapper {
80
79
// like above because BufReader implemenets the Read Trait.
81
80
conn. read_line ( & mut buffer) . unwrap ( ) ;
82
81
83
- // print!("[RUST] Server answered: {buffer}");
82
+ print ! ( "[RUST] Server answered: {buffer}" ) ;
84
83
85
84
// send a bunch of data for the frequency test in one-second intervals
86
85
for _ in 0 ..3 {
87
- for _ in 0 ..100000 {
88
- let _ = conn. get_mut ( ) . write_all ( b"\n " ) ;
86
+ for _ in 0 ..5 {
87
+ let _ = conn. get_mut ( ) . write_all ( b"0 \n " ) ;
89
88
}
90
89
std:: thread:: sleep ( std:: time:: Duration :: from_secs ( 1 ) ) ;
91
90
}
92
91
93
- let _ = conn. get_mut ( ) . flush ( ) ;
94
-
95
- /* loop {
96
- match rx.try_recv() {
97
- Ok(ChannelSignal::Stop) => return,
98
- Ok(ChannelSignal::Send(n)) => {
99
- let _ = conn.get_mut().write_all(n.to_string().as_bytes());
100
- }
101
- Err(TryRecvError::Disconnected) => return,
102
- Err(TryRecvError::Empty) => thread::sleep(std::time::Duration::from_millis(50)),
103
- }
104
- } */
105
-
106
- // 1MIN_RECV test
107
- let start = std:: time:: Instant :: now ( ) ;
92
+ // Continuously send values
108
93
loop {
109
- if start. elapsed ( ) >= std:: time:: Duration :: from_secs ( 60 ) {
110
- break ;
111
- }
112
-
113
- // dummy send
114
- let _ = conn. get_mut ( ) . write_all ( b"123\n " ) ;
115
-
116
94
for message in rx. try_iter ( ) {
117
95
let _ = match message {
118
96
ChannelSignal :: Send ( n) => {
119
- let s = format ! ( "{n}\n " ) ;
120
- conn. get_mut ( ) . write_all ( s. as_bytes ( ) )
97
+ let s: String = format ! ( "{n}\n " ) ;
98
+ let _ = conn. get_mut ( ) . write_all ( s. as_bytes ( ) ) ;
121
99
}
122
100
ChannelSignal :: Stop => return ,
123
101
} ;
@@ -130,10 +108,11 @@ impl ThreadWrapper {
130
108
131
109
pub fn stop ( & mut self ) {
132
110
let Some ( handle) = self . thread . take ( ) else {
133
- // println!("[RUST] No currently running thread.");
111
+ println ! ( "[RUST] No currently running thread." ) ;
134
112
return ;
135
113
} ;
136
114
115
+ println ! ( "[RUST] Attempting to stop thread..." ) ;
137
116
// Signal the thread to stop operations
138
117
if let Some ( tx) = & self . tx {
139
118
let _ = tx. send ( ChannelSignal :: Stop ) ;
@@ -142,12 +121,12 @@ impl ThreadWrapper {
142
121
// Block until thread completes
143
122
let _ = handle. join ( ) ;
144
123
145
- // println!("[RUST] Thread stopped successfully!");
124
+ println ! ( "[RUST] Thread stopped successfully!" ) ;
146
125
self . thread = None ;
147
126
}
148
127
149
128
fn send ( & mut self , num : f32 ) {
150
- // println!("[RUST] Attempted to send {num:?}");
129
+ println ! ( "[RUST] Attempted to send {num:?}" ) ;
151
130
if let Some ( tx) = & self . tx {
152
131
let _ = tx. send ( ChannelSignal :: Send ( num) ) ;
153
132
}
0 commit comments