pub mod document_lookup;
pub mod error;
pub mod io;
pub mod limits;
pub mod model;
pub mod path_jail;
pub mod quick_fix;
pub mod rdf_literals;
pub mod scanner;
pub use document_lookup::{
document_for_entity, document_for_ontology_id, document_matches_entity,
document_matches_ontology_id, file_uri_for_path, normalize_iri,
};
pub use error::{OntoCoreError, Result};
pub use io::{read_file_capped, read_to_string_capped};
pub use limits::{
MAX_ENTITIES, MAX_FILE_BYTES, MAX_OPEN_DOCUMENTS, MAX_QUERY_BYTES, MAX_SCAN_FILES,
MAX_SCAN_WALK_ENTRIES, MAX_SPARQL_RESULT_ROWS, MAX_SQL_RESULT_ROWS, MAX_TOTAL_TRIPLES,
MAX_TRIPLES_PER_FILE,
};
pub use model::{
Annotation, Axiom, Diagnostic, DiagnosticCode, DiagnosticSeverity, Entity, EntityKind, Import,
Namespace, OntologyDocument, OntologyFormat, ParseStatus, PropertyCharacteristics,
SourceLocation, AXIOM_KIND_CLASS_ASSERTION, AXIOM_KIND_DATA_PROPERTY_ASSERTION,
AXIOM_KIND_DISJOINT_CLASS, AXIOM_KIND_DOMAIN, AXIOM_KIND_EQUIVALENT_CLASS,
AXIOM_KIND_OBJECT_PROPERTY_ASSERTION, AXIOM_KIND_PROPERTY_CHAIN, AXIOM_KIND_RANGE,
AXIOM_KIND_SUB_CLASS_OF,
};
pub use path_jail::{
canonical_workspace_root, discover_git_repo_root, ensure_extract_path_within, file_uri_to_path,
is_path_within, is_path_within_any, resolve_document_path, resolve_lsp_document_path,
resolve_lsp_document_path_any, validate_workspace_scope, validate_workspace_scope_any,
workspace_uri_to_path,
};
pub use quick_fix::QuickFix;
pub use rdf_literals::parse_boolean_literal;
pub use scanner::{OntologyFile, WorkspaceScanner};