claude-agents-sdk 0.1.3

Rust SDK for building agents with Claude Code CLI
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
//! Type definitions for the Claude Agents SDK.
//!
//! This module contains all the type definitions used throughout the SDK,
//! including messages, content blocks, options, hooks, and control protocol types.

use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::future::Future;
use std::path::PathBuf;
use std::pin::Pin;
use std::sync::Arc;

// ============================================================================
// Permission Types
// ============================================================================

/// Permission modes controlling how the CLI handles tool permissions.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub enum PermissionMode {
    /// Default permission mode - asks for permission on sensitive operations.
    #[default]
    #[serde(rename = "default")]
    Default,
    /// Automatically accept all file edits.
    #[serde(rename = "acceptEdits")]
    AcceptEdits,
    /// Plan mode - only plans actions without executing.
    #[serde(rename = "plan")]
    Plan,
    /// Bypass all permission checks (dangerous).
    #[serde(rename = "bypassPermissions")]
    BypassPermissions,
}

/// Permission behavior for tool use.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum PermissionBehavior {
    /// Allow the tool to execute.
    Allow,
    /// Deny the tool execution.
    Deny,
    /// Ask for permission.
    Ask,
}

/// Destination for permission updates.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum PermissionUpdateDestination {
    /// Store in user settings.
    UserSettings,
    /// Store in project settings.
    ProjectSettings,
    /// Store in local settings.
    LocalSettings,
    /// Store in current session only.
    Session,
}

/// Permission rule value.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PermissionRuleValue {
    /// The tool name this rule applies to.
    #[serde(rename = "toolName")]
    pub tool_name: String,
    /// Optional rule content.
    #[serde(rename = "ruleContent", skip_serializing_if = "Option::is_none")]
    pub rule_content: Option<String>,
}

/// Type of permission update.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum PermissionUpdateType {
    /// Add new permission rules.
    AddRules,
    /// Replace existing permission rules.
    ReplaceRules,
    /// Remove permission rules.
    RemoveRules,
    /// Set the permission mode.
    SetMode,
    /// Add directories to permissions.
    AddDirectories,
    /// Remove directories from permissions.
    RemoveDirectories,
}

/// Permission update configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PermissionUpdate {
    /// Type of update to perform.
    #[serde(rename = "type")]
    pub update_type: PermissionUpdateType,
    /// Rules to add/replace/remove.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub rules: Option<Vec<PermissionRuleValue>>,
    /// Behavior for the rules.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub behavior: Option<PermissionBehavior>,
    /// Mode to set.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub mode: Option<PermissionMode>,
    /// Directories to add/remove.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub directories: Option<Vec<String>>,
    /// Where to store the update.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub destination: Option<PermissionUpdateDestination>,
}

// ============================================================================
// Tool Permission Callback Types
// ============================================================================

/// Context information for tool permission callbacks.
#[derive(Debug, Clone, Default)]
pub struct ToolPermissionContext {
    /// Permission suggestions from CLI.
    pub suggestions: Vec<PermissionUpdate>,
}

/// Allow permission result.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PermissionResultAllow {
    /// Always "allow".
    pub behavior: String,
    /// Updated input for the tool.
    #[serde(rename = "updatedInput", skip_serializing_if = "Option::is_none")]
    pub updated_input: Option<serde_json::Value>,
    /// Permission updates to apply.
    #[serde(rename = "updatedPermissions", skip_serializing_if = "Option::is_none")]
    pub updated_permissions: Option<Vec<PermissionUpdate>>,
}

impl PermissionResultAllow {
    /// Create a new allow result.
    pub fn new() -> Self {
        Self {
            behavior: "allow".to_string(),
            updated_input: None,
            updated_permissions: None,
        }
    }

    /// Create an allow result with updated input.
    pub fn with_updated_input(input: serde_json::Value) -> Self {
        Self {
            behavior: "allow".to_string(),
            updated_input: Some(input),
            updated_permissions: None,
        }
    }
}

impl Default for PermissionResultAllow {
    fn default() -> Self {
        Self::new()
    }
}

/// Deny permission result.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PermissionResultDeny {
    /// Always "deny".
    pub behavior: String,
    /// Message explaining why permission was denied.
    #[serde(default)]
    pub message: String,
    /// Whether to interrupt execution.
    #[serde(default)]
    pub interrupt: bool,
}

impl PermissionResultDeny {
    /// Create a new deny result.
    pub fn new() -> Self {
        Self {
            behavior: "deny".to_string(),
            message: String::new(),
            interrupt: false,
        }
    }

    /// Create a deny result with a message.
    pub fn with_message(message: impl Into<String>) -> Self {
        Self {
            behavior: "deny".to_string(),
            message: message.into(),
            interrupt: false,
        }
    }

    /// Create a deny result that also interrupts.
    pub fn with_interrupt(message: impl Into<String>) -> Self {
        Self {
            behavior: "deny".to_string(),
            message: message.into(),
            interrupt: true,
        }
    }
}

impl Default for PermissionResultDeny {
    fn default() -> Self {
        Self::new()
    }
}

/// Permission result from a tool permission callback.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum PermissionResult {
    /// Allow the tool to execute.
    Allow(PermissionResultAllow),
    /// Deny the tool execution.
    Deny(PermissionResultDeny),
}

impl PermissionResult {
    /// Create an allow result.
    pub fn allow() -> Self {
        Self::Allow(PermissionResultAllow::new())
    }

    /// Create a deny result.
    pub fn deny() -> Self {
        Self::Deny(PermissionResultDeny::new())
    }

    /// Create a deny result with a message.
    pub fn deny_with_message(message: impl Into<String>) -> Self {
        Self::Deny(PermissionResultDeny::with_message(message))
    }
}

/// The async future type returned by tool permission callbacks.
pub type CanUseToolFuture = Pin<Box<dyn Future<Output = PermissionResult> + Send>>;

/// Type alias for the tool permission callback function.
///
/// This callback is invoked when Claude wants to use a tool, allowing you to
/// approve, deny, or modify the tool execution.
///
/// # Arguments
/// * `tool_name` - Name of the tool being requested (e.g., "Bash", "Read", "Write")
/// * `input` - The tool input as JSON (tool-specific parameters)
/// * `context` - Additional context including permission suggestions
///
/// # Returns
/// A [`PermissionResult`] indicating whether to allow or deny the tool use.
///
/// # Example
/// ```ignore
/// let callback: CanUseTool = Arc::new(|tool_name, input, context| {
///     Box::pin(async move {
///         if tool_name == "Bash" {
///             PermissionResult::deny_with_message("Bash is disabled")
///         } else {
///             PermissionResult::allow()
///         }
///     })
/// });
/// ```
pub type CanUseTool =
    Arc<dyn Fn(String, serde_json::Value, ToolPermissionContext) -> CanUseToolFuture + Send + Sync>;

// ============================================================================
// Hook Types
// ============================================================================

/// Hook event types.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum HookEvent {
    /// Before a tool is used.
    PreToolUse,
    /// After a tool is used.
    PostToolUse,
    /// When user submits a prompt.
    UserPromptSubmit,
    /// Stop hook.
    Stop,
    /// Subagent stop hook.
    SubagentStop,
    /// Before context compaction.
    PreCompact,
}

/// Base hook input fields.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BaseHookInput {
    /// Session ID.
    pub session_id: String,
    /// Path to transcript file.
    pub transcript_path: String,
    /// Current working directory.
    pub cwd: String,
    /// Current permission mode.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub permission_mode: Option<String>,
}

/// Input for PreToolUse hook events.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PreToolUseHookInput {
    /// Base fields.
    #[serde(flatten)]
    pub base: BaseHookInput,
    /// Hook event name.
    pub hook_event_name: String,
    /// Name of the tool being used.
    pub tool_name: String,
    /// Input to the tool.
    pub tool_input: serde_json::Value,
}

/// Input for PostToolUse hook events.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PostToolUseHookInput {
    /// Base fields.
    #[serde(flatten)]
    pub base: BaseHookInput,
    /// Hook event name.
    pub hook_event_name: String,
    /// Name of the tool that was used.
    pub tool_name: String,
    /// Input that was passed to the tool.
    pub tool_input: serde_json::Value,
    /// Response from the tool.
    pub tool_response: serde_json::Value,
}

/// Input for UserPromptSubmit hook events.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UserPromptSubmitHookInput {
    /// Base fields.
    #[serde(flatten)]
    pub base: BaseHookInput,
    /// Hook event name.
    pub hook_event_name: String,
    /// The submitted prompt.
    pub prompt: String,
}

/// Input for Stop hook events.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StopHookInput {
    /// Base fields.
    #[serde(flatten)]
    pub base: BaseHookInput,
    /// Hook event name.
    pub hook_event_name: String,
    /// Whether stop hook is active.
    pub stop_hook_active: bool,
}

/// Input for SubagentStop hook events.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SubagentStopHookInput {
    /// Base fields.
    #[serde(flatten)]
    pub base: BaseHookInput,
    /// Hook event name.
    pub hook_event_name: String,
    /// Whether stop hook is active.
    pub stop_hook_active: bool,
}

/// Trigger for PreCompact hook.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum CompactTrigger {
    /// Manual compaction.
    Manual,
    /// Automatic compaction.
    Auto,
}

/// Input for PreCompact hook events.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PreCompactHookInput {
    /// Base fields.
    #[serde(flatten)]
    pub base: BaseHookInput,
    /// Hook event name.
    pub hook_event_name: String,
    /// What triggered the compaction.
    pub trigger: CompactTrigger,
    /// Custom instructions for compaction.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_instructions: Option<String>,
}

/// Union of all hook input types.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "hook_event_name")]
pub enum HookInput {
    /// PreToolUse hook input.
    PreToolUse(PreToolUseHookInput),
    /// PostToolUse hook input.
    PostToolUse(PostToolUseHookInput),
    /// UserPromptSubmit hook input.
    UserPromptSubmit(UserPromptSubmitHookInput),
    /// Stop hook input.
    Stop(StopHookInput),
    /// SubagentStop hook input.
    SubagentStop(SubagentStopHookInput),
    /// PreCompact hook input.
    PreCompact(PreCompactHookInput),
}

/// Hook-specific output for PreToolUse events.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PreToolUseHookSpecificOutput {
    /// Event name.
    #[serde(rename = "hookEventName")]
    pub hook_event_name: String,
    /// Permission decision.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub permission_decision: Option<PermissionBehavior>,
    /// Reason for decision.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub permission_decision_reason: Option<String>,
    /// Updated input.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub updated_input: Option<serde_json::Value>,
}

/// Hook-specific output for PostToolUse events.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PostToolUseHookSpecificOutput {
    /// Event name.
    #[serde(rename = "hookEventName")]
    pub hook_event_name: String,
    /// Additional context to add.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_context: Option<String>,
}

/// Hook-specific output for UserPromptSubmit events.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UserPromptSubmitHookSpecificOutput {
    /// Event name.
    #[serde(rename = "hookEventName")]
    pub hook_event_name: String,
    /// Additional context to add.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional_context: Option<String>,
}

/// Union of hook-specific outputs.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum HookSpecificOutput {
    /// PreToolUse specific output.
    PreToolUse(PreToolUseHookSpecificOutput),
    /// PostToolUse specific output.
    PostToolUse(PostToolUseHookSpecificOutput),
    /// UserPromptSubmit specific output.
    UserPromptSubmit(UserPromptSubmitHookSpecificOutput),
}

/// Async hook output that defers execution.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AsyncHookOutput {
    /// Set to true to defer execution.
    #[serde(rename = "async")]
    pub async_: bool,
    /// Optional timeout in milliseconds.
    #[serde(rename = "asyncTimeout", skip_serializing_if = "Option::is_none")]
    pub async_timeout: Option<u64>,
}

/// Synchronous hook output with control fields.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SyncHookOutput {
    /// Whether to continue execution.
    #[serde(rename = "continue", skip_serializing_if = "Option::is_none")]
    pub continue_: Option<bool>,
    /// Whether to suppress output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub suppress_output: Option<bool>,
    /// Reason for stopping.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub stop_reason: Option<String>,
    /// Decision (e.g., "block").
    #[serde(skip_serializing_if = "Option::is_none")]
    pub decision: Option<String>,
    /// System message to display.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub system_message: Option<String>,
    /// Reason for decision.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<String>,
    /// Hook-specific output.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub hook_specific_output: Option<HookSpecificOutput>,
}

/// Hook output type.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum HookOutput {
    /// Async output.
    Async(AsyncHookOutput),
    /// Sync output.
    Sync(SyncHookOutput),
}

impl Default for HookOutput {
    fn default() -> Self {
        Self::Sync(SyncHookOutput::default())
    }
}

/// Context for hook callbacks.
#[derive(Debug, Clone, Default)]
pub struct HookContext {
    // Reserved for future abort signal support.
}

/// The async future type returned by hook callbacks.
pub type HookCallbackFuture = Pin<Box<dyn Future<Output = HookOutput> + Send>>;

/// Type alias for hook callback functions.
///
/// Hooks are invoked at specific points during Claude's execution, allowing you
/// to observe or modify behavior.
///
/// # Arguments
/// * `input` - The hook input containing event-specific data
/// * `tool_use_id` - Optional tool use ID (for pre/post tool hooks)
/// * `context` - Hook context (reserved for future use)
///
/// # Returns
/// A [`HookOutput`] that can modify the tool input, block execution, or log a message.
///
/// # Example
/// ```ignore
/// let callback: HookCallback = Arc::new(|input, tool_use_id, context| {
///     Box::pin(async move {
///         println!("Tool called: {:?}", tool_use_id);
///         HookOutput::default()  // Continue without modification
///     })
/// });
/// ```
pub type HookCallback =
    Arc<dyn Fn(HookInput, Option<String>, HookContext) -> HookCallbackFuture + Send + Sync>;

/// Hook matcher configuration.
#[derive(Clone, Default)]
pub struct HookMatcher {
    /// Pattern to match (e.g., tool name or regex).
    pub matcher: Option<String>,
    /// List of hook callbacks.
    pub hooks: Vec<HookCallback>,
    /// Timeout in seconds.
    pub timeout: Option<f64>,
}

impl std::fmt::Debug for HookMatcher {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("HookMatcher")
            .field("matcher", &self.matcher)
            .field("hooks", &format!("[{} callbacks]", self.hooks.len()))
            .field("timeout", &self.timeout)
            .finish()
    }
}

// ============================================================================
// MCP Server Configuration
// ============================================================================

/// MCP stdio server configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct McpStdioServerConfig {
    /// Server type (always "stdio").
    #[serde(rename = "type", default = "default_stdio")]
    pub server_type: String,
    /// Command to run.
    pub command: String,
    /// Command arguments.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub args: Vec<String>,
    /// Environment variables.
    #[serde(default, skip_serializing_if = "HashMap::is_empty")]
    pub env: HashMap<String, String>,
}

fn default_stdio() -> String {
    "stdio".to_string()
}

/// MCP SSE server configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct McpSSEServerConfig {
    /// Server type (always "sse").
    #[serde(rename = "type")]
    pub server_type: String,
    /// Server URL.
    pub url: String,
    /// HTTP headers.
    #[serde(default, skip_serializing_if = "HashMap::is_empty")]
    pub headers: HashMap<String, String>,
}

/// MCP HTTP server configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct McpHttpServerConfig {
    /// Server type (always "http").
    #[serde(rename = "type")]
    pub server_type: String,
    /// Server URL.
    pub url: String,
    /// HTTP headers.
    #[serde(default, skip_serializing_if = "HashMap::is_empty")]
    pub headers: HashMap<String, String>,
}

/// MCP server configuration union.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum McpServerConfig {
    /// Stdio-based MCP server.
    #[serde(rename = "stdio")]
    Stdio(McpStdioServerConfig),
    /// SSE-based MCP server.
    #[serde(rename = "sse")]
    SSE(McpSSEServerConfig),
    /// HTTP-based MCP server.
    #[serde(rename = "http")]
    Http(McpHttpServerConfig),
}

/// SDK plugin configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SdkPluginConfig {
    /// Plugin type.
    #[serde(rename = "type")]
    pub plugin_type: String,
    /// Path to the plugin.
    pub path: String,
}

// ============================================================================
// Sandbox Configuration
// ============================================================================

/// Network configuration for sandbox.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SandboxNetworkConfig {
    /// Unix socket paths accessible in sandbox.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub allow_unix_sockets: Vec<String>,
    /// Allow all Unix sockets.
    #[serde(default)]
    pub allow_all_unix_sockets: bool,
    /// Allow binding to localhost ports.
    #[serde(default)]
    pub allow_local_binding: bool,
    /// HTTP proxy port.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub http_proxy_port: Option<u16>,
    /// SOCKS5 proxy port.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub socks_proxy_port: Option<u16>,
}

/// Violations to ignore in sandbox.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct SandboxIgnoreViolations {
    /// File paths to ignore.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub file: Vec<String>,
    /// Network hosts to ignore.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub network: Vec<String>,
}

/// Sandbox settings configuration.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SandboxSettings {
    /// Enable bash sandboxing.
    #[serde(default)]
    pub enabled: bool,
    /// Auto-approve bash when sandboxed.
    #[serde(default = "default_true")]
    pub auto_allow_bash_if_sandboxed: bool,
    /// Commands to exclude from sandbox.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub excluded_commands: Vec<String>,
    /// Allow commands to bypass sandbox.
    #[serde(default = "default_true")]
    pub allow_unsandboxed_commands: bool,
    /// Network configuration.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub network: Option<SandboxNetworkConfig>,
    /// Violations to ignore.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub ignore_violations: Option<SandboxIgnoreViolations>,
    /// Enable weaker nested sandbox.
    #[serde(default)]
    pub enable_weaker_nested_sandbox: bool,
}

fn default_true() -> bool {
    true
}

// ============================================================================
// Content Block Types
// ============================================================================

/// Text content block.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TextBlock {
    /// The text content.
    pub text: String,
}

/// Thinking content block.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ThinkingBlock {
    /// The thinking content.
    pub thinking: String,
    /// Signature for verification.
    pub signature: String,
}

/// Tool use content block.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ToolUseBlock {
    /// Tool use ID.
    pub id: String,
    /// Tool name.
    pub name: String,
    /// Tool input.
    pub input: serde_json::Value,
}

/// Tool result content block.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ToolResultBlock {
    /// ID of the tool use this is a result for.
    pub tool_use_id: String,
    /// Result content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub content: Option<serde_json::Value>,
    /// Whether this is an error result.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub is_error: Option<bool>,
}

/// Content block union type.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum ContentBlock {
    /// Text block.
    #[serde(rename = "text")]
    Text(TextBlock),
    /// Thinking block.
    #[serde(rename = "thinking")]
    Thinking(ThinkingBlock),
    /// Tool use block.
    #[serde(rename = "tool_use")]
    ToolUse(ToolUseBlock),
    /// Tool result block.
    #[serde(rename = "tool_result")]
    ToolResult(ToolResultBlock),
}

impl ContentBlock {
    /// Get the text if this is a text block.
    pub fn as_text(&self) -> Option<&str> {
        match self {
            ContentBlock::Text(block) => Some(&block.text),
            _ => None,
        }
    }

    /// Check if this is a tool use block.
    pub fn is_tool_use(&self) -> bool {
        matches!(self, ContentBlock::ToolUse(_))
    }
}

// ============================================================================
// Message Types
// ============================================================================

/// Assistant message error types.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum AssistantMessageError {
    /// Authentication failed.
    AuthenticationFailed,
    /// Billing error.
    BillingError,
    /// Rate limit exceeded.
    RateLimit,
    /// Invalid request.
    InvalidRequest,
    /// Server error.
    ServerError,
    /// Unknown error.
    Unknown,
}

/// User message.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UserMessage {
    /// Message content (string or content blocks).
    pub content: UserMessageContent,
    /// Unique identifier.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub uuid: Option<String>,
    /// Parent tool use ID if this is a tool result.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_tool_use_id: Option<String>,
}

/// User message content can be a string or content blocks.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum UserMessageContent {
    /// Plain text content.
    Text(String),
    /// Content blocks.
    Blocks(Vec<ContentBlock>),
}

impl UserMessage {
    /// Get text content if this is a simple text message.
    pub fn text(&self) -> Option<&str> {
        match &self.content {
            UserMessageContent::Text(s) => Some(s),
            UserMessageContent::Blocks(blocks) => {
                if blocks.len() == 1 {
                    blocks[0].as_text()
                } else {
                    None
                }
            }
        }
    }
}

/// Assistant message.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AssistantMessage {
    /// Content blocks.
    pub content: Vec<ContentBlock>,
    /// Model that generated this message.
    pub model: String,
    /// Parent tool use ID.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_tool_use_id: Option<String>,
    /// Error if the message failed.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub error: Option<AssistantMessageError>,
}

impl AssistantMessage {
    /// Get all text content from this message.
    pub fn text(&self) -> String {
        self.content
            .iter()
            .filter_map(|block| block.as_text())
            .collect::<Vec<_>>()
            .join("")
    }

    /// Get all tool use blocks.
    pub fn tool_uses(&self) -> Vec<&ToolUseBlock> {
        self.content
            .iter()
            .filter_map(|block| match block {
                ContentBlock::ToolUse(tu) => Some(tu),
                _ => None,
            })
            .collect()
    }
}

/// System message.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SystemMessage {
    /// Message subtype.
    pub subtype: String,
    /// Message data.
    pub data: serde_json::Value,
}

/// Result message with cost and usage information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ResultMessage {
    /// Message subtype.
    pub subtype: String,
    /// Duration in milliseconds.
    pub duration_ms: u64,
    /// API duration in milliseconds.
    pub duration_api_ms: u64,
    /// Whether the result is an error.
    pub is_error: bool,
    /// Number of turns in the conversation.
    pub num_turns: u32,
    /// Session ID.
    pub session_id: String,
    /// Total cost in USD.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub total_cost_usd: Option<f64>,
    /// Token usage information.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub usage: Option<serde_json::Value>,
    /// Result text.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub result: Option<String>,
    /// Structured output if output_format was specified.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub structured_output: Option<serde_json::Value>,
}

/// Stream event for partial message updates.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StreamEvent {
    /// Event UUID.
    pub uuid: String,
    /// Session ID.
    pub session_id: String,
    /// Raw Anthropic API stream event.
    pub event: serde_json::Value,
    /// Parent tool use ID.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_tool_use_id: Option<String>,
}

/// Message union type.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum Message {
    /// User message.
    #[serde(rename = "user")]
    User(UserMessage),
    /// Assistant message.
    #[serde(rename = "assistant")]
    Assistant(AssistantMessage),
    /// System message.
    #[serde(rename = "system")]
    System(SystemMessage),
    /// Result message.
    #[serde(rename = "result")]
    Result(ResultMessage),
    /// Stream event.
    #[serde(rename = "stream_event")]
    StreamEvent(StreamEvent),
}

impl Message {
    /// Check if this is a result message.
    pub fn is_result(&self) -> bool {
        matches!(self, Message::Result(_))
    }

    /// Check if this is an assistant message.
    pub fn is_assistant(&self) -> bool {
        matches!(self, Message::Assistant(_))
    }

    /// Get as assistant message if applicable.
    pub fn as_assistant(&self) -> Option<&AssistantMessage> {
        match self {
            Message::Assistant(msg) => Some(msg),
            _ => None,
        }
    }

    /// Get as result message if applicable.
    pub fn as_result(&self) -> Option<&ResultMessage> {
        match self {
            Message::Result(msg) => Some(msg),
            _ => None,
        }
    }
}

// ============================================================================
// Agent Configuration
// ============================================================================

/// System prompt preset.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SystemPromptPreset {
    /// Type (always "preset").
    #[serde(rename = "type")]
    pub preset_type: String,
    /// Preset name.
    pub preset: String,
    /// Text to append.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub append: Option<String>,
}

/// Tools preset.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ToolsPreset {
    /// Type (always "preset").
    #[serde(rename = "type")]
    pub preset_type: String,
    /// Preset name.
    pub preset: String,
}

/// System prompt configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum SystemPromptConfig {
    /// Plain text system prompt.
    Text(String),
    /// Preset configuration.
    Preset(SystemPromptPreset),
}

/// Tools configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ToolsConfig {
    /// List of tool names.
    List(Vec<String>),
    /// Preset configuration.
    Preset(ToolsPreset),
}

/// Agent model.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum AgentModel {
    /// Sonnet model.
    Sonnet,
    /// Opus model.
    Opus,
    /// Haiku model.
    Haiku,
    /// Inherit from parent.
    Inherit,
}

/// Agent definition.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AgentDefinition {
    /// Agent description.
    pub description: String,
    /// Agent prompt.
    pub prompt: String,
    /// Allowed tools.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tools: Option<Vec<String>>,
    /// Model to use.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub model: Option<AgentModel>,
}

/// Setting source.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum SettingSource {
    /// User settings.
    User,
    /// Project settings.
    Project,
    /// Local settings.
    Local,
}

/// SDK Beta features.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub enum SdkBeta {
    /// Extended context beta.
    #[serde(rename = "context-1m-2025-08-07")]
    Context1m,
}

/// MCP servers configuration.
#[derive(Debug, Clone)]
pub enum McpServersConfig {
    /// Map of server configurations.
    Map(HashMap<String, McpServerConfig>),
    /// Path to configuration file.
    Path(PathBuf),
}

impl Default for McpServersConfig {
    fn default() -> Self {
        Self::Map(HashMap::new())
    }
}

/// Query options for Claude SDK.
#[derive(Clone, Default)]
pub struct ClaudeAgentOptions {
    /// Tools to use.
    pub tools: Option<ToolsConfig>,
    /// Allowed tools.
    pub allowed_tools: Vec<String>,
    /// System prompt.
    pub system_prompt: Option<SystemPromptConfig>,
    /// MCP server configurations.
    pub mcp_servers: McpServersConfig,
    /// Permission mode.
    pub permission_mode: Option<PermissionMode>,
    /// Continue previous conversation.
    pub continue_conversation: bool,
    /// Resume session ID.
    pub resume: Option<String>,
    /// Maximum turns.
    pub max_turns: Option<u32>,
    /// Maximum budget in USD.
    pub max_budget_usd: Option<f64>,
    /// Disallowed tools.
    pub disallowed_tools: Vec<String>,
    /// Model to use.
    pub model: Option<String>,
    /// Fallback model.
    pub fallback_model: Option<String>,
    /// Beta features.
    pub betas: Vec<SdkBeta>,
    /// Permission prompt tool name.
    pub permission_prompt_tool_name: Option<String>,
    /// Working directory.
    pub cwd: Option<PathBuf>,
    /// Path to CLI executable.
    pub cli_path: Option<PathBuf>,
    /// Settings string.
    pub settings: Option<String>,
    /// Additional directories.
    pub add_dirs: Vec<PathBuf>,
    /// Environment variables.
    pub env: HashMap<String, String>,
    /// Extra CLI arguments.
    pub extra_args: HashMap<String, Option<String>>,
    /// Maximum buffer size for stdout.
    pub max_buffer_size: Option<usize>,
    /// Callback for stderr output.
    pub stderr: Option<Arc<dyn Fn(String) + Send + Sync>>,
    /// Tool permission callback.
    pub can_use_tool: Option<CanUseTool>,
    /// Hook configurations.
    pub hooks: Option<HashMap<HookEvent, Vec<HookMatcher>>>,
    /// User identifier.
    pub user: Option<String>,
    /// Include partial messages in stream.
    pub include_partial_messages: bool,
    /// Fork session when resuming.
    pub fork_session: bool,
    /// Agent definitions.
    pub agents: Option<HashMap<String, AgentDefinition>>,
    /// Setting sources.
    pub setting_sources: Option<Vec<SettingSource>>,
    /// Sandbox settings.
    pub sandbox: Option<SandboxSettings>,
    /// Plugin configurations.
    pub plugins: Vec<SdkPluginConfig>,
    /// Maximum thinking tokens.
    pub max_thinking_tokens: Option<u32>,
    /// Output format for structured outputs.
    pub output_format: Option<serde_json::Value>,
    /// Enable file checkpointing.
    pub enable_file_checkpointing: bool,
    /// Timeout in seconds for CLI operations (default: 300 = 5 minutes).
    /// Set to 0 to disable timeout.
    pub timeout_secs: Option<u64>,
}

impl std::fmt::Debug for ClaudeAgentOptions {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("ClaudeAgentOptions")
            .field("tools", &self.tools)
            .field("allowed_tools", &self.allowed_tools)
            .field("system_prompt", &self.system_prompt)
            .field("permission_mode", &self.permission_mode)
            .field("continue_conversation", &self.continue_conversation)
            .field("resume", &self.resume)
            .field("max_turns", &self.max_turns)
            .field("max_budget_usd", &self.max_budget_usd)
            .field("disallowed_tools", &self.disallowed_tools)
            .field("model", &self.model)
            .field(
                "can_use_tool",
                &self.can_use_tool.as_ref().map(|_| "<callback>"),
            )
            .field(
                "hooks",
                &self.hooks.as_ref().map(|h| format!("{} events", h.len())),
            )
            .field("stderr", &self.stderr.as_ref().map(|_| "<callback>"))
            .finish_non_exhaustive()
    }
}

impl ClaudeAgentOptions {
    /// Create new options with defaults.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set the system prompt.
    pub fn with_system_prompt(mut self, prompt: impl Into<String>) -> Self {
        self.system_prompt = Some(SystemPromptConfig::Text(prompt.into()));
        self
    }

    /// Set the model.
    pub fn with_model(mut self, model: impl Into<String>) -> Self {
        self.model = Some(model.into());
        self
    }

    /// Set the permission mode.
    pub fn with_permission_mode(mut self, mode: PermissionMode) -> Self {
        self.permission_mode = Some(mode);
        self
    }

    /// Set max turns.
    pub fn with_max_turns(mut self, turns: u32) -> Self {
        self.max_turns = Some(turns);
        self
    }

    /// Set working directory.
    pub fn with_cwd(mut self, cwd: impl Into<PathBuf>) -> Self {
        self.cwd = Some(cwd.into());
        self
    }

    /// Set allowed tools.
    pub fn with_allowed_tools(mut self, tools: Vec<String>) -> Self {
        self.allowed_tools = tools;
        self
    }

    /// Enable partial message streaming.
    pub fn with_partial_messages(mut self) -> Self {
        self.include_partial_messages = true;
        self
    }

    /// Set the timeout for CLI operations in seconds.
    ///
    /// Default is 300 seconds (5 minutes). Set to 0 to disable timeout.
    /// This timeout applies to:
    /// - Initial CLI process startup
    /// - Control protocol requests (initialize, can_use_tool, etc.)
    /// - Waiting for CLI responses
    pub fn with_timeout_secs(mut self, timeout: u64) -> Self {
        self.timeout_secs = Some(timeout);
        self
    }

    /// Set the can_use_tool callback.
    pub fn with_can_use_tool<F, Fut>(mut self, callback: F) -> Self
    where
        F: Fn(String, serde_json::Value, ToolPermissionContext) -> Fut + Send + Sync + 'static,
        Fut: Future<Output = PermissionResult> + Send + 'static,
    {
        self.can_use_tool = Some(Arc::new(move |name, input, ctx| {
            Box::pin(callback(name, input, ctx))
        }));
        self
    }
}

// ============================================================================
// Control Protocol Types
// ============================================================================

/// Control request subtypes.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "subtype")]
pub enum ControlRequestPayload {
    /// Interrupt request.
    #[serde(rename = "interrupt")]
    Interrupt,
    /// Tool permission request.
    #[serde(rename = "can_use_tool")]
    CanUseTool {
        /// Tool name.
        tool_name: String,
        /// Tool input.
        input: serde_json::Value,
        /// Permission suggestions.
        permission_suggestions: Option<Vec<serde_json::Value>>,
        /// Blocked path.
        blocked_path: Option<String>,
    },
    /// Initialize request.
    #[serde(rename = "initialize")]
    Initialize {
        /// Hook configurations.
        hooks: Option<serde_json::Value>,
    },
    /// Set permission mode request.
    #[serde(rename = "set_permission_mode")]
    SetPermissionMode {
        /// New mode.
        mode: String,
    },
    /// Set model request.
    #[serde(rename = "set_model")]
    SetModel {
        /// New model.
        model: String,
    },
    /// Hook callback request.
    #[serde(rename = "hook_callback")]
    HookCallback {
        /// Callback ID.
        callback_id: String,
        /// Hook input.
        input: serde_json::Value,
        /// Tool use ID.
        tool_use_id: Option<String>,
    },
    /// MCP message request.
    #[serde(rename = "mcp_message")]
    McpMessage {
        /// Server name.
        server_name: String,
        /// JSONRPC message.
        message: serde_json::Value,
    },
    /// Rewind files request.
    #[serde(rename = "rewind_files")]
    RewindFiles {
        /// User message ID to rewind to.
        user_message_id: String,
    },
}

/// Control request.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ControlRequest {
    /// Always "control_request".
    #[serde(rename = "type")]
    pub request_type: String,
    /// Request ID.
    pub request_id: String,
    /// Request payload.
    pub request: ControlRequestPayload,
}

/// Success response.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ControlSuccessResponse {
    /// Always "success".
    pub subtype: String,
    /// Request ID.
    pub request_id: String,
    /// Response data.
    pub response: Option<serde_json::Value>,
}

/// Error response.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ControlErrorResponse {
    /// Always "error".
    pub subtype: String,
    /// Request ID.
    pub request_id: String,
    /// Error message.
    pub error: String,
}

/// Control response payload.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "subtype")]
pub enum ControlResponsePayload {
    /// Success response.
    #[serde(rename = "success")]
    Success {
        /// Request ID.
        request_id: String,
        /// Response data.
        response: Option<serde_json::Value>,
    },
    /// Error response.
    #[serde(rename = "error")]
    Error {
        /// Request ID.
        request_id: String,
        /// Error message.
        error: String,
    },
}

/// Control response.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ControlResponse {
    /// Always "control_response".
    #[serde(rename = "type")]
    pub response_type: String,
    /// Response payload.
    pub response: ControlResponsePayload,
}

impl ControlResponse {
    /// Get the request ID.
    pub fn request_id(&self) -> &str {
        match &self.response {
            ControlResponsePayload::Success { request_id, .. } => request_id,
            ControlResponsePayload::Error { request_id, .. } => request_id,
        }
    }

    /// Check if this is a success response.
    pub fn is_success(&self) -> bool {
        matches!(&self.response, ControlResponsePayload::Success { .. })
    }

    /// Get the response data if successful.
    pub fn data(&self) -> Option<&serde_json::Value> {
        match &self.response {
            ControlResponsePayload::Success { response, .. } => response.as_ref(),
            ControlResponsePayload::Error { .. } => None,
        }
    }

    /// Get the error message if failed.
    pub fn error(&self) -> Option<&str> {
        match &self.response {
            ControlResponsePayload::Success { .. } => None,
            ControlResponsePayload::Error { error, .. } => Some(error),
        }
    }
}

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

    #[test]
    fn test_permission_result_allow() {
        let result = PermissionResult::allow();
        let json = serde_json::to_string(&result).unwrap();
        assert!(json.contains("allow"));
    }

    #[test]
    fn test_message_parsing() {
        let json = r#"{"type": "assistant", "content": [{"type": "text", "text": "Hello"}], "model": "claude-3"}"#;
        let msg: Message = serde_json::from_str(json).unwrap();
        assert!(msg.is_assistant());
    }

    #[test]
    fn test_content_block_text() {
        let block = ContentBlock::Text(TextBlock {
            text: "Hello".to_string(),
        });
        assert_eq!(block.as_text(), Some("Hello"));
    }

    #[test]
    fn test_options_builder() {
        let opts = ClaudeAgentOptions::new()
            .with_model("claude-3-sonnet")
            .with_max_turns(5)
            .with_permission_mode(PermissionMode::AcceptEdits);

        assert_eq!(opts.model, Some("claude-3-sonnet".to_string()));
        assert_eq!(opts.max_turns, Some(5));
        assert_eq!(opts.permission_mode, Some(PermissionMode::AcceptEdits));
    }
}