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
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
use crate::ast::*;
use serde_json::Value;
use std::collections::HashMap;
use tracing;
pub type Register = usize;
#[derive(Debug, Clone)]
pub enum OpCode {
LoadEventField {
path: FieldPath,
dest: Register,
default: Option<Value>,
},
LoadConstant {
value: Value,
dest: Register,
},
CopyRegister {
source: Register,
dest: Register,
},
/// Copy from source to dest only if dest is currently null
CopyRegisterIfNull {
source: Register,
dest: Register,
},
GetEventType {
dest: Register,
},
CreateObject {
dest: Register,
},
SetField {
object: Register,
path: String,
value: Register,
},
SetFields {
object: Register,
fields: Vec<(String, Register)>,
},
GetField {
object: Register,
path: String,
dest: Register,
},
ReadOrInitState {
state_id: u32,
key: Register,
default: Value,
dest: Register,
},
UpdateState {
state_id: u32,
key: Register,
value: Register,
},
AppendToArray {
object: Register,
path: String,
value: Register,
},
GetCurrentTimestamp {
dest: Register,
},
CreateEvent {
dest: Register,
event_value: Register,
},
CreateCapture {
dest: Register,
capture_value: Register,
},
Transform {
source: Register,
dest: Register,
transformation: Transformation,
},
EmitMutation {
entity_name: String,
key: Register,
state: Register,
},
SetFieldIfNull {
object: Register,
path: String,
value: Register,
},
SetFieldMax {
object: Register,
path: String,
value: Register,
},
UpdateTemporalIndex {
state_id: u32,
index_name: String,
lookup_value: Register,
primary_key: Register,
timestamp: Register,
},
LookupTemporalIndex {
state_id: u32,
index_name: String,
lookup_value: Register,
timestamp: Register,
dest: Register,
},
UpdateLookupIndex {
state_id: u32,
index_name: String,
lookup_value: Register,
primary_key: Register,
},
LookupIndex {
state_id: u32,
index_name: String,
lookup_value: Register,
dest: Register,
},
/// Sum a numeric value to a field (accumulator)
SetFieldSum {
object: Register,
path: String,
value: Register,
},
/// Increment a counter field by 1
SetFieldIncrement {
object: Register,
path: String,
},
/// Set field to minimum value
SetFieldMin {
object: Register,
path: String,
value: Register,
},
/// Add value to unique set and update count
/// Maintains internal Set, field stores count
AddToUniqueSet {
state_id: u32,
set_name: String,
value: Register,
count_object: Register,
count_path: String,
},
/// Conditionally set a field based on a comparison
ConditionalSetField {
object: Register,
path: String,
value: Register,
condition_field: FieldPath,
condition_op: ComparisonOp,
condition_value: Value,
},
/// Conditionally increment a field based on a comparison
ConditionalIncrement {
object: Register,
path: String,
condition_field: FieldPath,
condition_op: ComparisonOp,
condition_value: Value,
},
/// Evaluate computed fields (calls external hook if provided)
/// computed_paths: List of paths that will be computed (for dirty tracking)
EvaluateComputedFields {
state: Register,
computed_paths: Vec<String>,
},
/// Update PDA reverse lookup table
/// Maps a PDA address to its primary key for reverse lookups
UpdatePdaReverseLookup {
state_id: u32,
lookup_name: String,
pda_address: Register,
primary_key: Register,
},
}
pub struct EntityBytecode {
pub state_id: u32,
pub handlers: HashMap<String, Vec<OpCode>>,
pub entity_name: String,
/// Optional callback for evaluating computed fields
#[allow(clippy::type_complexity)]
pub computed_fields_evaluator: Option<
Box<
dyn Fn(&mut Value) -> std::result::Result<(), Box<dyn std::error::Error>> + Send + Sync,
>,
>,
}
impl std::fmt::Debug for EntityBytecode {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("EntityBytecode")
.field("state_id", &self.state_id)
.field("handlers", &self.handlers)
.field("entity_name", &self.entity_name)
.field(
"computed_fields_evaluator",
&self.computed_fields_evaluator.is_some(),
)
.finish()
}
}
#[derive(Debug)]
pub struct MultiEntityBytecode {
pub entities: HashMap<String, EntityBytecode>,
pub event_routing: HashMap<String, Vec<String>>,
pub proto_router: crate::proto_router::ProtoRouter,
}
impl MultiEntityBytecode {
pub fn from_single<S>(entity_name: String, spec: TypedStreamSpec<S>, state_id: u32) -> Self {
tracing::info!(
"🔨 Compiling entity {} with {} handlers",
entity_name,
spec.handlers.len()
);
let compiler = TypedCompiler::new(spec, entity_name.clone()).with_state_id(state_id);
let entity_bytecode = compiler.compile_entity();
tracing::info!(
"🔨 Compiled {} handlers for {}",
entity_bytecode.handlers.len(),
entity_name
);
let mut entities = HashMap::new();
let mut event_routing = HashMap::new();
for event_type in entity_bytecode.handlers.keys() {
event_routing
.entry(event_type.clone())
.or_insert_with(Vec::new)
.push(entity_name.clone());
}
entities.insert(entity_name, entity_bytecode);
MultiEntityBytecode {
entities,
event_routing,
proto_router: crate::proto_router::ProtoRouter::new(),
}
}
pub fn from_entities(entities_vec: Vec<(String, Box<dyn std::any::Any>, u32)>) -> Self {
let entities = HashMap::new();
let event_routing = HashMap::new();
if let Some((_entity_name, _spec_any, _state_id)) = entities_vec.into_iter().next() {
panic!("from_entities requires type information - use builder pattern instead");
}
MultiEntityBytecode {
entities,
event_routing,
proto_router: crate::proto_router::ProtoRouter::new(),
}
}
#[allow(clippy::new_ret_no_self)]
pub fn new() -> MultiEntityBytecodeBuilder {
MultiEntityBytecodeBuilder {
entities: HashMap::new(),
event_routing: HashMap::new(),
proto_router: crate::proto_router::ProtoRouter::new(),
}
}
}
pub struct MultiEntityBytecodeBuilder {
entities: HashMap<String, EntityBytecode>,
event_routing: HashMap<String, Vec<String>>,
proto_router: crate::proto_router::ProtoRouter,
}
impl MultiEntityBytecodeBuilder {
pub fn add_entity<S>(
self,
entity_name: String,
spec: TypedStreamSpec<S>,
state_id: u32,
) -> Self {
self.add_entity_with_evaluator(
entity_name,
spec,
state_id,
None::<fn(&mut Value) -> std::result::Result<(), Box<dyn std::error::Error>>>,
)
}
pub fn add_entity_with_evaluator<S, F>(
mut self,
entity_name: String,
spec: TypedStreamSpec<S>,
state_id: u32,
evaluator: Option<F>,
) -> Self
where
F: Fn(&mut Value) -> std::result::Result<(), Box<dyn std::error::Error>>
+ Send
+ Sync
+ 'static,
{
let compiler = TypedCompiler::new(spec, entity_name.clone()).with_state_id(state_id);
let mut entity_bytecode = compiler.compile_entity();
// Store the evaluator callback if provided
if let Some(eval) = evaluator {
entity_bytecode.computed_fields_evaluator = Some(Box::new(eval));
}
for event_type in entity_bytecode.handlers.keys() {
self.event_routing
.entry(event_type.clone())
.or_default()
.push(entity_name.clone());
}
self.entities.insert(entity_name, entity_bytecode);
self
}
pub fn build(self) -> MultiEntityBytecode {
MultiEntityBytecode {
entities: self.entities,
event_routing: self.event_routing,
proto_router: self.proto_router,
}
}
}
pub struct TypedCompiler<S> {
pub spec: TypedStreamSpec<S>,
entity_name: String,
state_id: u32,
}
impl<S> TypedCompiler<S> {
pub fn new(spec: TypedStreamSpec<S>, entity_name: String) -> Self {
TypedCompiler {
spec,
entity_name,
state_id: 0,
}
}
pub fn with_state_id(mut self, state_id: u32) -> Self {
self.state_id = state_id;
self
}
pub fn compile(&self) -> MultiEntityBytecode {
let entity_bytecode = self.compile_entity();
let mut entities = HashMap::new();
let mut event_routing = HashMap::new();
for event_type in entity_bytecode.handlers.keys() {
event_routing
.entry(event_type.clone())
.or_insert_with(Vec::new)
.push(self.entity_name.clone());
}
entities.insert(self.entity_name.clone(), entity_bytecode);
MultiEntityBytecode {
entities,
event_routing,
proto_router: crate::proto_router::ProtoRouter::new(),
}
}
fn compile_entity(&self) -> EntityBytecode {
let mut handlers: HashMap<String, Vec<OpCode>> = HashMap::new();
// DEBUG: Collect all handler info before processing
let mut debug_info = Vec::new();
for (index, handler_spec) in self.spec.handlers.iter().enumerate() {
let event_type = self.get_event_type(&handler_spec.source);
let program_id = match &handler_spec.source {
crate::ast::SourceSpec::Source { program_id, .. } => {
program_id.as_ref().map(|s| s.as_str()).unwrap_or("null")
}
};
debug_info.push(format!(
" [{}] EventType={}, Mappings={}, ProgramId={}",
index,
event_type,
handler_spec.mappings.len(),
program_id
));
}
// DEBUG: Log handler information (optional - can be removed later)
// Uncomment to debug handler processing:
// if self.entity_name == "PumpfunToken" {
// eprintln!("🔍 Compiling {} handlers for {}", self.spec.handlers.len(), self.entity_name);
// for info in &debug_info {
// eprintln!("{}", info);
// }
// }
for handler_spec in &self.spec.handlers {
let opcodes = self.compile_handler(handler_spec);
let event_type = self.get_event_type(&handler_spec.source);
if let Some(existing_opcodes) = handlers.get_mut(&event_type) {
// Merge strategy: Take ALL operations from BOTH handlers
// Keep setup from first, combine all mappings, keep one teardown
// Split existing handler into: setup, mappings, teardown
let mut existing_setup = Vec::new();
let mut existing_mappings = Vec::new();
let mut existing_teardown = Vec::new();
let mut section = 0; // 0=setup, 1=mappings, 2=teardown
for opcode in existing_opcodes.iter() {
match opcode {
OpCode::ReadOrInitState { .. } => {
existing_setup.push(opcode.clone());
section = 1; // Next opcodes are mappings
}
OpCode::UpdateState { .. } => {
existing_teardown.push(opcode.clone());
section = 2; // Next opcodes are teardown
}
OpCode::EmitMutation { .. } => {
existing_teardown.push(opcode.clone());
}
_ if section == 0 => existing_setup.push(opcode.clone()),
_ if section == 1 => existing_mappings.push(opcode.clone()),
_ => existing_teardown.push(opcode.clone()),
}
}
// Extract mappings from new handler (skip setup and teardown)
let mut new_mappings = Vec::new();
section = 0;
for opcode in opcodes.iter() {
match opcode {
OpCode::ReadOrInitState { .. } => {
section = 1; // Start capturing mappings
}
OpCode::UpdateState { .. } | OpCode::EmitMutation { .. } => {
section = 2; // Stop capturing
}
_ if section == 1 => {
new_mappings.push(opcode.clone());
}
_ => {} // Skip setup and teardown from new handler
}
}
// Rebuild: setup + existing_mappings + new_mappings + teardown
let mut merged = Vec::new();
merged.extend(existing_setup);
merged.extend(existing_mappings);
merged.extend(new_mappings.clone());
merged.extend(existing_teardown);
*existing_opcodes = merged;
} else {
handlers.insert(event_type, opcodes);
}
}
// Process instruction_hooks to add SetField/IncrementField operations
for hook in &self.spec.instruction_hooks {
let event_type = hook.instruction_type.clone();
// Get or create handler for this instruction type
let handler_opcodes = handlers.entry(event_type.clone()).or_insert_with(|| {
tracing::debug!(
" Creating new handler for {} with key loading from lookup_by",
event_type
);
// Create a handler with proper key loading if none exists
let key_reg = 20;
let state_reg = 2;
let resolved_key_reg = 19;
let temp_reg = 18;
let mut ops = Vec::new();
// First, try to load __resolved_primary_key from resolver
ops.push(OpCode::LoadEventField {
path: FieldPath::new(&["__resolved_primary_key"]),
dest: resolved_key_reg,
default: Some(serde_json::json!(null)),
});
// Copy to key_reg (unconditionally, may be null)
ops.push(OpCode::CopyRegister {
source: resolved_key_reg,
dest: key_reg,
});
// If hook has lookup_by, use it to load primary key from instruction accounts
if let Some(lookup_path) = &hook.lookup_by {
// Load the primary key from the instruction's lookup_by field (e.g., accounts.signer)
ops.push(OpCode::LoadEventField {
path: lookup_path.clone(),
dest: temp_reg,
default: None,
});
// Apply HexEncode transformation (accounts are byte arrays)
ops.push(OpCode::Transform {
source: temp_reg,
dest: temp_reg,
transformation: Transformation::HexEncode,
});
// Use this as fallback if __resolved_primary_key was null
ops.push(OpCode::CopyRegisterIfNull {
source: temp_reg,
dest: key_reg,
});
}
ops.push(OpCode::ReadOrInitState {
state_id: self.state_id,
key: key_reg,
default: serde_json::json!({}),
dest: state_reg,
});
ops.push(OpCode::UpdateState {
state_id: self.state_id,
key: key_reg,
value: state_reg,
});
ops
});
// Generate opcodes for each action in the hook
let hook_opcodes = self.compile_instruction_hook_actions(&hook.actions);
// Insert hook opcodes before EvaluateComputedFields (if present) or UpdateState
// Hook actions (like whale_trade_count increment) must run before computed fields
// are evaluated, since computed fields may depend on the modified state
let insert_pos = handler_opcodes
.iter()
.position(|op| matches!(op, OpCode::EvaluateComputedFields { .. }))
.or_else(|| {
handler_opcodes
.iter()
.position(|op| matches!(op, OpCode::UpdateState { .. }))
});
if let Some(pos) = insert_pos {
// Insert hook opcodes before EvaluateComputedFields or UpdateState
for (i, opcode) in hook_opcodes.into_iter().enumerate() {
handler_opcodes.insert(pos + i, opcode);
}
}
}
EntityBytecode {
state_id: self.state_id,
handlers,
entity_name: self.entity_name.clone(),
computed_fields_evaluator: None,
}
}
fn compile_handler(&self, spec: &TypedHandlerSpec<S>) -> Vec<OpCode> {
let mut ops = Vec::new();
let state_reg = 2;
let key_reg = 20;
ops.extend(self.compile_key_loading(&spec.key_resolution, key_reg, &spec.mappings));
ops.extend(self.compile_temporal_index_update(
&spec.key_resolution,
key_reg,
&spec.mappings,
));
ops.push(OpCode::ReadOrInitState {
state_id: self.state_id,
key: key_reg,
default: serde_json::json!({}),
dest: state_reg,
});
for mapping in &spec.mappings {
ops.extend(self.compile_mapping(mapping, state_reg));
}
// Evaluate computed fields after all mappings but before updating state
ops.push(OpCode::EvaluateComputedFields {
state: state_reg,
computed_paths: self.spec.computed_fields.clone(),
});
ops.push(OpCode::UpdateState {
state_id: self.state_id,
key: key_reg,
value: state_reg,
});
if spec.emit {
ops.push(OpCode::EmitMutation {
entity_name: self.entity_name.clone(),
key: key_reg,
state: state_reg,
});
}
ops
}
fn compile_mapping(&self, mapping: &TypedFieldMapping<S>, state_reg: Register) -> Vec<OpCode> {
let mut ops = Vec::new();
let temp_reg = 10;
ops.extend(self.compile_mapping_source(&mapping.source, temp_reg));
if let Some(transform) = &mapping.transform {
ops.push(OpCode::Transform {
source: temp_reg,
dest: temp_reg,
transformation: transform.clone(),
});
}
match &mapping.population {
PopulationStrategy::Append => {
ops.push(OpCode::AppendToArray {
object: state_reg,
path: mapping.target_path.clone(),
value: temp_reg,
});
}
PopulationStrategy::LastWrite => {
ops.push(OpCode::SetField {
object: state_reg,
path: mapping.target_path.clone(),
value: temp_reg,
});
}
PopulationStrategy::SetOnce => {
ops.push(OpCode::SetFieldIfNull {
object: state_reg,
path: mapping.target_path.clone(),
value: temp_reg,
});
}
PopulationStrategy::Merge => {
ops.push(OpCode::SetField {
object: state_reg,
path: mapping.target_path.clone(),
value: temp_reg,
});
}
PopulationStrategy::Max => {
ops.push(OpCode::SetFieldMax {
object: state_reg,
path: mapping.target_path.clone(),
value: temp_reg,
});
}
PopulationStrategy::Sum => {
ops.push(OpCode::SetFieldSum {
object: state_reg,
path: mapping.target_path.clone(),
value: temp_reg,
});
}
PopulationStrategy::Count => {
// Count doesn't need the value, just increment
ops.push(OpCode::SetFieldIncrement {
object: state_reg,
path: mapping.target_path.clone(),
});
}
PopulationStrategy::Min => {
ops.push(OpCode::SetFieldMin {
object: state_reg,
path: mapping.target_path.clone(),
value: temp_reg,
});
}
PopulationStrategy::UniqueCount => {
// UniqueCount requires maintaining an internal set
// The field stores the count, but we track unique values in a hidden set
let set_name = format!("{}_unique_set", mapping.target_path);
ops.push(OpCode::AddToUniqueSet {
state_id: self.state_id,
set_name,
value: temp_reg,
count_object: state_reg,
count_path: mapping.target_path.clone(),
});
}
}
ops
}
fn compile_mapping_source(&self, source: &MappingSource, dest: Register) -> Vec<OpCode> {
match source {
MappingSource::FromSource {
path,
default,
transform,
} => {
let mut ops = vec![OpCode::LoadEventField {
path: path.clone(),
dest,
default: default.clone(),
}];
// Apply transform if specified in the source
if let Some(transform_type) = transform {
ops.push(OpCode::Transform {
source: dest,
dest,
transformation: transform_type.clone(),
});
}
ops
}
MappingSource::Constant(val) => {
vec![OpCode::LoadConstant {
value: val.clone(),
dest,
}]
}
MappingSource::AsEvent { fields } => {
let mut ops = Vec::new();
if fields.is_empty() {
let event_data_reg = dest + 1;
ops.push(OpCode::LoadEventField {
path: FieldPath::new(&[]),
dest: event_data_reg,
default: Some(serde_json::json!({})),
});
ops.push(OpCode::CreateEvent {
dest,
event_value: event_data_reg,
});
} else {
let data_obj_reg = dest + 1;
ops.push(OpCode::CreateObject { dest: data_obj_reg });
let mut field_registers = Vec::new();
let mut current_reg = dest + 2;
for field_source in fields.iter() {
if let MappingSource::FromSource {
path,
default,
transform,
} = &**field_source
{
ops.push(OpCode::LoadEventField {
path: path.clone(),
dest: current_reg,
default: default.clone(),
});
if let Some(transform_type) = transform {
ops.push(OpCode::Transform {
source: current_reg,
dest: current_reg,
transformation: transform_type.clone(),
});
}
if let Some(field_name) = path.segments.last() {
field_registers.push((field_name.clone(), current_reg));
}
current_reg += 1;
}
}
if !field_registers.is_empty() {
ops.push(OpCode::SetFields {
object: data_obj_reg,
fields: field_registers,
});
}
ops.push(OpCode::CreateEvent {
dest,
event_value: data_obj_reg,
});
}
ops
}
MappingSource::WholeSource => {
vec![OpCode::LoadEventField {
path: FieldPath::new(&[]),
dest,
default: Some(serde_json::json!({})),
}]
}
MappingSource::AsCapture { field_transforms } => {
// AsCapture loads the whole source, applies field-level transforms, and wraps in CaptureWrapper
let capture_data_reg = 22; // Temp register for capture data before wrapping
let mut ops = vec![OpCode::LoadEventField {
path: FieldPath::new(&[]),
dest: capture_data_reg,
default: Some(serde_json::json!({})),
}];
// Apply transforms to specific fields in the loaded object
// IMPORTANT: Use registers that don't conflict with key_reg (20)
// Using 24 and 25 to avoid conflicts with key loading (uses 18, 19, 20, 23)
let field_reg = 24;
let transformed_reg = 25;
for (field_name, transform) in field_transforms {
// Load the field from the capture_data_reg (not from event!)
// Use GetField opcode to read from a register instead of LoadEventField
ops.push(OpCode::GetField {
object: capture_data_reg,
path: field_name.clone(),
dest: field_reg,
});
// Transform it
ops.push(OpCode::Transform {
source: field_reg,
dest: transformed_reg,
transformation: transform.clone(),
});
// Set it back into the capture data object
ops.push(OpCode::SetField {
object: capture_data_reg,
path: field_name.clone(),
value: transformed_reg,
});
}
// Wrap the capture data in CaptureWrapper with metadata
ops.push(OpCode::CreateCapture {
dest,
capture_value: capture_data_reg,
});
ops
}
MappingSource::FromContext { field } => {
// Load from instruction context (timestamp, slot, signature)
vec![OpCode::LoadEventField {
path: FieldPath::new(&["__update_context", field.as_str()]),
dest,
default: Some(serde_json::json!(null)),
}]
}
MappingSource::Computed { .. } => {
vec![]
}
MappingSource::FromState { .. } => {
vec![]
}
}
}
pub fn compile_key_loading(
&self,
resolution: &KeyResolutionStrategy,
key_reg: Register,
mappings: &[TypedFieldMapping<S>],
) -> Vec<OpCode> {
let mut ops = Vec::new();
// First, try to load __resolved_primary_key from resolver
// This allows resolvers to override the key resolution
let resolved_key_reg = 19; // Use a temp register
ops.push(OpCode::LoadEventField {
path: FieldPath::new(&["__resolved_primary_key"]),
dest: resolved_key_reg,
default: Some(serde_json::json!(null)),
});
// Copy to key_reg (unconditionally, may be null)
ops.push(OpCode::CopyRegister {
source: resolved_key_reg,
dest: key_reg,
});
// Now do the normal key resolution as a fallback (only if key_reg is still null)
match resolution {
KeyResolutionStrategy::Embedded { primary_field } => {
// Enhanced key resolution: check for auto-inheritance when primary_field is empty
let effective_primary_field = if primary_field.segments.is_empty() {
// Try to auto-detect primary field from account schema
if let Some(auto_field) = self.auto_detect_primary_field(mappings) {
auto_field
} else {
primary_field.clone()
}
} else {
primary_field.clone()
};
// Skip fallback key loading if effective primary_field is still empty
// This happens for account types that rely solely on __resolved_primary_key
// (e.g., accounts with #[resolve_key_for] resolvers)
if !effective_primary_field.segments.is_empty() {
let temp_reg = 18;
let transform_reg = 23; // Register for transformed key
ops.push(OpCode::LoadEventField {
path: effective_primary_field.clone(),
dest: temp_reg,
default: None,
});
// Check if there's a transformation for the primary key field
// First try the current mappings, then inherited transformations
let primary_key_transform = self
.find_primary_key_transformation(mappings)
.or_else(|| self.find_inherited_primary_key_transformation());
if let Some(transform) = primary_key_transform {
// Apply transformation to the loaded key
ops.push(OpCode::Transform {
source: temp_reg,
dest: transform_reg,
transformation: transform,
});
// Use transformed value as key
ops.push(OpCode::CopyRegisterIfNull {
source: transform_reg,
dest: key_reg,
});
} else {
// No transformation, use raw value
ops.push(OpCode::CopyRegisterIfNull {
source: temp_reg,
dest: key_reg,
});
}
}
// If effective_primary_field is empty, key_reg will only contain __resolved_primary_key
// (loaded earlier at line 513-522), or remain null if resolver didn't set it
}
KeyResolutionStrategy::Lookup { primary_field } => {
let lookup_reg = 15;
let result_reg = 17;
tracing::debug!(
"Compiling Lookup key_resolution: primary_field={:?}",
primary_field.segments
);
ops.push(OpCode::LoadEventField {
path: primary_field.clone(),
dest: lookup_reg,
default: None,
});
// For Lookup resolution, check if there's a mapping from primary_field to a lookup index field
let index_name = self.find_lookup_index_for_lookup_field(primary_field, mappings);
tracing::debug!(" Lookup index search result: {:?}", index_name);
// Use configured index name or fall back to "default_pda_lookup" for PDA reverse lookups
// The VM's LookupIndex opcode will check both regular indexes and PDA reverse lookup table
let effective_index_name = index_name.unwrap_or_else(|| {
tracing::debug!(
"No lookup index configured for primary_field={:?}, using default_pda_lookup",
primary_field.segments
);
"default_pda_lookup".to_string()
});
ops.push(OpCode::LookupIndex {
state_id: self.state_id,
index_name: effective_index_name,
lookup_value: lookup_reg,
dest: result_reg,
});
// NOTE: We intentionally do NOT fall back to lookup_reg when LookupIndex returns null.
// If the lookup fails (because the RoundState account hasn't been processed yet),
// the result_reg will remain null, and the mutation will be skipped.
// Previously we had: CopyRegisterIfNull { source: lookup_reg, dest: result_reg }
// which caused the PDA address to be used as the key instead of the round_id.
// This resulted in mutations with key = PDA address instead of key = primary_key.
// Only use lookup result if key_reg is still null
ops.push(OpCode::CopyRegisterIfNull {
source: result_reg,
dest: key_reg,
});
}
KeyResolutionStrategy::Computed {
primary_field,
compute_partition: _,
} => {
let temp_reg = 18;
ops.push(OpCode::LoadEventField {
path: primary_field.clone(),
dest: temp_reg,
default: None,
});
ops.push(OpCode::CopyRegisterIfNull {
source: temp_reg,
dest: key_reg,
});
}
KeyResolutionStrategy::TemporalLookup {
lookup_field,
timestamp_field,
index_name,
} => {
let lookup_reg = 15;
let timestamp_reg = 16;
let result_reg = 17;
ops.push(OpCode::LoadEventField {
path: lookup_field.clone(),
dest: lookup_reg,
default: None,
});
ops.push(OpCode::LoadEventField {
path: timestamp_field.clone(),
dest: timestamp_reg,
default: None,
});
ops.push(OpCode::LookupTemporalIndex {
state_id: self.state_id,
index_name: index_name.clone(),
lookup_value: lookup_reg,
timestamp: timestamp_reg,
dest: result_reg,
});
ops.push(OpCode::CopyRegisterIfNull {
source: result_reg,
dest: key_reg,
});
}
}
ops
}
fn find_primary_key_transformation(
&self,
mappings: &[TypedFieldMapping<S>],
) -> Option<Transformation> {
// Find the first primary key in the identity spec
let primary_key = self.spec.identity.primary_keys.first()?;
let primary_field_name = self.extract_primary_field_name(primary_key)?;
// Look for a mapping that targets this primary key
for mapping in mappings {
// Check if this mapping targets the primary key field
if mapping.target_path == *primary_key
|| mapping.target_path.ends_with(&format!(".{}", primary_key))
{
// Check mapping-level transform first
if let Some(transform) = &mapping.transform {
return Some(transform.clone());
}
// Then check source-level transform
if let MappingSource::FromSource {
transform: Some(transform),
..
} = &mapping.source
{
return Some(transform.clone());
}
}
}
// If no explicit primary key mapping found, check AsCapture field transforms
for mapping in mappings {
if let MappingSource::AsCapture { field_transforms } = &mapping.source {
if let Some(transform) = field_transforms.get(&primary_field_name) {
return Some(transform.clone());
}
}
}
None
}
/// Look for primary key mappings in other handlers of the same entity
/// This enables cross-handler inheritance of key transformations
pub fn find_inherited_primary_key_transformation(&self) -> Option<Transformation> {
let primary_key = self.spec.identity.primary_keys.first()?;
// Extract the field name from the primary key path (e.g., "id.authority" -> "authority")
let primary_field_name = self.extract_primary_field_name(primary_key)?;
// Search through all handlers in the spec for primary key mappings
for handler in &self.spec.handlers {
for mapping in &handler.mappings {
// Look for mappings targeting the primary key
if mapping.target_path == *primary_key
|| mapping.target_path.ends_with(&format!(".{}", primary_key))
{
// Check if this mapping comes from a field matching the primary key name
if let MappingSource::FromSource {
path, transform, ..
} = &mapping.source
{
if path.segments.last() == Some(&primary_field_name) {
// Return mapping-level transform first, then source-level transform
return mapping.transform.clone().or_else(|| transform.clone());
}
}
}
// Also check AsCapture field transforms for the primary field
if let MappingSource::AsCapture { field_transforms } = &mapping.source {
if let Some(transform) = field_transforms.get(&primary_field_name) {
return Some(transform.clone());
}
}
}
}
None
}
/// Extract the field name from a primary key path (e.g., "id.authority" -> "authority")
fn extract_primary_field_name(&self, primary_key: &str) -> Option<String> {
// Split by '.' and take the last segment
primary_key.split('.').next_back().map(|s| s.to_string())
}
/// Auto-detect primary field from account schema when no explicit mapping exists
/// This looks for account types that have an 'authority' field and tries to use it
pub fn auto_detect_primary_field(
&self,
current_mappings: &[TypedFieldMapping<S>],
) -> Option<FieldPath> {
let primary_key = self.spec.identity.primary_keys.first()?;
// Extract the field name from the primary key (e.g., "id.authority" -> "authority")
let primary_field_name = self.extract_primary_field_name(primary_key)?;
// Check if current handler can access the primary field
if self.current_account_has_primary_field(&primary_field_name, current_mappings) {
return Some(FieldPath::new(&[&primary_field_name]));
}
None
}
/// Check if the current account type has the primary field
/// This is determined by looking at the mappings to see what fields are available
fn current_account_has_primary_field(
&self,
field_name: &str,
mappings: &[TypedFieldMapping<S>],
) -> bool {
// Look through the mappings to see if any reference the primary field
for mapping in mappings {
if let MappingSource::FromSource { path, .. } = &mapping.source {
// Check if this mapping sources from the primary field
if path.segments.last() == Some(&field_name.to_string()) {
return true;
}
}
}
false
}
/// Check if handler has access to a specific field in its source account
#[allow(dead_code)]
fn handler_has_field(&self, field_name: &str, mappings: &[TypedFieldMapping<S>]) -> bool {
for mapping in mappings {
if let MappingSource::FromSource { path, .. } = &mapping.source {
if path.segments.last() == Some(&field_name.to_string()) {
return true;
}
}
}
false
}
/// Check if field exists by looking at mappings (IDL-agnostic approach)
/// This avoids hardcoding account schemas and uses actual mapping evidence
#[allow(dead_code)]
fn field_exists_in_mappings(
&self,
field_name: &str,
mappings: &[TypedFieldMapping<S>],
) -> bool {
// Look through current mappings to see if the field is referenced
for mapping in mappings {
if let MappingSource::FromSource { path, .. } = &mapping.source {
if path.segments.last() == Some(&field_name.to_string()) {
return true;
}
}
// Also check AsCapture field transforms
if let MappingSource::AsCapture { field_transforms } = &mapping.source {
if field_transforms.contains_key(field_name) {
return true;
}
}
}
false
}
fn find_lookup_index_for_field(&self, field_path: &FieldPath) -> Option<String> {
if field_path.segments.is_empty() {
return None;
}
let lookup_field_name = field_path.segments.last().unwrap();
for lookup_index in &self.spec.identity.lookup_indexes {
let index_field_name = lookup_index
.field_name
.split('.')
.next_back()
.unwrap_or(&lookup_index.field_name);
if index_field_name == lookup_field_name {
return Some(format!("{}_lookup_index", index_field_name));
}
}
None
}
/// Find lookup index for a Lookup key resolution by checking if there's a mapping
/// from the primary_field to a lookup index field.
fn find_lookup_index_for_lookup_field(
&self,
primary_field: &FieldPath,
mappings: &[TypedFieldMapping<S>],
) -> Option<String> {
// Build the primary field path string
let primary_path = primary_field.segments.join(".");
// Check if there's a mapping from this primary field to a lookup index field
for mapping in mappings {
// Check if the mapping source path matches the primary field
if let MappingSource::FromSource { path, .. } = &mapping.source {
let source_path = path.segments.join(".");
if source_path == primary_path {
// Check if the target is a lookup index field
for lookup_index in &self.spec.identity.lookup_indexes {
if mapping.target_path == lookup_index.field_name {
let index_field_name = lookup_index
.field_name
.split('.')
.next_back()
.unwrap_or(&lookup_index.field_name);
return Some(format!("{}_lookup_index", index_field_name));
}
}
}
}
}
// Fall back to direct field name matching
self.find_lookup_index_for_field(primary_field)
}
/// Find the source path for a lookup index field by looking at mappings.
/// For example, if target_path is "id.round_address" and the mapping is
/// `id.round_address <- __account_address`, this returns ["__account_address"].
fn find_source_path_for_lookup_index(
&self,
mappings: &[TypedFieldMapping<S>],
lookup_field_name: &str,
) -> Option<Vec<String>> {
for mapping in mappings {
if mapping.target_path == lookup_field_name {
if let MappingSource::FromSource { path, .. } = &mapping.source {
return Some(path.segments.clone());
}
}
}
None
}
fn compile_temporal_index_update(
&self,
resolution: &KeyResolutionStrategy,
key_reg: Register,
mappings: &[TypedFieldMapping<S>],
) -> Vec<OpCode> {
let mut ops = Vec::new();
for lookup_index in &self.spec.identity.lookup_indexes {
let lookup_reg = 17;
let source_field = lookup_index
.field_name
.split('.')
.next_back()
.unwrap_or(&lookup_index.field_name);
match resolution {
KeyResolutionStrategy::Embedded { primary_field: _ } => {
// For Embedded handlers, find the mapping that targets this lookup index field
// and use its source path to load the lookup value
let source_path_opt =
self.find_source_path_for_lookup_index(mappings, &lookup_index.field_name);
let load_path = if let Some(ref path) = source_path_opt {
FieldPath::new(&path.iter().map(|s| s.as_str()).collect::<Vec<_>>())
} else {
// Fallback to source_field if no mapping found
FieldPath::new(&[source_field])
};
ops.push(OpCode::LoadEventField {
path: load_path,
dest: lookup_reg,
default: None,
});
if let Some(temporal_field_name) = &lookup_index.temporal_field {
let timestamp_reg = 18;
ops.push(OpCode::LoadEventField {
path: FieldPath::new(&[temporal_field_name]),
dest: timestamp_reg,
default: None,
});
let index_name = format!("{}_temporal_index", source_field);
ops.push(OpCode::UpdateTemporalIndex {
state_id: self.state_id,
index_name,
lookup_value: lookup_reg,
primary_key: key_reg,
timestamp: timestamp_reg,
});
let simple_index_name = format!("{}_lookup_index", source_field);
ops.push(OpCode::UpdateLookupIndex {
state_id: self.state_id,
index_name: simple_index_name,
lookup_value: lookup_reg,
primary_key: key_reg,
});
} else {
let index_name = format!("{}_lookup_index", source_field);
ops.push(OpCode::UpdateLookupIndex {
state_id: self.state_id,
index_name,
lookup_value: lookup_reg,
primary_key: key_reg,
});
}
// Also update PDA reverse lookup table if there's a resolver configured for this entity
// This allows instruction handlers to look up the primary key from PDA addresses
// Only do this when the source path is different (e.g., __account_address -> id.round_address)
if source_path_opt.is_some() {
ops.push(OpCode::UpdatePdaReverseLookup {
state_id: self.state_id,
lookup_name: "default_pda_lookup".to_string(),
pda_address: lookup_reg,
primary_key: key_reg,
});
}
}
KeyResolutionStrategy::Lookup { primary_field } => {
// For Lookup handlers, check if there's a mapping that targets this lookup index field
// If so, the lookup value is the same as the primary_field used for key resolution
let has_mapping_to_lookup_field = mappings
.iter()
.any(|m| m.target_path == lookup_index.field_name);
if has_mapping_to_lookup_field {
// Load the lookup value from the event using the primary_field path
// (this is the same value used for key resolution)
let path_segments: Vec<&str> =
primary_field.segments.iter().map(|s| s.as_str()).collect();
ops.push(OpCode::LoadEventField {
path: FieldPath::new(&path_segments),
dest: lookup_reg,
default: None,
});
let index_name = format!("{}_lookup_index", source_field);
ops.push(OpCode::UpdateLookupIndex {
state_id: self.state_id,
index_name,
lookup_value: lookup_reg,
primary_key: key_reg,
});
}
}
KeyResolutionStrategy::Computed { .. }
| KeyResolutionStrategy::TemporalLookup { .. } => {
// Computed and TemporalLookup handlers don't populate lookup indexes
}
}
}
ops
}
fn get_event_type(&self, source: &SourceSpec) -> String {
match source {
SourceSpec::Source { type_name, .. } => type_name.clone(),
}
}
fn compile_instruction_hook_actions(&self, actions: &[HookAction]) -> Vec<OpCode> {
let mut ops = Vec::new();
let state_reg = 2;
for action in actions {
match action {
HookAction::SetField {
target_field,
source,
condition,
} => {
// Check if there's a condition - evaluation handled in VM
let _ = condition;
let temp_reg = 11; // Use register 11 for hook values
// Load the source value
let load_ops = self.compile_mapping_source(source, temp_reg);
ops.extend(load_ops);
// Apply transformation if specified in source
if let MappingSource::FromSource {
transform: Some(transform_type),
..
} = source
{
ops.push(OpCode::Transform {
source: temp_reg,
dest: temp_reg,
transformation: transform_type.clone(),
});
}
// Conditionally set the field based on parsed condition
if let Some(cond_expr) = condition {
if let Some(parsed) = &cond_expr.parsed {
// Generate condition check opcodes
let cond_check_ops = self.compile_condition_check(
parsed,
temp_reg,
state_reg,
target_field,
);
ops.extend(cond_check_ops);
} else {
// No parsed condition, set unconditionally
ops.push(OpCode::SetField {
object: state_reg,
path: target_field.clone(),
value: temp_reg,
});
}
} else {
// No condition, set unconditionally
ops.push(OpCode::SetField {
object: state_reg,
path: target_field.clone(),
value: temp_reg,
});
}
}
HookAction::IncrementField {
target_field,
increment_by,
condition,
} => {
if let Some(cond_expr) = condition {
if let Some(parsed) = &cond_expr.parsed {
// For increment with condition, we need to:
// 1. Load the condition field
// 2. Check the condition
// 3. Conditionally increment
let cond_check_ops = self.compile_conditional_increment(
parsed,
state_reg,
target_field,
*increment_by,
);
ops.extend(cond_check_ops);
} else {
// No parsed condition, increment unconditionally
ops.push(OpCode::SetFieldIncrement {
object: state_reg,
path: target_field.clone(),
});
}
} else {
// No condition, increment unconditionally
ops.push(OpCode::SetFieldIncrement {
object: state_reg,
path: target_field.clone(),
});
}
}
HookAction::RegisterPdaMapping { .. } => {
// PDA registration is handled elsewhere (in resolvers)
// Skip for now
}
}
}
ops
}
fn compile_condition_check(
&self,
condition: &ParsedCondition,
value_reg: Register,
state_reg: Register,
target_field: &str,
) -> Vec<OpCode> {
match condition {
ParsedCondition::Comparison {
field,
op,
value: cond_value,
} => {
// Generate ConditionalSetField opcode
vec![OpCode::ConditionalSetField {
object: state_reg,
path: target_field.to_string(),
value: value_reg,
condition_field: field.clone(),
condition_op: op.clone(),
condition_value: cond_value.clone(),
}]
}
ParsedCondition::Logical { .. } => {
// Logical conditions not yet supported, fall back to unconditional
tracing::warn!("Logical conditions not yet supported in instruction hooks");
vec![OpCode::SetField {
object: state_reg,
path: target_field.to_string(),
value: value_reg,
}]
}
}
}
fn compile_conditional_increment(
&self,
condition: &ParsedCondition,
state_reg: Register,
target_field: &str,
_increment_by: i64,
) -> Vec<OpCode> {
match condition {
ParsedCondition::Comparison {
field,
op,
value: cond_value,
} => {
vec![OpCode::ConditionalIncrement {
object: state_reg,
path: target_field.to_string(),
condition_field: field.clone(),
condition_op: op.clone(),
condition_value: cond_value.clone(),
}]
}
ParsedCondition::Logical { .. } => {
tracing::warn!("Logical conditions not yet supported in instruction hooks");
vec![OpCode::SetFieldIncrement {
object: state_reg,
path: target_field.to_string(),
}]
}
}
}
}