relationalai 0.12.13__py3-none-any.whl → 0.13.0.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- relationalai/__init__.py +1 -209
- relationalai/config/__init__.py +56 -0
- relationalai/config/config.py +289 -0
- relationalai/config/config_fields.py +86 -0
- relationalai/config/connections/__init__.py +46 -0
- relationalai/config/connections/base.py +23 -0
- relationalai/config/connections/duckdb.py +29 -0
- relationalai/config/connections/snowflake.py +243 -0
- relationalai/config/external/__init__.py +17 -0
- relationalai/config/external/dbt_converter.py +101 -0
- relationalai/config/external/dbt_models.py +93 -0
- relationalai/config/external/snowflake_converter.py +41 -0
- relationalai/config/external/snowflake_models.py +85 -0
- relationalai/config/external/utils.py +19 -0
- relationalai/semantics/__init__.py +146 -22
- relationalai/semantics/backends/lqp/annotations.py +11 -0
- relationalai/semantics/backends/sql/sql_compiler.py +327 -0
- relationalai/semantics/frontend/base.py +1707 -0
- relationalai/semantics/frontend/core.py +179 -0
- relationalai/semantics/frontend/front_compiler.py +1313 -0
- relationalai/semantics/frontend/pprint.py +408 -0
- relationalai/semantics/metamodel/__init__.py +6 -40
- relationalai/semantics/metamodel/builtins.py +205 -769
- relationalai/semantics/metamodel/metamodel.py +437 -0
- relationalai/semantics/metamodel/metamodel_analyzer.py +519 -0
- relationalai/semantics/metamodel/pprint.py +412 -0
- relationalai/semantics/metamodel/rewriter.py +266 -0
- relationalai/semantics/metamodel/typer.py +1378 -0
- relationalai/semantics/std/__init__.py +60 -40
- relationalai/semantics/std/aggregates.py +149 -0
- relationalai/semantics/std/common.py +44 -0
- relationalai/semantics/std/constraints.py +37 -43
- relationalai/semantics/std/datetime.py +246 -135
- relationalai/semantics/std/decimals.py +45 -52
- relationalai/semantics/std/floats.py +13 -5
- relationalai/semantics/std/integers.py +26 -11
- relationalai/semantics/std/math.py +183 -112
- relationalai/semantics/std/numbers.py +86 -0
- relationalai/semantics/std/re.py +80 -62
- relationalai/semantics/std/strings.py +117 -60
- relationalai/shims/executor.py +147 -0
- relationalai/shims/helpers.py +126 -0
- relationalai/shims/hoister.py +221 -0
- relationalai/shims/mm2v0.py +1290 -0
- relationalai/tools/cli/__init__.py +6 -0
- relationalai/tools/cli/cli.py +90 -0
- relationalai/tools/cli/components/__init__.py +5 -0
- relationalai/tools/cli/components/progress_reader.py +1524 -0
- relationalai/tools/cli/components/utils.py +58 -0
- relationalai/tools/cli/config_template.py +45 -0
- relationalai/tools/cli/dev.py +19 -0
- relationalai/tools/debugger.py +289 -183
- relationalai/tools/typer_debugger.py +93 -0
- relationalai/util/dataclasses.py +43 -0
- relationalai/util/docutils.py +40 -0
- relationalai/util/error.py +199 -0
- relationalai/util/format.py +48 -106
- relationalai/util/naming.py +145 -0
- relationalai/util/python.py +35 -0
- relationalai/util/runtime.py +156 -0
- relationalai/util/schema.py +197 -0
- relationalai/util/source.py +185 -0
- relationalai/util/structures.py +163 -0
- relationalai/util/tracing.py +261 -0
- relationalai-0.13.0.dev0.dist-info/METADATA +46 -0
- relationalai-0.13.0.dev0.dist-info/RECORD +488 -0
- relationalai-0.13.0.dev0.dist-info/WHEEL +5 -0
- relationalai-0.13.0.dev0.dist-info/entry_points.txt +3 -0
- relationalai-0.13.0.dev0.dist-info/top_level.txt +2 -0
- v0/relationalai/__init__.py +216 -0
- v0/relationalai/clients/azure.py +477 -0
- v0/relationalai/clients/client.py +912 -0
- v0/relationalai/clients/config.py +673 -0
- v0/relationalai/clients/direct_access_client.py +118 -0
- v0/relationalai/clients/hash_util.py +31 -0
- v0/relationalai/clients/local.py +571 -0
- v0/relationalai/clients/profile_polling.py +73 -0
- v0/relationalai/clients/result_helpers.py +420 -0
- v0/relationalai/clients/snowflake.py +3869 -0
- v0/relationalai/clients/types.py +113 -0
- v0/relationalai/clients/use_index_poller.py +980 -0
- v0/relationalai/clients/util.py +356 -0
- v0/relationalai/debugging.py +389 -0
- v0/relationalai/dsl.py +1749 -0
- v0/relationalai/early_access/builder/__init__.py +30 -0
- v0/relationalai/early_access/builder/builder/__init__.py +35 -0
- v0/relationalai/early_access/builder/snowflake/__init__.py +12 -0
- v0/relationalai/early_access/builder/std/__init__.py +25 -0
- v0/relationalai/early_access/builder/std/decimals/__init__.py +12 -0
- v0/relationalai/early_access/builder/std/integers/__init__.py +12 -0
- v0/relationalai/early_access/builder/std/math/__init__.py +12 -0
- v0/relationalai/early_access/builder/std/strings/__init__.py +14 -0
- v0/relationalai/early_access/devtools/__init__.py +12 -0
- v0/relationalai/early_access/devtools/benchmark_lqp/__init__.py +12 -0
- v0/relationalai/early_access/devtools/extract_lqp/__init__.py +12 -0
- v0/relationalai/early_access/dsl/adapters/orm/adapter_qb.py +427 -0
- v0/relationalai/early_access/dsl/adapters/orm/parser.py +636 -0
- v0/relationalai/early_access/dsl/adapters/owl/adapter.py +176 -0
- v0/relationalai/early_access/dsl/adapters/owl/parser.py +160 -0
- v0/relationalai/early_access/dsl/bindings/common.py +402 -0
- v0/relationalai/early_access/dsl/bindings/csv.py +170 -0
- v0/relationalai/early_access/dsl/bindings/legacy/binding_models.py +143 -0
- v0/relationalai/early_access/dsl/bindings/snowflake.py +64 -0
- v0/relationalai/early_access/dsl/codegen/binder.py +411 -0
- v0/relationalai/early_access/dsl/codegen/common.py +79 -0
- v0/relationalai/early_access/dsl/codegen/helpers.py +23 -0
- v0/relationalai/early_access/dsl/codegen/relations.py +700 -0
- v0/relationalai/early_access/dsl/codegen/weaver.py +417 -0
- v0/relationalai/early_access/dsl/core/builders/__init__.py +47 -0
- v0/relationalai/early_access/dsl/core/builders/logic.py +19 -0
- v0/relationalai/early_access/dsl/core/builders/scalar_constraint.py +11 -0
- v0/relationalai/early_access/dsl/core/constraints/predicate/atomic.py +455 -0
- v0/relationalai/early_access/dsl/core/constraints/predicate/universal.py +73 -0
- v0/relationalai/early_access/dsl/core/constraints/scalar.py +310 -0
- v0/relationalai/early_access/dsl/core/context.py +13 -0
- v0/relationalai/early_access/dsl/core/cset.py +132 -0
- v0/relationalai/early_access/dsl/core/exprs/__init__.py +116 -0
- v0/relationalai/early_access/dsl/core/exprs/relational.py +18 -0
- v0/relationalai/early_access/dsl/core/exprs/scalar.py +412 -0
- v0/relationalai/early_access/dsl/core/instances.py +44 -0
- v0/relationalai/early_access/dsl/core/logic/__init__.py +193 -0
- v0/relationalai/early_access/dsl/core/logic/aggregation.py +98 -0
- v0/relationalai/early_access/dsl/core/logic/exists.py +223 -0
- v0/relationalai/early_access/dsl/core/logic/helper.py +163 -0
- v0/relationalai/early_access/dsl/core/namespaces.py +32 -0
- v0/relationalai/early_access/dsl/core/relations.py +276 -0
- v0/relationalai/early_access/dsl/core/rules.py +112 -0
- v0/relationalai/early_access/dsl/core/std/__init__.py +45 -0
- v0/relationalai/early_access/dsl/core/temporal/recall.py +6 -0
- v0/relationalai/early_access/dsl/core/types/__init__.py +270 -0
- v0/relationalai/early_access/dsl/core/types/concepts.py +128 -0
- v0/relationalai/early_access/dsl/core/types/constrained/__init__.py +267 -0
- v0/relationalai/early_access/dsl/core/types/constrained/nominal.py +143 -0
- v0/relationalai/early_access/dsl/core/types/constrained/subtype.py +124 -0
- v0/relationalai/early_access/dsl/core/types/standard.py +92 -0
- v0/relationalai/early_access/dsl/core/types/unconstrained.py +50 -0
- v0/relationalai/early_access/dsl/core/types/variables.py +203 -0
- v0/relationalai/early_access/dsl/ir/compiler.py +318 -0
- v0/relationalai/early_access/dsl/ir/executor.py +260 -0
- v0/relationalai/early_access/dsl/ontologies/constraints.py +88 -0
- v0/relationalai/early_access/dsl/ontologies/export.py +30 -0
- v0/relationalai/early_access/dsl/ontologies/models.py +453 -0
- v0/relationalai/early_access/dsl/ontologies/python_printer.py +303 -0
- v0/relationalai/early_access/dsl/ontologies/readings.py +60 -0
- v0/relationalai/early_access/dsl/ontologies/relationships.py +322 -0
- v0/relationalai/early_access/dsl/ontologies/roles.py +87 -0
- v0/relationalai/early_access/dsl/ontologies/subtyping.py +55 -0
- v0/relationalai/early_access/dsl/orm/constraints.py +438 -0
- v0/relationalai/early_access/dsl/orm/measures/dimensions.py +200 -0
- v0/relationalai/early_access/dsl/orm/measures/initializer.py +16 -0
- v0/relationalai/early_access/dsl/orm/measures/measure_rules.py +275 -0
- v0/relationalai/early_access/dsl/orm/measures/measures.py +299 -0
- v0/relationalai/early_access/dsl/orm/measures/role_exprs.py +268 -0
- v0/relationalai/early_access/dsl/orm/models.py +256 -0
- v0/relationalai/early_access/dsl/orm/object_oriented_printer.py +344 -0
- v0/relationalai/early_access/dsl/orm/printer.py +469 -0
- v0/relationalai/early_access/dsl/orm/reasoners.py +480 -0
- v0/relationalai/early_access/dsl/orm/relations.py +19 -0
- v0/relationalai/early_access/dsl/orm/relationships.py +251 -0
- v0/relationalai/early_access/dsl/orm/types.py +42 -0
- v0/relationalai/early_access/dsl/orm/utils.py +79 -0
- v0/relationalai/early_access/dsl/orm/verb.py +204 -0
- v0/relationalai/early_access/dsl/physical_metadata/tables.py +133 -0
- v0/relationalai/early_access/dsl/relations.py +170 -0
- v0/relationalai/early_access/dsl/rulesets.py +69 -0
- v0/relationalai/early_access/dsl/schemas/__init__.py +450 -0
- v0/relationalai/early_access/dsl/schemas/builder.py +48 -0
- v0/relationalai/early_access/dsl/schemas/comp_names.py +51 -0
- v0/relationalai/early_access/dsl/schemas/components.py +203 -0
- v0/relationalai/early_access/dsl/schemas/contexts.py +156 -0
- v0/relationalai/early_access/dsl/schemas/exprs.py +89 -0
- v0/relationalai/early_access/dsl/schemas/fragments.py +464 -0
- v0/relationalai/early_access/dsl/serialization.py +79 -0
- v0/relationalai/early_access/dsl/serialize/exporter.py +163 -0
- v0/relationalai/early_access/dsl/snow/api.py +104 -0
- v0/relationalai/early_access/dsl/snow/common.py +76 -0
- v0/relationalai/early_access/dsl/state_mgmt/__init__.py +129 -0
- v0/relationalai/early_access/dsl/state_mgmt/state_charts.py +125 -0
- v0/relationalai/early_access/dsl/state_mgmt/transitions.py +130 -0
- v0/relationalai/early_access/dsl/types/__init__.py +40 -0
- v0/relationalai/early_access/dsl/types/concepts.py +12 -0
- v0/relationalai/early_access/dsl/types/entities.py +135 -0
- v0/relationalai/early_access/dsl/types/values.py +17 -0
- v0/relationalai/early_access/dsl/utils.py +102 -0
- v0/relationalai/early_access/graphs/__init__.py +13 -0
- v0/relationalai/early_access/lqp/__init__.py +12 -0
- v0/relationalai/early_access/lqp/compiler/__init__.py +12 -0
- v0/relationalai/early_access/lqp/constructors/__init__.py +18 -0
- v0/relationalai/early_access/lqp/executor/__init__.py +12 -0
- v0/relationalai/early_access/lqp/ir/__init__.py +12 -0
- v0/relationalai/early_access/lqp/passes/__init__.py +12 -0
- v0/relationalai/early_access/lqp/pragmas/__init__.py +12 -0
- v0/relationalai/early_access/lqp/primitives/__init__.py +12 -0
- v0/relationalai/early_access/lqp/types/__init__.py +12 -0
- v0/relationalai/early_access/lqp/utils/__init__.py +12 -0
- v0/relationalai/early_access/lqp/validators/__init__.py +12 -0
- v0/relationalai/early_access/metamodel/__init__.py +58 -0
- v0/relationalai/early_access/metamodel/builtins/__init__.py +12 -0
- v0/relationalai/early_access/metamodel/compiler/__init__.py +12 -0
- v0/relationalai/early_access/metamodel/dependency/__init__.py +12 -0
- v0/relationalai/early_access/metamodel/factory/__init__.py +17 -0
- v0/relationalai/early_access/metamodel/helpers/__init__.py +12 -0
- v0/relationalai/early_access/metamodel/ir/__init__.py +14 -0
- v0/relationalai/early_access/metamodel/rewrite/__init__.py +7 -0
- v0/relationalai/early_access/metamodel/typer/__init__.py +3 -0
- v0/relationalai/early_access/metamodel/typer/typer/__init__.py +12 -0
- v0/relationalai/early_access/metamodel/types/__init__.py +15 -0
- v0/relationalai/early_access/metamodel/util/__init__.py +15 -0
- v0/relationalai/early_access/metamodel/visitor/__init__.py +12 -0
- v0/relationalai/early_access/rel/__init__.py +12 -0
- v0/relationalai/early_access/rel/executor/__init__.py +12 -0
- v0/relationalai/early_access/rel/rel_utils/__init__.py +12 -0
- v0/relationalai/early_access/rel/rewrite/__init__.py +7 -0
- v0/relationalai/early_access/solvers/__init__.py +19 -0
- v0/relationalai/early_access/sql/__init__.py +11 -0
- v0/relationalai/early_access/sql/executor/__init__.py +3 -0
- v0/relationalai/early_access/sql/rewrite/__init__.py +3 -0
- v0/relationalai/early_access/tests/logging/__init__.py +12 -0
- v0/relationalai/early_access/tests/test_snapshot_base/__init__.py +12 -0
- v0/relationalai/early_access/tests/utils/__init__.py +12 -0
- v0/relationalai/environments/__init__.py +35 -0
- v0/relationalai/environments/base.py +381 -0
- v0/relationalai/environments/colab.py +14 -0
- v0/relationalai/environments/generic.py +71 -0
- v0/relationalai/environments/ipython.py +68 -0
- v0/relationalai/environments/jupyter.py +9 -0
- v0/relationalai/environments/snowbook.py +169 -0
- v0/relationalai/errors.py +2455 -0
- v0/relationalai/experimental/SF.py +38 -0
- v0/relationalai/experimental/inspect.py +47 -0
- v0/relationalai/experimental/pathfinder/__init__.py +158 -0
- v0/relationalai/experimental/pathfinder/api.py +160 -0
- v0/relationalai/experimental/pathfinder/automaton.py +584 -0
- v0/relationalai/experimental/pathfinder/bridge.py +226 -0
- v0/relationalai/experimental/pathfinder/compiler.py +416 -0
- v0/relationalai/experimental/pathfinder/datalog.py +214 -0
- v0/relationalai/experimental/pathfinder/diagnostics.py +56 -0
- v0/relationalai/experimental/pathfinder/filter.py +236 -0
- v0/relationalai/experimental/pathfinder/glushkov.py +439 -0
- v0/relationalai/experimental/pathfinder/options.py +265 -0
- v0/relationalai/experimental/pathfinder/rpq.py +344 -0
- v0/relationalai/experimental/pathfinder/transition.py +200 -0
- v0/relationalai/experimental/pathfinder/utils.py +26 -0
- v0/relationalai/experimental/paths/api.py +143 -0
- v0/relationalai/experimental/paths/benchmarks/grid_graph.py +37 -0
- v0/relationalai/experimental/paths/examples/basic_example.py +40 -0
- v0/relationalai/experimental/paths/examples/minimal_engine_warmup.py +3 -0
- v0/relationalai/experimental/paths/examples/movie_example.py +77 -0
- v0/relationalai/experimental/paths/examples/paths_benchmark.py +115 -0
- v0/relationalai/experimental/paths/examples/paths_example.py +116 -0
- v0/relationalai/experimental/paths/examples/pattern_to_automaton.py +28 -0
- v0/relationalai/experimental/paths/find_paths_via_automaton.py +85 -0
- v0/relationalai/experimental/paths/graph.py +185 -0
- v0/relationalai/experimental/paths/path_algorithms/find_paths.py +280 -0
- v0/relationalai/experimental/paths/path_algorithms/one_sided_ball_repetition.py +26 -0
- v0/relationalai/experimental/paths/path_algorithms/one_sided_ball_upto.py +111 -0
- v0/relationalai/experimental/paths/path_algorithms/single.py +59 -0
- v0/relationalai/experimental/paths/path_algorithms/two_sided_balls_repetition.py +39 -0
- v0/relationalai/experimental/paths/path_algorithms/two_sided_balls_upto.py +103 -0
- v0/relationalai/experimental/paths/path_algorithms/usp-old.py +130 -0
- v0/relationalai/experimental/paths/path_algorithms/usp-tuple.py +183 -0
- v0/relationalai/experimental/paths/path_algorithms/usp.py +150 -0
- v0/relationalai/experimental/paths/product_graph.py +93 -0
- v0/relationalai/experimental/paths/rpq/automaton.py +584 -0
- v0/relationalai/experimental/paths/rpq/diagnostics.py +56 -0
- v0/relationalai/experimental/paths/rpq/rpq.py +378 -0
- v0/relationalai/experimental/paths/tests/tests_limit_sp_max_length.py +90 -0
- v0/relationalai/experimental/paths/tests/tests_limit_sp_multiple.py +119 -0
- v0/relationalai/experimental/paths/tests/tests_limit_sp_single.py +104 -0
- v0/relationalai/experimental/paths/tests/tests_limit_walks_multiple.py +113 -0
- v0/relationalai/experimental/paths/tests/tests_limit_walks_single.py +149 -0
- v0/relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_multiple.py +70 -0
- v0/relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_single.py +64 -0
- v0/relationalai/experimental/paths/tests/tests_one_sided_ball_upto_multiple.py +115 -0
- v0/relationalai/experimental/paths/tests/tests_one_sided_ball_upto_single.py +75 -0
- v0/relationalai/experimental/paths/tests/tests_single_paths.py +152 -0
- v0/relationalai/experimental/paths/tests/tests_single_walks.py +208 -0
- v0/relationalai/experimental/paths/tests/tests_single_walks_undirected.py +297 -0
- v0/relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_multiple.py +107 -0
- v0/relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_single.py +76 -0
- v0/relationalai/experimental/paths/tests/tests_two_sided_balls_upto_multiple.py +76 -0
- v0/relationalai/experimental/paths/tests/tests_two_sided_balls_upto_single.py +110 -0
- v0/relationalai/experimental/paths/tests/tests_usp_nsp_multiple.py +229 -0
- v0/relationalai/experimental/paths/tests/tests_usp_nsp_single.py +108 -0
- v0/relationalai/experimental/paths/tree_agg.py +168 -0
- v0/relationalai/experimental/paths/utilities/iterators.py +27 -0
- v0/relationalai/experimental/paths/utilities/prefix_sum.py +91 -0
- v0/relationalai/experimental/solvers.py +1087 -0
- v0/relationalai/loaders/__init__.py +0 -0
- v0/relationalai/loaders/csv.py +195 -0
- v0/relationalai/loaders/loader.py +177 -0
- v0/relationalai/loaders/types.py +23 -0
- v0/relationalai/rel_emitter.py +373 -0
- v0/relationalai/rel_utils.py +185 -0
- v0/relationalai/semantics/__init__.py +29 -0
- v0/relationalai/semantics/devtools/benchmark_lqp.py +536 -0
- v0/relationalai/semantics/devtools/compilation_manager.py +294 -0
- v0/relationalai/semantics/devtools/extract_lqp.py +110 -0
- v0/relationalai/semantics/internal/internal.py +3785 -0
- v0/relationalai/semantics/internal/snowflake.py +324 -0
- v0/relationalai/semantics/lqp/builtins.py +16 -0
- v0/relationalai/semantics/lqp/compiler.py +22 -0
- v0/relationalai/semantics/lqp/constructors.py +68 -0
- v0/relationalai/semantics/lqp/executor.py +469 -0
- v0/relationalai/semantics/lqp/intrinsics.py +24 -0
- v0/relationalai/semantics/lqp/model2lqp.py +839 -0
- v0/relationalai/semantics/lqp/passes.py +680 -0
- v0/relationalai/semantics/lqp/primitives.py +252 -0
- v0/relationalai/semantics/lqp/result_helpers.py +202 -0
- v0/relationalai/semantics/lqp/rewrite/annotate_constraints.py +57 -0
- v0/relationalai/semantics/lqp/rewrite/cdc.py +216 -0
- v0/relationalai/semantics/lqp/rewrite/extract_common.py +338 -0
- v0/relationalai/semantics/lqp/rewrite/extract_keys.py +449 -0
- v0/relationalai/semantics/lqp/rewrite/function_annotations.py +114 -0
- v0/relationalai/semantics/lqp/rewrite/functional_dependencies.py +314 -0
- v0/relationalai/semantics/lqp/rewrite/quantify_vars.py +296 -0
- v0/relationalai/semantics/lqp/rewrite/splinter.py +76 -0
- v0/relationalai/semantics/lqp/types.py +101 -0
- v0/relationalai/semantics/lqp/utils.py +160 -0
- v0/relationalai/semantics/lqp/validators.py +57 -0
- v0/relationalai/semantics/metamodel/__init__.py +40 -0
- v0/relationalai/semantics/metamodel/builtins.py +774 -0
- v0/relationalai/semantics/metamodel/compiler.py +133 -0
- v0/relationalai/semantics/metamodel/dependency.py +862 -0
- v0/relationalai/semantics/metamodel/executor.py +61 -0
- v0/relationalai/semantics/metamodel/factory.py +287 -0
- v0/relationalai/semantics/metamodel/helpers.py +361 -0
- v0/relationalai/semantics/metamodel/rewrite/discharge_constraints.py +39 -0
- v0/relationalai/semantics/metamodel/rewrite/dnf_union_splitter.py +210 -0
- v0/relationalai/semantics/metamodel/rewrite/extract_nested_logicals.py +78 -0
- v0/relationalai/semantics/metamodel/rewrite/flatten.py +549 -0
- v0/relationalai/semantics/metamodel/rewrite/format_outputs.py +165 -0
- v0/relationalai/semantics/metamodel/typer/checker.py +353 -0
- v0/relationalai/semantics/metamodel/typer/typer.py +1395 -0
- v0/relationalai/semantics/reasoners/__init__.py +10 -0
- v0/relationalai/semantics/reasoners/graph/__init__.py +37 -0
- v0/relationalai/semantics/reasoners/graph/core.py +9020 -0
- v0/relationalai/semantics/reasoners/optimization/__init__.py +68 -0
- v0/relationalai/semantics/reasoners/optimization/common.py +88 -0
- v0/relationalai/semantics/reasoners/optimization/solvers_dev.py +568 -0
- v0/relationalai/semantics/reasoners/optimization/solvers_pb.py +1163 -0
- v0/relationalai/semantics/rel/builtins.py +40 -0
- v0/relationalai/semantics/rel/compiler.py +989 -0
- v0/relationalai/semantics/rel/executor.py +359 -0
- v0/relationalai/semantics/rel/rel.py +482 -0
- v0/relationalai/semantics/rel/rel_utils.py +276 -0
- v0/relationalai/semantics/snowflake/__init__.py +3 -0
- v0/relationalai/semantics/sql/compiler.py +2503 -0
- v0/relationalai/semantics/sql/executor/duck_db.py +52 -0
- v0/relationalai/semantics/sql/executor/result_helpers.py +64 -0
- v0/relationalai/semantics/sql/executor/snowflake.py +145 -0
- v0/relationalai/semantics/sql/rewrite/denormalize.py +222 -0
- v0/relationalai/semantics/sql/rewrite/double_negation.py +49 -0
- v0/relationalai/semantics/sql/rewrite/recursive_union.py +127 -0
- v0/relationalai/semantics/sql/rewrite/sort_output_query.py +246 -0
- v0/relationalai/semantics/sql/sql.py +504 -0
- v0/relationalai/semantics/std/__init__.py +54 -0
- v0/relationalai/semantics/std/constraints.py +43 -0
- v0/relationalai/semantics/std/datetime.py +363 -0
- v0/relationalai/semantics/std/decimals.py +62 -0
- v0/relationalai/semantics/std/floats.py +7 -0
- v0/relationalai/semantics/std/integers.py +22 -0
- v0/relationalai/semantics/std/math.py +141 -0
- v0/relationalai/semantics/std/pragmas.py +11 -0
- v0/relationalai/semantics/std/re.py +83 -0
- v0/relationalai/semantics/std/std.py +14 -0
- v0/relationalai/semantics/std/strings.py +63 -0
- v0/relationalai/semantics/tests/__init__.py +0 -0
- v0/relationalai/semantics/tests/test_snapshot_abstract.py +143 -0
- v0/relationalai/semantics/tests/test_snapshot_base.py +9 -0
- v0/relationalai/semantics/tests/utils.py +46 -0
- v0/relationalai/std/__init__.py +70 -0
- v0/relationalai/tools/__init__.py +0 -0
- v0/relationalai/tools/cli.py +1940 -0
- v0/relationalai/tools/cli_controls.py +1826 -0
- v0/relationalai/tools/cli_helpers.py +390 -0
- v0/relationalai/tools/debugger.py +183 -0
- v0/relationalai/tools/debugger_client.py +109 -0
- v0/relationalai/tools/debugger_server.py +302 -0
- v0/relationalai/tools/dev.py +685 -0
- v0/relationalai/tools/qb_debugger.py +425 -0
- v0/relationalai/util/clean_up_databases.py +95 -0
- v0/relationalai/util/format.py +123 -0
- v0/relationalai/util/list_databases.py +9 -0
- v0/relationalai/util/otel_configuration.py +25 -0
- v0/relationalai/util/otel_handler.py +484 -0
- v0/relationalai/util/snowflake_handler.py +88 -0
- v0/relationalai/util/span_format_test.py +43 -0
- v0/relationalai/util/span_tracker.py +207 -0
- v0/relationalai/util/spans_file_handler.py +72 -0
- v0/relationalai/util/tracing_handler.py +34 -0
- frontend/debugger/dist/.gitignore +0 -2
- frontend/debugger/dist/assets/favicon-Dy0ZgA6N.png +0 -0
- frontend/debugger/dist/assets/index-Cssla-O7.js +0 -208
- frontend/debugger/dist/assets/index-DlHsYx1V.css +0 -9
- frontend/debugger/dist/index.html +0 -17
- relationalai/clients/azure.py +0 -477
- relationalai/clients/client.py +0 -912
- relationalai/clients/config.py +0 -673
- relationalai/clients/direct_access_client.py +0 -118
- relationalai/clients/export_procedure.py.jinja +0 -249
- relationalai/clients/hash_util.py +0 -31
- relationalai/clients/local.py +0 -571
- relationalai/clients/profile_polling.py +0 -73
- relationalai/clients/result_helpers.py +0 -420
- relationalai/clients/snowflake.py +0 -3869
- relationalai/clients/types.py +0 -113
- relationalai/clients/use_index_poller.py +0 -980
- relationalai/clients/util.py +0 -356
- relationalai/debugging.py +0 -389
- relationalai/dsl.py +0 -1749
- relationalai/early_access/builder/__init__.py +0 -30
- relationalai/early_access/builder/builder/__init__.py +0 -35
- relationalai/early_access/builder/snowflake/__init__.py +0 -12
- relationalai/early_access/builder/std/__init__.py +0 -25
- relationalai/early_access/builder/std/decimals/__init__.py +0 -12
- relationalai/early_access/builder/std/integers/__init__.py +0 -12
- relationalai/early_access/builder/std/math/__init__.py +0 -12
- relationalai/early_access/builder/std/strings/__init__.py +0 -14
- relationalai/early_access/devtools/__init__.py +0 -12
- relationalai/early_access/devtools/benchmark_lqp/__init__.py +0 -12
- relationalai/early_access/devtools/extract_lqp/__init__.py +0 -12
- relationalai/early_access/dsl/adapters/orm/adapter_qb.py +0 -427
- relationalai/early_access/dsl/adapters/orm/parser.py +0 -636
- relationalai/early_access/dsl/adapters/owl/adapter.py +0 -176
- relationalai/early_access/dsl/adapters/owl/parser.py +0 -160
- relationalai/early_access/dsl/bindings/common.py +0 -402
- relationalai/early_access/dsl/bindings/csv.py +0 -170
- relationalai/early_access/dsl/bindings/legacy/binding_models.py +0 -143
- relationalai/early_access/dsl/bindings/snowflake.py +0 -64
- relationalai/early_access/dsl/codegen/binder.py +0 -411
- relationalai/early_access/dsl/codegen/common.py +0 -79
- relationalai/early_access/dsl/codegen/helpers.py +0 -23
- relationalai/early_access/dsl/codegen/relations.py +0 -700
- relationalai/early_access/dsl/codegen/weaver.py +0 -417
- relationalai/early_access/dsl/core/builders/__init__.py +0 -47
- relationalai/early_access/dsl/core/builders/logic.py +0 -19
- relationalai/early_access/dsl/core/builders/scalar_constraint.py +0 -11
- relationalai/early_access/dsl/core/constraints/predicate/atomic.py +0 -455
- relationalai/early_access/dsl/core/constraints/predicate/universal.py +0 -73
- relationalai/early_access/dsl/core/constraints/scalar.py +0 -310
- relationalai/early_access/dsl/core/context.py +0 -13
- relationalai/early_access/dsl/core/cset.py +0 -132
- relationalai/early_access/dsl/core/exprs/__init__.py +0 -116
- relationalai/early_access/dsl/core/exprs/relational.py +0 -18
- relationalai/early_access/dsl/core/exprs/scalar.py +0 -412
- relationalai/early_access/dsl/core/instances.py +0 -44
- relationalai/early_access/dsl/core/logic/__init__.py +0 -193
- relationalai/early_access/dsl/core/logic/aggregation.py +0 -98
- relationalai/early_access/dsl/core/logic/exists.py +0 -223
- relationalai/early_access/dsl/core/logic/helper.py +0 -163
- relationalai/early_access/dsl/core/namespaces.py +0 -32
- relationalai/early_access/dsl/core/relations.py +0 -276
- relationalai/early_access/dsl/core/rules.py +0 -112
- relationalai/early_access/dsl/core/std/__init__.py +0 -45
- relationalai/early_access/dsl/core/temporal/recall.py +0 -6
- relationalai/early_access/dsl/core/types/__init__.py +0 -270
- relationalai/early_access/dsl/core/types/concepts.py +0 -128
- relationalai/early_access/dsl/core/types/constrained/__init__.py +0 -267
- relationalai/early_access/dsl/core/types/constrained/nominal.py +0 -143
- relationalai/early_access/dsl/core/types/constrained/subtype.py +0 -124
- relationalai/early_access/dsl/core/types/standard.py +0 -92
- relationalai/early_access/dsl/core/types/unconstrained.py +0 -50
- relationalai/early_access/dsl/core/types/variables.py +0 -203
- relationalai/early_access/dsl/ir/compiler.py +0 -318
- relationalai/early_access/dsl/ir/executor.py +0 -260
- relationalai/early_access/dsl/ontologies/constraints.py +0 -88
- relationalai/early_access/dsl/ontologies/export.py +0 -30
- relationalai/early_access/dsl/ontologies/models.py +0 -453
- relationalai/early_access/dsl/ontologies/python_printer.py +0 -303
- relationalai/early_access/dsl/ontologies/readings.py +0 -60
- relationalai/early_access/dsl/ontologies/relationships.py +0 -322
- relationalai/early_access/dsl/ontologies/roles.py +0 -87
- relationalai/early_access/dsl/ontologies/subtyping.py +0 -55
- relationalai/early_access/dsl/orm/constraints.py +0 -438
- relationalai/early_access/dsl/orm/measures/dimensions.py +0 -200
- relationalai/early_access/dsl/orm/measures/initializer.py +0 -16
- relationalai/early_access/dsl/orm/measures/measure_rules.py +0 -275
- relationalai/early_access/dsl/orm/measures/measures.py +0 -299
- relationalai/early_access/dsl/orm/measures/role_exprs.py +0 -268
- relationalai/early_access/dsl/orm/models.py +0 -256
- relationalai/early_access/dsl/orm/object_oriented_printer.py +0 -344
- relationalai/early_access/dsl/orm/printer.py +0 -469
- relationalai/early_access/dsl/orm/reasoners.py +0 -480
- relationalai/early_access/dsl/orm/relations.py +0 -19
- relationalai/early_access/dsl/orm/relationships.py +0 -251
- relationalai/early_access/dsl/orm/types.py +0 -42
- relationalai/early_access/dsl/orm/utils.py +0 -79
- relationalai/early_access/dsl/orm/verb.py +0 -204
- relationalai/early_access/dsl/physical_metadata/tables.py +0 -133
- relationalai/early_access/dsl/relations.py +0 -170
- relationalai/early_access/dsl/rulesets.py +0 -69
- relationalai/early_access/dsl/schemas/__init__.py +0 -450
- relationalai/early_access/dsl/schemas/builder.py +0 -48
- relationalai/early_access/dsl/schemas/comp_names.py +0 -51
- relationalai/early_access/dsl/schemas/components.py +0 -203
- relationalai/early_access/dsl/schemas/contexts.py +0 -156
- relationalai/early_access/dsl/schemas/exprs.py +0 -89
- relationalai/early_access/dsl/schemas/fragments.py +0 -464
- relationalai/early_access/dsl/serialization.py +0 -79
- relationalai/early_access/dsl/serialize/exporter.py +0 -163
- relationalai/early_access/dsl/snow/api.py +0 -104
- relationalai/early_access/dsl/snow/common.py +0 -76
- relationalai/early_access/dsl/state_mgmt/__init__.py +0 -129
- relationalai/early_access/dsl/state_mgmt/state_charts.py +0 -125
- relationalai/early_access/dsl/state_mgmt/transitions.py +0 -130
- relationalai/early_access/dsl/types/__init__.py +0 -40
- relationalai/early_access/dsl/types/concepts.py +0 -12
- relationalai/early_access/dsl/types/entities.py +0 -135
- relationalai/early_access/dsl/types/values.py +0 -17
- relationalai/early_access/dsl/utils.py +0 -102
- relationalai/early_access/graphs/__init__.py +0 -13
- relationalai/early_access/lqp/__init__.py +0 -12
- relationalai/early_access/lqp/compiler/__init__.py +0 -12
- relationalai/early_access/lqp/constructors/__init__.py +0 -18
- relationalai/early_access/lqp/executor/__init__.py +0 -12
- relationalai/early_access/lqp/ir/__init__.py +0 -12
- relationalai/early_access/lqp/passes/__init__.py +0 -12
- relationalai/early_access/lqp/pragmas/__init__.py +0 -12
- relationalai/early_access/lqp/primitives/__init__.py +0 -12
- relationalai/early_access/lqp/types/__init__.py +0 -12
- relationalai/early_access/lqp/utils/__init__.py +0 -12
- relationalai/early_access/lqp/validators/__init__.py +0 -12
- relationalai/early_access/metamodel/__init__.py +0 -58
- relationalai/early_access/metamodel/builtins/__init__.py +0 -12
- relationalai/early_access/metamodel/compiler/__init__.py +0 -12
- relationalai/early_access/metamodel/dependency/__init__.py +0 -12
- relationalai/early_access/metamodel/factory/__init__.py +0 -17
- relationalai/early_access/metamodel/helpers/__init__.py +0 -12
- relationalai/early_access/metamodel/ir/__init__.py +0 -14
- relationalai/early_access/metamodel/rewrite/__init__.py +0 -7
- relationalai/early_access/metamodel/typer/__init__.py +0 -3
- relationalai/early_access/metamodel/typer/typer/__init__.py +0 -12
- relationalai/early_access/metamodel/types/__init__.py +0 -15
- relationalai/early_access/metamodel/util/__init__.py +0 -15
- relationalai/early_access/metamodel/visitor/__init__.py +0 -12
- relationalai/early_access/rel/__init__.py +0 -12
- relationalai/early_access/rel/executor/__init__.py +0 -12
- relationalai/early_access/rel/rel_utils/__init__.py +0 -12
- relationalai/early_access/rel/rewrite/__init__.py +0 -7
- relationalai/early_access/solvers/__init__.py +0 -19
- relationalai/early_access/sql/__init__.py +0 -11
- relationalai/early_access/sql/executor/__init__.py +0 -3
- relationalai/early_access/sql/rewrite/__init__.py +0 -3
- relationalai/early_access/tests/logging/__init__.py +0 -12
- relationalai/early_access/tests/test_snapshot_base/__init__.py +0 -12
- relationalai/early_access/tests/utils/__init__.py +0 -12
- relationalai/environments/__init__.py +0 -35
- relationalai/environments/base.py +0 -381
- relationalai/environments/colab.py +0 -14
- relationalai/environments/generic.py +0 -71
- relationalai/environments/ipython.py +0 -68
- relationalai/environments/jupyter.py +0 -9
- relationalai/environments/snowbook.py +0 -169
- relationalai/errors.py +0 -2455
- relationalai/experimental/SF.py +0 -38
- relationalai/experimental/inspect.py +0 -47
- relationalai/experimental/pathfinder/__init__.py +0 -158
- relationalai/experimental/pathfinder/api.py +0 -160
- relationalai/experimental/pathfinder/automaton.py +0 -584
- relationalai/experimental/pathfinder/bridge.py +0 -226
- relationalai/experimental/pathfinder/compiler.py +0 -416
- relationalai/experimental/pathfinder/datalog.py +0 -214
- relationalai/experimental/pathfinder/diagnostics.py +0 -56
- relationalai/experimental/pathfinder/filter.py +0 -236
- relationalai/experimental/pathfinder/glushkov.py +0 -439
- relationalai/experimental/pathfinder/options.py +0 -265
- relationalai/experimental/pathfinder/pathfinder-v0.7.0.rel +0 -1951
- relationalai/experimental/pathfinder/rpq.py +0 -344
- relationalai/experimental/pathfinder/transition.py +0 -200
- relationalai/experimental/pathfinder/utils.py +0 -26
- relationalai/experimental/paths/README.md +0 -107
- relationalai/experimental/paths/api.py +0 -143
- relationalai/experimental/paths/benchmarks/grid_graph.py +0 -37
- relationalai/experimental/paths/code_organization.md +0 -2
- relationalai/experimental/paths/examples/Movies.ipynb +0 -16328
- relationalai/experimental/paths/examples/basic_example.py +0 -40
- relationalai/experimental/paths/examples/minimal_engine_warmup.py +0 -3
- relationalai/experimental/paths/examples/movie_example.py +0 -77
- relationalai/experimental/paths/examples/movies_data/actedin.csv +0 -193
- relationalai/experimental/paths/examples/movies_data/directed.csv +0 -45
- relationalai/experimental/paths/examples/movies_data/follows.csv +0 -7
- relationalai/experimental/paths/examples/movies_data/movies.csv +0 -39
- relationalai/experimental/paths/examples/movies_data/person.csv +0 -134
- relationalai/experimental/paths/examples/movies_data/produced.csv +0 -16
- relationalai/experimental/paths/examples/movies_data/ratings.csv +0 -10
- relationalai/experimental/paths/examples/movies_data/wrote.csv +0 -11
- relationalai/experimental/paths/examples/paths_benchmark.py +0 -115
- relationalai/experimental/paths/examples/paths_example.py +0 -116
- relationalai/experimental/paths/examples/pattern_to_automaton.py +0 -28
- relationalai/experimental/paths/find_paths_via_automaton.py +0 -85
- relationalai/experimental/paths/graph.py +0 -185
- relationalai/experimental/paths/path_algorithms/find_paths.py +0 -280
- relationalai/experimental/paths/path_algorithms/one_sided_ball_repetition.py +0 -26
- relationalai/experimental/paths/path_algorithms/one_sided_ball_upto.py +0 -111
- relationalai/experimental/paths/path_algorithms/single.py +0 -59
- relationalai/experimental/paths/path_algorithms/two_sided_balls_repetition.py +0 -39
- relationalai/experimental/paths/path_algorithms/two_sided_balls_upto.py +0 -103
- relationalai/experimental/paths/path_algorithms/usp-old.py +0 -130
- relationalai/experimental/paths/path_algorithms/usp-tuple.py +0 -183
- relationalai/experimental/paths/path_algorithms/usp.py +0 -150
- relationalai/experimental/paths/product_graph.py +0 -93
- relationalai/experimental/paths/rpq/automaton.py +0 -584
- relationalai/experimental/paths/rpq/diagnostics.py +0 -56
- relationalai/experimental/paths/rpq/rpq.py +0 -378
- relationalai/experimental/paths/tests/tests_limit_sp_max_length.py +0 -90
- relationalai/experimental/paths/tests/tests_limit_sp_multiple.py +0 -119
- relationalai/experimental/paths/tests/tests_limit_sp_single.py +0 -104
- relationalai/experimental/paths/tests/tests_limit_walks_multiple.py +0 -113
- relationalai/experimental/paths/tests/tests_limit_walks_single.py +0 -149
- relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_multiple.py +0 -70
- relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_single.py +0 -64
- relationalai/experimental/paths/tests/tests_one_sided_ball_upto_multiple.py +0 -115
- relationalai/experimental/paths/tests/tests_one_sided_ball_upto_single.py +0 -75
- relationalai/experimental/paths/tests/tests_single_paths.py +0 -152
- relationalai/experimental/paths/tests/tests_single_walks.py +0 -208
- relationalai/experimental/paths/tests/tests_single_walks_undirected.py +0 -297
- relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_multiple.py +0 -107
- relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_single.py +0 -76
- relationalai/experimental/paths/tests/tests_two_sided_balls_upto_multiple.py +0 -76
- relationalai/experimental/paths/tests/tests_two_sided_balls_upto_single.py +0 -110
- relationalai/experimental/paths/tests/tests_usp_nsp_multiple.py +0 -229
- relationalai/experimental/paths/tests/tests_usp_nsp_single.py +0 -108
- relationalai/experimental/paths/tree_agg.py +0 -168
- relationalai/experimental/paths/utilities/iterators.py +0 -27
- relationalai/experimental/paths/utilities/prefix_sum.py +0 -91
- relationalai/experimental/solvers.py +0 -1087
- relationalai/loaders/csv.py +0 -195
- relationalai/loaders/loader.py +0 -177
- relationalai/loaders/types.py +0 -23
- relationalai/rel_emitter.py +0 -373
- relationalai/rel_utils.py +0 -185
- relationalai/semantics/designs/query_builder/identify_by.md +0 -106
- relationalai/semantics/devtools/benchmark_lqp.py +0 -536
- relationalai/semantics/devtools/compilation_manager.py +0 -294
- relationalai/semantics/devtools/extract_lqp.py +0 -110
- relationalai/semantics/internal/internal.py +0 -3785
- relationalai/semantics/internal/snowflake.py +0 -324
- relationalai/semantics/lqp/README.md +0 -34
- relationalai/semantics/lqp/builtins.py +0 -16
- relationalai/semantics/lqp/compiler.py +0 -22
- relationalai/semantics/lqp/constructors.py +0 -68
- relationalai/semantics/lqp/executor.py +0 -469
- relationalai/semantics/lqp/intrinsics.py +0 -24
- relationalai/semantics/lqp/model2lqp.py +0 -839
- relationalai/semantics/lqp/passes.py +0 -680
- relationalai/semantics/lqp/primitives.py +0 -252
- relationalai/semantics/lqp/result_helpers.py +0 -202
- relationalai/semantics/lqp/rewrite/annotate_constraints.py +0 -57
- relationalai/semantics/lqp/rewrite/cdc.py +0 -216
- relationalai/semantics/lqp/rewrite/extract_common.py +0 -338
- relationalai/semantics/lqp/rewrite/extract_keys.py +0 -449
- relationalai/semantics/lqp/rewrite/function_annotations.py +0 -114
- relationalai/semantics/lqp/rewrite/functional_dependencies.py +0 -314
- relationalai/semantics/lqp/rewrite/quantify_vars.py +0 -296
- relationalai/semantics/lqp/rewrite/splinter.py +0 -76
- relationalai/semantics/lqp/types.py +0 -101
- relationalai/semantics/lqp/utils.py +0 -160
- relationalai/semantics/lqp/validators.py +0 -57
- relationalai/semantics/metamodel/compiler.py +0 -133
- relationalai/semantics/metamodel/dependency.py +0 -862
- relationalai/semantics/metamodel/executor.py +0 -61
- relationalai/semantics/metamodel/factory.py +0 -287
- relationalai/semantics/metamodel/helpers.py +0 -361
- relationalai/semantics/metamodel/rewrite/discharge_constraints.py +0 -39
- relationalai/semantics/metamodel/rewrite/dnf_union_splitter.py +0 -210
- relationalai/semantics/metamodel/rewrite/extract_nested_logicals.py +0 -78
- relationalai/semantics/metamodel/rewrite/flatten.py +0 -549
- relationalai/semantics/metamodel/rewrite/format_outputs.py +0 -165
- relationalai/semantics/metamodel/typer/checker.py +0 -353
- relationalai/semantics/metamodel/typer/typer.py +0 -1395
- relationalai/semantics/reasoners/__init__.py +0 -10
- relationalai/semantics/reasoners/graph/README.md +0 -620
- relationalai/semantics/reasoners/graph/__init__.py +0 -37
- relationalai/semantics/reasoners/graph/core.py +0 -9020
- relationalai/semantics/reasoners/graph/design/beyond_demand_transform.md +0 -797
- relationalai/semantics/reasoners/graph/tests/README.md +0 -21
- relationalai/semantics/reasoners/optimization/__init__.py +0 -68
- relationalai/semantics/reasoners/optimization/common.py +0 -88
- relationalai/semantics/reasoners/optimization/solvers_dev.py +0 -568
- relationalai/semantics/reasoners/optimization/solvers_pb.py +0 -1163
- relationalai/semantics/rel/builtins.py +0 -40
- relationalai/semantics/rel/compiler.py +0 -989
- relationalai/semantics/rel/executor.py +0 -359
- relationalai/semantics/rel/rel.py +0 -482
- relationalai/semantics/rel/rel_utils.py +0 -276
- relationalai/semantics/snowflake/__init__.py +0 -3
- relationalai/semantics/sql/compiler.py +0 -2503
- relationalai/semantics/sql/executor/duck_db.py +0 -52
- relationalai/semantics/sql/executor/result_helpers.py +0 -64
- relationalai/semantics/sql/executor/snowflake.py +0 -145
- relationalai/semantics/sql/rewrite/denormalize.py +0 -222
- relationalai/semantics/sql/rewrite/double_negation.py +0 -49
- relationalai/semantics/sql/rewrite/recursive_union.py +0 -127
- relationalai/semantics/sql/rewrite/sort_output_query.py +0 -246
- relationalai/semantics/sql/sql.py +0 -504
- relationalai/semantics/std/pragmas.py +0 -11
- relationalai/semantics/std/std.py +0 -14
- relationalai/semantics/tests/test_snapshot_abstract.py +0 -143
- relationalai/semantics/tests/test_snapshot_base.py +0 -9
- relationalai/semantics/tests/utils.py +0 -46
- relationalai/std/__init__.py +0 -70
- relationalai/tools/cli.py +0 -1940
- relationalai/tools/cli_controls.py +0 -1826
- relationalai/tools/cli_helpers.py +0 -390
- relationalai/tools/debugger_client.py +0 -109
- relationalai/tools/debugger_server.py +0 -302
- relationalai/tools/dev.py +0 -685
- relationalai/tools/notes +0 -7
- relationalai/tools/qb_debugger.py +0 -425
- relationalai/util/clean_up_databases.py +0 -95
- relationalai/util/list_databases.py +0 -9
- relationalai/util/otel_configuration.py +0 -25
- relationalai/util/otel_handler.py +0 -484
- relationalai/util/snowflake_handler.py +0 -88
- relationalai/util/span_format_test.py +0 -43
- relationalai/util/span_tracker.py +0 -207
- relationalai/util/spans_file_handler.py +0 -72
- relationalai/util/tracing_handler.py +0 -34
- relationalai-0.12.13.dist-info/METADATA +0 -74
- relationalai-0.12.13.dist-info/RECORD +0 -449
- relationalai-0.12.13.dist-info/WHEEL +0 -4
- relationalai-0.12.13.dist-info/entry_points.txt +0 -3
- relationalai-0.12.13.dist-info/licenses/LICENSE +0 -202
- relationalai_test_util/__init__.py +0 -4
- relationalai_test_util/fixtures.py +0 -228
- relationalai_test_util/snapshot.py +0 -252
- relationalai_test_util/traceback.py +0 -118
- /relationalai/{analysis → semantics/frontend}/__init__.py +0 -0
- /relationalai/{auth/__init__.py → semantics/metamodel/metamodel_compiler.py} +0 -0
- /relationalai/{early_access → shims}/__init__.py +0 -0
- {relationalai/early_access/dsl/adapters → v0/relationalai/analysis}/__init__.py +0 -0
- {relationalai → v0/relationalai}/analysis/mechanistic.py +0 -0
- {relationalai → v0/relationalai}/analysis/whynot.py +0 -0
- {relationalai/early_access/dsl/adapters/orm → v0/relationalai/auth}/__init__.py +0 -0
- {relationalai → v0/relationalai}/auth/jwt_generator.py +0 -0
- {relationalai → v0/relationalai}/auth/oauth_callback_server.py +0 -0
- {relationalai → v0/relationalai}/auth/token_handler.py +0 -0
- {relationalai → v0/relationalai}/auth/util.py +0 -0
- {relationalai → v0/relationalai}/clients/__init__.py +0 -0
- {relationalai → v0/relationalai}/clients/cache_store.py +0 -0
- {relationalai → v0/relationalai}/compiler.py +0 -0
- {relationalai → v0/relationalai}/dependencies.py +0 -0
- {relationalai → v0/relationalai}/docutils.py +0 -0
- {relationalai/early_access/dsl/adapters/owl → v0/relationalai/early_access}/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/__init__.py +0 -0
- {relationalai/early_access/dsl/bindings → v0/relationalai/early_access/dsl/adapters}/__init__.py +0 -0
- {relationalai/early_access/dsl/bindings/legacy → v0/relationalai/early_access/dsl/adapters/orm}/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/adapters/orm/model.py +0 -0
- {relationalai/early_access/dsl/codegen → v0/relationalai/early_access/dsl/adapters/owl}/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/adapters/owl/model.py +0 -0
- {relationalai/early_access/dsl/core/temporal → v0/relationalai/early_access/dsl/bindings}/__init__.py +0 -0
- {relationalai/early_access/dsl/ir → v0/relationalai/early_access/dsl/bindings/legacy}/__init__.py +0 -0
- {relationalai/early_access/dsl/ontologies → v0/relationalai/early_access/dsl/codegen}/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/constants.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/core/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/core/constraints/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/core/constraints/predicate/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/core/stack.py +0 -0
- {relationalai/early_access/dsl/orm → v0/relationalai/early_access/dsl/core/temporal}/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/core/utils.py +0 -0
- {relationalai/early_access/dsl/orm/measures → v0/relationalai/early_access/dsl/ir}/__init__.py +0 -0
- {relationalai/early_access/dsl/physical_metadata → v0/relationalai/early_access/dsl/ontologies}/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/ontologies/raw_source.py +0 -0
- {relationalai/early_access/dsl/serialize → v0/relationalai/early_access/dsl/orm}/__init__.py +0 -0
- {relationalai/early_access/dsl/snow → v0/relationalai/early_access/dsl/orm/measures}/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/orm/reasoner_errors.py +0 -0
- {relationalai/loaders → v0/relationalai/early_access/dsl/physical_metadata}/__init__.py +0 -0
- {relationalai/semantics/tests → v0/relationalai/early_access/dsl/serialize}/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/serialize/binding_model.py +0 -0
- {relationalai → v0/relationalai}/early_access/dsl/serialize/model.py +0 -0
- {relationalai/tools → v0/relationalai/early_access/dsl/snow}/__init__.py +0 -0
- {relationalai → v0/relationalai}/early_access/tests/__init__.py +0 -0
- {relationalai → v0/relationalai}/environments/ci.py +0 -0
- {relationalai → v0/relationalai}/environments/hex.py +0 -0
- {relationalai → v0/relationalai}/environments/terminal.py +0 -0
- {relationalai → v0/relationalai}/experimental/__init__.py +0 -0
- {relationalai → v0/relationalai}/experimental/graphs.py +0 -0
- {relationalai → v0/relationalai}/experimental/paths/__init__.py +0 -0
- {relationalai → v0/relationalai}/experimental/paths/benchmarks/__init__.py +0 -0
- {relationalai → v0/relationalai}/experimental/paths/path_algorithms/__init__.py +0 -0
- {relationalai → v0/relationalai}/experimental/paths/rpq/__init__.py +0 -0
- {relationalai → v0/relationalai}/experimental/paths/rpq/filter.py +0 -0
- {relationalai → v0/relationalai}/experimental/paths/rpq/glushkov.py +0 -0
- {relationalai → v0/relationalai}/experimental/paths/rpq/transition.py +0 -0
- {relationalai → v0/relationalai}/experimental/paths/utilities/__init__.py +0 -0
- {relationalai → v0/relationalai}/experimental/paths/utilities/utilities.py +0 -0
- {relationalai → v0/relationalai}/metagen.py +0 -0
- {relationalai → v0/relationalai}/metamodel.py +0 -0
- {relationalai → v0/relationalai}/rel.py +0 -0
- {relationalai → v0/relationalai}/semantics/devtools/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/internal/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/internal/annotations.py +0 -0
- {relationalai → v0/relationalai}/semantics/lqp/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/lqp/ir.py +0 -0
- {relationalai → v0/relationalai}/semantics/lqp/pragmas.py +0 -0
- {relationalai → v0/relationalai}/semantics/lqp/rewrite/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/metamodel/dataflow.py +0 -0
- {relationalai → v0/relationalai}/semantics/metamodel/ir.py +0 -0
- {relationalai → v0/relationalai}/semantics/metamodel/rewrite/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/metamodel/typer/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/metamodel/types.py +0 -0
- {relationalai → v0/relationalai}/semantics/metamodel/util.py +0 -0
- {relationalai → v0/relationalai}/semantics/metamodel/visitor.py +0 -0
- {relationalai → v0/relationalai}/semantics/reasoners/experimental/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/rel/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/sql/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/sql/executor/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/sql/rewrite/__init__.py +0 -0
- {relationalai → v0/relationalai}/semantics/tests/logging.py +0 -0
- {relationalai → v0/relationalai}/std/aggregates.py +0 -0
- {relationalai → v0/relationalai}/std/dates.py +0 -0
- {relationalai → v0/relationalai}/std/graphs.py +0 -0
- {relationalai → v0/relationalai}/std/inspect.py +0 -0
- {relationalai → v0/relationalai}/std/math.py +0 -0
- {relationalai → v0/relationalai}/std/re.py +0 -0
- {relationalai → v0/relationalai}/std/strings.py +0 -0
- {relationalai → v0/relationalai}/tools/cleanup_snapshots.py +0 -0
- {relationalai → v0/relationalai}/tools/constants.py +0 -0
- {relationalai → v0/relationalai}/tools/query_utils.py +0 -0
- {relationalai → v0/relationalai}/tools/snapshot_viewer.py +0 -0
- {relationalai → v0/relationalai}/util/__init__.py +0 -0
- {relationalai → v0/relationalai}/util/constants.py +0 -0
- {relationalai → v0/relationalai}/util/graph.py +0 -0
- {relationalai → v0/relationalai}/util/timeout.py +0 -0
|
@@ -1,303 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
import typing
|
|
3
|
-
from collections import defaultdict
|
|
4
|
-
from typing import TypeVar
|
|
5
|
-
|
|
6
|
-
from relationalai.early_access.dsl import Model, ExternalRelation, ValueType, ValueSubtype, Relationship
|
|
7
|
-
from relationalai.early_access.dsl.core.types import Type
|
|
8
|
-
from relationalai.early_access.dsl.core.types.standard import standard_value_types
|
|
9
|
-
from relationalai.early_access.dsl.ontologies.constraints import Mandatory, Unique, RoleValueConstraint
|
|
10
|
-
from relationalai.early_access.dsl.ontologies.roles import AbstractRole
|
|
11
|
-
from relationalai.early_access.dsl.ontologies.subtyping import SubtypeConstraint, SubtypeArrow, \
|
|
12
|
-
ExclusiveSubtypeConstraint, InclusiveSubtypeConstraint
|
|
13
|
-
from relationalai.early_access.dsl.types.concepts import Concept
|
|
14
|
-
from relationalai.semantics.metamodel.util import Printer, OrderedSet
|
|
15
|
-
|
|
16
|
-
# Define a generic type variable constrained to SubtypeConstraint or its subclasses
|
|
17
|
-
T = TypeVar("T", bound=SubtypeConstraint)
|
|
18
|
-
|
|
19
|
-
class PythonPrinter(Printer):
|
|
20
|
-
_mandatory_roles: 'OrderedSet[AbstractRole]'
|
|
21
|
-
_single_unique_roles: 'OrderedSet[AbstractRole]'
|
|
22
|
-
_composite_preferred_identifiers: 'OrderedSet[Unique]'
|
|
23
|
-
_internal_preferred_identifier_roles: 'OrderedSet[AbstractRole]'
|
|
24
|
-
_relationship_uniqueness_constraints: 'dict[Relationship, OrderedSet[Unique]]'
|
|
25
|
-
|
|
26
|
-
def __init__(self, io: typing.Optional[typing.IO[str]] = None):
|
|
27
|
-
# Set the base class field (frozen)
|
|
28
|
-
object.__setattr__(self, 'io', io)
|
|
29
|
-
|
|
30
|
-
# Set all mutable fields using object.__setattr__
|
|
31
|
-
object.__setattr__(self, '_mandatory_roles', OrderedSet())
|
|
32
|
-
object.__setattr__(self, '_single_unique_roles', OrderedSet())
|
|
33
|
-
object.__setattr__(self, '_composite_preferred_identifiers', OrderedSet())
|
|
34
|
-
object.__setattr__(self, '_internal_preferred_identifier_roles', OrderedSet())
|
|
35
|
-
object.__setattr__(self, '_relationship_uniqueness_constraints', defaultdict(OrderedSet))
|
|
36
|
-
|
|
37
|
-
def to_python_string(self, model: Model) -> None:
|
|
38
|
-
self._process_constraints(model)
|
|
39
|
-
|
|
40
|
-
self._print_nl("import relationalai.early_access.dsl as rai")
|
|
41
|
-
self._nl()
|
|
42
|
-
|
|
43
|
-
self._print_nl(f"model = rai.Model(name='{model.name}', is_primary={model.is_primary})")
|
|
44
|
-
self._print_nl("Concept = model.concept")
|
|
45
|
-
self._print_nl("ValueType = model.value_type")
|
|
46
|
-
self._print_nl("ValueSubType = model.value_sub_type")
|
|
47
|
-
self._print_nl("EntityType = model.entity_type")
|
|
48
|
-
self._print_nl("SubtypeArrow = model.subtype_arrow")
|
|
49
|
-
self._print_nl("Relationship = model.relationship")
|
|
50
|
-
self._print_nl("RefScheme = model.ref_scheme")
|
|
51
|
-
self._print_nl("ExternalRelation = model.external_relation")
|
|
52
|
-
self._print_nl("Query = model.query")
|
|
53
|
-
self._print_nl("RoleValueConstraint = model.role_value_constraint")
|
|
54
|
-
self._print_nl("CsvTable = model.csv_table")
|
|
55
|
-
|
|
56
|
-
self._nl()
|
|
57
|
-
self._handle_value_types(model)
|
|
58
|
-
|
|
59
|
-
self._nl()
|
|
60
|
-
self._handle_entity_types(model)
|
|
61
|
-
|
|
62
|
-
self._nl()
|
|
63
|
-
self._handle_relationships(model)
|
|
64
|
-
|
|
65
|
-
self._handle_composite_reference_schemas()
|
|
66
|
-
|
|
67
|
-
self._nl()
|
|
68
|
-
self._handle_subtype_arrows(model)
|
|
69
|
-
|
|
70
|
-
self._nl()
|
|
71
|
-
self._handle_external_relations(model)
|
|
72
|
-
|
|
73
|
-
self._nl()
|
|
74
|
-
self._handle_role_value_constraints(model)
|
|
75
|
-
|
|
76
|
-
def _handle_value_types(self, model: Model) -> None:
|
|
77
|
-
for vt in model.value_types():
|
|
78
|
-
name = vt.display()
|
|
79
|
-
if isinstance(vt, ValueType):
|
|
80
|
-
self._print_nl(f"{name} = ValueType('{name}', {', '.join(self._get_type(t) for t in vt._types)})")
|
|
81
|
-
elif isinstance(vt, ValueSubtype) and vt.parent():
|
|
82
|
-
self._print_nl(f"{name} = ValueSubType('{name}', {self._get_type(vt.parent())})")
|
|
83
|
-
elif isinstance(vt, Concept):
|
|
84
|
-
self._print_nl(f"{name} = ValueType('{name}', {', '.join(self._get_type(t) for t in vt._types)})")
|
|
85
|
-
|
|
86
|
-
def _handle_entity_types(self, model: Model) -> None:
|
|
87
|
-
for name, et in model.entity_types_map().items():
|
|
88
|
-
self._print_nl(f"{name} = EntityType('{name}'{self._print_if_not_empty('ref_mode', et.ref_schema_name())})")
|
|
89
|
-
|
|
90
|
-
def _handle_relationships(self, model: Model) -> None:
|
|
91
|
-
for rel in model.relationships():
|
|
92
|
-
if not rel.is_subtype():
|
|
93
|
-
self._print_nl("with Relationship() as rel:")
|
|
94
|
-
self._handle_relationship_roles(rel)
|
|
95
|
-
self._handle_relationship_relations(rel)
|
|
96
|
-
self._handle_relationship_uniqueness_constraints(rel, self._relationship_uniqueness_constraints.get(rel, OrderedSet()))
|
|
97
|
-
self._nl()
|
|
98
|
-
|
|
99
|
-
def _handle_relationship_roles(self, rel):
|
|
100
|
-
for i, r in enumerate(rel.roles()):
|
|
101
|
-
self._indent_print_nl(1, f"rel.role({self._get_type(r.player())}"
|
|
102
|
-
f"{self._print_if_not_empty('name', r.name())}"
|
|
103
|
-
f"{self._print_if_true('unique', r in self._single_unique_roles)}"
|
|
104
|
-
f"{self._print_if_true('mandatory', r in self._mandatory_roles)}"
|
|
105
|
-
f"{self._print_if_true('primary_key', r in self._internal_preferred_identifier_roles)})")
|
|
106
|
-
if r.prefix or r.postfix:
|
|
107
|
-
elements = list(filter(None, [
|
|
108
|
-
self._print_first_if_not_empty('prefix', r.prefix),
|
|
109
|
-
self._print_first_if_not_empty('postfix', r.postfix)
|
|
110
|
-
]))
|
|
111
|
-
self._indent_print_nl(1, f"rel.role_at({i}).verbalization({', '.join(elements)})")
|
|
112
|
-
|
|
113
|
-
def _handle_relationship_relations(self, rel):
|
|
114
|
-
for relation in rel.relations():
|
|
115
|
-
reading = relation.reading()
|
|
116
|
-
if reading:
|
|
117
|
-
|
|
118
|
-
num_roles = len(reading.roles)
|
|
119
|
-
num_texts = len(reading.text_frags)
|
|
120
|
-
|
|
121
|
-
elements = []
|
|
122
|
-
|
|
123
|
-
for i in range(num_texts):
|
|
124
|
-
role = reading.role_at(i)
|
|
125
|
-
elements.append(f"rel.role_at({rel.role_index(role)})") # Role first
|
|
126
|
-
elements.append(f"'{reading.text_frags[i]}'") # Then text
|
|
127
|
-
|
|
128
|
-
if num_roles > num_texts:
|
|
129
|
-
role = reading.role_at(num_texts)
|
|
130
|
-
elements.append(f"rel.role_at({rel.role_index(role)})") # Add last role if needed
|
|
131
|
-
|
|
132
|
-
self._indent_print_nl(1, f"rel.relation({', '.join(elements)}"
|
|
133
|
-
f"{self._print_if_not_empty('name', reading.rel_name)}"
|
|
134
|
-
f"{self._print_if_true('functional', relation.signature().functional())})")
|
|
135
|
-
|
|
136
|
-
def _handle_relationship_uniqueness_constraints(self, rel, constraints: OrderedSet[Unique]) -> None:
|
|
137
|
-
for c in constraints:
|
|
138
|
-
elements = [f"rel.role_at({rel.role_index(role)})" for role in c.roles()]
|
|
139
|
-
self._indent_print_nl(1, f"rel.unique({', '.join(elements)})")
|
|
140
|
-
|
|
141
|
-
def _handle_composite_reference_schemas(self) -> None:
|
|
142
|
-
for preferred_id in self._composite_preferred_identifiers:
|
|
143
|
-
|
|
144
|
-
elements = []
|
|
145
|
-
|
|
146
|
-
for role in preferred_id.roles():
|
|
147
|
-
relationship = role.part_of
|
|
148
|
-
|
|
149
|
-
relation = self._lookup_relation_by_second_role(relationship, role)
|
|
150
|
-
|
|
151
|
-
player_name = self._get_type(relation.first())
|
|
152
|
-
rel_name = relation.rel_name()
|
|
153
|
-
elements.append(f"{player_name}.{rel_name}")
|
|
154
|
-
|
|
155
|
-
self._print_nl(f"RefScheme({', '.join(elements)})")
|
|
156
|
-
|
|
157
|
-
def _handle_subtype_arrows(self, model:Model) -> None:
|
|
158
|
-
subtype_arrows_by_type = self._group_subtype_arrows_by_type(model)
|
|
159
|
-
inclusive_subtype_constraints_by_type = self._get_inclusive_subtype_constraints_by_type(model)
|
|
160
|
-
exclusive_subtype_constraints_by_type = self._get_exclusive_subtype_constraints_by_type(model)
|
|
161
|
-
|
|
162
|
-
for et in model.entity_types():
|
|
163
|
-
|
|
164
|
-
subtype_arrows = subtype_arrows_by_type.get(et, OrderedSet())
|
|
165
|
-
inclusive_subtype_constraints = inclusive_subtype_constraints_by_type.get(et, OrderedSet())
|
|
166
|
-
exclusive_subtype_constraints = exclusive_subtype_constraints_by_type.get(et, OrderedSet())
|
|
167
|
-
|
|
168
|
-
name = et.display()
|
|
169
|
-
|
|
170
|
-
# Common elements in both sets
|
|
171
|
-
common_constraints = [i for i in inclusive_subtype_constraints
|
|
172
|
-
for e in exclusive_subtype_constraints
|
|
173
|
-
if self.constraints_equal(i, e)]
|
|
174
|
-
if len(common_constraints) > 0:
|
|
175
|
-
for c in common_constraints:
|
|
176
|
-
self._print_nl(f"SubtypeArrow({name}, [{', '.join(self._get_type(a.start) for a in c.arrows)}], "
|
|
177
|
-
f"exclusive=True, inclusive=True)")
|
|
178
|
-
|
|
179
|
-
# Only in inclusive (but not in exclusive)
|
|
180
|
-
only_inclusive_constraints = [i for i in inclusive_subtype_constraints
|
|
181
|
-
if not any(self.constraints_equal(i, e) for e in exclusive_subtype_constraints)]
|
|
182
|
-
if len(only_inclusive_constraints) > 0:
|
|
183
|
-
for c in only_inclusive_constraints:
|
|
184
|
-
self._print_nl(f"SubtypeArrow({name}, [{', '.join(self._get_type(a.start) for a in c.arrows)}], "
|
|
185
|
-
f"inclusive=True)")
|
|
186
|
-
|
|
187
|
-
# Only in exclusive (but not in inclusive)
|
|
188
|
-
only_exclusive_constraints = [e for e in exclusive_subtype_constraints
|
|
189
|
-
if not any(self.constraints_equal(e, i) for i in inclusive_subtype_constraints)]
|
|
190
|
-
if len(only_exclusive_constraints) > 0:
|
|
191
|
-
for c in only_exclusive_constraints:
|
|
192
|
-
self._print_nl(f"SubtypeArrow({name}, [{', '.join(self._get_type(a.start) for a in c.arrows)}], "
|
|
193
|
-
f"exclusive=True)")
|
|
194
|
-
|
|
195
|
-
# Get all arrows from both inclusive and exclusive constraints
|
|
196
|
-
all_arrows_in_constraints = OrderedSet.from_iterable(a for c in inclusive_subtype_constraints for a in c.arrows) | \
|
|
197
|
-
OrderedSet.from_iterable(a for c in exclusive_subtype_constraints for a in c.arrows)
|
|
198
|
-
|
|
199
|
-
# Subtract the arrows in constraints from subtype_arrows
|
|
200
|
-
remaining_subtype_arrows = subtype_arrows - all_arrows_in_constraints
|
|
201
|
-
if len(remaining_subtype_arrows) > 0:
|
|
202
|
-
self._print_nl(f"SubtypeArrow({name}, [{', '.join(self._get_type(a.start) for a in remaining_subtype_arrows)}])")
|
|
203
|
-
|
|
204
|
-
def _handle_external_relations(self, model: Model) -> None:
|
|
205
|
-
for relation in self._get_external_relations(model):
|
|
206
|
-
name = relation.rel_name()
|
|
207
|
-
type_args = ', '.join(self._get_type(t) for t in relation.signature().types())
|
|
208
|
-
|
|
209
|
-
if name == "output":
|
|
210
|
-
self._print_nl(f"Query({type_args})")
|
|
211
|
-
else:
|
|
212
|
-
self._print_nl(f"ExternalRelation('{name}', {type_args})")
|
|
213
|
-
|
|
214
|
-
def _handle_role_value_constraints(self, model: Model) -> None:
|
|
215
|
-
for c in self._get_role_value_constraints(model):
|
|
216
|
-
role = c.role()
|
|
217
|
-
relationship = role.part_of
|
|
218
|
-
|
|
219
|
-
relation = self._lookup_relation_by_second_role(relationship, role)
|
|
220
|
-
|
|
221
|
-
player_name = self._get_type(relation.first())
|
|
222
|
-
rel_name = relation.rel_name()
|
|
223
|
-
|
|
224
|
-
self._print_nl(f"RoleValueConstraint({player_name}.{rel_name}, {json.dumps(c.values())})")
|
|
225
|
-
|
|
226
|
-
def _process_constraints(self, model: Model) -> None:
|
|
227
|
-
for c in model.constraints():
|
|
228
|
-
if isinstance(c, Mandatory):
|
|
229
|
-
self._mandatory_roles.add(c.role)
|
|
230
|
-
elif isinstance(c, Unique):
|
|
231
|
-
if c.is_preferred_identifier:
|
|
232
|
-
if len(c.roles()) == 1:
|
|
233
|
-
self._internal_preferred_identifier_roles.add(c.roles()[0])
|
|
234
|
-
else:
|
|
235
|
-
self._composite_preferred_identifiers.add(c)
|
|
236
|
-
elif len(c.roles()) == 1:
|
|
237
|
-
self._single_unique_roles.add(c.roles()[0])
|
|
238
|
-
else:
|
|
239
|
-
self._relationship_uniqueness_constraints[c.roles()[0].part_of].add(c)
|
|
240
|
-
|
|
241
|
-
@staticmethod
|
|
242
|
-
def _group_subtype_arrows_by_type(model: Model) -> dict[Type, OrderedSet[SubtypeArrow]]:
|
|
243
|
-
subtype_arrows_by_type = defaultdict(OrderedSet)
|
|
244
|
-
for a in model.subtype_arrows():
|
|
245
|
-
subtype_arrows_by_type[a.end].add(a)
|
|
246
|
-
return dict(subtype_arrows_by_type)
|
|
247
|
-
|
|
248
|
-
@staticmethod
|
|
249
|
-
def _get_subtype_constraints_by_type(model: Model, constraint_type: typing.Type[T]) -> dict[Type, OrderedSet[SubtypeConstraint]]:
|
|
250
|
-
constraints_by_type: dict[Type, OrderedSet[SubtypeConstraint]] = defaultdict(OrderedSet)
|
|
251
|
-
|
|
252
|
-
for c in model.subtype_constraints():
|
|
253
|
-
if isinstance(c, constraint_type):
|
|
254
|
-
for a in c.arrows:
|
|
255
|
-
constraints_by_type[a.end].add(c)
|
|
256
|
-
|
|
257
|
-
return dict(constraints_by_type)
|
|
258
|
-
|
|
259
|
-
def _get_exclusive_subtype_constraints_by_type(self, model: Model) -> dict[Type, OrderedSet[SubtypeConstraint]]:
|
|
260
|
-
return self._get_subtype_constraints_by_type(model, ExclusiveSubtypeConstraint)
|
|
261
|
-
|
|
262
|
-
def _get_inclusive_subtype_constraints_by_type(self, model: Model) -> dict[Type, OrderedSet[SubtypeConstraint]]:
|
|
263
|
-
return self._get_subtype_constraints_by_type(model, InclusiveSubtypeConstraint)
|
|
264
|
-
|
|
265
|
-
@staticmethod
|
|
266
|
-
def _get_role_value_constraints(model: Model) -> OrderedSet[RoleValueConstraint]:
|
|
267
|
-
return OrderedSet.from_iterable(c for c in model.constraints() if isinstance(c, RoleValueConstraint))
|
|
268
|
-
|
|
269
|
-
@staticmethod
|
|
270
|
-
def _get_external_relations(model: Model) -> OrderedSet[ExternalRelation]:
|
|
271
|
-
return OrderedSet.from_iterable(r for r in model.relations() if isinstance(r, ExternalRelation))
|
|
272
|
-
|
|
273
|
-
@staticmethod
|
|
274
|
-
def _lookup_relation_by_second_role(relationship, role):
|
|
275
|
-
# Find the matching relation where the 2nd role is `role`
|
|
276
|
-
relation = next(
|
|
277
|
-
(rel for rel in relationship.relations() if rel.reading().roles[1] == role),
|
|
278
|
-
None
|
|
279
|
-
)
|
|
280
|
-
if relation is None:
|
|
281
|
-
raise Exception(f"Could not find matching relation for role player {role.player().name()} "
|
|
282
|
-
f"in relationship {relationship._name()}")
|
|
283
|
-
return relation
|
|
284
|
-
|
|
285
|
-
@staticmethod
|
|
286
|
-
def constraints_equal(a: SubtypeConstraint, b: SubtypeConstraint) -> bool:
|
|
287
|
-
return frozenset(a.arrows) == frozenset(b.arrows)
|
|
288
|
-
|
|
289
|
-
@staticmethod
|
|
290
|
-
def _get_type(t: Type) -> str:
|
|
291
|
-
return f"rai.{t.display()}" if t.display() in standard_value_types else t.display()
|
|
292
|
-
|
|
293
|
-
@staticmethod
|
|
294
|
-
def _print_if_not_empty(label: str, value: str) -> str:
|
|
295
|
-
return f", {label}='{value}'" if value else ""
|
|
296
|
-
|
|
297
|
-
@staticmethod
|
|
298
|
-
def _print_first_if_not_empty(label: str, value: str) -> str:
|
|
299
|
-
return f"{label}='{value}'" if value else ""
|
|
300
|
-
|
|
301
|
-
@staticmethod
|
|
302
|
-
def _print_if_true(label: str, value: bool) -> str:
|
|
303
|
-
return f", {label}=True" if value else ""
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
from typing import List, Optional
|
|
2
|
-
|
|
3
|
-
from relationalai.early_access.dsl.core.types import Type
|
|
4
|
-
from relationalai.early_access.dsl.core.utils import generate_stable_uuid
|
|
5
|
-
from relationalai.early_access.dsl.ontologies.roles import AbstractRole
|
|
6
|
-
from relationalai.early_access.dsl.utils import build_relation_name, build_relationship_name
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class Reading:
|
|
10
|
-
|
|
11
|
-
# We initialize a Reading with a tuple that mixes text with Roles.
|
|
12
|
-
#
|
|
13
|
-
def __init__(self, *args, name: Optional[str] = None):
|
|
14
|
-
self.rel_name = name # Local name of Relation that materializes this Reading
|
|
15
|
-
self.roles = []
|
|
16
|
-
self.text_frags = []
|
|
17
|
-
for i in range(len(args)):
|
|
18
|
-
a = args[i]
|
|
19
|
-
if isinstance(a, str):
|
|
20
|
-
self.text_frags.append(a)
|
|
21
|
-
else:
|
|
22
|
-
if isinstance(a, AbstractRole):
|
|
23
|
-
self.roles.append(a)
|
|
24
|
-
else:
|
|
25
|
-
raise Exception(f"Unknown Reading component {a} -- should be either text or a Role")
|
|
26
|
-
|
|
27
|
-
def guid(self):
|
|
28
|
-
return generate_stable_uuid(self.verbalize())
|
|
29
|
-
|
|
30
|
-
def types(self) -> List[Type]:
|
|
31
|
-
return [role.player() for role in self.roles]
|
|
32
|
-
|
|
33
|
-
def template(self):
|
|
34
|
-
temp_frags = []
|
|
35
|
-
for i in range(len(self.roles)):
|
|
36
|
-
temp_frags.append('{' + f"{i}" + '}')
|
|
37
|
-
if i in range(len(self.text_frags)):
|
|
38
|
-
temp_frags.append(self.text_frags[i])
|
|
39
|
-
return " ".join(temp_frags)
|
|
40
|
-
|
|
41
|
-
def verbalize(self):
|
|
42
|
-
temp_frags = []
|
|
43
|
-
for i in range(len(self.roles)):
|
|
44
|
-
temp_frags.append(self.roles[i].verbalize())
|
|
45
|
-
if i in range(len(self.text_frags)):
|
|
46
|
-
temp_frags.append(self.text_frags[i])
|
|
47
|
-
return " ".join(temp_frags)
|
|
48
|
-
|
|
49
|
-
def to_rel_name(self):
|
|
50
|
-
if self.rel_name:
|
|
51
|
-
return self.rel_name
|
|
52
|
-
return build_relation_name(self.roles, self.text_frags)
|
|
53
|
-
|
|
54
|
-
def to_relationship_name(self):
|
|
55
|
-
return build_relationship_name(self.roles, self.text_frags)
|
|
56
|
-
|
|
57
|
-
def role_at(self, idx):
|
|
58
|
-
if idx < 0 or idx >= len(self.roles):
|
|
59
|
-
raise Exception(f'Role index {idx} out of bounds for Reading {self.to_rel_name()}')
|
|
60
|
-
return self.roles[idx]
|
|
@@ -1,322 +0,0 @@
|
|
|
1
|
-
from collections import OrderedDict, defaultdict
|
|
2
|
-
from typing import Optional
|
|
3
|
-
|
|
4
|
-
from relationalai.early_access.dsl import Relation
|
|
5
|
-
from relationalai.early_access.dsl.core.exprs import contextStack
|
|
6
|
-
from relationalai.early_access.dsl.core.namespaces import Namespace
|
|
7
|
-
from relationalai.early_access.dsl.core.types import Type
|
|
8
|
-
from relationalai.early_access.dsl.core.utils import generate_stable_uuid, camel_to_snake
|
|
9
|
-
from relationalai.early_access.dsl.ontologies.constraints import Unique, Mandatory
|
|
10
|
-
from relationalai.early_access.dsl.ontologies.readings import Reading
|
|
11
|
-
from relationalai.early_access.dsl.ontologies.roles import Role
|
|
12
|
-
from relationalai.early_access.dsl.types import AbstractConcept
|
|
13
|
-
from relationalai.early_access.dsl.utils import extract_relation_text_with_signature
|
|
14
|
-
from relationalai.semantics.metamodel.util import OrderedSet
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
class Relationship:
|
|
18
|
-
|
|
19
|
-
def __init__(self, model, *args, relation_name: Optional[str] = None):
|
|
20
|
-
self._model = model
|
|
21
|
-
self._is_subtype = False
|
|
22
|
-
self._is_identifier = False
|
|
23
|
-
self._readings_map = OrderedDict()
|
|
24
|
-
self._rolemap = OrderedDict()
|
|
25
|
-
self._constraints = []
|
|
26
|
-
self._relations = OrderedSet()
|
|
27
|
-
if not contextStack.empty():
|
|
28
|
-
tp = contextStack.root_context()
|
|
29
|
-
if isinstance(tp, Namespace):
|
|
30
|
-
self._namespace = tp
|
|
31
|
-
else:
|
|
32
|
-
self._namespace = Namespace.top
|
|
33
|
-
else:
|
|
34
|
-
self._namespace = Namespace.top
|
|
35
|
-
if len(args) != 0:
|
|
36
|
-
reading = self._reading_from_args(*args, relation_name=relation_name)
|
|
37
|
-
for role in reading.roles:
|
|
38
|
-
self._add_role(role)
|
|
39
|
-
self._add_relation(reading)
|
|
40
|
-
|
|
41
|
-
def __call__(self, *args, **kwargs):
|
|
42
|
-
return self.relation(*args, **kwargs)
|
|
43
|
-
|
|
44
|
-
def __enter__(self):
|
|
45
|
-
contextStack.push(self)
|
|
46
|
-
return self
|
|
47
|
-
|
|
48
|
-
def __exit__(self, exc_type, exc_value, traceback):
|
|
49
|
-
contextStack.pop()
|
|
50
|
-
pass
|
|
51
|
-
|
|
52
|
-
def __getitem__(self, key):
|
|
53
|
-
return self._readings_map[key]
|
|
54
|
-
|
|
55
|
-
def __setitem__(self, key, value):
|
|
56
|
-
if key in self._readings_map:
|
|
57
|
-
raise Exception(
|
|
58
|
-
f'Cannot provide multiple Readings for the relation name {key} in Relationship {self._name()}')
|
|
59
|
-
else:
|
|
60
|
-
if not isinstance(value, Reading):
|
|
61
|
-
value = Reading(*value)
|
|
62
|
-
|
|
63
|
-
if value.rel_name is not None:
|
|
64
|
-
# [VAMI] TODO: check if we need this warning
|
|
65
|
-
# warn(f'Overriding rel_name of Reading "{value.verbalize()}" from "{value.rel_name}" to "{key}"')
|
|
66
|
-
pass
|
|
67
|
-
self._readings_map[key] = value
|
|
68
|
-
value.rel_name = key
|
|
69
|
-
return value
|
|
70
|
-
|
|
71
|
-
def __setattr__(self, key: str, value: Role) -> None:
|
|
72
|
-
if key.startswith('_') or key in self.__dict__:
|
|
73
|
-
super().__setattr__(key, value)
|
|
74
|
-
elif isinstance(value, Role):
|
|
75
|
-
value.part_of = self
|
|
76
|
-
self._add_role(value)
|
|
77
|
-
super().__setattr__(key, value)
|
|
78
|
-
else:
|
|
79
|
-
raise TypeError(f'Expected a Role instance for "{key}", got {type(value)}')
|
|
80
|
-
|
|
81
|
-
def __getattr__(self, key):
|
|
82
|
-
if key in self._rolemap:
|
|
83
|
-
return self._rolemap[key]
|
|
84
|
-
else:
|
|
85
|
-
raise AttributeError(f'Relationship {self._name()} has no Role named {key}')
|
|
86
|
-
|
|
87
|
-
def _reading_from_args(self, *args, relation_name: Optional[str] = None):
|
|
88
|
-
text_frags, sig = extract_relation_text_with_signature(*args)
|
|
89
|
-
grouped_sig = defaultdict(list)
|
|
90
|
-
for t in sig:
|
|
91
|
-
grouped_sig[t.display()].append(t)
|
|
92
|
-
reading_args = []
|
|
93
|
-
index_map = {}
|
|
94
|
-
# store indexes for roles player by the same Concept
|
|
95
|
-
for t_name in grouped_sig:
|
|
96
|
-
group_size = len(grouped_sig[t_name])
|
|
97
|
-
if group_size > 1:
|
|
98
|
-
index_map[t_name] = group_size
|
|
99
|
-
for idx, t in enumerate(sig):
|
|
100
|
-
reading_args.append(Role(t, self, idx, name=self._get_role_name(t, index_map)))
|
|
101
|
-
if idx < len(text_frags):
|
|
102
|
-
reading_args.append(text_frags[idx])
|
|
103
|
-
return Reading(*reading_args, name=relation_name)
|
|
104
|
-
|
|
105
|
-
def _get_role_name(self, t, index_map):
|
|
106
|
-
name = None
|
|
107
|
-
if t.display() in index_map:
|
|
108
|
-
idx = index_map.get(t.display())
|
|
109
|
-
index_map[t.display()] -= 1
|
|
110
|
-
name = f"{camel_to_snake(t.display())}{idx}"
|
|
111
|
-
return name
|
|
112
|
-
|
|
113
|
-
def _name(self):
|
|
114
|
-
return list(self._readings_map.values())[0].to_relationship_name()
|
|
115
|
-
|
|
116
|
-
def _set_subtype(self):
|
|
117
|
-
self._is_subtype = True
|
|
118
|
-
return self
|
|
119
|
-
|
|
120
|
-
def is_subtype(self):
|
|
121
|
-
return self._is_subtype
|
|
122
|
-
|
|
123
|
-
def _set_identifier(self):
|
|
124
|
-
self._is_identifier = True
|
|
125
|
-
return self
|
|
126
|
-
|
|
127
|
-
def is_identifier(self):
|
|
128
|
-
return self._is_identifier
|
|
129
|
-
|
|
130
|
-
def guid(self):
|
|
131
|
-
return generate_stable_uuid(self._name())
|
|
132
|
-
|
|
133
|
-
def role(self, concept, name: Optional[str] = None, unique: bool = False, primary_key: bool = False,
|
|
134
|
-
mandatory: bool = False) -> 'Relationship':
|
|
135
|
-
role = Role(concept, pos=self.arity(), name=name, rel=self)
|
|
136
|
-
self._add_role(role)
|
|
137
|
-
setattr(self, role.ref_name(), role)
|
|
138
|
-
|
|
139
|
-
# check constraints
|
|
140
|
-
if primary_key:
|
|
141
|
-
# takes care of implied mandatory and unique constraints
|
|
142
|
-
self.primary_key(role)
|
|
143
|
-
elif unique and not primary_key:
|
|
144
|
-
self.unique(role)
|
|
145
|
-
if mandatory:
|
|
146
|
-
self.mandatory(role)
|
|
147
|
-
return self
|
|
148
|
-
|
|
149
|
-
def role_at(self, idx):
|
|
150
|
-
if idx < 0 or idx >= self.arity():
|
|
151
|
-
raise Exception(f'Role index {idx} out of bounds for Relationship {self._name()}')
|
|
152
|
-
return list(self._rolemap.values())[idx]
|
|
153
|
-
|
|
154
|
-
def role_by_name(self, name: str):
|
|
155
|
-
if name not in self._rolemap:
|
|
156
|
-
raise AttributeError(f'Role `{name}` not found in Relationship {self._name()}, '
|
|
157
|
-
f'possible candidates are: {self._rolemap.keys()}')
|
|
158
|
-
return self._rolemap[name]
|
|
159
|
-
|
|
160
|
-
def role_index(self, role: Role):
|
|
161
|
-
for idx, r in enumerate(self._rolemap.values()):
|
|
162
|
-
if r == role:
|
|
163
|
-
return idx
|
|
164
|
-
raise Exception(f'Role `{role.ref_name()}` not found in Relationship {self._name()}')
|
|
165
|
-
|
|
166
|
-
def roles(self):
|
|
167
|
-
return list(self._rolemap.values())
|
|
168
|
-
|
|
169
|
-
def arity(self):
|
|
170
|
-
return len(self._rolemap)
|
|
171
|
-
|
|
172
|
-
def relation(self, *args, name: Optional[str] = None, functional: bool=False) -> 'Relationship':
|
|
173
|
-
return self._add_relation(Reading(*args, name=name), functional=functional)
|
|
174
|
-
|
|
175
|
-
def _add_role(self, rol):
|
|
176
|
-
self._rolemap[rol.ref_name()] = rol
|
|
177
|
-
return self
|
|
178
|
-
|
|
179
|
-
def _add_reading(self, rdg):
|
|
180
|
-
if not isinstance(rdg, Reading):
|
|
181
|
-
raise Exception(f'Tried to add non-Reading {rdg} as a reading of Relationship {self._name()}')
|
|
182
|
-
|
|
183
|
-
self[rdg.to_rel_name()] = rdg
|
|
184
|
-
|
|
185
|
-
def _add_relation(self, reading: Reading, functional: bool=False) -> 'Relationship':
|
|
186
|
-
self._add_reading(reading)
|
|
187
|
-
first_player = reading.roles[0].player()
|
|
188
|
-
namespace = Namespace(camel_to_snake(first_player.display()), self._namespace)
|
|
189
|
-
relation = self._model._add_relation(Relation(namespace, reading, self, functional))
|
|
190
|
-
self._relations.add(relation)
|
|
191
|
-
# do not add relations to standard types like String, Date, Integer etc.
|
|
192
|
-
if isinstance(first_player, AbstractConcept):
|
|
193
|
-
first_player._add_relation(relation)
|
|
194
|
-
# sync relationship and roles with the model once relationship have at least 1 reading
|
|
195
|
-
if len(self._readings_map) == 1:
|
|
196
|
-
self._model._add_relationship(self)
|
|
197
|
-
for c in self._constraints:
|
|
198
|
-
self._model.constraint(c)
|
|
199
|
-
return self
|
|
200
|
-
|
|
201
|
-
def build_relation_variable(self, args, kwargs):
|
|
202
|
-
return self.new_role(args, kwargs)
|
|
203
|
-
|
|
204
|
-
def build_scalar_variable(self, args, kwargs):
|
|
205
|
-
return self.new_role(args, kwargs)
|
|
206
|
-
|
|
207
|
-
def new_role(self, args, kwargs):
|
|
208
|
-
if len(args) == 0:
|
|
209
|
-
raise Exception(f'Unexpected error in Relationship {self._name()}')
|
|
210
|
-
|
|
211
|
-
if len(args) > 2:
|
|
212
|
-
raise Exception(
|
|
213
|
-
f'Cannot declare role of Relationship {self._name()} by supplying more than a player type and a UUID')
|
|
214
|
-
|
|
215
|
-
if len(kwargs) != 0:
|
|
216
|
-
raise Exception(
|
|
217
|
-
f'Cannot use keyword arguments when instantiating a type parameter for Relationship {self._name()}')
|
|
218
|
-
|
|
219
|
-
type = args[0]
|
|
220
|
-
|
|
221
|
-
pre_bound_text = kwargs['pre_bound_text'] if 'pre_bound_text' in kwargs else None
|
|
222
|
-
post_bound_text = kwargs['post_bound_text'] if 'post_bound_text' in kwargs else None
|
|
223
|
-
|
|
224
|
-
if not isinstance(type, Type):
|
|
225
|
-
raise Exception('Can only instantiate a Role with a Type as its player')
|
|
226
|
-
role = Role(type, self, self.arity()).verbalization(pre_bound_text, post_bound_text)
|
|
227
|
-
|
|
228
|
-
self._add_role(role)
|
|
229
|
-
return role
|
|
230
|
-
|
|
231
|
-
def readings(self):
|
|
232
|
-
return list(self._readings_map.values())
|
|
233
|
-
|
|
234
|
-
def relations(self):
|
|
235
|
-
return self._relations
|
|
236
|
-
|
|
237
|
-
# Constraints
|
|
238
|
-
|
|
239
|
-
def unique(self, *roles):
|
|
240
|
-
"""Add a uniqueness constraint on specified roles."""
|
|
241
|
-
self._add_constraint(Unique(*roles))
|
|
242
|
-
return self
|
|
243
|
-
|
|
244
|
-
def mandatory(self, *roles):
|
|
245
|
-
"""Add a mandatory constraint on specified roles."""
|
|
246
|
-
self._add_constraint(Mandatory(*roles))
|
|
247
|
-
return self
|
|
248
|
-
|
|
249
|
-
def primary_key(self, role):
|
|
250
|
-
"""Set the simple reference schema & uniqueness constraint."""
|
|
251
|
-
sibling = role.sibling()
|
|
252
|
-
if sibling is None:
|
|
253
|
-
raise ValueError(f"Cannot set primary key on '{role}': it has no sibling role.")
|
|
254
|
-
|
|
255
|
-
sibling_type = sibling.player()
|
|
256
|
-
sibling_domain = sibling_type.domain()
|
|
257
|
-
role_player = role.player()
|
|
258
|
-
|
|
259
|
-
if not sibling_domain:
|
|
260
|
-
sibling_domain.append(role_player)
|
|
261
|
-
elif sibling_domain[0] != role_player:
|
|
262
|
-
raise ValueError(
|
|
263
|
-
f"Cannot set primary key on '{role}': domain mismatch. "
|
|
264
|
-
f"Expected {sibling_domain[0]}, got {role_player}."
|
|
265
|
-
)
|
|
266
|
-
|
|
267
|
-
self._add_constraint(Unique(*[role], is_preferred_identifier=True))
|
|
268
|
-
self._add_constraint(Unique(*[sibling]))
|
|
269
|
-
self._add_constraint(Mandatory(sibling))
|
|
270
|
-
|
|
271
|
-
self._model._entity_to_identifier[sibling_type] = self
|
|
272
|
-
|
|
273
|
-
return self
|
|
274
|
-
|
|
275
|
-
def _add_constraint(self, con):
|
|
276
|
-
self._constraints.append(con)
|
|
277
|
-
if not self.is_empty():
|
|
278
|
-
self._model.constraint(con)
|
|
279
|
-
|
|
280
|
-
# pretty printing readings
|
|
281
|
-
def pprint(self):
|
|
282
|
-
return f'relationship {self._name()}[{", ".join([r.verbalize() for r in self.readings()])}]'
|
|
283
|
-
|
|
284
|
-
def is_empty(self):
|
|
285
|
-
return len(self.readings()) == 0
|
|
286
|
-
|
|
287
|
-
class Attribute(Relationship):
|
|
288
|
-
def __init__(
|
|
289
|
-
self,
|
|
290
|
-
model,
|
|
291
|
-
concept,
|
|
292
|
-
attr,
|
|
293
|
-
mandatory: bool = False,
|
|
294
|
-
primary_key: bool = False,
|
|
295
|
-
reading_text: Optional[str] = None,
|
|
296
|
-
reverse_reading_text: Optional[str] = None
|
|
297
|
-
):
|
|
298
|
-
if reading_text is None:
|
|
299
|
-
reading_text = 'has'
|
|
300
|
-
|
|
301
|
-
super().__init__(model, concept, reading_text, attr)
|
|
302
|
-
concept_role = self.role_at(0)
|
|
303
|
-
self.unique(concept_role)
|
|
304
|
-
if mandatory:
|
|
305
|
-
self.mandatory(concept_role)
|
|
306
|
-
|
|
307
|
-
attr_role = self.attr()
|
|
308
|
-
if primary_key:
|
|
309
|
-
self.primary_key(attr_role)
|
|
310
|
-
|
|
311
|
-
if reverse_reading_text is not None:
|
|
312
|
-
self.relation(attr_role, reverse_reading_text, concept_role)
|
|
313
|
-
|
|
314
|
-
def attr(self):
|
|
315
|
-
return self.role_at(1)
|
|
316
|
-
|
|
317
|
-
def _reading_to_relationship_name(reading: str) -> str:
|
|
318
|
-
"""
|
|
319
|
-
Takes a readable `reading` string and returns the middle part of the Relationship name.
|
|
320
|
-
|
|
321
|
-
This is done by removing spaces and converting the result to PascalCase."""
|
|
322
|
-
return ''.join(word.capitalize() for word in reading.split(' '))
|