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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
use std::{collections::HashMap, sync::Arc};

use futures::StreamExt;
use futures_core::Stream;
use tokio::sync::Mutex;

use crate::*;

use super::batch::*;
use super::connection::Destination;
use super::connection::Device;
use super::record::Record;
use super::span::*;
use super::worker::*;

// OPTIMIZE: remove cloning and clone constraints

pub(crate) type ReadResponse<TSpan> = Vec<TSpan>;
pub(crate) type WriteResponse = Vec<chrono::DateTime<chrono::Utc>>;

#[derive(Clone, Debug)]
pub(crate) struct Service {
  devices: Arc<Mutex<HashMap<String, Designation>>>,
  servers: Arc<Mutex<HashMap<Device, Server>>>,
  request_timeout: chrono::Duration,
  batch_threshold: u16,
  termination_timeout: chrono::Duration,
  congestion_backoff: chrono::Duration,
  partial_retries: u32,
}

#[derive(Debug, thiserror::Error)]
pub(crate) enum ServerReadError {
  #[error("Connection failed")]
  FailedToConnect(#[from] super::connection::ConnectError),

  #[error("Server failure")]
  ServerFailed(anyhow::Error),

  #[error("Parsing failure")]
  ParsingFailed(anyhow::Error),
}

#[derive(Debug, thiserror::Error)]
pub(crate) enum ServerWriteError {
  #[error("Connection failed")]
  FailedToConnect(#[from] super::connection::ConnectError),

  #[error("Server failure")]
  ServerFailed(anyhow::Error),
}

#[derive(Debug, thiserror::Error)]
pub(crate) enum ServerStreamError {
  #[error("Server failure")]
  ServerFailed(anyhow::Error),
}

#[derive(Debug, thiserror::Error)]
pub(crate) enum DeviceStreamError {
  #[error("No device in registry for given id")]
  DeviceNotFound(String),

  #[error("Failed streaming from worker")]
  ServerStream(#[from] ServerStreamError),
}

#[derive(Debug, thiserror::Error)]
pub(crate) enum DeviceReadError {
  #[error("No device in registry for given id")]
  DeviceNotFound(String),

  #[error("Failed reading from worker")]
  ServerRead(#[from] ServerReadError),
}

#[derive(Debug, thiserror::Error)]
pub(crate) enum DeviceWriteError {
  #[error("No device in registry for given id")]
  DeviceNotFound(String),

  #[error("Failed reading from worker")]
  ServerWrite(#[from] ServerWriteError),
}

impl service::Service for Service {
  fn new(config: config::Values) -> Self {
    Self {
      devices: Arc::new(Mutex::new(HashMap::new())),
      servers: Arc::new(Mutex::new(HashMap::new())),
      request_timeout: config.modbus.request_timeout,
      batch_threshold: config.modbus.batch_threshold,
      termination_timeout: config.modbus.termination_timeout,
      congestion_backoff: config.modbus.congestion_backoff,
      partial_retries: config.modbus.partial_retries,
    }
  }
}

impl Service {
  #[tracing::instrument(skip(self))]
  pub(crate) async fn bind(&self, id: String, destination: Destination) {
    let server = self.get_server(destination.clone()).await;
    {
      let mut devices = self.devices.clone().lock_owned().await;
      devices.insert(
        id,
        Designation {
          worker: server.worker,
          destination,
        },
      );

      tracing::trace!("Bound - current ids {:?}", devices.keys());
    }
  }

  #[tracing::instrument(skip(self))]
  pub(crate) async fn stop_from_id(&self, id: &str) {
    let mut server_to_remove = None;

    {
      let mut devices = self.devices.clone().lock_owned().await;
      let device = devices.remove(id);
      if let Some(removed) = device {
        let should_remove_server = !devices.values().any(|device| {
          device.destination.device == removed.destination.device
        });

        if should_remove_server {
          server_to_remove = Some(removed.destination.device);
        }
      }

      tracing::trace!(
        "Stopped {:?} worker - current ids {:?}",
        id,
        devices.keys()
      );
    }

    if let Some(server) = server_to_remove {
      self.stop_from_address(server).await;
    }
  }

  #[tracing::instrument(skip(self))]
  pub(crate) async fn stop_from_destination(&self, destination: Destination) {
    let ids = {
      let devices = self.devices.clone().lock_owned().await;
      devices
        .iter()
        .filter(|(_, device)| device.destination == destination)
        .map(|(id, _)| id.clone())
        .collect::<Vec<_>>()
    };

    let servers_to_remove = {
      let mut devices = self.devices.clone().lock_owned().await;
      let addresses = ids
        .iter()
        .filter_map(|id| {
          devices.remove(id).and_then(|removed| {
            let should_remove_server = !devices.values().any(|designation| {
              designation.destination.device == removed.destination.device
            });

            if should_remove_server {
              Some(removed.destination.device)
            } else {
              None
            }
          })
        })
        .collect::<Vec<_>>();

      tracing::trace!("Removed devices - remaining ids {:?}", devices.keys());

      addresses
    };

    tracing::trace!("Removed {:?} ids", ids);

    let mut removed_servers = Vec::new();
    {
      let mut servers = self.servers.clone().lock_owned().await;
      for address in servers_to_remove {
        let server = servers.remove(&address);
        if let Some(server) = server {
          removed_servers.push(server);
        }
      }

      tracing::trace!(
        "Removed servers - remaining addresses {:?}",
        servers.keys(),
      );
    }

    for server in removed_servers {
      if let Err(error) = server.worker.terminate().await {
        // NOTE: error -> trace because this means it already terminated and disconnected
        tracing::trace!("Failed terminating server worker {}", error)
      }
    }
  }

  #[tracing::instrument(skip(self))]
  pub(crate) async fn stop_from_address(&self, device: Device) {
    {
      let mut devices = self.devices.clone().lock_owned().await;
      devices.retain(|_, designation| designation.destination.device != device);
      tracing::trace!("Retained devices {:?}", devices.keys());
    }

    let server = {
      let mut servers = self.servers.clone().lock_owned().await;
      servers.remove(&device)
    };

    if let Some(server) = server {
      tracing::trace!("Removed {:?} server", server);

      if let Err(error) = server.worker.terminate().await {
        // NOTE: error -> trace because this means it already terminated and disconnected
        tracing::trace!("Failed terminating server worker {}", error)
      }
    }
  }

  #[tracing::instrument(skip(self, spans))]
  pub(crate) async fn read_from_destination<
    TSpan: Span,
    TSpanParser: Span + SpanParser<TSpan>,
    TIterator: ExactSizeIterator<Item = TSpanParser>,
    TIntoIterator: IntoIterator<Item = TSpanParser, IntoIter = TIterator>,
  >(
    &self,
    destination: Destination,
    spans: TIntoIterator,
  ) -> Result<ReadResponse<TSpan>, ServerReadError> {
    let server = self.get_server(destination.clone()).await;
    let response = self
      .read_from_worker(server.worker, destination, spans)
      .await?;

    tracing::trace!("Read {:?} spans", response.len());

    Ok(response)
  }

  #[tracing::instrument(skip(self, records))]
  pub(crate) async fn write_to_destination<
    TRecord: Record,
    TIterator: Iterator<Item = TRecord>,
    TIntoIterator: IntoIterator<Item = TRecord, IntoIter = TIterator>,
  >(
    &self,
    destination: Destination,
    records: TIntoIterator,
  ) -> Result<WriteResponse, ServerWriteError> {
    let server = self.get_server(destination.clone()).await;
    let response = self
      .write_to_worker(server.worker, destination, records)
      .await?;

    tracing::trace!("Wrote {:?} records", response.len());

    Ok(response)
  }

  #[tracing::instrument(skip(self, spans))]
  pub(crate) async fn stream_from_destination<
    TSpan: Span,
    TSpanParser: Clone + Span + SpanParser<TSpan>,
    TIterator: ExactSizeIterator<Item = TSpanParser>,
    TIntoIterator: IntoIterator<Item = TSpanParser, IntoIter = TIterator>,
  >(
    &self,
    destination: Destination,
    spans: TIntoIterator,
  ) -> Result<
    impl Stream<Item = Result<Vec<TSpan>, ServerReadError>>,
    ServerStreamError,
  > {
    let server = self.get_server(destination.clone()).await;
    let stream = self
      .stream_from_worker(server.worker, destination, spans)
      .await?;

    tracing::trace!("Streaming spans");

    Ok(stream)
  }

  #[tracing::instrument(skip(self, spans))]
  pub(crate) async fn read_from_id<
    TSpan: Span,
    TSpanParser: Span + SpanParser<TSpan>,
    TIterator: ExactSizeIterator<Item = TSpanParser>,
    TIntoIterator: IntoIterator<Item = TSpanParser, IntoIter = TIterator>,
  >(
    &self,
    id: &str,
    spans: TIntoIterator,
  ) -> Result<ReadResponse<TSpan>, DeviceReadError> {
    let device = match self.get_device(id).await {
      Some(device) => device,
      None => return Err(DeviceReadError::DeviceNotFound(id.to_string())),
    };
    let response = self
      .read_from_worker(device.worker, device.destination, spans)
      .await?;

    tracing::trace!("Read {:?} spans", response.len());

    Ok(response)
  }

  #[tracing::instrument(skip(self, records))]
  pub(crate) async fn write_to_id<
    TRecord: Record,
    TIterator: Iterator<Item = TRecord>,
    TIntoIterator: IntoIterator<Item = TRecord, IntoIter = TIterator>,
  >(
    &self,
    id: &str,
    records: TIntoIterator,
  ) -> Result<WriteResponse, DeviceWriteError> {
    let device = match self.get_device(id).await {
      Some(device) => device,
      None => return Err(DeviceWriteError::DeviceNotFound(id.to_string())),
    };
    let response = self
      .write_to_worker(device.worker, device.destination, records)
      .await?;

    tracing::trace!("Wrote {:?} records", response.len());

    Ok(response)
  }

  #[tracing::instrument(skip(self, spans))]
  pub(crate) async fn stream_from_id<
    TSpan: Span,
    TSpanParser: Clone + Span + SpanParser<TSpan>,
    TIterator: ExactSizeIterator<Item = TSpanParser>,
    TIntoIterator: IntoIterator<Item = TSpanParser, IntoIter = TIterator>,
  >(
    &self,
    id: &str,
    spans: TIntoIterator,
  ) -> Result<
    impl Stream<Item = Result<Vec<TSpan>, ServerReadError>>,
    DeviceStreamError,
  > {
    let device = match self.get_device(id).await {
      Some(device) => device,
      None => return Err(DeviceStreamError::DeviceNotFound(id.to_string())),
    };
    let stream = self
      .stream_from_worker(device.worker, device.destination, spans)
      .await?;

    tracing::trace!("Streaming spans");

    Ok(stream)
  }

  async fn read_from_worker<
    TSpan: Span,
    TSpanParser: Span + SpanParser<TSpan>,
    TIterator: ExactSizeIterator<Item = TSpanParser>,
    TIntoIterator: IntoIterator<Item = TSpanParser, IntoIter = TIterator>,
  >(
    &self,
    worker: Worker,
    destination: Destination,
    spans: TIntoIterator,
  ) -> Result<ReadResponse<TSpan>, ServerReadError> {
    let iter = spans.into_iter();
    let len = iter.len();
    let batches = batch_spans(iter, self.batch_threshold);
    let result = worker.read(destination, batches.iter()).await;
    let response = Self::parse_worker_read_response(result, batches, len)?;
    Ok(response)
  }

  async fn write_to_worker<
    TRecord: Record,
    TIterator: Iterator<Item = TRecord>,
    TIntoIterator: IntoIterator<Item = TRecord, IntoIter = TIterator>,
  >(
    &self,
    worker: Worker,
    destination: Destination,
    records: TIntoIterator,
  ) -> Result<WriteResponse, ServerWriteError> {
    let iter = records.into_iter();
    let result = worker.write(destination, iter).await;
    let response = Self::parse_worker_write_response(result)?;
    Ok(response)
  }

  async fn stream_from_worker<
    TSpan: Span,
    TSpanParser: Clone + Span + SpanParser<TSpan>,
    TIterator: ExactSizeIterator<Item = TSpanParser>,
    TIntoIterator: IntoIterator<Item = TSpanParser, IntoIter = TIterator>,
  >(
    &self,
    worker: Worker,
    destination: Destination,
    spans: TIntoIterator,
  ) -> Result<
    impl Stream<Item = Result<ReadResponse<TSpan>, ServerReadError>>,
    ServerStreamError,
  > {
    let iter = spans.into_iter();
    let len = iter.len();
    let batches = batch_spans(iter, self.batch_threshold);
    let stream = match worker
      .stream(destination, batches.clone().into_iter())
      .await
    {
      Ok(stream) => stream,
      Err(error) => return Err(ServerStreamError::ServerFailed(error.into())),
    };
    let stream = stream.map(move |result| {
      Self::parse_worker_read_response(result, batches.clone(), len)
    });
    Ok(stream)
  }

  fn parse_worker_read_response<
    TSpan: Span,
    TSpanParser: Span + SpanParser<TSpan>,
    TIntoIterator: IntoIterator<Item = Batch<TSpanParser>>,
  >(
    result: Result<super::worker::ReadResponse, super::worker::SendError>,
    batches: TIntoIterator,
    len: usize,
  ) -> Result<ReadResponse<TSpan>, ServerReadError> {
    let data = match result {
      Ok(response) => response,
      Err(error) => match error {
        super::worker::SendError::FailedToConnect(error) => {
          return Err(ServerReadError::FailedToConnect(error))
        }
        super::worker::SendError::ChannelDisconnected(error) => {
          return Err(ServerReadError::ServerFailed(error))
        }
      },
    };

    let mut response = Vec::with_capacity(len);
    for (parser, data) in batches.into_iter().zip(data.into_iter()) {
      let mut parsed =
        match parser.parse_with_timestamp(data.inner, data.timestamp) {
          Ok(parsed) => parsed,
          Err(error) => return Err(ServerReadError::ParsingFailed(error)),
        };
      response.append(&mut parsed.inner);
    }

    Ok(response)
  }

  fn parse_worker_write_response(
    result: Result<super::worker::WriteResponse, super::worker::SendError>,
  ) -> Result<WriteResponse, ServerWriteError> {
    let data = match result {
      Ok(response) => response,
      Err(error) => match error {
        super::worker::SendError::FailedToConnect(error) => {
          return Err(ServerWriteError::FailedToConnect(error))
        }
        super::worker::SendError::ChannelDisconnected(error) => {
          return Err(ServerWriteError::ServerFailed(error))
        }
      },
    };

    Ok(data.iter().map(|entry| entry.timestamp).collect::<Vec<_>>())
  }

  async fn get_server(&self, destination: Destination) -> Server {
    let mut workers = self.servers.clone().lock_owned().await;
    let worker = workers
      .entry(destination.device)
      .or_insert_with(|| Server {
        worker: Worker::new(
          self.request_timeout,
          self.termination_timeout,
          self.congestion_backoff,
          self.partial_retries,
        ),
      })
      .clone();
    worker
  }

  async fn get_device(&self, id: &str) -> Option<Designation> {
    let devices = self.devices.clone().lock_owned().await;
    let device = devices.get(id).cloned();
    device
  }
}

#[derive(Clone, Debug)]
struct Server {
  worker: Worker,
}

#[derive(Clone, Debug)]
struct Designation {
  worker: Worker,
  destination: Destination,
}