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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
use super::EipClient;
use crate::batch::{BatchConfig, BatchError, BatchOperation, BatchResult};
use crate::protocol::values;
use crate::types::PlcValue;
use tokio::time::Instant;
impl EipClient {
// =========================================================================
// BATCH OPERATIONS IMPLEMENTATION
// =========================================================================
/// Executes a batch of read and write operations
///
/// This is the main entry point for batch operations. It takes a slice of
/// `BatchOperation` items and executes them efficiently by grouping them
/// into optimal CIP packets based on the current `BatchConfig`.
///
/// # Arguments
///
/// * `operations` - A slice of operations to execute
///
/// # Returns
///
/// A vector of [`BatchResult`] items, one per executed operation.
///
/// When `optimize_packet_packing` is enabled, operations may be regrouped
/// by type for execution, so result order is not guaranteed to match the
/// original mixed-operation input order. Use [`BatchResult::operation`] to
/// correlate each result.
///
/// # Performance
///
/// Batch execution primarily reduces round trips by combining multiple
/// operations into fewer requests. Observed throughput varies significantly
/// between simulator and real hardware, and also depends on packet sizing,
/// controller model, route path, and tag mix.
///
/// # Examples
///
/// ```rust,no_run
/// use rust_ethernet_ip::{EipClient, BatchOperation, PlcValue};
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
/// let mut client = EipClient::connect("192.168.1.100:44818").await?;
///
/// let operations = vec![
/// BatchOperation::Read { tag_name: "Motor1_Speed".to_string() },
/// BatchOperation::Read { tag_name: "Motor2_Speed".to_string() },
/// BatchOperation::Write {
/// tag_name: "SetPoint".to_string(),
/// value: PlcValue::Dint(1500)
/// },
/// ];
///
/// let results = client.execute_batch(&operations).await?;
///
/// for result in results {
/// match result.result {
/// Ok(Some(value)) => println!("Read value: {:?}", value),
/// Ok(None) => println!("Write successful"),
/// Err(e) => println!("Operation failed: {}", e),
/// }
/// }
///
/// Ok(())
/// }
/// ```
pub async fn execute_batch(
&mut self,
operations: &[BatchOperation],
) -> crate::error::Result<Vec<BatchResult>> {
if operations.is_empty() {
return Ok(Vec::new());
}
let start_time = Instant::now();
tracing::debug!(
"[BATCH] Starting batch execution with {} operations",
operations.len()
);
// Group operations based on configuration
let operation_groups = if self.batch_config.optimize_packet_packing {
self.optimize_operation_groups(operations)
} else {
self.sequential_operation_groups(operations)
};
let mut all_results = Vec::with_capacity(operations.len());
// Execute each group
for (group_index, group) in operation_groups.iter().enumerate() {
tracing::debug!(
"[BATCH] Processing group {} with {} operations",
group_index + 1,
group.len()
);
match self.execute_operation_group(group).await {
Ok(mut group_results) => {
all_results.append(&mut group_results);
}
Err(e) => {
if !self.batch_config.continue_on_error {
return Err(e);
}
// Create error results for this group
for op in group {
let error_result = BatchResult {
operation: op.clone(),
result: Err(BatchError::NetworkError(e.to_string())),
execution_time_us: 0,
};
all_results.push(error_result);
}
}
}
}
let total_time = start_time.elapsed();
tracing::info!(
"[BATCH] Completed batch execution in {:?} - {} operations processed",
total_time,
all_results.len()
);
Ok(all_results)
}
/// Reads multiple tags in a single batch operation
///
/// This is a convenience method for read-only batch operations.
/// It's optimized for reading many tags at once.
///
/// # Arguments
///
/// * `tag_names` - A slice of tag names to read
///
/// # Returns
///
/// A vector of tuples containing `(tag_name, result)` pairs
///
/// # Examples
///
/// ```rust,no_run
/// use rust_ethernet_ip::EipClient;
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
/// let mut client = EipClient::connect("192.168.1.100:44818").await?;
///
/// let tags = ["Motor1_Speed", "Motor2_Speed", "Temperature", "Pressure"];
/// let results = client.read_tags_batch(&tags).await?;
///
/// for (tag_name, result) in results {
/// match result {
/// Ok(value) => println!("{}: {:?}", tag_name, value),
/// Err(e) => println!("{}: Error - {}", tag_name, e),
/// }
/// }
///
/// Ok(())
/// }
/// ```
pub async fn read_tags_batch(
&mut self,
tag_names: &[&str],
) -> crate::error::Result<Vec<(String, std::result::Result<PlcValue, BatchError>)>> {
let operations: Vec<BatchOperation> = tag_names
.iter()
.map(|&name| BatchOperation::Read {
tag_name: name.to_string(),
})
.collect();
let results = self.execute_batch(&operations).await?;
Ok(results
.into_iter()
.map(|result| {
let tag_name = match &result.operation {
BatchOperation::Read { tag_name } => tag_name.clone(),
BatchOperation::Write { .. } => {
unreachable!("Should only have read operations")
}
};
let value_result = match result.result {
Ok(Some(value)) => Ok(value),
Ok(None) => Err(BatchError::Other(
"Unexpected None result for read operation".to_string(),
)),
Err(e) => Err(e),
};
(tag_name, value_result)
})
.collect())
}
/// Writes multiple tag values in a single batch operation
///
/// This is a convenience method for write-only batch operations.
/// It's optimized for writing many values at once.
///
/// # Arguments
///
/// * `tag_values` - A slice of `(tag_name, value)` tuples to write
///
/// # Returns
///
/// A vector of tuples containing `(tag_name, result)` pairs
///
/// # Examples
///
/// ```rust,no_run
/// use rust_ethernet_ip::{EipClient, PlcValue};
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
/// let mut client = EipClient::connect("192.168.1.100:44818").await?;
///
/// let writes = vec![
/// ("SetPoint1", PlcValue::Bool(true)),
/// ("SetPoint2", PlcValue::Dint(2000)),
/// ("EnableFlag", PlcValue::Bool(true)),
/// ];
///
/// let results = client.write_tags_batch(&writes).await?;
///
/// for (tag_name, result) in results {
/// match result {
/// Ok(_) => println!("{}: Write successful", tag_name),
/// Err(e) => println!("{}: Write failed - {}", tag_name, e),
/// }
/// }
///
/// Ok(())
/// }
/// ```
pub async fn write_tags_batch(
&mut self,
tag_values: &[(&str, PlcValue)],
) -> crate::error::Result<Vec<(String, std::result::Result<(), BatchError>)>> {
let operations: Vec<BatchOperation> = tag_values
.iter()
.map(|(name, value)| BatchOperation::Write {
tag_name: name.to_string(),
value: value.clone(),
})
.collect();
let results = self.execute_batch(&operations).await?;
Ok(results
.into_iter()
.map(|result| {
let tag_name = match &result.operation {
BatchOperation::Write { tag_name, .. } => tag_name.clone(),
BatchOperation::Read { .. } => {
unreachable!("Should only have write operations")
}
};
let write_result = match result.result {
Ok(None) => Ok(()),
Ok(Some(_)) => Err(BatchError::Other(
"Unexpected value result for write operation".to_string(),
)),
Err(e) => Err(e),
};
(tag_name, write_result)
})
.collect())
}
/// Configures batch operation settings
///
/// This method allows fine-tuning of batch operation behavior,
/// including performance optimizations and error handling.
///
/// # Arguments
///
/// * `config` - The new batch configuration to use
///
/// # Examples
///
/// ```rust,no_run
/// use rust_ethernet_ip::{EipClient, BatchConfig};
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
/// let mut client = EipClient::connect("192.168.1.100:44818").await?;
///
/// let config = BatchConfig {
/// max_operations_per_packet: 50,
/// max_packet_size: 1500,
/// packet_timeout_ms: 5000,
/// continue_on_error: false,
/// optimize_packet_packing: true,
/// };
///
/// client.configure_batch_operations(config);
///
/// Ok(())
/// }
/// ```
pub fn configure_batch_operations(&mut self, config: BatchConfig) {
self.batch_config = config;
tracing::debug!(
"[BATCH] Updated batch configuration: max_ops={}, max_size={}, timeout={}ms",
self.batch_config.max_operations_per_packet,
self.batch_config.max_packet_size,
self.batch_config.packet_timeout_ms
);
}
/// Gets current batch operation configuration
pub fn get_batch_config(&self) -> &BatchConfig {
&self.batch_config
}
// =========================================================================
// INTERNAL BATCH OPERATION HELPERS
// =========================================================================
/// Groups operations optimally for batch processing
fn optimize_operation_groups(&self, operations: &[BatchOperation]) -> Vec<Vec<BatchOperation>> {
let mut groups = Vec::new();
let mut reads = Vec::new();
let mut writes = Vec::new();
// Separate reads and writes
for op in operations {
match op {
BatchOperation::Read { .. } => reads.push(op.clone()),
BatchOperation::Write { .. } => writes.push(op.clone()),
}
}
// Group reads
for chunk in reads.chunks(self.batch_config.max_operations_per_packet) {
groups.push(chunk.to_vec());
}
// Group writes
for chunk in writes.chunks(self.batch_config.max_operations_per_packet) {
groups.push(chunk.to_vec());
}
groups
}
/// Groups operations sequentially (preserves order)
fn sequential_operation_groups(
&self,
operations: &[BatchOperation],
) -> Vec<Vec<BatchOperation>> {
operations
.chunks(self.batch_config.max_operations_per_packet)
.map(|chunk| chunk.to_vec())
.collect()
}
/// Executes a single group of operations as a CIP Multiple Service Packet
async fn execute_operation_group(
&mut self,
operations: &[BatchOperation],
) -> crate::error::Result<Vec<BatchResult>> {
let start_time = Instant::now();
let mut results = Vec::with_capacity(operations.len());
// Build Multiple Service Packet request
let cip_request = self.build_multiple_service_packet(operations)?;
// Send request and get response
let response = self.send_cip_request(&cip_request).await?;
// Parse response and create results
let parsed_results = self.parse_multiple_service_response(&response, operations)?;
let execution_time = start_time.elapsed();
// Create BatchResult objects
for (i, operation) in operations.iter().enumerate() {
let op_execution_time = execution_time.as_micros() as u64 / operations.len() as u64;
let result = if i < parsed_results.len() {
match &parsed_results[i] {
Ok(value) => Ok(value.clone()),
Err(e) => Err(e.clone()),
}
} else {
Err(BatchError::Other(
"Missing result from response".to_string(),
))
};
results.push(BatchResult {
operation: operation.clone(),
result,
execution_time_us: op_execution_time,
});
}
Ok(results)
}
/// Builds a CIP Multiple Service Packet request
fn build_multiple_service_packet(
&self,
operations: &[BatchOperation],
) -> crate::error::Result<Vec<u8>> {
let mut packet = Vec::with_capacity(8 + (operations.len() * 2));
// Multiple Service Packet service code
packet.push(0x0A);
// Request path (2 bytes for class 0x02, instance 1)
packet.push(0x02); // Path size in words
packet.push(0x20); // Class segment
packet.push(0x02); // Class 0x02 (Message Router)
packet.push(0x24); // Instance segment
packet.push(0x01); // Instance 1
// Number of services
packet.extend_from_slice(&(operations.len() as u16).to_le_bytes());
// Calculate offset table
let mut service_requests = Vec::with_capacity(operations.len());
let mut current_offset = 2 + (operations.len() * 2); // Start after offset table
for operation in operations {
// Build individual service request
let service_request = match operation {
BatchOperation::Read { tag_name } => self.build_read_request(tag_name)?,
BatchOperation::Write { tag_name, value } => {
self.build_write_request(tag_name, value)?
}
};
service_requests.push(service_request);
}
// Add offset table
for service_request in &service_requests {
packet.extend_from_slice(&(current_offset as u16).to_le_bytes());
current_offset += service_request.len();
}
// Add service requests
for service_request in service_requests {
packet.extend_from_slice(&service_request);
}
tracing::trace!(
"[BATCH] Built Multiple Service Packet ({} bytes, {} services)",
packet.len(),
operations.len()
);
Ok(packet)
}
/// Parses a Multiple Service Packet response
fn parse_multiple_service_response(
&self,
response: &[u8],
operations: &[BatchOperation],
) -> crate::error::Result<Vec<std::result::Result<Option<PlcValue>, BatchError>>> {
if response.len() < 6 {
return Err(crate::error::EtherNetIpError::Protocol(
"Response too short for Multiple Service Packet".to_string(),
));
}
let mut results = Vec::new();
tracing::trace!(
"Raw Multiple Service Response ({} bytes): {:02X?}",
response.len(),
response
);
// First, extract the CIP data from the EtherNet/IP response
let cip_data = match self.extract_cip_from_response(response) {
Ok(data) => data,
Err(e) => {
tracing::error!("Failed to extract CIP data: {}", e);
return Err(e);
}
};
tracing::trace!(
"Extracted CIP data ({} bytes): {:02X?}",
cip_data.len(),
cip_data
);
if cip_data.len() < 6 {
return Err(crate::error::EtherNetIpError::Protocol(
"CIP data too short for Multiple Service Response".to_string(),
));
}
// Parse Multiple Service Response header from CIP data:
// [0] = Service Code (0x8A)
// [1] = Reserved (0x00)
// [2] = General Status (0x00 for success)
// [3] = Additional Status Size (0x00)
// [4-5] = Number of replies (little endian)
let service_code = cip_data[0];
let general_status = cip_data[2];
let num_replies = u16::from_le_bytes([cip_data[4], cip_data[5]]) as usize;
tracing::debug!(
"Multiple Service Response: service=0x{:02X}, status=0x{:02X}, replies={}",
service_code,
general_status,
num_replies
);
if general_status != 0x00 {
return Err(crate::error::EtherNetIpError::Protocol(
self.describe_multiple_service_error(general_status, operations),
));
}
if num_replies != operations.len() {
return Err(crate::error::EtherNetIpError::Protocol(format!(
"Reply count mismatch: expected {}, got {}",
operations.len(),
num_replies
)));
}
// Read reply offsets (each is 2 bytes, little endian)
let mut reply_offsets = Vec::new();
let mut offset = 6; // Skip header
for _i in 0..num_replies {
if offset + 2 > cip_data.len() {
return Err(crate::error::EtherNetIpError::Protocol(
"CIP data too short for reply offsets".to_string(),
));
}
let reply_offset =
u16::from_le_bytes([cip_data[offset], cip_data[offset + 1]]) as usize;
reply_offsets.push(reply_offset);
offset += 2;
}
tracing::trace!("Reply offsets: {:?}", reply_offsets);
// The reply data starts after all the offsets
let reply_base_offset = 6 + (num_replies * 2);
tracing::trace!("Reply base offset: {}", reply_base_offset);
// Parse each reply
for (i, &reply_offset) in reply_offsets.iter().enumerate() {
// Reply offset is relative to position 4 (after service code, reserved, status, additional status size)
let reply_start = 4 + reply_offset;
if reply_start >= cip_data.len() {
results.push(Err(BatchError::Other(
"Reply offset beyond CIP data".to_string(),
)));
continue;
}
// Calculate reply end position
let reply_end = if i + 1 < reply_offsets.len() {
// Not the last reply - use next reply's offset as boundary
4 + reply_offsets[i + 1]
} else {
// Last reply - goes to end of CIP data
cip_data.len()
};
if reply_end > cip_data.len() || reply_start >= reply_end {
results.push(Err(BatchError::Other(
"Invalid reply boundaries".to_string(),
)));
continue;
}
let reply_data = &cip_data[reply_start..reply_end];
tracing::trace!(
"Reply {} at offset {}: start={}, end={}, len={}",
i,
reply_offset,
reply_start,
reply_end,
reply_data.len()
);
tracing::trace!("Reply {} data: {:02X?}", i, reply_data);
let result = self.parse_individual_reply(reply_data, &operations[i]);
results.push(result);
}
Ok(results)
}
/// Parses an individual service reply within a Multiple Service Packet response
fn parse_individual_reply(
&self,
reply_data: &[u8],
operation: &BatchOperation,
) -> std::result::Result<Option<PlcValue>, BatchError> {
if reply_data.len() < 4 {
return Err(BatchError::SerializationError(
"Reply too short".to_string(),
));
}
tracing::trace!(
"Parsing individual reply ({} bytes): {:02X?}",
reply_data.len(),
reply_data
);
// Each individual reply in Multiple Service Response has the same format as standalone CIP response:
// [0] = Service Code (0xCC for read response, 0xCD for write response)
// [1] = Reserved (0x00)
// [2] = General Status (0x00 for success)
// [3] = Additional Status Size (0x00)
// [4..] = Response data (for reads) or empty (for writes)
let service_code = reply_data[0];
let general_status = reply_data[2];
tracing::trace!(
"Service code: 0x{:02X}, Status: 0x{:02X}",
service_code,
general_status
);
if general_status != 0x00 {
let error_msg = self.get_cip_error_message(general_status);
return Err(BatchError::CipError {
status: general_status,
message: error_msg,
});
}
match operation {
BatchOperation::Write { .. } => {
// Write operations return no data on success
Ok(None)
}
BatchOperation::Read { .. } => {
// Read operations return data starting at offset 4
if reply_data.len() < 6 {
return Err(BatchError::SerializationError(
"Read reply too short for data".to_string(),
));
}
// Parse the data directly (skip the 4-byte header)
// Data format: [type_low, type_high, value_bytes...]
let data = &reply_data[4..];
tracing::trace!("Parsing data ({} bytes): {:02X?}", data.len(), data);
if data.len() < 2 {
return Err(BatchError::SerializationError(
"Data too short for type".to_string(),
));
}
let data_type = u16::from_le_bytes([data[0], data[1]]);
let value_data = &data[2..];
tracing::trace!(
"Data type: 0x{:04X}, Value data ({} bytes): {:02X?}",
data_type,
value_data.len(),
value_data
);
if data_type == values::BOOL_ARRAY_DWORD {
if value_data.len() < 4 {
return Err(BatchError::SerializationError(
"Missing packed BOOL array DWORD value".to_string(),
));
}
let packed_value = u32::from_le_bytes([
value_data[0],
value_data[1],
value_data[2],
value_data[3],
]);
if let BatchOperation::Read { tag_name } = operation
&& let Some((_base_name, index)) = self.parse_array_element_access(tag_name)
{
let bit_index = index % 32;
let value = (packed_value >> bit_index) & 1 != 0;
tracing::trace!(
"Parsed packed BOOL array element '{}' from DWORD 0x{:08X} using bit {} -> {}",
tag_name,
packed_value,
bit_index,
value
);
return Ok(Some(PlcValue::Bool(value)));
}
}
values::decode_payload(data_type, value_data)
.map(Some)
.map_err(|e| BatchError::SerializationError(e.to_string()))
}
}
}
}