turbomcp-client 3.0.8

MCP client with full protocol support, bidirectional communication, and plugin middleware
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
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
//! Handler traits for bidirectional communication in MCP client
//!
//! This module provides handler traits and registration mechanisms for processing
//! server-initiated requests. The MCP protocol is bidirectional, meaning servers
//! can also send requests to clients for various purposes like elicitation,
//! logging, and resource updates.
//!
//! ## Handler Types
//!
//! - **ElicitationHandler**: Handle user input requests from servers
//! - **LogHandler**: Route server log messages to client logging systems
//! - **ResourceUpdateHandler**: Handle notifications when resources change
//!
//! ## Usage
//!
//! ```rust,no_run
//! use turbomcp_client::handlers::{ElicitationHandler, ElicitationRequest, ElicitationResponse, ElicitationAction, HandlerError};
//! use std::future::Future;
//! use std::pin::Pin;
//!
//! // Implement elicitation handler
//! #[derive(Debug)]
//! struct MyElicitationHandler;
//!
//! impl ElicitationHandler for MyElicitationHandler {
//!     fn handle_elicitation(
//!         &self,
//!         request: ElicitationRequest,
//!     ) -> Pin<Box<dyn Future<Output = Result<ElicitationResponse, HandlerError>> + Send + '_>> {
//!         Box::pin(async move {
//!             // Display the prompt to the user
//!             eprintln!("\n{}", request.message());
//!             eprintln!("---");
//!
//!             // Access the typed schema (not serde_json::Value!)
//!             let mut content = std::collections::HashMap::new();
//!             if let Some(schema) = request.schema() {
//!                 for (field_name, field_def) in &schema.properties {
//!                     eprint!("{}: ", field_name);
//!
//!                     let mut input = String::new();
//!                     std::io::stdin().read_line(&mut input)
//!                         .map_err(|e| HandlerError::Generic {
//!                             message: e.to_string()
//!                         })?;
//!
//!                     let input = input.trim();
//!
//!                     // Parse input based on field type (from typed schema!)
//!                     use turbomcp_protocol::types::PrimitiveSchemaDefinition;
//!                     let value: serde_json::Value = match field_def {
//!                         PrimitiveSchemaDefinition::Boolean { .. } => {
//!                             serde_json::json!(input == "true" || input == "yes" || input == "1")
//!                         }
//!                         PrimitiveSchemaDefinition::Number { .. } | PrimitiveSchemaDefinition::Integer { .. } => {
//!                             input.parse::<f64>()
//!                                 .map(|n| serde_json::json!(n))
//!                                 .unwrap_or_else(|_| serde_json::json!(input))
//!                         }
//!                         _ => serde_json::json!(input),
//!                     };
//!
//!                     content.insert(field_name.clone(), value);
//!                 }
//!             }
//!
//!             Ok(ElicitationResponse::accept(content))
//!         })
//!     }
//! }
//! ```

use std::collections::HashMap;
use std::future::Future;
use std::pin::Pin;
use std::sync::Arc;
use std::time::Duration;
use thiserror::Error;
use tracing::{debug, error, info, warn};
use turbomcp_protocol::MessageId;
use turbomcp_protocol::jsonrpc::JsonRpcError;
use turbomcp_protocol::types::LogLevel;

// Re-export MCP protocol notification types directly (MCP spec compliance)
pub use turbomcp_protocol::types::{
    CancelledNotification,       // current MCP spec
    LoggingNotification,         // current MCP spec
    ProgressNotification,        // current MCP spec
    ResourceUpdatedNotification, // current MCP spec
};

// ============================================================================
// ERROR TYPES FOR HANDLER OPERATIONS
// ============================================================================

/// Errors that can occur during handler operations
#[derive(Error, Debug)]
#[non_exhaustive]
pub enum HandlerError {
    /// Handler operation failed due to user cancellation
    #[error("User cancelled the operation")]
    UserCancelled,

    /// Handler operation timed out
    #[error("Handler operation timed out after {timeout_seconds} seconds")]
    Timeout { timeout_seconds: u64 },

    /// Input validation failed
    #[error("Invalid input: {details}")]
    InvalidInput { details: String },

    /// Handler configuration error
    #[error("Handler configuration error: {message}")]
    Configuration { message: String },

    /// Generic handler error
    #[error("Handler error: {message}")]
    Generic { message: String },

    /// External system error (e.g., UI framework, database)
    #[error("External system error: {source}")]
    External {
        #[from]
        source: Box<dyn std::error::Error + Send + Sync>,
    },
}

impl HandlerError {
    /// Convert handler error to JSON-RPC error
    ///
    /// This method centralizes the mapping between handler errors and
    /// JSON-RPC error codes, ensuring consistency across all handlers.
    ///
    /// # Error Code Mapping
    ///
    /// - **-1**: User rejected sampling request (current MCP spec)
    /// - **-32801**: Handler operation timed out
    /// - **-32602**: Invalid input (bad request)
    /// - **-32601**: Handler configuration error (method not found)
    /// - **-32603**: Generic/external handler error (internal error)
    ///
    /// # Examples
    ///
    /// ```rust
    /// use turbomcp_client::handlers::HandlerError;
    ///
    /// let error = HandlerError::UserCancelled;
    /// let jsonrpc_error = error.into_jsonrpc_error();
    /// assert_eq!(jsonrpc_error.code, -1);
    /// assert!(jsonrpc_error.message.contains("User rejected"));
    /// ```
    #[must_use]
    pub fn into_jsonrpc_error(&self) -> JsonRpcError {
        let (code, message) = match self {
            HandlerError::UserCancelled => (-1, "User rejected sampling request".to_string()),
            HandlerError::Timeout { timeout_seconds } => (
                -32801,
                format!(
                    "Handler operation timed out after {} seconds",
                    timeout_seconds
                ),
            ),
            HandlerError::InvalidInput { details } => {
                (-32602, format!("Invalid input: {}", details))
            }
            HandlerError::Configuration { message } => {
                (-32601, format!("Handler configuration error: {}", message))
            }
            HandlerError::Generic { message } => (-32603, format!("Handler error: {}", message)),
            HandlerError::External { source } => {
                (-32603, format!("External system error: {}", source))
            }
        };

        JsonRpcError {
            code,
            message,
            data: None,
        }
    }
}

pub type HandlerResult<T> = Result<T, HandlerError>;

// ============================================================================
// ELICITATION HANDLER TRAIT
// ============================================================================

/// Ergonomic wrapper around protocol ElicitRequest with request ID
///
/// This type wraps the protocol-level `ElicitRequest` and adds the request ID
/// from the JSON-RPC envelope. It provides ergonomic accessors while preserving
/// full type safety from the protocol layer.
///
/// # Design Philosophy
///
/// Rather than duplicating protocol types, we wrap them. This ensures:
/// - Type safety is preserved (ElicitationSchema stays typed!)
/// - No data loss (Duration instead of lossy integer seconds)
/// - Single source of truth (protocol crate defines MCP types)
/// - Automatic sync (protocol changes propagate automatically)
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::ElicitationRequest;
///
/// async fn handle(request: ElicitationRequest) {
///     // Access request ID
///     println!("ID: {:?}", request.id());
///
///     // Access message
///     println!("Message: {}", request.message());
///
///     // Access typed schema (not Value!)
///     if let Some(schema) = request.schema() {
///         for (name, property) in &schema.properties {
///             println!("Field: {}", name);
///         }
///     }
///
///     // Access timeout as Duration
///     if let Some(timeout) = request.timeout() {
///         println!("Timeout: {:?}", timeout);
///     }
/// }
/// ```
#[derive(Debug, Clone)]
pub struct ElicitationRequest {
    id: MessageId,
    inner: turbomcp_protocol::types::ElicitRequest,
}

impl ElicitationRequest {
    /// Create a new elicitation request wrapper
    ///
    /// # Arguments
    ///
    /// * `id` - Request ID from JSON-RPC envelope
    /// * `request` - Protocol-level elicit request
    #[must_use]
    pub fn new(id: MessageId, request: turbomcp_protocol::types::ElicitRequest) -> Self {
        Self { id, inner: request }
    }

    /// Get request ID from JSON-RPC envelope
    #[must_use]
    pub fn id(&self) -> &MessageId {
        &self.id
    }

    /// Get human-readable message for the user
    ///
    /// This is the primary prompt/question being asked of the user.
    #[must_use]
    pub fn message(&self) -> &str {
        self.inner.params.message()
    }

    /// Get schema defining expected response structure
    ///
    /// Returns the typed `ElicitationSchema` which provides:
    /// - Type-safe access to properties
    /// - Required field information
    /// - Validation constraints
    ///
    /// # Note
    ///
    /// This returns a TYPED schema, not `serde_json::Value`.
    /// You can inspect the schema structure type-safely:
    ///
    /// ```rust,no_run
    /// # use turbomcp_client::handlers::ElicitationRequest;
    /// # use turbomcp_protocol::types::PrimitiveSchemaDefinition;
    /// # async fn example(request: ElicitationRequest) {
    /// if let Some(schema) = request.schema() {
    ///     for (name, definition) in &schema.properties {
    ///         match definition {
    ///             PrimitiveSchemaDefinition::String { description, .. } => {
    ///                 println!("String field: {}", name);
    ///             }
    ///             PrimitiveSchemaDefinition::Number { minimum, maximum, .. } => {
    ///                 println!("Number field: {} ({:?}-{:?})", name, minimum, maximum);
    ///             }
    ///             _ => {}
    ///         }
    ///     }
    /// }
    /// # }
    /// ```
    #[must_use]
    pub fn schema(&self) -> Option<&turbomcp_protocol::types::ElicitationSchema> {
        #[allow(unreachable_patterns)]
        match &self.inner.params {
            turbomcp_protocol::types::ElicitRequestParams::Form(form) => Some(&form.schema),
            _ => None, // URL elicitation doesn't have this field
        }
    }

    /// Get optional timeout as Duration
    ///
    /// Converts milliseconds from the protocol to ergonomic `Duration` type.
    /// No data loss occurs (unlike converting to integer seconds).
    #[must_use]
    pub fn timeout(&self) -> Option<Duration> {
        #[allow(unreachable_patterns)]
        match &self.inner.params {
            turbomcp_protocol::types::ElicitRequestParams::Form(form) => {
                form.timeout_ms.map(|ms| Duration::from_millis(ms as u64))
            }
            _ => None, // URL elicitation doesn't have this field
        }
    }

    /// Check if request can be cancelled by the user
    #[must_use]
    pub fn is_cancellable(&self) -> bool {
        #[allow(unreachable_patterns)]
        match &self.inner.params {
            turbomcp_protocol::types::ElicitRequestParams::Form(form) => {
                form.cancellable.unwrap_or(false)
            }
            _ => false, // URL elicitation doesn't have this field
        }
    }

    /// Get access to underlying protocol request if needed
    ///
    /// For advanced use cases where you need the raw protocol type.
    #[must_use]
    pub fn as_protocol(&self) -> &turbomcp_protocol::types::ElicitRequest {
        &self.inner
    }

    /// Consume wrapper and return protocol request
    #[must_use]
    pub fn into_protocol(self) -> turbomcp_protocol::types::ElicitRequest {
        self.inner
    }
}

// Re-export protocol action enum (no need to duplicate)
pub use turbomcp_protocol::types::ElicitationAction;

/// Elicitation response builder
///
/// Wrapper around protocol `ElicitResult` with ergonomic factory methods.
///
/// # Examples
///
/// ```rust
/// use turbomcp_client::handlers::ElicitationResponse;
/// use std::collections::HashMap;
///
/// // Accept with content
/// let mut content = HashMap::new();
/// content.insert("name".to_string(), serde_json::json!("Alice"));
/// let response = ElicitationResponse::accept(content);
///
/// // Decline
/// let response = ElicitationResponse::decline();
///
/// // Cancel
/// let response = ElicitationResponse::cancel();
/// ```
#[derive(Debug, Clone)]
pub struct ElicitationResponse {
    inner: turbomcp_protocol::types::ElicitResult,
}

impl ElicitationResponse {
    /// Create response with accept action and user content
    ///
    /// # Arguments
    ///
    /// * `content` - User-submitted data conforming to the request schema
    #[must_use]
    pub fn accept(content: HashMap<String, serde_json::Value>) -> Self {
        Self {
            inner: turbomcp_protocol::types::ElicitResult {
                action: ElicitationAction::Accept,
                content: Some(content),
                _meta: None,
            },
        }
    }

    /// Create response with decline action (user explicitly declined)
    #[must_use]
    pub fn decline() -> Self {
        Self {
            inner: turbomcp_protocol::types::ElicitResult {
                action: ElicitationAction::Decline,
                content: None,
                _meta: None,
            },
        }
    }

    /// Create response with cancel action (user dismissed without choice)
    #[must_use]
    pub fn cancel() -> Self {
        Self {
            inner: turbomcp_protocol::types::ElicitResult {
                action: ElicitationAction::Cancel,
                content: None,
                _meta: None,
            },
        }
    }

    /// Get the action from this response
    #[must_use]
    pub fn action(&self) -> ElicitationAction {
        self.inner.action
    }

    /// Get the content from this response
    #[must_use]
    pub fn content(&self) -> Option<&HashMap<String, serde_json::Value>> {
        self.inner.content.as_ref()
    }

    /// Convert to protocol type for sending over the wire
    pub(crate) fn into_protocol(self) -> turbomcp_protocol::types::ElicitResult {
        self.inner
    }
}

/// Handler for server-initiated elicitation requests
///
/// Elicitation is a mechanism where servers can request user input during
/// operations. For example, a server might need user preferences, authentication
/// credentials, or configuration choices to complete a task.
///
/// Implementations should:
/// - Present the schema/prompt to the user in an appropriate UI
/// - Validate user input against the provided schema
/// - Handle user cancellation gracefully
/// - Respect timeout constraints
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::{ElicitationAction, ElicitationHandler, ElicitationRequest, ElicitationResponse, HandlerResult};
/// use serde_json::json;
/// use std::future::Future;
/// use std::pin::Pin;
///
/// #[derive(Debug)]
/// struct CLIElicitationHandler;
///
/// impl ElicitationHandler for CLIElicitationHandler {
///     fn handle_elicitation(
///         &self,
///         request: ElicitationRequest,
///     ) -> Pin<Box<dyn Future<Output = HandlerResult<ElicitationResponse>> + Send + '_>> {
///         Box::pin(async move {
///             println!("Server request: {}", request.message());
///
///             // In a real implementation, you would:
///             // 1. Inspect the typed schema to understand what input is needed
///             // 2. Present an appropriate UI (CLI prompts, GUI forms, etc.)
///             // 3. Validate the user's input against the schema
///             // 4. Return the structured response
///
///             let mut content = std::collections::HashMap::new();
///             content.insert("user_choice".to_string(), json!("example_value"));
///             Ok(ElicitationResponse::accept(content))
///         })
///     }
/// }
/// ```
pub trait ElicitationHandler: Send + Sync + std::fmt::Debug {
    /// Handle an elicitation request from the server
    ///
    /// This method is called when a server needs user input. The implementation
    /// should present the request to the user and collect their response.
    ///
    /// # Arguments
    ///
    /// * `request` - The elicitation request containing prompt, schema, and metadata
    ///
    /// # Returns
    ///
    /// Returns the user's response or an error if the operation failed.
    fn handle_elicitation(
        &self,
        request: ElicitationRequest,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<ElicitationResponse>> + Send + '_>>;
}

// ============================================================================

// ============================================================================
// LOG HANDLER TRAIT
// ============================================================================

// LoggingNotification is re-exported from protocol (see imports above)
// This ensures current MCP spec compliance

/// Handler for server log messages
///
/// Log handlers receive log messages from the server and can route them to
/// the client's logging system. This is useful for debugging, monitoring,
/// and maintaining a unified log across client and server.
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::{LogHandler, LoggingNotification, HandlerResult};
/// use turbomcp_protocol::types::LogLevel;
/// use std::future::Future;
/// use std::pin::Pin;
///
/// #[derive(Debug)]
/// struct TraceLogHandler;
///
/// impl LogHandler for TraceLogHandler {
///     fn handle_log(&self, log: LoggingNotification) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
///         Box::pin(async move {
///             // MCP spec: data can be any JSON type (string, object, etc.)
///             let message = log.data.to_string();
///             match log.level {
///                 LogLevel::Error => tracing::error!("Server: {}", message),
///                 LogLevel::Warning => tracing::warn!("Server: {}", message),
///                 LogLevel::Info => tracing::info!("Server: {}", message),
///                 LogLevel::Debug => tracing::debug!("Server: {}", message),
///                 LogLevel::Notice => tracing::info!("Server: {}", message),
///                 LogLevel::Critical => tracing::error!("Server CRITICAL: {}", message),
///                 LogLevel::Alert => tracing::error!("Server ALERT: {}", message),
///                 LogLevel::Emergency => tracing::error!("Server EMERGENCY: {}", message),
///             }
///             Ok(())
///         })
///     }
/// }
/// ```
pub trait LogHandler: Send + Sync + std::fmt::Debug {
    /// Handle a log message from the server
    ///
    /// This method is called when the server sends log messages to the client.
    /// Implementations can route these to the client's logging system.
    ///
    /// # Arguments
    ///
    /// * `log` - The log notification with level and data (per current MCP spec)
    ///
    /// # Returns
    ///
    /// Returns `Ok(())` if the log message was processed successfully.
    fn handle_log(
        &self,
        log: LoggingNotification,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>>;
}

// ============================================================================
// RESOURCE UPDATE HANDLER TRAIT
// ============================================================================

// ResourceUpdatedNotification is re-exported from protocol (see imports above)
// This ensures current MCP spec compliance
//
// Per MCP spec: This notification ONLY contains the URI of the changed resource.
// Clients must call resources/read to get the updated content.

/// Handler for resource update notifications
///
/// Resource update handlers receive notifications when resources that the
/// client has subscribed to are modified. This enables reactive updates
/// to cached data or UI refreshes when server-side resources change.
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::{ResourceUpdateHandler, ResourceUpdatedNotification, HandlerResult};
/// use std::future::Future;
/// use std::pin::Pin;
///
/// #[derive(Debug)]
/// struct CacheInvalidationHandler;
///
/// impl ResourceUpdateHandler for CacheInvalidationHandler {
///     fn handle_resource_update(
///         &self,
///         notification: ResourceUpdatedNotification,
///     ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
///         Box::pin(async move {
///             // Per MCP spec: notification only contains URI
///             // Client must call resources/read to get updated content
///             println!("Resource {} was updated", notification.uri);
///
///             // In a real implementation, you might:
///             // - Invalidate cached data for this resource
///             // - Refresh UI components that display this resource
///             // - Log the change for audit purposes
///             // - Trigger dependent computations
///
///             Ok(())
///         })
///     }
/// }
/// ```
pub trait ResourceUpdateHandler: Send + Sync + std::fmt::Debug {
    /// Handle a resource update notification
    ///
    /// This method is called when a subscribed resource changes on the server.
    ///
    /// # Arguments
    ///
    /// * `notification` - Information about the resource change
    ///
    /// # Returns
    ///
    /// Returns `Ok(())` if the notification was processed successfully.
    fn handle_resource_update(
        &self,
        notification: ResourceUpdatedNotification,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>>;
}

// ============================================================================
// ROOTS HANDLER TRAIT
// ============================================================================

/// Roots handler for responding to server requests for filesystem roots
///
/// Per the current MCP specification, `roots/list` is a SERVER->CLIENT request.
/// Servers ask clients what filesystem roots (directories/files) they have access to.
/// This is commonly used when servers need to understand their operating boundaries,
/// such as which repositories or project directories they can access.
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::{RootsHandler, HandlerResult};
/// use turbomcp_protocol::types::Root;
/// use std::future::Future;
/// use std::pin::Pin;
///
/// #[derive(Debug)]
/// struct MyRootsHandler {
///     project_dirs: Vec<String>,
/// }
///
/// impl RootsHandler for MyRootsHandler {
///     fn handle_roots_request(&self) -> Pin<Box<dyn Future<Output = HandlerResult<Vec<Root>>> + Send + '_>> {
///         Box::pin(async move {
///             Ok(self.project_dirs
///                 .iter()
///                 .map(|dir| Root {
///                     uri: format!("file://{}", dir).into(),
///                     name: Some(dir.split('/').last().unwrap_or("").to_string()),
///                 })
///                 .collect())
///         })
///     }
/// }
/// ```
pub trait RootsHandler: Send + Sync + std::fmt::Debug {
    /// Handle a roots/list request from the server
    ///
    /// This method is called when the server wants to know which filesystem roots
    /// the client has available. The implementation should return a list of Root
    /// objects representing directories or files the server can operate on.
    ///
    /// # Returns
    ///
    /// Returns a vector of Root objects, each with a URI (must start with file://)
    /// and optional human-readable name.
    ///
    /// # Note
    ///
    /// Per MCP specification, URIs must start with `file://` for now. This restriction
    /// may be relaxed in future protocol versions.
    fn handle_roots_request(
        &self,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<Vec<turbomcp_protocol::types::Root>>> + Send + '_>>;
}

// ============================================================================
// CANCELLATION HANDLER TRAIT
// ============================================================================

/// Cancellation handler for processing cancellation notifications
///
/// Per the current MCP specification, `notifications/cancelled` can be sent by
/// either side to indicate cancellation of a previously-issued request.
///
/// When the server sends a cancellation notification, it indicates that a request
/// the client sent is being cancelled and the result will be unused. The client
/// SHOULD cease any associated processing.
///
/// # MCP Specification
///
/// From the MCP spec:
/// - "The request SHOULD still be in-flight, but due to communication latency,
///   it is always possible that this notification MAY arrive after the request
///   has already finished."
/// - "A client MUST NOT attempt to cancel its `initialize` request."
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::{CancellationHandler, CancelledNotification, HandlerResult};
/// use std::future::Future;
/// use std::pin::Pin;
///
/// #[derive(Debug)]
/// struct MyCancellationHandler;
///
/// impl CancellationHandler for MyCancellationHandler {
///     fn handle_cancellation(&self, notification: CancelledNotification) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
///         Box::pin(async move {
///             println!("Request {} was cancelled", notification.request_id);
///             if let Some(reason) = &notification.reason {
///                 println!("Reason: {}", reason);
///             }
///
///             // In a real implementation:
///             // - Look up the in-flight request by notification.request_id
///             // - Signal cancellation (e.g., via CancellationToken)
///             // - Clean up any resources
///
///             Ok(())
///         })
///     }
/// }
/// ```
pub trait CancellationHandler: Send + Sync + std::fmt::Debug {
    /// Handle a cancellation notification
    ///
    /// This method is called when the server cancels a request that the client
    /// previously issued.
    ///
    /// # Arguments
    ///
    /// * `notification` - The cancellation notification containing request ID and optional reason
    ///
    /// # Returns
    ///
    /// Returns `Ok(())` if the cancellation was processed successfully.
    fn handle_cancellation(
        &self,
        notification: CancelledNotification,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>>;
}

// ============================================================================
// LIST CHANGED HANDLER TRAITS
// ============================================================================

/// Handler for resource list changes
///
/// Per the current MCP specification, `notifications/resources/list_changed` is
/// an optional notification from the server to the client, informing it that the
/// list of resources it can read from has changed.
///
/// This notification has no parameters - it simply signals that the client should
/// re-query the server's resource list if needed.
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::{ResourceListChangedHandler, HandlerResult};
/// use std::future::Future;
/// use std::pin::Pin;
///
/// #[derive(Debug)]
/// struct MyResourceListHandler;
///
/// impl ResourceListChangedHandler for MyResourceListHandler {
///     fn handle_resource_list_changed(&self) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
///         Box::pin(async move {
///             println!("Server's resource list changed - refreshing...");
///             // In a real implementation, re-query: client.list_resources().await
///             Ok(())
///         })
///     }
/// }
/// ```
pub trait ResourceListChangedHandler: Send + Sync + std::fmt::Debug {
    /// Handle a resource list changed notification
    ///
    /// This method is called when the server's available resource list changes.
    ///
    /// # Returns
    ///
    /// Returns `Ok(())` if the notification was processed successfully.
    fn handle_resource_list_changed(
        &self,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>>;
}

/// Handler for prompt list changes
///
/// Per the current MCP specification, `notifications/prompts/list_changed` is
/// an optional notification from the server to the client, informing it that the
/// list of prompts it offers has changed.
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::{PromptListChangedHandler, HandlerResult};
/// use std::future::Future;
/// use std::pin::Pin;
///
/// #[derive(Debug)]
/// struct MyPromptListHandler;
///
/// impl PromptListChangedHandler for MyPromptListHandler {
///     fn handle_prompt_list_changed(&self) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
///         Box::pin(async move {
///             println!("Server's prompt list changed - refreshing...");
///             Ok(())
///         })
///     }
/// }
/// ```
pub trait PromptListChangedHandler: Send + Sync + std::fmt::Debug {
    /// Handle a prompt list changed notification
    ///
    /// This method is called when the server's available prompt list changes.
    ///
    /// # Returns
    ///
    /// Returns `Ok(())` if the notification was processed successfully.
    fn handle_prompt_list_changed(
        &self,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>>;
}

/// Handler for tool list changes
///
/// Per the current MCP specification, `notifications/tools/list_changed` is
/// an optional notification from the server to the client, informing it that the
/// list of tools it offers has changed.
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::{ToolListChangedHandler, HandlerResult};
/// use std::future::Future;
/// use std::pin::Pin;
///
/// #[derive(Debug)]
/// struct MyToolListHandler;
///
/// impl ToolListChangedHandler for MyToolListHandler {
///     fn handle_tool_list_changed(&self) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
///         Box::pin(async move {
///             println!("Server's tool list changed - refreshing...");
///             Ok(())
///         })
///     }
/// }
/// ```
pub trait ToolListChangedHandler: Send + Sync + std::fmt::Debug {
    /// Handle a tool list changed notification
    ///
    /// This method is called when the server's available tool list changes.
    ///
    /// # Returns
    ///
    /// Returns `Ok(())` if the notification was processed successfully.
    fn handle_tool_list_changed(
        &self,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>>;
}

// ============================================================================
// PROGRESS HANDLER TRAIT
// ============================================================================

/// Handler for progress notifications
///
/// Per the current MCP specification, `notifications/progress` is sent by the
/// server to report progress on long-running operations. The notification
/// includes a progress token, current progress value, optional total, and
/// optional human-readable message.
///
/// # Examples
///
/// ```rust,no_run
/// use turbomcp_client::handlers::{ProgressHandler, ProgressNotification, HandlerResult};
/// use std::future::Future;
/// use std::pin::Pin;
///
/// #[derive(Debug)]
/// struct MyProgressHandler;
///
/// impl ProgressHandler for MyProgressHandler {
///     fn handle_progress(
///         &self,
///         notification: ProgressNotification,
///     ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
///         Box::pin(async move {
///             let pct = notification.total.map(|t| format!(" ({}/{})", notification.progress, t)).unwrap_or_default();
///             println!("Progress [{}]{}: {}", notification.progress_token, pct,
///                 notification.message.as_deref().unwrap_or(""));
///             Ok(())
///         })
///     }
/// }
/// ```
pub trait ProgressHandler: Send + Sync + std::fmt::Debug {
    /// Handle a progress notification from the server
    ///
    /// This method is called when the server sends progress updates for
    /// long-running operations.
    ///
    /// # Arguments
    ///
    /// * `notification` - The progress notification with token, progress, total, and message
    ///
    /// # Returns
    ///
    /// Returns `Ok(())` if the notification was processed successfully.
    fn handle_progress(
        &self,
        notification: ProgressNotification,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>>;
}

// ============================================================================
// HANDLER REGISTRY FOR CLIENT
// ============================================================================

/// Registry for managing client-side handlers
///
/// This registry holds all the handler implementations and provides methods
/// for registering and invoking them. It's used internally by the Client
/// to dispatch server-initiated requests to the appropriate handlers.
#[derive(Debug, Default)]
pub struct HandlerRegistry {
    /// Roots handler for filesystem root requests
    pub roots: Option<Arc<dyn RootsHandler>>,

    /// Elicitation handler for user input requests
    pub elicitation: Option<Arc<dyn ElicitationHandler>>,

    /// Log handler for server log messages
    pub log: Option<Arc<dyn LogHandler>>,

    /// Resource update handler for resource change notifications
    pub resource_update: Option<Arc<dyn ResourceUpdateHandler>>,

    /// Cancellation handler for cancellation notifications
    pub cancellation: Option<Arc<dyn CancellationHandler>>,

    /// Resource list changed handler
    pub resource_list_changed: Option<Arc<dyn ResourceListChangedHandler>>,

    /// Prompt list changed handler
    pub prompt_list_changed: Option<Arc<dyn PromptListChangedHandler>>,

    /// Tool list changed handler
    pub tool_list_changed: Option<Arc<dyn ToolListChangedHandler>>,

    /// Progress handler for progress notifications
    pub progress: Option<Arc<dyn ProgressHandler>>,
}

impl HandlerRegistry {
    /// Create a new empty handler registry
    #[must_use]
    pub fn new() -> Self {
        Self::default()
    }

    /// Register a roots handler
    pub fn set_roots_handler(&mut self, handler: Arc<dyn RootsHandler>) {
        debug!("Registering roots handler");
        self.roots = Some(handler);
    }

    /// Register an elicitation handler
    pub fn set_elicitation_handler(&mut self, handler: Arc<dyn ElicitationHandler>) {
        debug!("Registering elicitation handler");
        self.elicitation = Some(handler);
    }

    /// Register a log handler
    pub fn set_log_handler(&mut self, handler: Arc<dyn LogHandler>) {
        debug!("Registering log handler");
        self.log = Some(handler);
    }

    /// Register a resource update handler
    pub fn set_resource_update_handler(&mut self, handler: Arc<dyn ResourceUpdateHandler>) {
        debug!("Registering resource update handler");
        self.resource_update = Some(handler);
    }

    /// Register a cancellation handler
    pub fn set_cancellation_handler(&mut self, handler: Arc<dyn CancellationHandler>) {
        debug!("Registering cancellation handler");
        self.cancellation = Some(handler);
    }

    /// Register a resource list changed handler
    pub fn set_resource_list_changed_handler(
        &mut self,
        handler: Arc<dyn ResourceListChangedHandler>,
    ) {
        debug!("Registering resource list changed handler");
        self.resource_list_changed = Some(handler);
    }

    /// Register a prompt list changed handler
    pub fn set_prompt_list_changed_handler(&mut self, handler: Arc<dyn PromptListChangedHandler>) {
        debug!("Registering prompt list changed handler");
        self.prompt_list_changed = Some(handler);
    }

    /// Register a tool list changed handler
    pub fn set_tool_list_changed_handler(&mut self, handler: Arc<dyn ToolListChangedHandler>) {
        debug!("Registering tool list changed handler");
        self.tool_list_changed = Some(handler);
    }

    /// Register a progress handler
    pub fn set_progress_handler(&mut self, handler: Arc<dyn ProgressHandler>) {
        debug!("Registering progress handler");
        self.progress = Some(handler);
    }

    /// Check if a roots handler is registered
    #[must_use]
    pub fn has_roots_handler(&self) -> bool {
        self.roots.is_some()
    }

    /// Check if an elicitation handler is registered
    #[must_use]
    pub fn has_elicitation_handler(&self) -> bool {
        self.elicitation.is_some()
    }

    /// Check if a log handler is registered
    #[must_use]
    pub fn has_log_handler(&self) -> bool {
        self.log.is_some()
    }

    /// Check if a resource update handler is registered
    #[must_use]
    pub fn has_resource_update_handler(&self) -> bool {
        self.resource_update.is_some()
    }

    /// Get the log handler if registered
    #[must_use]
    pub fn get_log_handler(&self) -> Option<Arc<dyn LogHandler>> {
        self.log.clone()
    }

    /// Get the resource update handler if registered
    #[must_use]
    pub fn get_resource_update_handler(&self) -> Option<Arc<dyn ResourceUpdateHandler>> {
        self.resource_update.clone()
    }

    /// Get the cancellation handler if registered
    #[must_use]
    pub fn get_cancellation_handler(&self) -> Option<Arc<dyn CancellationHandler>> {
        self.cancellation.clone()
    }

    /// Get the resource list changed handler if registered
    #[must_use]
    pub fn get_resource_list_changed_handler(&self) -> Option<Arc<dyn ResourceListChangedHandler>> {
        self.resource_list_changed.clone()
    }

    /// Get the prompt list changed handler if registered
    #[must_use]
    pub fn get_prompt_list_changed_handler(&self) -> Option<Arc<dyn PromptListChangedHandler>> {
        self.prompt_list_changed.clone()
    }

    /// Get the tool list changed handler if registered
    #[must_use]
    pub fn get_tool_list_changed_handler(&self) -> Option<Arc<dyn ToolListChangedHandler>> {
        self.tool_list_changed.clone()
    }

    /// Check if a progress handler is registered
    #[must_use]
    pub fn has_progress_handler(&self) -> bool {
        self.progress.is_some()
    }

    /// Get the progress handler if registered
    #[must_use]
    pub fn get_progress_handler(&self) -> Option<Arc<dyn ProgressHandler>> {
        self.progress.clone()
    }

    /// Handle a roots/list request from the server
    pub async fn handle_roots_request(&self) -> HandlerResult<Vec<turbomcp_protocol::types::Root>> {
        match &self.roots {
            Some(handler) => {
                info!("Processing roots/list request from server");
                handler.handle_roots_request().await
            }
            None => {
                warn!("No roots handler registered, returning empty roots list");
                // Return empty list per MCP spec - client has no roots available
                Ok(Vec::new())
            }
        }
    }

    /// Handle an elicitation request
    pub async fn handle_elicitation(
        &self,
        request: ElicitationRequest,
    ) -> HandlerResult<ElicitationResponse> {
        match &self.elicitation {
            Some(handler) => {
                info!("Processing elicitation request: {}", request.id);
                handler.handle_elicitation(request).await
            }
            None => {
                warn!("No elicitation handler registered, declining request");
                Err(HandlerError::Configuration {
                    message: "No elicitation handler registered".to_string(),
                })
            }
        }
    }

    /// Handle a log message
    pub async fn handle_log(&self, log: LoggingNotification) -> HandlerResult<()> {
        match &self.log {
            Some(handler) => handler.handle_log(log).await,
            None => {
                debug!("No log handler registered, ignoring log message");
                Ok(())
            }
        }
    }

    /// Handle a resource update notification
    pub async fn handle_resource_update(
        &self,
        notification: ResourceUpdatedNotification,
    ) -> HandlerResult<()> {
        match &self.resource_update {
            Some(handler) => {
                debug!("Processing resource update: {}", notification.uri);
                handler.handle_resource_update(notification).await
            }
            None => {
                debug!("No resource update handler registered, ignoring notification");
                Ok(())
            }
        }
    }
}

// ============================================================================
// DEFAULT HANDLER IMPLEMENTATIONS
// ============================================================================

/// Default elicitation handler that declines all requests
#[derive(Debug)]
pub struct DeclineElicitationHandler;

impl ElicitationHandler for DeclineElicitationHandler {
    fn handle_elicitation(
        &self,
        request: ElicitationRequest,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<ElicitationResponse>> + Send + '_>> {
        Box::pin(async move {
            warn!("Declining elicitation request: {}", request.message());
            Ok(ElicitationResponse::decline())
        })
    }
}

/// Default log handler that routes server logs to tracing
#[derive(Debug)]
pub struct TracingLogHandler;

impl LogHandler for TracingLogHandler {
    fn handle_log(
        &self,
        log: LoggingNotification,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
        Box::pin(async move {
            let logger_prefix = log.logger.as_deref().unwrap_or("server");

            // Per MCP spec: data can be any JSON type (string, object, etc.)
            let message = log.data.to_string();
            match log.level {
                LogLevel::Error => error!("[{}] {}", logger_prefix, message),
                LogLevel::Warning => warn!("[{}] {}", logger_prefix, message),
                LogLevel::Info => info!("[{}] {}", logger_prefix, message),
                LogLevel::Debug => debug!("[{}] {}", logger_prefix, message),
                LogLevel::Notice => info!("[{}] [NOTICE] {}", logger_prefix, message),
                LogLevel::Critical => error!("[{}] [CRITICAL] {}", logger_prefix, message),
                LogLevel::Alert => error!("[{}] [ALERT] {}", logger_prefix, message),
                LogLevel::Emergency => error!("[{}] [EMERGENCY] {}", logger_prefix, message),
            }

            Ok(())
        })
    }
}

/// Default resource update handler that logs changes
#[derive(Debug)]
pub struct LoggingResourceUpdateHandler;

impl ResourceUpdateHandler for LoggingResourceUpdateHandler {
    fn handle_resource_update(
        &self,
        notification: ResourceUpdatedNotification,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
        Box::pin(async move {
            // Per MCP spec: notification only contains URI
            info!("Resource {} was updated", notification.uri);
            Ok(())
        })
    }
}

/// Default cancellation handler that logs cancellation notifications
#[derive(Debug)]
pub struct LoggingCancellationHandler;

impl CancellationHandler for LoggingCancellationHandler {
    fn handle_cancellation(
        &self,
        notification: CancelledNotification,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
        Box::pin(async move {
            if let Some(reason) = &notification.reason {
                info!(
                    "Request {} was cancelled: {}",
                    notification.request_id, reason
                );
            } else {
                info!("Request {} was cancelled", notification.request_id);
            }
            Ok(())
        })
    }
}

/// Default resource list changed handler that logs changes
#[derive(Debug)]
pub struct LoggingResourceListChangedHandler;

impl ResourceListChangedHandler for LoggingResourceListChangedHandler {
    fn handle_resource_list_changed(
        &self,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
        Box::pin(async move {
            info!("Server's resource list changed");
            Ok(())
        })
    }
}

/// Default prompt list changed handler that logs changes
#[derive(Debug)]
pub struct LoggingPromptListChangedHandler;

impl PromptListChangedHandler for LoggingPromptListChangedHandler {
    fn handle_prompt_list_changed(
        &self,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
        Box::pin(async move {
            info!("Server's prompt list changed");
            Ok(())
        })
    }
}

/// Default tool list changed handler that logs changes
#[derive(Debug)]
pub struct LoggingToolListChangedHandler;

impl ToolListChangedHandler for LoggingToolListChangedHandler {
    fn handle_tool_list_changed(
        &self,
    ) -> Pin<Box<dyn Future<Output = HandlerResult<()>> + Send + '_>> {
        Box::pin(async move {
            info!("Server's tool list changed");
            Ok(())
        })
    }
}

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

    // Test handler implementations
    #[derive(Debug)]
    struct TestElicitationHandler;

    impl ElicitationHandler for TestElicitationHandler {
        fn handle_elicitation(
            &self,
            _request: ElicitationRequest,
        ) -> Pin<Box<dyn Future<Output = HandlerResult<ElicitationResponse>> + Send + '_>> {
            Box::pin(async move {
                let mut content = HashMap::new();
                content.insert("test".to_string(), json!("response"));
                Ok(ElicitationResponse::accept(content))
            })
        }
    }

    #[tokio::test]
    async fn test_handler_registry_creation() {
        let registry = HandlerRegistry::new();
        assert!(!registry.has_elicitation_handler());
        assert!(!registry.has_log_handler());
        assert!(!registry.has_resource_update_handler());
    }

    #[tokio::test]
    async fn test_elicitation_handler_registration() {
        let mut registry = HandlerRegistry::new();
        let handler = Arc::new(TestElicitationHandler);

        registry.set_elicitation_handler(handler);
        assert!(registry.has_elicitation_handler());
    }

    #[tokio::test]
    async fn test_elicitation_request_handling() {
        let mut registry = HandlerRegistry::new();
        let handler = Arc::new(TestElicitationHandler);
        registry.set_elicitation_handler(handler);

        // Create protocol request
        let proto_request = turbomcp_protocol::types::ElicitRequest {
            params: turbomcp_protocol::types::ElicitRequestParams::form(
                "Test prompt".to_string(),
                turbomcp_protocol::types::ElicitationSchema::new(),
                None,
                None,
            ),
            task: None,
            _meta: None,
        };

        // Wrap for handler
        let request = ElicitationRequest::new(
            turbomcp_protocol::MessageId::String("test-123".to_string()),
            proto_request,
        );

        let response = registry.handle_elicitation(request).await.unwrap();
        assert_eq!(response.action(), ElicitationAction::Accept);
        assert!(response.content().is_some());
    }

    #[tokio::test]
    async fn test_default_handlers() {
        let decline_handler = DeclineElicitationHandler;

        // Create protocol request
        let proto_request = turbomcp_protocol::types::ElicitRequest {
            params: turbomcp_protocol::types::ElicitRequestParams::form(
                "Test".to_string(),
                turbomcp_protocol::types::ElicitationSchema::new(),
                None,
                None,
            ),
            task: None,
            _meta: None,
        };

        // Wrap for handler
        let request = ElicitationRequest::new(
            turbomcp_protocol::MessageId::String("test".to_string()),
            proto_request,
        );

        let response = decline_handler.handle_elicitation(request).await.unwrap();
        assert_eq!(response.action(), ElicitationAction::Decline);
    }

    #[tokio::test]
    async fn test_handler_error_types() {
        let error = HandlerError::UserCancelled;
        assert!(error.to_string().contains("User cancelled"));

        let timeout_error = HandlerError::Timeout {
            timeout_seconds: 30,
        };
        assert!(timeout_error.to_string().contains("30 seconds"));
    }

    // ========================================================================
    // JSON-RPC Error Mapping Tests
    // ========================================================================

    #[test]
    fn test_user_cancelled_error_mapping() {
        let error = HandlerError::UserCancelled;
        let jsonrpc_error = error.into_jsonrpc_error();

        assert_eq!(
            jsonrpc_error.code, -1,
            "User cancelled should map to -1 per current MCP spec"
        );
        assert!(jsonrpc_error.message.contains("User rejected"));
        assert!(jsonrpc_error.data.is_none());
    }

    #[test]
    fn test_timeout_error_mapping() {
        let error = HandlerError::Timeout {
            timeout_seconds: 30,
        };
        let jsonrpc_error = error.into_jsonrpc_error();

        assert_eq!(jsonrpc_error.code, -32801, "Timeout should map to -32801");
        assert!(jsonrpc_error.message.contains("30 seconds"));
        assert!(jsonrpc_error.data.is_none());
    }

    #[test]
    fn test_invalid_input_error_mapping() {
        let error = HandlerError::InvalidInput {
            details: "Missing required field".to_string(),
        };
        let jsonrpc_error = error.into_jsonrpc_error();

        assert_eq!(
            jsonrpc_error.code, -32602,
            "Invalid input should map to -32602"
        );
        assert!(jsonrpc_error.message.contains("Invalid input"));
        assert!(jsonrpc_error.message.contains("Missing required field"));
        assert!(jsonrpc_error.data.is_none());
    }

    #[test]
    fn test_configuration_error_mapping() {
        let error = HandlerError::Configuration {
            message: "Handler not registered".to_string(),
        };
        let jsonrpc_error = error.into_jsonrpc_error();

        assert_eq!(
            jsonrpc_error.code, -32601,
            "Configuration error should map to -32601"
        );
        assert!(
            jsonrpc_error
                .message
                .contains("Handler configuration error")
        );
        assert!(jsonrpc_error.message.contains("Handler not registered"));
        assert!(jsonrpc_error.data.is_none());
    }

    #[test]
    fn test_generic_error_mapping() {
        let error = HandlerError::Generic {
            message: "Something went wrong".to_string(),
        };
        let jsonrpc_error = error.into_jsonrpc_error();

        assert_eq!(
            jsonrpc_error.code, -32603,
            "Generic error should map to -32603"
        );
        assert!(jsonrpc_error.message.contains("Handler error"));
        assert!(jsonrpc_error.message.contains("Something went wrong"));
        assert!(jsonrpc_error.data.is_none());
    }

    #[test]
    fn test_external_error_mapping() {
        let external_err = Box::new(std::io::Error::other("Database connection failed"));
        let error = HandlerError::External {
            source: external_err,
        };
        let jsonrpc_error = error.into_jsonrpc_error();

        assert_eq!(
            jsonrpc_error.code, -32603,
            "External error should map to -32603"
        );
        assert!(jsonrpc_error.message.contains("External system error"));
        assert!(jsonrpc_error.message.contains("Database connection failed"));
        assert!(jsonrpc_error.data.is_none());
    }

    #[test]
    fn test_error_code_uniqueness() {
        // Verify that user-facing errors have unique codes
        let user_cancelled = HandlerError::UserCancelled.into_jsonrpc_error().code;
        let timeout = HandlerError::Timeout { timeout_seconds: 1 }
            .into_jsonrpc_error()
            .code;
        let invalid_input = HandlerError::InvalidInput {
            details: "test".to_string(),
        }
        .into_jsonrpc_error()
        .code;
        let configuration = HandlerError::Configuration {
            message: "test".to_string(),
        }
        .into_jsonrpc_error()
        .code;

        // These should all be different
        assert_ne!(user_cancelled, timeout);
        assert_ne!(user_cancelled, invalid_input);
        assert_ne!(user_cancelled, configuration);
        assert_ne!(timeout, invalid_input);
        assert_ne!(timeout, configuration);
        assert_ne!(invalid_input, configuration);
    }

    #[test]
    fn test_error_messages_are_informative() {
        // Verify all error messages contain useful information
        let errors = vec![
            HandlerError::UserCancelled,
            HandlerError::Timeout {
                timeout_seconds: 42,
            },
            HandlerError::InvalidInput {
                details: "test detail".to_string(),
            },
            HandlerError::Configuration {
                message: "test config".to_string(),
            },
            HandlerError::Generic {
                message: "test generic".to_string(),
            },
        ];

        for error in errors {
            let jsonrpc_error = error.into_jsonrpc_error();
            assert!(
                !jsonrpc_error.message.is_empty(),
                "Error message should not be empty"
            );
            assert!(
                jsonrpc_error.message.len() > 10,
                "Error message should be descriptive"
            );
        }
    }
}