json-eval-rs 0.0.97

High-performance JSON Logic evaluator with schema validation and dependency tracking. Built on blazing-fast Rust engine.
Documentation
// Native P/Invoke declarations and UTF-8 helpers for .NET Standard targets.
#if !NETCOREAPP && !NET5_0_OR_GREATER
using System;
using System.Runtime.InteropServices;
using System.Text;

namespace JsonEvalRs
{
    /// <summary>
    /// .NET Standard 2.0/2.1 specific P/Invoke declarations
    /// Uses byte array marshalling for compatibility
    /// </summary>
    internal static partial class Native
    {
        // Helper methods for byte array marshalling
        internal static byte[]? ToUTF8Bytes(string? str)
        {
            if (str == null) return null;
            return Encoding.UTF8.GetBytes(str + "\0"); // Null-terminated
        }

        internal static string? PtrToStringUTF8(IntPtr ptr)
        {
            if (ptr == IntPtr.Zero)
                return null;

            int length = 0;
            while (Marshal.ReadByte(ptr, length) != 0)
                length++;

            byte[] buffer = new byte[length];
            Marshal.Copy(ptr, buffer, 0, length);
            return Encoding.UTF8.GetString(buffer);
        }

        // Core FFI functions with byte array marshalling
        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern IntPtr json_eval_new(
            byte[]? schema,
            byte[]? context,
            byte[]? data
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern IntPtr json_eval_new_with_error(
            byte[]? schema,
            byte[]? context,
            byte[]? data,
            out IntPtr errorOut
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern IntPtr json_eval_new_from_msgpack(
            IntPtr schemaMsgpack,
            UIntPtr schemaLen,
            byte[]? context,
            byte[]? data
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern IntPtr json_eval_new_from_cache(
            byte[]? cacheKey,
            byte[]? context,
            byte[]? data
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern IntPtr json_eval_new_from_cache_with_error(
            byte[]? cacheKey,
            byte[]? context,
            byte[]? data,
            out IntPtr errorPtr
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_evaluate(
            IntPtr handle,
            byte[]? data,
            byte[]? context,
            byte[]? pathsJson
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_validate(
            IntPtr handle,
            byte[]? data,
            byte[]? context
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_evaluate_dependents(
            IntPtr handle,
            byte[]? changedPathsJson,
            byte[]? data,
            byte[]? context,
            int reEvaluate,
            int includeSubforms
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_evaluated_schema_by_path(
            IntPtr handle,
            byte[]? path
        );



        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_evaluated_schema_by_paths(
            IntPtr handle,
            byte[] pathsJson,
            byte format
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_schema_by_path(
            IntPtr handle,
            byte[]? path
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_schema_by_paths(
            IntPtr handle,
            byte[] pathsJson,
            byte format
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_reload_schema(
            IntPtr handle,
            byte[]? schema,
            byte[]? context,
            byte[]? data
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_reload_schema_msgpack(
            IntPtr handle,
            IntPtr schemaMsgpack,
            UIntPtr schemaLen,
            byte[]? context,
            byte[]? data
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_reload_schema_from_cache(
            IntPtr handle,
            byte[]? cacheKey,
            byte[]? context,
            byte[]? data
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_validate_paths(
            IntPtr handle,
            byte[]? data,
            byte[]? context,
            byte[]? pathsJson
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_compile_and_run_logic(
            IntPtr handle,
            byte[]? logicStr,
            byte[]? data,
            byte[]? context
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern ulong json_eval_compile_logic(
            IntPtr handle,
            byte[] logicStr
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_run_logic(
            IntPtr handle,
            ulong logicId,
            byte[]? data,
            byte[]? context
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_evaluate_logic_pure(
            byte[] logicStr,
            byte[]? data,
            byte[]? context
        );

        // Subform methods
        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_evaluate_subform(
            IntPtr handle,
            byte[] subformPath,
            byte[] data,
            byte[]? context,
            byte[]? pathsJson
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_validate_subform(
            IntPtr handle,
            byte[] subformPath,
            byte[] data,
            byte[]? context
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_evaluate_dependents_subform(
            IntPtr handle,
            byte[] subformPath,
            byte[] changedPath,
            byte[]? data,
            byte[]? context,
            int reEvaluate,
            int includeSubforms
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_resolve_layout_subform(
            IntPtr handle,
            byte[] subformPath,
            [MarshalAs(UnmanagedType.I1)] bool evaluate
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_evaluated_schema_subform(
            IntPtr handle,
            byte[] subformPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_resolved_layout_subform(
            IntPtr handle,
            byte[] subformPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_evaluated_schema_resolved_subform(
            IntPtr handle,
            byte[] subformPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_schema_value_subform(
            IntPtr handle,
            byte[] subformPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_schema_value_array_subform(
            IntPtr handle,
            byte[] subformPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_schema_value_object_subform(
            IntPtr handle,
            byte[] subformPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_evaluated_schema_without_params_subform(
            IntPtr handle,
            byte[] subformPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_evaluated_schema_by_path_subform(
            IntPtr handle,
            byte[] subformPath,
            byte[] schemaPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_evaluated_schema_by_paths_subform(
            IntPtr handle,
            byte[] subformPath,
            byte[] schemaPathsJson,
            byte format
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_schema_by_path_subform(
            IntPtr handle,
            byte[] subformPath,
            byte[] schemaPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_schema_by_paths_subform(
            IntPtr handle,
            byte[] subformPath,
            byte[] schemaPathsJson,
            byte format
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_has_subform(
            IntPtr handle,
            byte[] subformPath
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern void json_eval_set_timezone_offset(
            IntPtr handle,
            int offsetMinutes
        );

        [DllImport(LibName, CallingConvention = CallingConvention.Cdecl)]
        internal static extern FFIResult json_eval_get_field_options(
            IntPtr handle,
            byte[] fieldPath
        );
    }
}
#endif