trustformers-mobile 0.1.1

Mobile deployment support for TrustformeRS (iOS, Android)
Documentation
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
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
//! Android Work Manager Integration for TrustformeRS Mobile
//!
//! This module provides comprehensive Android WorkManager integration, enabling
//! TrustformeRS to schedule and execute background tasks, deferred inference,
//! model updates, and federated learning operations that survive app restarts
//! and device reboots.

use crate::{
    device_info::DeviceInfo, inference::MobileInferenceEngine, model_management::ModelManager,
    MemoryOptimization, MobileConfig,
};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::{Arc, Mutex};
use trustformers_core::error::{CoreError, Result};
use trustformers_core::Tensor;

/// Android Work Manager configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AndroidWorkManagerConfig {
    /// Enable periodic work scheduling
    pub enable_periodic_work: bool,
    /// Enable one-time work requests
    pub enable_one_time_work: bool,
    /// Enable expedited work for urgent tasks
    pub enable_expedited_work: bool,
    /// Work constraints configuration
    pub constraints: WorkConstraintsConfig,
    /// Retry policy configuration
    pub retry_policy: WorkRetryPolicyConfig,
    /// Background execution configuration
    pub background_execution: BackgroundExecutionConfig,
    /// Data synchronization configuration
    pub data_sync: DataSyncConfig,
}

/// Work constraints configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkConstraintsConfig {
    /// Require unmetered network (WiFi)
    pub require_unmetered_network: bool,
    /// Require charging
    pub require_charging: bool,
    /// Require device idle
    pub require_device_idle: bool,
    /// Require battery not low
    pub require_battery_not_low: bool,
    /// Required network type
    pub required_network_type: WorkNetworkType,
    /// Storage constraints
    pub storage_constraints: StorageConstraints,
}

/// Required network types for work
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum WorkNetworkType {
    /// No network required
    NotRequired,
    /// Any network connection
    Connected,
    /// Unmetered network only (WiFi)
    Unmetered,
    /// Not roaming
    NotRoaming,
    /// Metered network allowed
    Metered,
}

/// Storage constraints for work
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StorageConstraints {
    /// Minimum free storage in MB
    pub min_free_storage_mb: usize,
    /// Maximum storage usage for cache in MB
    pub max_cache_storage_mb: usize,
    /// Enable storage cleanup
    pub enable_storage_cleanup: bool,
}

/// Work retry policy configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkRetryPolicyConfig {
    /// Retry policy type
    pub retry_policy: WorkRetryPolicy,
    /// Maximum retry attempts
    pub max_retry_attempts: usize,
    /// Initial retry delay in milliseconds
    pub initial_retry_delay_ms: f64,
    /// Maximum retry delay in milliseconds
    pub max_retry_delay_ms: f64,
    /// Backoff multiplier
    pub backoff_multiplier: f64,
}

/// Work retry policies
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum WorkRetryPolicy {
    /// Linear backoff
    Linear,
    /// Exponential backoff
    Exponential,
    /// No retry
    None,
}

/// Background execution configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BackgroundExecutionConfig {
    /// Maximum execution time in seconds
    pub max_execution_time_seconds: f64,
    /// Enable foreground service for long-running tasks
    pub enable_foreground_service: bool,
    /// Foreground service notification configuration
    pub foreground_notification: ForegroundNotificationConfig,
    /// Background task prioritization
    pub task_prioritization: TaskPrioritizationConfig,
}

/// Foreground notification configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ForegroundNotificationConfig {
    /// Notification channel ID
    pub channel_id: String,
    /// Notification title
    pub title: String,
    /// Notification content text
    pub content_text: String,
    /// Enable progress indicator
    pub show_progress: bool,
    /// Enable cancel action
    pub enable_cancel_action: bool,
}

/// Task prioritization configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaskPrioritizationConfig {
    /// High priority task types
    pub high_priority_tasks: Vec<WorkTaskType>,
    /// Enable adaptive prioritization
    pub enable_adaptive_prioritization: bool,
    /// Priority adjustment based on device state
    pub device_state_priority_adjustment: bool,
    /// Task execution order strategy
    pub execution_order: TaskExecutionOrder,
}

/// Task execution order strategies
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum TaskExecutionOrder {
    /// First In, First Out
    FIFO,
    /// Last In, First Out
    LIFO,
    /// Priority-based
    Priority,
    /// Deadline-based
    Deadline,
    /// Resource-aware
    ResourceAware,
}

/// Data synchronization configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DataSyncConfig {
    /// Enable automatic model updates
    pub enable_model_updates: bool,
    /// Enable federated learning sync
    pub enable_federated_sync: bool,
    /// Sync frequency for periodic tasks
    pub sync_frequency: WorkFrequency,
    /// Conflict resolution strategy
    pub conflict_resolution: ConflictResolutionStrategy,
    /// Data compression settings
    pub compression_settings: DataCompressionConfig,
}

/// Work frequency settings
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkFrequency {
    /// Interval in minutes
    pub interval_minutes: usize,
    /// Flex interval in minutes
    pub flex_interval_minutes: usize,
    /// Initial delay in minutes
    pub initial_delay_minutes: usize,
}

/// Conflict resolution strategies
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum ConflictResolutionStrategy {
    /// Server wins
    ServerWins,
    /// Client wins
    ClientWins,
    /// Last modified wins
    LastModifiedWins,
    /// Merge conflicts
    Merge,
    /// Manual resolution required
    Manual,
}

/// Data compression configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DataCompressionConfig {
    /// Enable compression
    pub enable_compression: bool,
    /// Compression algorithm
    pub algorithm: CompressionAlgorithm,
    /// Compression level (1-9)
    pub compression_level: u8,
    /// Minimum size threshold for compression (bytes)
    pub min_size_threshold_bytes: usize,
}

/// Compression algorithms
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum CompressionAlgorithm {
    /// GZIP compression
    Gzip,
    /// LZ4 compression
    LZ4,
    /// Brotli compression
    Brotli,
    /// Snappy compression
    Snappy,
}

/// Work task types
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum WorkTaskType {
    /// Model inference task
    Inference,
    /// Model download task
    ModelDownload,
    /// Model update task
    ModelUpdate,
    /// Federated learning task
    FederatedLearning,
    /// Data preprocessing task
    DataPreprocessing,
    /// Cache cleanup task
    CacheCleanup,
    /// Performance profiling task
    PerformanceProfiling,
    /// Health check task
    HealthCheck,
    /// Custom task
    Custom(String),
}

/// Work request specification
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkRequest {
    /// Unique work ID
    pub work_id: String,
    /// Work type
    pub work_type: WorkRequestType,
    /// Task type
    pub task_type: WorkTaskType,
    /// Work priority
    pub priority: WorkPriority,
    /// Input data
    pub input_data: WorkInputData,
    /// Work constraints
    pub constraints: Option<WorkConstraintsConfig>,
    /// Custom tags
    pub tags: Vec<String>,
    /// Work deadline
    pub deadline: Option<std::time::SystemTime>,
}

/// Work request types
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum WorkRequestType {
    /// One-time work
    OneTime {
        /// Initial delay in minutes
        initial_delay_minutes: usize,
        /// Enable expedited execution
        expedited: bool,
    },
    /// Periodic work
    Periodic {
        /// Repeat interval
        frequency: WorkFrequency,
        /// Keep existing work policy
        existing_work_policy: ExistingWorkPolicy,
    },
}

/// Existing work policies
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum ExistingWorkPolicy {
    /// Replace existing work
    Replace,
    /// Keep existing work
    Keep,
    /// Append to existing work
    Append,
    /// Replace if running
    ReplaceIfRunning,
}

/// Work priority levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
pub enum WorkPriority {
    /// Minimum priority
    Min = 0,
    /// Low priority
    Low = 1,
    /// Default priority
    Default = 2,
    /// High priority
    High = 3,
    /// Maximum priority
    Max = 4,
}

/// Work input data
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkInputData {
    /// Model ID (if applicable)
    pub model_id: Option<String>,
    /// Input tensor data
    pub tensor_data: Option<Vec<f32>>,
    /// Input shape
    pub tensor_shape: Option<Vec<usize>>,
    /// Configuration overrides
    pub config_overrides: Option<HashMap<String, serde_json::Value>>,
    /// Custom parameters
    pub custom_params: HashMap<String, serde_json::Value>,
}

/// Work execution result
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkResult {
    /// Work ID
    pub work_id: String,
    /// Success flag
    pub success: bool,
    /// Result data
    pub result_data: Option<WorkResultData>,
    /// Error information
    pub error: Option<WorkError>,
    /// Execution metrics
    pub metrics: WorkExecutionMetrics,
    /// Retry information
    pub retry_info: WorkRetryInfo,
}

/// Work result data
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkResultData {
    /// Output tensor data
    pub output_data: Option<Vec<f32>>,
    /// Output shape
    pub output_shape: Option<Vec<usize>>,
    /// Status message
    pub status_message: String,
    /// Additional result metadata
    pub metadata: HashMap<String, serde_json::Value>,
}

/// Work error information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkError {
    /// Error code
    pub code: String,
    /// Error message
    pub message: String,
    /// Error category
    pub category: WorkErrorCategory,
    /// Is recoverable
    pub recoverable: bool,
    /// Suggested retry delay
    pub suggested_retry_delay_ms: Option<f64>,
}

/// Work error categories
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum WorkErrorCategory {
    /// Network error
    Network,
    /// Storage error
    Storage,
    /// Memory error
    Memory,
    /// Model error
    Model,
    /// Configuration error
    Configuration,
    /// Timeout error
    Timeout,
    /// Permission error
    Permission,
    /// System error
    System,
    /// Unknown error
    Unknown,
}

/// Work execution metrics
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkExecutionMetrics {
    /// Start time
    pub start_time: std::time::SystemTime,
    /// End time
    pub end_time: std::time::SystemTime,
    /// Execution duration in milliseconds
    pub duration_ms: f64,
    /// Memory used in MB
    pub memory_used_mb: usize,
    /// CPU usage percentage
    pub cpu_usage_percent: f64,
    /// Network bytes transferred
    pub network_bytes: usize,
    /// Storage bytes used
    pub storage_bytes: usize,
}

/// Work retry information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkRetryInfo {
    /// Current retry attempt
    pub attempt_count: usize,
    /// Maximum retry attempts
    pub max_attempts: usize,
    /// Next retry time
    pub next_retry_time: Option<std::time::SystemTime>,
    /// Backoff delay in milliseconds
    pub backoff_delay_ms: f64,
}

/// Android Work Manager
pub struct AndroidWorkManager {
    config: AndroidWorkManagerConfig,
    inference_engine: Arc<Mutex<MobileInferenceEngine>>,
    model_manager: Arc<Mutex<ModelManager>>,
    work_queue: Arc<Mutex<WorkQueue>>,
    work_executor: Arc<Mutex<WorkExecutor>>,
    work_statistics: Arc<Mutex<WorkStatistics>>,
}

/// Work queue management
#[derive(Debug)]
struct WorkQueue {
    pending_work: HashMap<String, WorkRequest>,
    running_work: HashMap<String, WorkExecution>,
    completed_work: HashMap<String, WorkResult>,
    work_priorities: std::collections::BinaryHeap<PriorityWorkItem>,
}

/// Priority work item for queue ordering
#[derive(Debug, Clone, PartialEq, Eq)]
struct PriorityWorkItem {
    work_id: String,
    priority: WorkPriority,
    deadline: Option<std::time::SystemTime>,
    created_at: std::time::SystemTime,
}

impl Ord for PriorityWorkItem {
    fn cmp(&self, other: &Self) -> std::cmp::Ordering {
        // Higher priority first, then by deadline, then by creation time
        self.priority
            .cmp(&other.priority)
            .then_with(|| match (&self.deadline, &other.deadline) {
                (Some(a), Some(b)) => a.cmp(b),
                (Some(_), None) => std::cmp::Ordering::Greater,
                (None, Some(_)) => std::cmp::Ordering::Less,
                (None, None) => std::cmp::Ordering::Equal,
            })
            .then_with(|| self.created_at.cmp(&other.created_at))
    }
}

impl PartialOrd for PriorityWorkItem {
    fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
        Some(self.cmp(other))
    }
}

/// Work execution tracking
#[derive(Debug, Clone)]
struct WorkExecution {
    work_request: WorkRequest,
    start_time: std::time::SystemTime,
    executor_thread: Option<String>,
    progress: f64,
    can_cancel: bool,
}

/// Work executor
#[derive(Debug)]
struct WorkExecutor {
    max_concurrent_workers: usize,
    active_workers: usize,
    worker_threads: HashMap<String, WorkerThread>,
    execution_context: ExecutionContext,
}

/// Worker thread information
#[derive(Debug, Clone)]
struct WorkerThread {
    thread_id: String,
    current_work_id: Option<String>,
    start_time: std::time::SystemTime,
    cpu_affinity: Option<Vec<usize>>,
}

/// Execution context
#[derive(Debug, Clone)]
struct ExecutionContext {
    device_info: DeviceInfo,
    available_memory_mb: usize,
    battery_level: f64,
    is_charging: bool,
    network_type: WorkNetworkType,
    thermal_state: f64,
}

/// Work statistics
#[derive(Debug, Clone)]
struct WorkStatistics {
    total_work_requests: usize,
    completed_work_requests: usize,
    failed_work_requests: usize,
    retried_work_requests: usize,
    average_execution_time_ms: f64,
    success_rate_by_type: HashMap<WorkTaskType, f64>,
    resource_usage_stats: ResourceUsageStats,
}

/// Resource usage statistics
#[derive(Debug, Clone)]
struct ResourceUsageStats {
    average_memory_usage_mb: f64,
    peak_memory_usage_mb: usize,
    average_cpu_usage_percent: f64,
    total_network_bytes: usize,
    total_storage_bytes: usize,
}

impl AndroidWorkManager {
    /// Create new Android Work Manager
    pub fn new(config: AndroidWorkManagerConfig, mobile_config: MobileConfig) -> Result<Self> {
        config.validate()?;

        let inference_engine = Arc::new(Mutex::new(MobileInferenceEngine::new(mobile_config)?));
        let model_manager = Arc::new(Mutex::new(ModelManager::new_default()?));
        let work_queue = Arc::new(Mutex::new(WorkQueue::new()));
        let work_executor = Arc::new(Mutex::new(WorkExecutor::new(&config)));
        let work_statistics = Arc::new(Mutex::new(WorkStatistics::new()));

        Ok(Self {
            config,
            inference_engine,
            model_manager,
            work_queue,
            work_executor,
            work_statistics,
        })
    }

    /// Enqueue work request
    pub async fn enqueue_work(&self, work_request: WorkRequest) -> Result<String> {
        tracing::info!(
            "Enqueuing work: {} (type: {:?})",
            work_request.work_id,
            work_request.task_type
        );

        // Validate work request
        self.validate_work_request(&work_request)?;

        // Check constraints
        if !self.check_work_constraints(&work_request).await? {
            return Err(TrustformersError::runtime_error("Work constraints not met".into()).into());
        }

        // Add to queue
        {
            let mut queue = self.work_queue.lock().expect("Operation failed");
            queue.enqueue_work(work_request.clone());
        }

        // Update statistics
        {
            let mut stats = self.work_statistics.lock().expect("Operation failed");
            stats.total_work_requests += 1;
        }

        // Try to schedule immediate execution if possible
        self.try_schedule_work().await?;

        Ok(work_request.work_id)
    }

    /// Cancel work by ID
    pub async fn cancel_work(&self, work_id: &str) -> Result<bool> {
        tracing::info!("Cancelling work: {}", work_id);

        let mut queue = self.work_queue.lock().expect("Operation failed");

        // Remove from pending queue
        if queue.pending_work.remove(work_id).is_some() {
            return Ok(true);
        }

        // Try to cancel running work
        if let Some(execution) = queue.running_work.get(work_id) {
            if execution.can_cancel {
                // Signal cancellation to executor
                let mut executor = self.work_executor.lock().expect("Operation failed");
                executor.cancel_work(work_id);
                queue.running_work.remove(work_id);
                return Ok(true);
            }
        }

        Ok(false)
    }

    /// Get work status
    pub fn get_work_status(&self, work_id: &str) -> Result<WorkStatus> {
        let queue = self.work_queue.lock().expect("Operation failed");

        if queue.pending_work.contains_key(work_id) {
            Ok(WorkStatus::Pending)
        } else if queue.running_work.contains_key(work_id) {
            Ok(WorkStatus::Running)
        } else if let Some(result) = queue.completed_work.get(work_id) {
            if result.success {
                Ok(WorkStatus::Succeeded)
            } else {
                Ok(WorkStatus::Failed)
            }
        } else {
            Ok(WorkStatus::Unknown)
        }
    }

    /// Get work result
    pub fn get_work_result(&self, work_id: &str) -> Result<Option<WorkResult>> {
        let queue = self.work_queue.lock().expect("Operation failed");
        Ok(queue.completed_work.get(work_id).cloned())
    }

    /// Get work statistics
    pub fn get_work_statistics(&self) -> Result<String> {
        let stats = self.work_statistics.lock().expect("Operation failed");

        let stats_json = serde_json::json!({
            "total_work_requests": stats.total_work_requests,
            "completed_work_requests": stats.completed_work_requests,
            "failed_work_requests": stats.failed_work_requests,
            "retried_work_requests": stats.retried_work_requests,
            "success_rate": if stats.total_work_requests > 0 {
                stats.completed_work_requests as f64 / stats.total_work_requests as f64
            } else { 0.0 },
            "average_execution_time_ms": stats.average_execution_time_ms,
            "success_rate_by_type": stats.success_rate_by_type,
            "resource_usage": {
                "average_memory_usage_mb": stats.resource_usage_stats.average_memory_usage_mb,
                "peak_memory_usage_mb": stats.resource_usage_stats.peak_memory_usage_mb,
                "average_cpu_usage_percent": stats.resource_usage_stats.average_cpu_usage_percent,
                "total_network_bytes": stats.resource_usage_stats.total_network_bytes,
                "total_storage_bytes": stats.resource_usage_stats.total_storage_bytes
            }
        });

        Ok(stats_json.to_string())
    }

    /// List all pending work
    pub fn list_pending_work(&self) -> Result<Vec<String>> {
        let queue = self.work_queue.lock().expect("Operation failed");
        Ok(queue.pending_work.keys().cloned().collect())
    }

    /// List all running work
    pub fn list_running_work(&self) -> Result<Vec<String>> {
        let queue = self.work_queue.lock().expect("Operation failed");
        Ok(queue.running_work.keys().cloned().collect())
    }

    /// Clean up completed work older than specified duration
    pub fn cleanup_completed_work(&self, older_than_hours: f64) -> Result<usize> {
        let mut queue = self.work_queue.lock().expect("Operation failed");
        let cutoff_time = std::time::SystemTime::now()
            - std::time::Duration::from_secs_f64(older_than_hours * 3600.0);

        let initial_count = queue.completed_work.len();
        queue.completed_work.retain(|_, result| result.metrics.end_time > cutoff_time);

        let cleaned_count = initial_count - queue.completed_work.len();
        Ok(cleaned_count)
    }

    // Private helper methods

    async fn try_schedule_work(&self) -> Result<()> {
        let mut executor = self.work_executor.lock().expect("Operation failed");
        let mut queue = self.work_queue.lock().expect("Operation failed");

        // Check if we can schedule more work
        if executor.can_accept_more_work() {
            if let Some(work_item) = queue.get_next_work() {
                if let Some(work_request) = queue.pending_work.remove(&work_item.work_id) {
                    let execution = WorkExecution {
                        work_request: work_request.clone(),
                        start_time: std::time::SystemTime::now(),
                        executor_thread: None,
                        progress: 0.0,
                        can_cancel: true,
                    };

                    queue.running_work.insert(work_request.work_id.clone(), execution);

                    // Execute work asynchronously
                    let work_manager = self.clone_for_execution();
                    let work_id = work_request.work_id.clone();

                    tokio::spawn(async move {
                        let result = work_manager.execute_work(work_request).await;
                        work_manager.complete_work(&work_id, result).await;
                    });
                }
            }
        }

        Ok(())
    }

    async fn execute_work(&self, work_request: WorkRequest) -> WorkResult {
        let start_time = std::time::SystemTime::now();

        let result = match work_request.task_type {
            WorkTaskType::Inference => self.execute_inference_work(&work_request).await,
            WorkTaskType::ModelDownload => self.execute_model_download_work(&work_request).await,
            WorkTaskType::ModelUpdate => self.execute_model_update_work(&work_request).await,
            WorkTaskType::FederatedLearning => {
                self.execute_federated_learning_work(&work_request).await
            },
            WorkTaskType::DataPreprocessing => {
                self.execute_data_preprocessing_work(&work_request).await
            },
            WorkTaskType::CacheCleanup => self.execute_cache_cleanup_work(&work_request).await,
            WorkTaskType::PerformanceProfiling => {
                self.execute_performance_profiling_work(&work_request).await
            },
            WorkTaskType::HealthCheck => self.execute_health_check_work(&work_request).await,
            WorkTaskType::Custom(_) => self.execute_custom_work(&work_request).await,
        };

        let end_time = std::time::SystemTime::now();
        let duration = end_time.duration_since(start_time).unwrap_or_default();

        let metrics = WorkExecutionMetrics {
            start_time,
            end_time,
            duration_ms: duration.as_millis() as f64,
            memory_used_mb: self.get_current_memory_usage(),
            cpu_usage_percent: self.get_current_cpu_usage(),
            network_bytes: 0, // Would be tracked during execution
            storage_bytes: 0, // Would be tracked during execution
        };

        match result {
            Ok(result_data) => WorkResult {
                work_id: work_request.work_id,
                success: true,
                result_data: Some(result_data),
                error: None,
                metrics,
                retry_info: WorkRetryInfo {
                    attempt_count: 1,
                    max_attempts: self.config.retry_policy.max_retry_attempts,
                    next_retry_time: None,
                    backoff_delay_ms: 0.0,
                },
            },
            Err(error) => WorkResult {
                work_id: work_request.work_id,
                success: false,
                result_data: None,
                error: Some(WorkError {
                    code: "EXECUTION_ERROR".to_string(),
                    message: error.to_string(),
                    category: WorkErrorCategory::System,
                    recoverable: true,
                    suggested_retry_delay_ms: Some(self.config.retry_policy.initial_retry_delay_ms),
                }),
                metrics,
                retry_info: WorkRetryInfo {
                    attempt_count: 1,
                    max_attempts: self.config.retry_policy.max_retry_attempts,
                    next_retry_time: Some(
                        std::time::SystemTime::now()
                            + std::time::Duration::from_millis(
                                self.config.retry_policy.initial_retry_delay_ms as u64,
                            ),
                    ),
                    backoff_delay_ms: self.config.retry_policy.initial_retry_delay_ms,
                },
            },
        }
    }

    async fn complete_work(&self, work_id: &str, result: WorkResult) {
        // Move work from running to completed
        {
            let mut queue = self.work_queue.lock().expect("Operation failed");
            queue.running_work.remove(work_id);
            queue.completed_work.insert(work_id.to_string(), result.clone());
        }

        // Update statistics
        {
            let mut stats = self.work_statistics.lock().expect("Operation failed");
            if result.success {
                stats.completed_work_requests += 1;
            } else {
                stats.failed_work_requests += 1;
            }

            // Update running average execution time
            let alpha = 0.1;
            if stats.completed_work_requests + stats.failed_work_requests == 1 {
                stats.average_execution_time_ms = result.metrics.duration_ms;
            } else {
                stats.average_execution_time_ms = alpha * result.metrics.duration_ms
                    + (1.0 - alpha) * stats.average_execution_time_ms;
            }
        }

        // Try to schedule next work
        let _ = self.try_schedule_work().await;
    }

    fn clone_for_execution(&self) -> Self {
        Self {
            config: self.config.clone(),
            inference_engine: self.inference_engine.clone(),
            model_manager: self.model_manager.clone(),
            work_queue: self.work_queue.clone(),
            work_executor: self.work_executor.clone(),
            work_statistics: self.work_statistics.clone(),
        }
    }

    // Work execution implementations for different task types
    async fn execute_inference_work(&self, work_request: &WorkRequest) -> Result<WorkResultData> {
        if let Some(ref model_id) = work_request.input_data.model_id {
            if let (Some(ref tensor_data), Some(ref tensor_shape)) = (
                &work_request.input_data.tensor_data,
                &work_request.input_data.tensor_shape,
            ) {
                let input_tensor = Tensor::from_vec(tensor_data.clone(), tensor_shape)?;

                let result = {
                    let mut engine = self.inference_engine.lock().expect("Operation failed");
                    engine.inference(model_id, &input_tensor)?
                };

                let output_data = result.data_f32()?.to_vec();
                let output_shape = result.shape().to_vec();

                Ok(WorkResultData {
                    output_data: Some(output_data),
                    output_shape: Some(output_shape),
                    status_message: "Inference completed successfully".to_string(),
                    metadata: HashMap::new(),
                })
            } else {
                Err(TrustformersError::runtime_error(
                    "Missing tensor data for inference".into(),
                ))
            }
        } else {
            Err(TrustformersError::runtime_error(
                "Missing model ID for inference".into(),
            ))
        }
    }

    async fn execute_model_download_work(
        &self,
        work_request: &WorkRequest,
    ) -> Result<WorkResultData> {
        if let Some(ref model_id) = work_request.input_data.model_id {
            let mut model_manager = self.model_manager.lock().expect("Operation failed");
            // Simulate model download
            model_manager.download_model(model_id, None).await?;

            Ok(WorkResultData {
                output_data: None,
                output_shape: None,
                status_message: format!("Model {} downloaded successfully", model_id),
                metadata: HashMap::new(),
            })
        } else {
            Err(TrustformersError::runtime_error(
                "Missing model ID for download".into(),
            ))
        }
    }

    async fn execute_model_update_work(
        &self,
        work_request: &WorkRequest,
    ) -> Result<WorkResultData> {
        if let Some(ref model_id) = work_request.input_data.model_id {
            let mut model_manager = self.model_manager.lock().expect("Operation failed");
            // Simulate model update
            model_manager.update_model(model_id).await?;

            Ok(WorkResultData {
                output_data: None,
                output_shape: None,
                status_message: format!("Model {} updated successfully", model_id),
                metadata: HashMap::new(),
            })
        } else {
            Err(TrustformersError::runtime_error(
                "Missing model ID for update".into(),
            ))
        }
    }

    async fn execute_federated_learning_work(
        &self,
        _work_request: &WorkRequest,
    ) -> Result<WorkResultData> {
        // Federated learning implementation would go here
        Ok(WorkResultData {
            output_data: None,
            output_shape: None,
            status_message: "Federated learning round completed".to_string(),
            metadata: HashMap::new(),
        })
    }

    async fn execute_data_preprocessing_work(
        &self,
        _work_request: &WorkRequest,
    ) -> Result<WorkResultData> {
        // Data preprocessing implementation would go here
        Ok(WorkResultData {
            output_data: None,
            output_shape: None,
            status_message: "Data preprocessing completed".to_string(),
            metadata: HashMap::new(),
        })
    }

    async fn execute_cache_cleanup_work(
        &self,
        _work_request: &WorkRequest,
    ) -> Result<WorkResultData> {
        // Cache cleanup implementation would go here
        Ok(WorkResultData {
            output_data: None,
            output_shape: None,
            status_message: "Cache cleanup completed".to_string(),
            metadata: HashMap::new(),
        })
    }

    async fn execute_performance_profiling_work(
        &self,
        _work_request: &WorkRequest,
    ) -> Result<WorkResultData> {
        // Performance profiling implementation would go here
        Ok(WorkResultData {
            output_data: None,
            output_shape: None,
            status_message: "Performance profiling completed".to_string(),
            metadata: HashMap::new(),
        })
    }

    async fn execute_health_check_work(
        &self,
        _work_request: &WorkRequest,
    ) -> Result<WorkResultData> {
        // Health check implementation would go here
        Ok(WorkResultData {
            output_data: None,
            output_shape: None,
            status_message: "Health check completed - all systems operational".to_string(),
            metadata: HashMap::new(),
        })
    }

    async fn execute_custom_work(&self, _work_request: &WorkRequest) -> Result<WorkResultData> {
        // Custom work implementation would go here
        Ok(WorkResultData {
            output_data: None,
            output_shape: None,
            status_message: "Custom work completed".to_string(),
            metadata: HashMap::new(),
        })
    }

    fn validate_work_request(&self, work_request: &WorkRequest) -> Result<()> {
        if work_request.work_id.is_empty() {
            return Err(TrustformersError::config_error(
                "Work ID cannot be empty",
                "validate_work_request",
            )
            .into());
        }

        // Validate input data based on task type
        match work_request.task_type {
            WorkTaskType::Inference => {
                if work_request.input_data.model_id.is_none() {
                    return Err(TrustformersError::config_error {
                        message: "Model ID required for inference task".to_string(),
                        context: trustformers_core::error::ErrorContext::new(
                            trustformers_core::error::ErrorCode::E4001,
                            "validate_work_request".to_string(),
                        ),
                    });
                }
                if work_request.input_data.tensor_data.is_none() {
                    return Err(TrustformersError::config_error {
                        message: "Tensor data required for inference task".to_string(),
                        context: trustformers_core::error::ErrorContext::new(
                            trustformers_core::error::ErrorCode::E4001,
                            "validate_work_request".to_string(),
                        ),
                    });
                }
            },
            WorkTaskType::ModelDownload | WorkTaskType::ModelUpdate => {
                if work_request.input_data.model_id.is_none() {
                    return Err(TrustformersError::config_error {
                        message: "Model ID required for model task".to_string(),
                        context: trustformers_core::error::ErrorContext::new(
                            trustformers_core::error::ErrorCode::E4001,
                            "validate_work_request".to_string(),
                        ),
                    });
                }
            },
            _ => {
                // Other task types may have different validation requirements
            },
        }

        Ok(())
    }

    async fn check_work_constraints(&self, work_request: &WorkRequest) -> Result<bool> {
        let constraints = work_request.constraints.as_ref().unwrap_or(&self.config.constraints);

        // Check network constraints
        if constraints.require_unmetered_network {
            if !self.is_unmetered_network_available() {
                return Ok(false);
            }
        }

        // Check battery constraints
        if constraints.require_charging {
            if !self.is_device_charging() {
                return Ok(false);
            }
        }

        if constraints.require_battery_not_low {
            if self.is_battery_low() {
                return Ok(false);
            }
        }

        // Check device idle constraint
        if constraints.require_device_idle {
            if !self.is_device_idle() {
                return Ok(false);
            }
        }

        // Check storage constraints
        if !self.check_storage_constraints(&constraints.storage_constraints) {
            return Ok(false);
        }

        Ok(true)
    }

    fn get_current_memory_usage(&self) -> usize {
        // Platform-specific memory usage detection
        64 // Placeholder
    }

    fn get_current_cpu_usage(&self) -> f64 {
        // Platform-specific CPU usage detection
        25.0 // Placeholder
    }

    fn is_unmetered_network_available(&self) -> bool {
        // Platform-specific network detection
        true // Placeholder
    }

    fn is_device_charging(&self) -> bool {
        // Platform-specific charging detection
        false // Placeholder
    }

    fn is_battery_low(&self) -> bool {
        // Platform-specific battery detection
        false // Placeholder
    }

    fn is_device_idle(&self) -> bool {
        // Platform-specific idle detection
        true // Placeholder
    }

    fn check_storage_constraints(&self, constraints: &StorageConstraints) -> bool {
        // Platform-specific storage check
        true // Placeholder
    }
}

/// Work status enumeration
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum WorkStatus {
    /// Work is pending execution
    Pending,
    /// Work is currently running
    Running,
    /// Work completed successfully
    Succeeded,
    /// Work failed
    Failed,
    /// Work was cancelled
    Cancelled,
    /// Work status is unknown
    Unknown,
}

// Implementation details for helper structs

impl WorkQueue {
    fn new() -> Self {
        Self {
            pending_work: HashMap::new(),
            running_work: HashMap::new(),
            completed_work: HashMap::new(),
            work_priorities: std::collections::BinaryHeap::new(),
        }
    }

    fn enqueue_work(&mut self, work_request: WorkRequest) {
        let priority_item = PriorityWorkItem {
            work_id: work_request.work_id.clone(),
            priority: work_request.priority,
            deadline: work_request.deadline,
            created_at: std::time::SystemTime::now(),
        };

        self.pending_work.insert(work_request.work_id.clone(), work_request);
        self.work_priorities.push(priority_item);
    }

    fn get_next_work(&mut self) -> Option<PriorityWorkItem> {
        self.work_priorities.pop()
    }
}

impl WorkExecutor {
    fn new(config: &AndroidWorkManagerConfig) -> Self {
        Self {
            max_concurrent_workers: 4, // Default
            active_workers: 0,
            worker_threads: HashMap::new(),
            execution_context: ExecutionContext {
                device_info: DeviceInfo::current_device(),
                available_memory_mb: 512,
                battery_level: 100.0,
                is_charging: false,
                network_type: WorkNetworkType::Connected,
                thermal_state: 0.0,
            },
        }
    }

    fn can_accept_more_work(&self) -> bool {
        self.active_workers < self.max_concurrent_workers
    }

    fn cancel_work(&mut self, _work_id: &str) {
        // Implementation for cancelling work
    }
}

impl WorkStatistics {
    fn new() -> Self {
        Self {
            total_work_requests: 0,
            completed_work_requests: 0,
            failed_work_requests: 0,
            retried_work_requests: 0,
            average_execution_time_ms: 0.0,
            success_rate_by_type: HashMap::new(),
            resource_usage_stats: ResourceUsageStats {
                average_memory_usage_mb: 0.0,
                peak_memory_usage_mb: 0,
                average_cpu_usage_percent: 0.0,
                total_network_bytes: 0,
                total_storage_bytes: 0,
            },
        }
    }
}

impl Default for AndroidWorkManagerConfig {
    fn default() -> Self {
        Self {
            enable_periodic_work: true,
            enable_one_time_work: true,
            enable_expedited_work: true,
            constraints: WorkConstraintsConfig {
                require_unmetered_network: false,
                require_charging: false,
                require_device_idle: false,
                require_battery_not_low: true,
                required_network_type: WorkNetworkType::Connected,
                storage_constraints: StorageConstraints {
                    min_free_storage_mb: 100,
                    max_cache_storage_mb: 500,
                    enable_storage_cleanup: true,
                },
            },
            retry_policy: WorkRetryPolicyConfig {
                retry_policy: WorkRetryPolicy::Exponential,
                max_retry_attempts: 3,
                initial_retry_delay_ms: 1000.0,
                max_retry_delay_ms: 300000.0, // 5 minutes
                backoff_multiplier: 2.0,
            },
            background_execution: BackgroundExecutionConfig {
                max_execution_time_seconds: 600.0, // 10 minutes
                enable_foreground_service: true,
                foreground_notification: ForegroundNotificationConfig {
                    channel_id: "trustformers_work".to_string(),
                    title: "TrustformeRS Background Processing".to_string(),
                    content_text: "Processing machine learning tasks".to_string(),
                    show_progress: true,
                    enable_cancel_action: true,
                },
                task_prioritization: TaskPrioritizationConfig {
                    high_priority_tasks: vec![
                        WorkTaskType::Inference,
                        WorkTaskType::FederatedLearning,
                    ],
                    enable_adaptive_prioritization: true,
                    device_state_priority_adjustment: true,
                    execution_order: TaskExecutionOrder::Priority,
                },
            },
            data_sync: DataSyncConfig {
                enable_model_updates: true,
                enable_federated_sync: true,
                sync_frequency: WorkFrequency {
                    interval_minutes: 60,
                    flex_interval_minutes: 15,
                    initial_delay_minutes: 5,
                },
                conflict_resolution: ConflictResolutionStrategy::LastModifiedWins,
                compression_settings: DataCompressionConfig {
                    enable_compression: true,
                    algorithm: CompressionAlgorithm::Gzip,
                    compression_level: 6,
                    min_size_threshold_bytes: 1024,
                },
            },
        }
    }
}

impl AndroidWorkManagerConfig {
    /// Validate configuration
    pub fn validate(&self) -> Result<()> {
        if self.retry_policy.max_retry_attempts > 10 {
            return Err(TrustformersError::config_error {
                message: "Too many retry attempts".to_string(),
                context: trustformers_core::error::ErrorContext::new(
                    trustformers_core::error::ErrorCode::E4001,
                    "validate".to_string(),
                ),
            });
        }

        if self.background_execution.max_execution_time_seconds > 3600.0 {
            return Err(TrustformersError::config_error {
                message: "Execution time too long".to_string(),
                context: trustformers_core::error::ErrorContext::new(
                    trustformers_core::error::ErrorCode::E4001,
                    "validate".to_string(),
                ),
            });
        }

        if self.constraints.storage_constraints.min_free_storage_mb < 50 {
            return Err(TrustformersError::config_error {
                message: "Minimum storage too low".to_string(),
                context: trustformers_core::error::ErrorContext::new(
                    trustformers_core::error::ErrorCode::E4001,
                    "validate".to_string(),
                ),
            });
        }

        Ok(())
    }
}

// Mock implementations for ModelManager methods
impl ModelManager {
    fn new_default() -> Result<Self> {
        // Default model manager creation
        Ok(Self::new(
            crate::model_management::ModelManagerConfig::default(),
        )?)
    }

    async fn update_model(&mut self, _model_id: &str) -> Result<()> {
        // Model update implementation
        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_work_manager_config_default() {
        let config = AndroidWorkManagerConfig::default();
        assert!(config.enable_periodic_work);
        assert!(config.enable_one_time_work);
        assert_eq!(
            config.retry_policy.retry_policy,
            WorkRetryPolicy::Exponential
        );
    }

    #[test]
    fn test_work_manager_config_validation() {
        let mut config = AndroidWorkManagerConfig::default();
        assert!(config.validate().is_ok());

        config.retry_policy.max_retry_attempts = 15;
        assert!(config.validate().is_err());
    }

    #[test]
    fn test_work_priority_ordering() {
        assert!(WorkPriority::Max > WorkPriority::High);
        assert!(WorkPriority::High > WorkPriority::Default);
        assert!(WorkPriority::Default > WorkPriority::Low);
        assert!(WorkPriority::Low > WorkPriority::Min);
    }

    #[tokio::test]
    async fn test_work_manager_creation() {
        let work_config = AndroidWorkManagerConfig::default();
        let mobile_config = MobileConfig::android_optimized();

        let result = AndroidWorkManager::new(work_config, mobile_config);
        assert!(result.is_ok());
    }

    #[test]
    fn test_work_request_validation() {
        let work_config = AndroidWorkManagerConfig::default();
        let mobile_config = MobileConfig::android_optimized();
        let manager =
            AndroidWorkManager::new(work_config, mobile_config).expect("Operation failed");

        let valid_request = WorkRequest {
            work_id: "test_inference".to_string(),
            work_type: WorkRequestType::OneTime {
                initial_delay_minutes: 0,
                expedited: false,
            },
            task_type: WorkTaskType::Inference,
            priority: WorkPriority::Default,
            input_data: WorkInputData {
                model_id: Some("test_model".to_string()),
                tensor_data: Some(vec![1.0, 2.0, 3.0]),
                tensor_shape: Some(vec![1, 3]),
                config_overrides: None,
                custom_params: HashMap::new(),
            },
            constraints: None,
            tags: vec!["test".to_string()],
            deadline: None,
        };

        assert!(manager.validate_work_request(&valid_request).is_ok());

        let invalid_request = WorkRequest {
            work_id: "".to_string(), // Invalid: empty work ID
            ..valid_request
        };

        assert!(manager.validate_work_request(&invalid_request).is_err());
    }
}