oxibase 0.3.2

Autonomous relational database management system with MVCC, time-travel queries, and full ACID compliance
Documentation
// Copyright 2025 Stoolap Contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! Common utilities for Stoolap
//!
//! This module contains shared utilities used throughout the database:
//!
//! - [`version`] - Version information and constants
//! - [`buffer_pool`] - Self-tuning buffer pool for efficient memory reuse
//! - [`int64_map`] - Fast hash maps for integer keys

pub mod buffer_pool;
pub mod int64_map;
pub mod version;

// Re-export main types for convenience
pub use buffer_pool::{BufferPool, PoolStats};
pub use int64_map::{
    new_concurrent_int64_map, new_concurrent_int64_map_with_capacity, new_concurrent_uint64_map,
    new_concurrent_uint64_map_with_capacity, new_concurrent_usize_map,
    new_concurrent_usize_map_with_capacity, new_int64_map, new_int64_map_with_capacity,
    new_int64_set, new_int64_set_with_capacity, new_ordered_int64_map, new_segment_int64_map,
    new_segment_int64_map_with_segments, new_uint64_map, new_uint64_map_with_capacity,
    new_uint64_set, new_uint64_set_with_capacity, new_usize_map, new_usize_map_with_capacity,
    new_usize_set, new_usize_set_with_capacity, ConcurrentInt64Map, ConcurrentUInt64Map,
    ConcurrentUsizeMap, Int64Map, Int64Set, OrderedInt64Map, SegmentInt64Map, UInt64Map, UInt64Set,
    UsizeMap, UsizeSet,
};
pub use version::{version, version_info, SemVer, BUILD_TIME, GIT_COMMIT, MAJOR, MINOR, PATCH};

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

    #[test]
    fn test_buffer_pool_with_int64_map() {
        // Test buffer pool and int64 map working together
        let pool = BufferPool::new(1024, 4096, "test");
        let map: Int64Map<Vec<u8>> = new_int64_map();

        // Get buffer, use it, store in map
        let mut buf = pool.get();
        buf.extend_from_slice(b"test data");

        let mut map = map;
        map.insert(1, buf);

        assert!(map.contains_key(&1));
        assert_eq!(map.get(&1).unwrap(), b"test data");
    }

    #[test]
    fn test_version_constants() {
        // Ensure version is accessible
        let v = version();
        assert!(!v.is_empty());

        let info = version_info();
        assert!(info.contains("oxibase"));
    }

    #[test]
    fn test_concurrent_map_with_buffer_pool() {
        use std::sync::Arc;
        use std::thread;

        let pool = Arc::new(BufferPool::new(1024, 4096, "test"));
        let map: Arc<ConcurrentInt64Map<Vec<u8>>> = Arc::new(new_concurrent_int64_map());

        let handles: Vec<_> = (0i64..4)
            .map(|i| {
                let pool = Arc::clone(&pool);
                let map: Arc<ConcurrentInt64Map<Vec<u8>>> = Arc::clone(&map);
                thread::spawn(move || {
                    for j in 0i64..10 {
                        let mut buf = pool.get();
                        buf.extend_from_slice(format!("thread {} item {}", i, j).as_bytes());
                        map.insert(i * 100 + j, buf);
                    }
                })
            })
            .collect();

        for handle in handles {
            handle.join().unwrap();
        }

        assert_eq!(map.len(), 40);
    }
}