mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
* feat: Add Schema Registry and Validation Framework This commit introduces a comprehensive schema registry and validation framework, providing schema-based validation of resources and policy effects. - Thread-safe, in-memory registry for schema storage and management - Global registry patterns for effects and resources - Concurrent access with proper error handling - Unicode schema names support - JSON Schema-compliant validation for all primitive types - Advanced constraint validation (patterns, ranges, length limits) - Discriminated union support with anyOf schemas - Detailed error reporting with nested validation paths - Discriminated subobject validation for polymorphic schemas - **Registry Tests**: All registry operations - **Effect Tests**: Policy effect validation - **Resource Tests**: Resource validation - **Validation Tests**: Core validation engine - Thread-safety, error handling, integration scenarios, edge cases - **Dependencies**: dashmap, once_cell, regex - **Thread Safety**: Minimal locking with Rc<Schema> sharing - **Error Types**: TypeMismatch, OutOfRange, PatternMismatch, etc. - Complete schema registry and validation subsystem - Comprehensive test coverage - Foundation for policy validation in Regorus Benchmarks: - Criterion benchmarks for basic types, effects and Azure resources - Performance range: 3.22ns (string) to 34.74µs (Azure VM resource schema validation) - String withs patterns validation: 30.2µs. Need to explore whether regex caching helps bring this down. - Azure policy effects: 188ns-1.4µs Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com> * feat: Complete target system with C# bindings and resource inference - Add comprehensive target system with TargetRegistry and target-aware compilation - Implement resource type inference from policy equality expressions - Create modular C# bindings with separate wrapper classes for each concept - Add thread-safe CompiledPolicy with reference counting for safe disposal - Enhance FFI with detailed error propagation and target functionality - Create TargetExampleApp demonstrating Azure Policy integration - Add CI/CD pipeline testing for all C# applications - Support target definitions with schema validation and resource selectors - Implement PolicyModule struct and target-aware compilation methods - Add comprehensive test coverage for target functionality Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com> --------- Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
125 lines
2.8 KiB
C++
125 lines
2.8 KiB
C++
#ifndef REGORUS_WRAPPER_HPP
|
|
#define REGORUS_WRAPPER_HPP
|
|
|
|
#include <memory>
|
|
#include <variant>
|
|
|
|
#include "regorus.ffi.hpp"
|
|
|
|
namespace regorus {
|
|
|
|
class Result {
|
|
public:
|
|
|
|
operator bool() const { return result.status == RegorusStatus::Ok; }
|
|
bool operator !() const { return result.status != RegorusStatus::Ok; }
|
|
|
|
const char* output() const {
|
|
if (*this && result.output) {
|
|
return result.output;
|
|
} else {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
const char* error() const {
|
|
if (!*this && result.error_message) {
|
|
return result.error_message;
|
|
} else {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
~Result() {
|
|
regorus_result_drop(result);
|
|
}
|
|
|
|
private:
|
|
friend class Engine;
|
|
RegorusResult result;
|
|
|
|
Result(RegorusResult r) : result(r) {}
|
|
private:
|
|
Result(const Result&) = delete;
|
|
Result(Result&&) = delete;
|
|
Result& operator=(const Result&) = delete;
|
|
|
|
};
|
|
|
|
class Engine {
|
|
public:
|
|
Engine() : Engine(regorus_engine_new()) {}
|
|
|
|
std::unique_ptr<Engine> clone() const {
|
|
return std::unique_ptr<Engine>(new Engine(regorus_engine_clone(engine)));
|
|
}
|
|
|
|
Result set_rego_v0(bool enable) {
|
|
return Result(regorus_engine_set_rego_v0(engine, enable));
|
|
}
|
|
|
|
Result add_policy(const char* path, const char* policy) {
|
|
return Result(regorus_engine_add_policy(engine, path, policy));
|
|
}
|
|
|
|
Result add_policy_from_file(const char* path) {
|
|
return Result(regorus_engine_add_policy_from_file(engine, path));
|
|
}
|
|
|
|
Result add_data_json(const char* data) {
|
|
return Result(regorus_engine_add_data_json(engine, data));
|
|
}
|
|
|
|
Result add_data_from_json_file(const char* path) {
|
|
return Result(regorus_engine_add_data_from_json_file(engine, path));
|
|
}
|
|
|
|
Result set_input_json(const char* input) {
|
|
return Result(regorus_engine_set_input_json(engine, input));
|
|
}
|
|
|
|
Result set_input_from_json_file(const char* path) {
|
|
return Result(regorus_engine_set_input_from_json_file(engine, path));
|
|
}
|
|
|
|
Result eval_query(const char* query) {
|
|
return Result(regorus_engine_eval_query(engine, query));
|
|
}
|
|
|
|
Result eval_rule(const char* rule) {
|
|
return Result(regorus_engine_eval_rule(engine, rule));
|
|
}
|
|
|
|
Result set_enable_coverage(bool enable) {
|
|
return Result(regorus_engine_set_enable_coverage(engine, enable));
|
|
}
|
|
|
|
Result clear_coverage_data() {
|
|
return Result(regorus_engine_clear_coverage_data(engine));
|
|
}
|
|
|
|
Result get_coverage_report() {
|
|
return Result(regorus_engine_get_coverage_report(engine));
|
|
}
|
|
|
|
Result get_coverage_report_pretty() {
|
|
return Result(regorus_engine_get_coverage_report_pretty(engine));
|
|
}
|
|
|
|
~Engine() {
|
|
regorus_engine_drop(engine);
|
|
}
|
|
|
|
|
|
private:
|
|
RegorusEngine* engine;
|
|
private:
|
|
Engine(RegorusEngine* e) : engine(e) {}
|
|
Engine(const Engine&) = delete;
|
|
Engine(Engine&&) = delete;
|
|
Engine& operator=(const Engine&) = delete;
|
|
};
|
|
}
|
|
|
|
#endif // REGORUS_WRAPPER_HPP
|