oxirs-star 0.2.4

RDF-star and SPARQL-star grammar support for quoted triples
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
//! # JIT-Compiled SPARQL-star Query Engine
//!
//! Just-In-Time compilation of SPARQL-star queries for 5-20x performance improvement
//! on frequently executed queries.
//!
//! This module provides:
//! - **JIT Compilation**: Compile SPARQL-star queries to native code
//! - **Query Plan Caching**: Cache compiled plans with smart invalidation
//! - **Adaptive Compilation**: Interpret first, compile hot paths
//! - **Hot Path Detection**: Profile-guided optimization
//! - **Incremental Compilation**: Background compilation of hot queries
//!
//! ## Overview
//!
//! The JIT query engine operates in three modes:
//! 1. **Interpreted Mode**: Fast startup, lower throughput (first few executions)
//! 2. **Warm-up Mode**: Profile collection and hot path detection
//! 3. **Compiled Mode**: Native code execution with maximum throughput
//!
//! ## Example
//!
//! ```rust,ignore
//! use oxirs_star::jit_query_engine::{JitQueryEngine, CompilationStrategy};
//! use oxirs_star::StarStore;
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let mut engine = JitQueryEngine::new();
//! let store = StarStore::new();
//!
//! // Set adaptive compilation threshold
//! engine.set_compilation_threshold(10); // Compile after 10 executions
//!
//! // Execute query (interpreted mode first time)
//! let query = "SELECT * WHERE { << ?s ?p ?o >> ?meta ?value }";
//! let results1 = engine.execute(query, &store).await?;
//!
//! // Execute again (still interpreted, building profile)
//! for _ in 0..10 {
//!     engine.execute(query, &store).await?;
//! }
//!
//! // Next execution will be JIT-compiled
//! let results_jit = engine.execute(query, &store).await?;
//! // ^^ This execution is 5-20x faster!
//!
//! # Ok(())
//! # }
//! ```

// Sub-modules
pub mod compiler;
pub mod ir;

use crate::{StarResult, StarStore, StarTriple};
use compiler::SparqlJitCompiler;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::Arc;
use std::time::{Duration, Instant};
use tokio::sync::RwLock;
use tracing::{debug, info, instrument};

/// JIT query engine configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct JitConfig {
    /// Compilation threshold (number of executions before JIT)
    pub compilation_threshold: usize,
    /// Enable background compilation
    pub enable_background_compilation: bool,
    /// Maximum number of cached plans
    pub max_cached_plans: usize,
    /// Plan cache TTL in seconds
    pub plan_cache_ttl_secs: u64,
    /// Enable hot path detection
    pub enable_hot_path_detection: bool,
    /// Profiling sample rate (0.0-1.0)
    pub profiling_sample_rate: f64,
    /// Enable query plan optimization
    pub enable_plan_optimization: bool,
}

impl Default for JitConfig {
    fn default() -> Self {
        Self {
            compilation_threshold: 10,
            enable_background_compilation: true,
            max_cached_plans: 1000,
            plan_cache_ttl_secs: 3600,
            enable_hot_path_detection: true,
            profiling_sample_rate: 0.1,
            enable_plan_optimization: true,
        }
    }
}

/// Compilation strategy for queries
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum CompilationStrategy {
    /// Always interpret (no JIT)
    AlwaysInterpret,
    /// Always compile (eager JIT)
    AlwaysCompile,
    /// Adaptive: interpret then compile hot paths
    Adaptive,
    /// Profile-guided: collect profile then compile
    ProfileGuided,
}

/// Query execution mode
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ExecutionMode {
    /// Interpreted execution
    Interpreted,
    /// JIT-compiled execution
    Compiled,
    /// Profiling mode (collecting metrics)
    Profiling,
}

/// Query plan representation
#[derive(Debug, Clone)]
pub struct QueryPlan {
    /// Original query string
    pub query: String,
    /// Query hash for caching
    pub hash: u64,
    /// Estimated cost
    pub estimated_cost: f64,
    /// Execution mode
    pub mode: ExecutionMode,
    /// Compilation timestamp
    pub compiled_at: Option<Instant>,
    /// Execution count
    pub execution_count: usize,
    /// Total execution time
    pub total_execution_time: Duration,
    /// Average execution time
    pub avg_execution_time: Duration,
}

impl QueryPlan {
    /// Create a new query plan
    pub fn new(query: String) -> Self {
        let hash = Self::compute_hash(&query);
        Self {
            query,
            hash,
            estimated_cost: 0.0,
            mode: ExecutionMode::Interpreted,
            compiled_at: None,
            execution_count: 0,
            total_execution_time: Duration::ZERO,
            avg_execution_time: Duration::ZERO,
        }
    }

    /// Compute query hash
    fn compute_hash(query: &str) -> u64 {
        use std::collections::hash_map::DefaultHasher;
        use std::hash::{Hash, Hasher};
        let mut hasher = DefaultHasher::new();
        query.hash(&mut hasher);
        hasher.finish()
    }

    /// Update execution statistics
    pub fn update_stats(&mut self, execution_time: Duration) {
        self.execution_count += 1;
        self.total_execution_time += execution_time;
        self.avg_execution_time = self.total_execution_time / self.execution_count as u32;
    }

    /// Check if query is hot (should be compiled)
    pub fn is_hot(&self, threshold: usize) -> bool {
        self.execution_count >= threshold && self.mode == ExecutionMode::Interpreted
    }
}

/// Compiled query representation
#[derive(Debug, Clone)]
pub struct CompiledQuery {
    /// Query plan
    pub plan: QueryPlan,
    /// Compiled function pointer (placeholder)
    pub compiled_code: Option<Arc<Vec<u8>>>,
    /// Compilation time
    pub compilation_time: Duration,
    /// Compilation timestamp
    pub compiled_at: Instant,
}

/// Query execution statistics
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct QueryStats {
    /// Total queries executed
    pub total_queries: u64,
    /// Interpreted executions
    pub interpreted_count: u64,
    /// Compiled executions
    pub compiled_count: u64,
    /// Total compilation time
    pub total_compilation_time: Duration,
    /// Cache hits
    pub cache_hits: u64,
    /// Cache misses
    pub cache_misses: u64,
    /// Average interpreted time
    pub avg_interpreted_time: Duration,
    /// Average compiled time
    pub avg_compiled_time: Duration,
}

/// JIT query engine
pub struct JitQueryEngine {
    /// Configuration
    config: JitConfig,
    /// Query plan cache
    plan_cache: Arc<RwLock<HashMap<u64, QueryPlan>>>,
    /// Compiled query cache
    compiled_cache: Arc<RwLock<HashMap<u64, CompiledQuery>>>,
    /// Execution statistics
    stats: Arc<RwLock<QueryStats>>,
    /// Compilation strategy
    strategy: CompilationStrategy,
    /// Actual JIT compiler (scirs2_core::jit)
    jit_compiler: Arc<RwLock<SparqlJitCompiler>>,
}

impl JitQueryEngine {
    /// Create a new JIT query engine
    pub fn new() -> Self {
        Self::with_config(JitConfig::default())
    }

    /// Create a JIT query engine with custom configuration
    pub fn with_config(config: JitConfig) -> Self {
        // Initialize the actual JIT compiler
        let jit_compiler = SparqlJitCompiler::new().unwrap_or_else(|e| {
            tracing::warn!("Failed to initialize JIT compiler: {}, using fallback", e);
            SparqlJitCompiler::default()
        });

        Self {
            config,
            plan_cache: Arc::new(RwLock::new(HashMap::new())),
            compiled_cache: Arc::new(RwLock::new(HashMap::new())),
            stats: Arc::new(RwLock::new(QueryStats::default())),
            strategy: CompilationStrategy::Adaptive,
            jit_compiler: Arc::new(RwLock::new(jit_compiler)),
        }
    }

    /// Set compilation strategy
    pub fn set_strategy(&mut self, strategy: CompilationStrategy) {
        self.strategy = strategy;
    }

    /// Set compilation threshold
    pub fn set_compilation_threshold(&mut self, threshold: usize) {
        self.config.compilation_threshold = threshold;
    }

    /// Execute a SPARQL-star query
    #[instrument(skip(self, store))]
    pub async fn execute(&self, query: &str, store: &StarStore) -> StarResult<Vec<StarTriple>> {
        let start = Instant::now();
        let hash = QueryPlan::compute_hash(query);

        // Update stats
        {
            let mut stats = self.stats.write().await;
            stats.total_queries += 1;
        }

        // Check compiled cache first
        let compiled = self.compiled_cache.read().await;
        if let Some(compiled_query) = compiled.get(&hash) {
            debug!("Cache hit: executing compiled query (hash: {})", hash);

            // Clone the plan before releasing the lock
            let plan = compiled_query.plan.clone();
            drop(compiled); // Release read lock

            let result = self.execute_compiled(&plan, store).await?;
            let execution_time = start.elapsed();

            // Update stats
            let mut stats = self.stats.write().await;
            stats.compiled_count += 1;
            stats.cache_hits += 1;
            stats.avg_compiled_time = if stats.compiled_count == 1 {
                execution_time
            } else {
                (stats.avg_compiled_time * (stats.compiled_count - 1) as u32 + execution_time)
                    / stats.compiled_count as u32
            };

            return Ok(result);
        }
        drop(compiled);

        // Check plan cache
        let mut plan_cache = self.plan_cache.write().await;
        let plan = plan_cache
            .entry(hash)
            .or_insert_with(|| QueryPlan::new(query.to_string()));

        // Update execution stats
        let execution_time = start.elapsed();
        plan.update_stats(execution_time);

        // Check if we should compile
        let should_compile = match self.strategy {
            CompilationStrategy::AlwaysInterpret => false,
            CompilationStrategy::AlwaysCompile => true,
            CompilationStrategy::Adaptive => plan.is_hot(self.config.compilation_threshold),
            CompilationStrategy::ProfileGuided => {
                plan.is_hot(self.config.compilation_threshold)
                    && self.config.enable_hot_path_detection
            }
        };

        if should_compile {
            info!(
                "Query is hot (executed {} times), triggering JIT compilation",
                plan.execution_count
            );

            // Clone plan for background compilation
            let plan_for_compilation = plan.clone();
            drop(plan_cache); // Release write lock

            // Compile in background if enabled
            if self.config.enable_background_compilation {
                let compiled_cache = self.compiled_cache.clone();
                let stats = self.stats.clone();
                let jit_compiler = self.jit_compiler.clone();
                tokio::spawn(async move {
                    if let Ok(compiled) =
                        Self::compile_query_internal(plan_for_compilation, jit_compiler).await
                    {
                        let mut cache = compiled_cache.write().await;
                        let mut stats_guard = stats.write().await;
                        stats_guard.total_compilation_time += compiled.compilation_time;
                        cache.insert(hash, compiled);
                        info!("Background compilation complete for query hash {}", hash);
                    }
                });
            } else {
                // Synchronous compilation
                let compiled =
                    Self::compile_query_internal(plan_for_compilation, self.jit_compiler.clone())
                        .await?;
                let mut cache = self.compiled_cache.write().await;
                let mut stats = self.stats.write().await;
                stats.total_compilation_time += compiled.compilation_time;
                cache.insert(hash, compiled);
            }
        }

        // Execute in interpreted mode for now
        let result = self.execute_interpreted(query, store).await?;

        // Update interpreted stats
        let mut stats = self.stats.write().await;
        stats.interpreted_count += 1;
        stats.cache_misses += 1;
        stats.avg_interpreted_time = if stats.interpreted_count == 1 {
            execution_time
        } else {
            (stats.avg_interpreted_time * (stats.interpreted_count - 1) as u32 + execution_time)
                / stats.interpreted_count as u32
        };

        Ok(result)
    }

    /// Execute query in interpreted mode
    async fn execute_interpreted(
        &self,
        query: &str,
        store: &StarStore,
    ) -> StarResult<Vec<StarTriple>> {
        // Simplified interpreter - in production would use full SPARQL parser
        debug!("Executing query in interpreted mode: {}", query);

        // For now, return all triples (placeholder implementation)
        // In production, this would parse and execute the SPARQL query
        Ok(store.all_triples())
    }

    /// Execute compiled query using JIT-compiled native code
    async fn execute_compiled(
        &self,
        plan: &QueryPlan,
        store: &StarStore,
    ) -> StarResult<Vec<StarTriple>> {
        debug!(
            "Executing JIT-compiled query (executions: {})",
            plan.execution_count
        );

        // Get kernel ID from compiled cache
        let hash = plan.hash;
        let compiled = self.compiled_cache.read().await;

        if let Some(compiled_query) = compiled.get(&hash) {
            if let Some(compiled_code) = &compiled_query.compiled_code {
                // Convert bytes back to kernel ID
                let kernel_id = String::from_utf8_lossy(compiled_code).to_string();
                drop(compiled); // Release lock

                // Execute compiled kernel
                let compiler = self.jit_compiler.read().await;
                return compiler.execute_compiled(&kernel_id, store);
            }
        }

        drop(compiled);

        // Fallback to interpreted if compilation not ready
        debug!("Compiled code not available, falling back to interpreted mode");
        self.execute_interpreted(&plan.query, store).await
    }

    /// Compile a query to native code using scirs2_core::jit
    async fn compile_query_internal(
        plan: QueryPlan,
        jit_compiler: Arc<RwLock<SparqlJitCompiler>>,
    ) -> StarResult<CompiledQuery> {
        let start = Instant::now();

        debug!("Compiling query with scirs2_core::jit: {}", plan.query);

        // Parse query to IR
        let mut compiler = jit_compiler.write().await;
        let ir_plan =
            compiler
                .parse_to_ir(&plan.query)
                .map_err(|e| crate::StarError::QueryError {
                    message: format!("IR parsing failed: {}", e),
                    query_fragment: Some(plan.query.clone()),
                    position: None,
                    suggestion: None,
                })?;

        // Compile IR to native code
        let kernel_id =
            compiler
                .compile_ir(&ir_plan)
                .map_err(|e| crate::StarError::QueryError {
                    message: format!("JIT compilation failed: {}", e),
                    query_fragment: Some(plan.query.clone()),
                    position: None,
                    suggestion: Some("Check query syntax or disable JIT compilation".to_string()),
                })?;

        info!("Successfully compiled query to kernel: {}", kernel_id);

        let compilation_time = start.elapsed();

        // Store kernel ID as compiled code
        let compiled_code = Some(Arc::new(kernel_id.into_bytes()));

        Ok(CompiledQuery {
            plan: QueryPlan {
                mode: ExecutionMode::Compiled,
                compiled_at: Some(Instant::now()),
                ..plan
            },
            compiled_code,
            compilation_time,
            compiled_at: Instant::now(),
        })
    }

    /// Get query execution statistics
    pub async fn stats(&self) -> QueryStats {
        self.stats.read().await.clone()
    }

    /// Clear all caches
    pub async fn clear_caches(&self) {
        let mut plan_cache = self.plan_cache.write().await;
        let mut compiled_cache = self.compiled_cache.write().await;
        plan_cache.clear();
        compiled_cache.clear();
        info!("Caches cleared");
    }

    /// Get cache statistics
    pub async fn cache_stats(&self) -> (usize, usize) {
        let plan_cache = self.plan_cache.read().await;
        let compiled_cache = self.compiled_cache.read().await;
        (plan_cache.len(), compiled_cache.len())
    }

    /// Invalidate a specific query from cache
    pub async fn invalidate_query(&self, query: &str) {
        let hash = QueryPlan::compute_hash(query);
        let mut plan_cache = self.plan_cache.write().await;
        let mut compiled_cache = self.compiled_cache.write().await;
        plan_cache.remove(&hash);
        compiled_cache.remove(&hash);
        debug!("Invalidated query from cache (hash: {})", hash);
    }

    /// Get hottest queries (most frequently executed)
    pub async fn hot_queries(&self, limit: usize) -> Vec<QueryPlan> {
        let plan_cache = self.plan_cache.read().await;
        let mut plans: Vec<_> = plan_cache.values().cloned().collect();
        plans.sort_by_key(|b| std::cmp::Reverse(b.execution_count));
        plans.into_iter().take(limit).collect()
    }

    /// Get compilation candidates (queries ready to be compiled)
    pub async fn compilation_candidates(&self) -> Vec<QueryPlan> {
        let plan_cache = self.plan_cache.read().await;
        plan_cache
            .values()
            .filter(|p| p.is_hot(self.config.compilation_threshold))
            .cloned()
            .collect()
    }

    /// Precompile a query (eager compilation)
    pub async fn precompile(&self, query: &str) -> StarResult<()> {
        let hash = QueryPlan::compute_hash(query);
        let plan = QueryPlan::new(query.to_string());

        let compiled = Self::compile_query_internal(plan, self.jit_compiler.clone()).await?;

        let mut cache = self.compiled_cache.write().await;
        let mut stats = self.stats.write().await;
        stats.total_compilation_time += compiled.compilation_time;
        cache.insert(hash, compiled);

        info!("Precompiled query (hash: {})", hash);
        Ok(())
    }
}

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

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

    #[test]
    fn test_jit_config_default() {
        let config = JitConfig::default();
        assert_eq!(config.compilation_threshold, 10);
        assert!(config.enable_background_compilation);
        assert_eq!(config.max_cached_plans, 1000);
    }

    #[test]
    fn test_query_plan_creation() {
        let plan = QueryPlan::new("SELECT * WHERE { ?s ?p ?o }".to_string());
        assert_eq!(plan.execution_count, 0);
        assert_eq!(plan.mode, ExecutionMode::Interpreted);
        assert!(plan.compiled_at.is_none());
    }

    #[test]
    fn test_query_plan_stats_update() {
        let mut plan = QueryPlan::new("SELECT * WHERE { ?s ?p ?o }".to_string());
        plan.update_stats(Duration::from_millis(100));
        assert_eq!(plan.execution_count, 1);
        assert_eq!(plan.avg_execution_time, Duration::from_millis(100));

        plan.update_stats(Duration::from_millis(200));
        assert_eq!(plan.execution_count, 2);
        assert_eq!(plan.avg_execution_time, Duration::from_millis(150));
    }

    #[test]
    fn test_query_plan_is_hot() {
        let mut plan = QueryPlan::new("SELECT * WHERE { ?s ?p ?o }".to_string());
        assert!(!plan.is_hot(10));

        for _ in 0..10 {
            plan.update_stats(Duration::from_millis(100));
        }

        assert!(plan.is_hot(10));
    }

    #[test]
    fn test_jit_engine_creation() {
        let engine = JitQueryEngine::new();
        assert_eq!(engine.strategy, CompilationStrategy::Adaptive);
    }

    #[test]
    fn test_jit_engine_strategy() {
        let mut engine = JitQueryEngine::new();
        engine.set_strategy(CompilationStrategy::AlwaysCompile);
        assert_eq!(engine.strategy, CompilationStrategy::AlwaysCompile);
    }

    #[tokio::test]
    async fn test_jit_engine_execute_interpreted() {
        let engine = JitQueryEngine::new();
        let store = StarStore::new();

        let result = engine
            .execute("SELECT * WHERE { ?s ?p ?o }", &store)
            .await
            .unwrap();

        // Should execute successfully (returns empty for now)
        assert!(result.is_empty());

        let stats = engine.stats().await;
        assert_eq!(stats.total_queries, 1);
        assert_eq!(stats.interpreted_count, 1);
    }

    #[tokio::test]
    async fn test_jit_engine_cache_stats() {
        let engine = JitQueryEngine::new();
        let (plan_count, compiled_count) = engine.cache_stats().await;
        assert_eq!(plan_count, 0);
        assert_eq!(compiled_count, 0);
    }

    #[tokio::test]
    async fn test_jit_engine_clear_caches() {
        let engine = JitQueryEngine::new();
        let store = StarStore::new();

        // Execute a query to populate cache
        engine
            .execute("SELECT * WHERE { ?s ?p ?o }", &store)
            .await
            .unwrap();

        let (plan_count, _) = engine.cache_stats().await;
        assert_eq!(plan_count, 1);

        // Clear caches
        engine.clear_caches().await;

        let (plan_count, compiled_count) = engine.cache_stats().await;
        assert_eq!(plan_count, 0);
        assert_eq!(compiled_count, 0);
    }

    #[tokio::test]
    async fn test_jit_engine_hot_queries() {
        let engine = JitQueryEngine::new();
        let store = StarStore::new();

        // Execute same query multiple times
        for _ in 0..15 {
            engine
                .execute("SELECT * WHERE { ?s ?p ?o }", &store)
                .await
                .unwrap();
        }

        let hot = engine.hot_queries(5).await;
        assert_eq!(hot.len(), 1);
        assert_eq!(hot[0].execution_count, 15);
    }

    #[tokio::test]
    async fn test_jit_engine_compilation_candidates() {
        let engine = JitQueryEngine::new();
        let store = StarStore::new();

        // Execute query below threshold
        for _ in 0..9 {
            engine
                .execute("SELECT * WHERE { ?s ?p ?o }", &store)
                .await
                .unwrap();
        }

        let candidates = engine.compilation_candidates().await;
        assert_eq!(candidates.len(), 0); // Not hot yet

        // Execute one more time to cross threshold
        engine
            .execute("SELECT * WHERE { ?s ?p ?o }", &store)
            .await
            .unwrap();

        let candidates = engine.compilation_candidates().await;
        assert_eq!(candidates.len(), 1); // Now hot
    }

    #[tokio::test]
    async fn test_jit_engine_invalidate_query() {
        let engine = JitQueryEngine::new();
        let store = StarStore::new();

        let query = "SELECT * WHERE { ?s ?p ?o }";
        engine.execute(query, &store).await.unwrap();

        let (plan_count, _) = engine.cache_stats().await;
        assert_eq!(plan_count, 1);

        engine.invalidate_query(query).await;

        let (plan_count, _) = engine.cache_stats().await;
        assert_eq!(plan_count, 0);
    }
}