relationalai 0.13.5__py3-none-any.whl → 1.0.0a1__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 -256
- 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/config/shims.py +1 -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 +1716 -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 -772
- 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 +1186 -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 +101 -46
- relationalai/shims/executor.py +161 -0
- relationalai/shims/helpers.py +126 -0
- relationalai/shims/hoister.py +221 -0
- relationalai/shims/mm2v0.py +1324 -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 -109
- 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-1.0.0a1.dist-info/METADATA +44 -0
- relationalai-1.0.0a1.dist-info/RECORD +489 -0
- relationalai-1.0.0a1.dist-info/WHEEL +5 -0
- relationalai-1.0.0a1.dist-info/entry_points.txt +3 -0
- relationalai-1.0.0a1.dist-info/top_level.txt +2 -0
- v0/relationalai/__init__.py +216 -0
- v0/relationalai/clients/__init__.py +5 -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/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/ir.py +124 -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/__init__.py +18 -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/ir.py +923 -0
- v0/relationalai/semantics/metamodel/rewrite/__init__.py +7 -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/metamodel/util.py +505 -0
- v0/relationalai/semantics/metamodel/visitor.py +944 -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/__init__.py +0 -18
- relationalai/clients/client.py +0 -946
- relationalai/clients/config.py +0 -673
- relationalai/clients/direct_access_client.py +0 -118
- relationalai/clients/exec_txn_poller.py +0 -153
- relationalai/clients/hash_util.py +0 -31
- relationalai/clients/local.py +0 -594
- relationalai/clients/profile_polling.py +0 -73
- relationalai/clients/resources/__init__.py +0 -8
- relationalai/clients/resources/azure/azure.py +0 -502
- relationalai/clients/resources/snowflake/__init__.py +0 -20
- relationalai/clients/resources/snowflake/cli_resources.py +0 -98
- relationalai/clients/resources/snowflake/direct_access_resources.py +0 -739
- relationalai/clients/resources/snowflake/engine_service.py +0 -381
- relationalai/clients/resources/snowflake/engine_state_handlers.py +0 -315
- relationalai/clients/resources/snowflake/error_handlers.py +0 -240
- relationalai/clients/resources/snowflake/export_procedure.py.jinja +0 -249
- relationalai/clients/resources/snowflake/resources_factory.py +0 -99
- relationalai/clients/resources/snowflake/snowflake.py +0 -3193
- relationalai/clients/resources/snowflake/use_index_poller.py +0 -1019
- relationalai/clients/resources/snowflake/use_index_resources.py +0 -188
- relationalai/clients/resources/snowflake/util.py +0 -387
- relationalai/clients/result_helpers.py +0 -420
- relationalai/clients/types.py +0 -118
- 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 -105
- 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 -2496
- 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 -1095
- 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 -535
- 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 -329
- relationalai/semantics/lqp/README.md +0 -34
- relationalai/semantics/lqp/algorithms.py +0 -173
- relationalai/semantics/lqp/builtins.py +0 -213
- relationalai/semantics/lqp/compiler.py +0 -22
- relationalai/semantics/lqp/constructors.py +0 -68
- relationalai/semantics/lqp/executor.py +0 -518
- relationalai/semantics/lqp/export_rewriter.py +0 -40
- relationalai/semantics/lqp/intrinsics.py +0 -24
- relationalai/semantics/lqp/ir.py +0 -150
- relationalai/semantics/lqp/model2lqp.py +0 -1056
- relationalai/semantics/lqp/passes.py +0 -38
- relationalai/semantics/lqp/primitives.py +0 -252
- relationalai/semantics/lqp/result_helpers.py +0 -266
- relationalai/semantics/lqp/rewrite/__init__.py +0 -32
- relationalai/semantics/lqp/rewrite/algorithm.py +0 -385
- relationalai/semantics/lqp/rewrite/annotate_constraints.py +0 -69
- relationalai/semantics/lqp/rewrite/cdc.py +0 -216
- relationalai/semantics/lqp/rewrite/constants_to_vars.py +0 -70
- relationalai/semantics/lqp/rewrite/deduplicate_vars.py +0 -104
- relationalai/semantics/lqp/rewrite/eliminate_data.py +0 -108
- relationalai/semantics/lqp/rewrite/extract_common.py +0 -340
- relationalai/semantics/lqp/rewrite/extract_keys.py +0 -577
- relationalai/semantics/lqp/rewrite/flatten_script.py +0 -301
- relationalai/semantics/lqp/rewrite/function_annotations.py +0 -114
- relationalai/semantics/lqp/rewrite/functional_dependencies.py +0 -348
- relationalai/semantics/lqp/rewrite/period_math.py +0 -77
- relationalai/semantics/lqp/rewrite/quantify_vars.py +0 -339
- relationalai/semantics/lqp/rewrite/splinter.py +0 -76
- relationalai/semantics/lqp/rewrite/unify_definitions.py +0 -323
- relationalai/semantics/lqp/types.py +0 -101
- relationalai/semantics/lqp/utils.py +0 -170
- relationalai/semantics/lqp/validators.py +0 -70
- relationalai/semantics/metamodel/compiler.py +0 -134
- relationalai/semantics/metamodel/dependency.py +0 -880
- relationalai/semantics/metamodel/executor.py +0 -78
- relationalai/semantics/metamodel/factory.py +0 -287
- relationalai/semantics/metamodel/helpers.py +0 -368
- relationalai/semantics/metamodel/ir.py +0 -924
- relationalai/semantics/metamodel/rewrite/__init__.py +0 -8
- relationalai/semantics/metamodel/rewrite/discharge_constraints.py +0 -39
- relationalai/semantics/metamodel/rewrite/dnf_union_splitter.py +0 -220
- relationalai/semantics/metamodel/rewrite/extract_nested_logicals.py +0 -78
- relationalai/semantics/metamodel/rewrite/flatten.py +0 -590
- relationalai/semantics/metamodel/rewrite/format_outputs.py +0 -256
- relationalai/semantics/metamodel/rewrite/handle_aggregations_and_ranks.py +0 -237
- relationalai/semantics/metamodel/typer/checker.py +0 -355
- relationalai/semantics/metamodel/typer/typer.py +0 -1396
- relationalai/semantics/metamodel/util.py +0 -506
- relationalai/semantics/metamodel/visitor.py +0 -945
- 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 -9019
- 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 -1407
- relationalai/semantics/rel/builtins.py +0 -40
- relationalai/semantics/rel/compiler.py +0 -994
- relationalai/semantics/rel/executor.py +0 -363
- 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 -149
- 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/lqp/algorithms.py +0 -345
- relationalai/semantics/tests/test_snapshot_abstract.py +0 -144
- 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 -2089
- relationalai/tools/cli_controls.py +0 -1975
- relationalai/tools/cli_helpers.py +0 -802
- 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/tools/txn_progress.py +0 -188
- relationalai/util/clean_up_databases.py +0 -95
- relationalai/util/list_databases.py +0 -9
- relationalai/util/otel_configuration.py +0 -26
- 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.13.5.dist-info/METADATA +0 -74
- relationalai-0.13.5.dist-info/RECORD +0 -473
- relationalai-0.13.5.dist-info/WHEEL +0 -4
- relationalai-0.13.5.dist-info/entry_points.txt +0 -3
- relationalai-0.13.5.dist-info/licenses/LICENSE +0 -202
- relationalai_test_util/__init__.py +0 -4
- relationalai_test_util/fixtures.py +0 -233
- 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/clients/resources/snowflake → 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/semantics/tests/lqp → 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/tools → v0/relationalai/loaders}/__init__.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/pragmas.py +0 -0
- {relationalai → v0/relationalai}/semantics/metamodel/dataflow.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/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,945 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Support for traversing the IR, often to search for information.
|
|
3
|
-
"""
|
|
4
|
-
from dataclasses import dataclass, field
|
|
5
|
-
from typing import Callable, Optional, TypeVar, cast, Tuple, Union as PyUnion, Generic
|
|
6
|
-
from abc import abstractmethod
|
|
7
|
-
from .util import OrderedSet, flatten_tuple, ordered_set, FrozenOrderedSet, rewrite_list, rewrite_set
|
|
8
|
-
from . import ir
|
|
9
|
-
|
|
10
|
-
#--------------------------------------------------
|
|
11
|
-
# Visitor Abstraction
|
|
12
|
-
#--------------------------------------------------
|
|
13
|
-
|
|
14
|
-
Result = TypeVar('Result')
|
|
15
|
-
class GenericVisitor(Generic[Result]):
|
|
16
|
-
"""
|
|
17
|
-
Abstract visitor with handlers for each IR node type.
|
|
18
|
-
Each handler should return a value of type `Result`.
|
|
19
|
-
|
|
20
|
-
Actual behavior (e.g., AST traversal) should be implemented in
|
|
21
|
-
subclasses of `GenericVisitor`.
|
|
22
|
-
"""
|
|
23
|
-
|
|
24
|
-
##################################################
|
|
25
|
-
# Model
|
|
26
|
-
|
|
27
|
-
@abstractmethod
|
|
28
|
-
def visit_model(self, node: ir.Model, parent: Optional[ir.Node]) -> Result:
|
|
29
|
-
pass
|
|
30
|
-
|
|
31
|
-
##################################################
|
|
32
|
-
# Engine
|
|
33
|
-
|
|
34
|
-
@abstractmethod
|
|
35
|
-
def visit_capability(self, node: ir.Capability, parent: Optional[ir.Node]) -> Result:
|
|
36
|
-
pass
|
|
37
|
-
|
|
38
|
-
@abstractmethod
|
|
39
|
-
def visit_engine(self, node: ir.Engine, parent: Optional[ir.Node]) -> Result:
|
|
40
|
-
pass
|
|
41
|
-
|
|
42
|
-
##################################################
|
|
43
|
-
# Types
|
|
44
|
-
|
|
45
|
-
@abstractmethod
|
|
46
|
-
def visit_scalartype(self, node: ir.ScalarType, parent: Optional[ir.Node]) -> Result:
|
|
47
|
-
pass
|
|
48
|
-
|
|
49
|
-
@abstractmethod
|
|
50
|
-
def visit_decimaltype(self, node: ir.DecimalType, parent: Optional[ir.Node]) -> Result:
|
|
51
|
-
pass
|
|
52
|
-
|
|
53
|
-
@abstractmethod
|
|
54
|
-
def visit_listtype(self, node: ir.ListType, parent: Optional[ir.Node]) -> Result:
|
|
55
|
-
pass
|
|
56
|
-
|
|
57
|
-
@abstractmethod
|
|
58
|
-
def visit_uniontype(self, node: ir.UnionType, parent: Optional[ir.Node]) -> Result:
|
|
59
|
-
pass
|
|
60
|
-
|
|
61
|
-
@abstractmethod
|
|
62
|
-
def visit_tupletype(self, node: ir.TupleType, parent: Optional[ir.Node]) -> Result:
|
|
63
|
-
pass
|
|
64
|
-
|
|
65
|
-
##################################################
|
|
66
|
-
# Relations
|
|
67
|
-
|
|
68
|
-
@abstractmethod
|
|
69
|
-
def visit_field(self, node: ir.Field, parent: Optional[ir.Node]) -> Result:
|
|
70
|
-
pass
|
|
71
|
-
|
|
72
|
-
@abstractmethod
|
|
73
|
-
def visit_relation(self, node: ir.Relation, parent: Optional[ir.Node]) -> Result:
|
|
74
|
-
pass
|
|
75
|
-
|
|
76
|
-
##################################################
|
|
77
|
-
# Variables and values
|
|
78
|
-
|
|
79
|
-
@abstractmethod
|
|
80
|
-
def visit_var(self, node: ir.Var, parent: Optional[ir.Node]) -> Result:
|
|
81
|
-
pass
|
|
82
|
-
|
|
83
|
-
@abstractmethod
|
|
84
|
-
def visit_default(self, node: ir.Default, parent: Optional[ir.Node]) -> Result:
|
|
85
|
-
pass
|
|
86
|
-
|
|
87
|
-
@abstractmethod
|
|
88
|
-
def visit_literal(self, node: ir.Literal, parent: Optional[ir.Node]) -> Result:
|
|
89
|
-
pass
|
|
90
|
-
|
|
91
|
-
@abstractmethod
|
|
92
|
-
def visit_data(self, node: ir.Data, parent: Optional[ir.Node]) -> Result:
|
|
93
|
-
pass
|
|
94
|
-
|
|
95
|
-
##################################################
|
|
96
|
-
# Composite tasks
|
|
97
|
-
|
|
98
|
-
@abstractmethod
|
|
99
|
-
def visit_logical(self, node: ir.Logical, parent: Optional[ir.Node]) -> Result:
|
|
100
|
-
pass
|
|
101
|
-
|
|
102
|
-
@abstractmethod
|
|
103
|
-
def visit_union(self, node: ir.Union, parent: Optional[ir.Node]) -> Result:
|
|
104
|
-
pass
|
|
105
|
-
|
|
106
|
-
@abstractmethod
|
|
107
|
-
def visit_sequence(self, node: ir.Sequence, parent: Optional[ir.Node]) -> Result:
|
|
108
|
-
pass
|
|
109
|
-
|
|
110
|
-
@abstractmethod
|
|
111
|
-
def visit_match(self, node: ir.Match, parent: Optional[ir.Node]) -> Result:
|
|
112
|
-
pass
|
|
113
|
-
|
|
114
|
-
@abstractmethod
|
|
115
|
-
def visit_until(self, node: ir.Until, parent: Optional[ir.Node]) -> Result:
|
|
116
|
-
pass
|
|
117
|
-
|
|
118
|
-
@abstractmethod
|
|
119
|
-
def visit_wait(self, node: ir.Wait, parent: Optional[ir.Node]) -> Result:
|
|
120
|
-
pass
|
|
121
|
-
|
|
122
|
-
@abstractmethod
|
|
123
|
-
def visit_require(self, node: ir.Require, parent: Optional[ir.Node]) -> Result:
|
|
124
|
-
pass
|
|
125
|
-
|
|
126
|
-
@abstractmethod
|
|
127
|
-
def visit_check(self, node: ir.Check, parent: Optional[ir.Node]) -> Result:
|
|
128
|
-
pass
|
|
129
|
-
|
|
130
|
-
##################################################
|
|
131
|
-
# Logical tasks
|
|
132
|
-
|
|
133
|
-
@abstractmethod
|
|
134
|
-
def visit_not(self, node: ir.Not, parent: Optional[ir.Node]) -> Result:
|
|
135
|
-
pass
|
|
136
|
-
|
|
137
|
-
@abstractmethod
|
|
138
|
-
def visit_exists(self, node: ir.Exists, parent: Optional[ir.Node]) -> Result:
|
|
139
|
-
pass
|
|
140
|
-
|
|
141
|
-
@abstractmethod
|
|
142
|
-
def visit_forall(self, node: ir.ForAll, parent: Optional[ir.Node]) -> Result:
|
|
143
|
-
pass
|
|
144
|
-
|
|
145
|
-
##################################################
|
|
146
|
-
# Iteration tasks
|
|
147
|
-
|
|
148
|
-
@abstractmethod
|
|
149
|
-
def visit_loop(self, node: ir.Loop, parent: Optional[ir.Node]) -> Result:
|
|
150
|
-
pass
|
|
151
|
-
|
|
152
|
-
@abstractmethod
|
|
153
|
-
def visit_break(self, node: ir.Break, parent: Optional[ir.Node]) -> Result:
|
|
154
|
-
pass
|
|
155
|
-
|
|
156
|
-
##################################################
|
|
157
|
-
# Leaf tasks
|
|
158
|
-
|
|
159
|
-
@abstractmethod
|
|
160
|
-
def visit_update(self, node: ir.Update, parent: Optional[ir.Node]) -> Result:
|
|
161
|
-
pass
|
|
162
|
-
|
|
163
|
-
@abstractmethod
|
|
164
|
-
def visit_annotation(self, node: ir.Annotation, parent: Optional[ir.Node]) -> Result:
|
|
165
|
-
pass
|
|
166
|
-
|
|
167
|
-
@abstractmethod
|
|
168
|
-
def visit_lookup(self, node: ir.Lookup, parent: Optional[ir.Node]) -> Result:
|
|
169
|
-
pass
|
|
170
|
-
|
|
171
|
-
@abstractmethod
|
|
172
|
-
def visit_output(self, node: ir.Output, parent: Optional[ir.Node]) -> Result:
|
|
173
|
-
pass
|
|
174
|
-
|
|
175
|
-
@abstractmethod
|
|
176
|
-
def visit_construct(self, node: ir.Construct, parent: Optional[ir.Node]) -> Result:
|
|
177
|
-
pass
|
|
178
|
-
|
|
179
|
-
@abstractmethod
|
|
180
|
-
def visit_aggregate(self, node: ir.Aggregate, parent: Optional[ir.Node]) -> Result:
|
|
181
|
-
pass
|
|
182
|
-
|
|
183
|
-
@abstractmethod
|
|
184
|
-
def visit_rank(self, node: ir.Rank, parent: Optional[ir.Node]) -> Result:
|
|
185
|
-
pass
|
|
186
|
-
|
|
187
|
-
@abstractmethod
|
|
188
|
-
def visit_task(self, node: ir.Task, parent: Optional[ir.Node]) -> Result:
|
|
189
|
-
pass
|
|
190
|
-
|
|
191
|
-
@dataclass
|
|
192
|
-
class Visitor(GenericVisitor[None]):
|
|
193
|
-
"""
|
|
194
|
-
A visitor that just walks the AST, performing no changes.
|
|
195
|
-
"""
|
|
196
|
-
|
|
197
|
-
def enter(self, node: ir.Node, parent: Optional[ir.Node]=None) -> "Visitor":
|
|
198
|
-
""" Visit the node, possibly returning a new visitor to be used to visit the node's children. """
|
|
199
|
-
return self
|
|
200
|
-
|
|
201
|
-
def prune(self):
|
|
202
|
-
""" Return a new Visitor that just returns each node unchanged without traversing its children. """
|
|
203
|
-
return PruneVisitor()
|
|
204
|
-
|
|
205
|
-
def leave(self, node: ir.Node, parent: Optional[ir.Node]=None) -> ir.Node:
|
|
206
|
-
""" Visit the node after visiting it and its children. """
|
|
207
|
-
return node
|
|
208
|
-
|
|
209
|
-
def _walk_node(self, node: ir.Node, parent: Optional[ir.Node]=None):
|
|
210
|
-
# Enter the node, returning a new context.
|
|
211
|
-
v = self.enter(node, parent)
|
|
212
|
-
|
|
213
|
-
# Dispatch to the handler for the node.
|
|
214
|
-
# By default the handler traverses the node's children and reconstructs the node.
|
|
215
|
-
node.accept(v, parent)
|
|
216
|
-
|
|
217
|
-
self.leave(node, parent)
|
|
218
|
-
|
|
219
|
-
# Avoid dispatch overhead for some types.
|
|
220
|
-
# These should never be called directly.
|
|
221
|
-
def _walk_var(self, node: ir.Var, parent: Optional[ir.Node]):
|
|
222
|
-
v = self.enter(node, parent)
|
|
223
|
-
v.visit_var(node, parent)
|
|
224
|
-
self.leave(node, parent)
|
|
225
|
-
|
|
226
|
-
def _walk_var_or_default(self, node: PyUnion[ir.Var, ir.Default], parent: Optional[ir.Node]):
|
|
227
|
-
v = self.enter(node, parent)
|
|
228
|
-
if isinstance(node, ir.Var):
|
|
229
|
-
v.visit_var(node, parent)
|
|
230
|
-
else:
|
|
231
|
-
v.visit_default(node, parent)
|
|
232
|
-
self.leave(node, parent)
|
|
233
|
-
|
|
234
|
-
def _walk_value(self, node: ir.Value, parent: Optional[ir.Node]):
|
|
235
|
-
if node is None:
|
|
236
|
-
return None
|
|
237
|
-
elif isinstance(node, ir.Var):
|
|
238
|
-
return self._walk_var(node, parent)
|
|
239
|
-
elif isinstance(node, ir.Relation):
|
|
240
|
-
return self._walk_relation(node, parent)
|
|
241
|
-
elif isinstance(node, ir.Node):
|
|
242
|
-
return self._walk_node(node, parent)
|
|
243
|
-
elif isinstance(node, Tuple):
|
|
244
|
-
for item in node:
|
|
245
|
-
self._walk_value(item, parent)
|
|
246
|
-
elif isinstance(node, FrozenOrderedSet):
|
|
247
|
-
for item in node:
|
|
248
|
-
self._walk_value(item, parent)
|
|
249
|
-
|
|
250
|
-
def _walk_engine(self, node: ir.Engine, parent: Optional[ir.Node]):
|
|
251
|
-
v = self.enter(node, parent)
|
|
252
|
-
v.visit_engine(node, parent)
|
|
253
|
-
self.leave(node, parent)
|
|
254
|
-
|
|
255
|
-
def _walk_relation(self, node: ir.Relation, parent: Optional[ir.Node]):
|
|
256
|
-
v = self.enter(node, parent)
|
|
257
|
-
v.visit_relation(node, parent)
|
|
258
|
-
self.leave(node, parent)
|
|
259
|
-
|
|
260
|
-
def _walk_type(self, node: ir.Type, parent: Optional[ir.Node]):
|
|
261
|
-
# The if-isinstance chain saves about 10% on a traversal vs. node.accept(v, parent)
|
|
262
|
-
v = self.enter(node, parent)
|
|
263
|
-
if isinstance(node, ir.DecimalType):
|
|
264
|
-
v.visit_decimaltype(node, parent)
|
|
265
|
-
elif isinstance(node, ir.ScalarType):
|
|
266
|
-
v.visit_scalartype(node, parent)
|
|
267
|
-
elif isinstance(node, ir.ListType):
|
|
268
|
-
v.visit_listtype(node, parent)
|
|
269
|
-
elif isinstance(node, ir.UnionType):
|
|
270
|
-
v.visit_uniontype(node, parent)
|
|
271
|
-
elif isinstance(node, ir.TupleType):
|
|
272
|
-
v.visit_tupletype(node, parent)
|
|
273
|
-
else:
|
|
274
|
-
raise NotImplementedError(f"visit_type not implemented for {type(node)}")
|
|
275
|
-
self.leave(node, parent)
|
|
276
|
-
|
|
277
|
-
##################################################
|
|
278
|
-
# Model
|
|
279
|
-
|
|
280
|
-
def visit_model(self, node: ir.Model, parent: Optional[ir.Node]):
|
|
281
|
-
for c in node.engines:
|
|
282
|
-
self._walk_engine(c, node)
|
|
283
|
-
for c in node.relations:
|
|
284
|
-
self._walk_relation(c, node)
|
|
285
|
-
for c in node.types:
|
|
286
|
-
self._walk_type(c, node)
|
|
287
|
-
self._walk_node(node.root, node)
|
|
288
|
-
|
|
289
|
-
##################################################
|
|
290
|
-
# Engine
|
|
291
|
-
|
|
292
|
-
def visit_capability(self, node: ir.Capability, parent: Optional[ir.Node]):
|
|
293
|
-
pass
|
|
294
|
-
|
|
295
|
-
def visit_engine(self, node: ir.Engine, parent: Optional[ir.Node]):
|
|
296
|
-
for c in node.capabilities:
|
|
297
|
-
self._walk_node(c, node)
|
|
298
|
-
for c in node.relations:
|
|
299
|
-
self._walk_relation(c, node)
|
|
300
|
-
|
|
301
|
-
##################################################
|
|
302
|
-
# Types
|
|
303
|
-
|
|
304
|
-
def visit_scalartype(self, node: ir.ScalarType, parent: Optional[ir.Node]):
|
|
305
|
-
for t in node.super_types:
|
|
306
|
-
self._walk_type(t, node)
|
|
307
|
-
for a in node.annotations:
|
|
308
|
-
self._walk_node(a, node)
|
|
309
|
-
|
|
310
|
-
def visit_decimaltype(self, node: ir.DecimalType, parent: Optional[ir.Node]):
|
|
311
|
-
self.visit_scalartype(node, parent)
|
|
312
|
-
|
|
313
|
-
def visit_listtype(self, node: ir.ListType, parent: Optional[ir.Node]):
|
|
314
|
-
self._walk_type(node.element_type, node)
|
|
315
|
-
|
|
316
|
-
def visit_uniontype(self, node: ir.UnionType, parent: Optional[ir.Node]):
|
|
317
|
-
for t in node.types:
|
|
318
|
-
self._walk_type(t, node)
|
|
319
|
-
|
|
320
|
-
def visit_tupletype(self, node: ir.TupleType, parent: Optional[ir.Node]):
|
|
321
|
-
for t in node.types:
|
|
322
|
-
self._walk_type(t, node)
|
|
323
|
-
|
|
324
|
-
##################################################
|
|
325
|
-
# Relations
|
|
326
|
-
|
|
327
|
-
def visit_field(self, node: ir.Field, parent: Optional[ir.Node]):
|
|
328
|
-
self._walk_type(node.type, node)
|
|
329
|
-
|
|
330
|
-
def visit_relation(self, node: ir.Relation, parent: Optional[ir.Node]):
|
|
331
|
-
for f in node.fields:
|
|
332
|
-
self._walk_node(f, node)
|
|
333
|
-
for r in node.requires:
|
|
334
|
-
self._walk_node(r, node)
|
|
335
|
-
for r in node.overloads:
|
|
336
|
-
self._walk_node(r, node)
|
|
337
|
-
|
|
338
|
-
##################################################
|
|
339
|
-
# Variables and values
|
|
340
|
-
|
|
341
|
-
def visit_var(self, node: ir.Var, parent: Optional[ir.Node]):
|
|
342
|
-
self._walk_type(node.type, node)
|
|
343
|
-
|
|
344
|
-
def visit_default(self, node: ir.Default, parent: Optional[ir.Node]):
|
|
345
|
-
self._walk_var(node.var, node)
|
|
346
|
-
self._walk_value(node.value, node)
|
|
347
|
-
|
|
348
|
-
def visit_literal(self, node: ir.Literal, parent: Optional[ir.Node]):
|
|
349
|
-
self._walk_type(node.type, node)
|
|
350
|
-
|
|
351
|
-
def visit_data(self, node: ir.Data, parent: Optional[ir.Node]):
|
|
352
|
-
for v in node.vars:
|
|
353
|
-
self._walk_var(v, node)
|
|
354
|
-
|
|
355
|
-
##################################################
|
|
356
|
-
# Composite tasks
|
|
357
|
-
|
|
358
|
-
def visit_logical(self, node: ir.Logical, parent: Optional[ir.Node]):
|
|
359
|
-
if node.engine is not None:
|
|
360
|
-
self._walk_engine(node.engine, node)
|
|
361
|
-
for h in node.hoisted:
|
|
362
|
-
self._walk_var_or_default(h, node)
|
|
363
|
-
for b in node.body:
|
|
364
|
-
self._walk_node(b, node)
|
|
365
|
-
for a in node.annotations:
|
|
366
|
-
self._walk_node(a, node)
|
|
367
|
-
|
|
368
|
-
def visit_union(self, node: ir.Union, parent: Optional[ir.Node]):
|
|
369
|
-
if node.engine is not None:
|
|
370
|
-
self._walk_engine(node.engine, node)
|
|
371
|
-
for h in node.hoisted:
|
|
372
|
-
self._walk_var_or_default(h, node)
|
|
373
|
-
for t in node.tasks:
|
|
374
|
-
self._walk_node(t, node)
|
|
375
|
-
for a in node.annotations:
|
|
376
|
-
self._walk_node(a, node)
|
|
377
|
-
|
|
378
|
-
def visit_sequence(self, node: ir.Sequence, parent: Optional[ir.Node]):
|
|
379
|
-
if node.engine is not None:
|
|
380
|
-
self._walk_engine(node.engine, node)
|
|
381
|
-
for h in node.hoisted:
|
|
382
|
-
self._walk_var_or_default(h, node)
|
|
383
|
-
for t in node.tasks:
|
|
384
|
-
self._walk_node(t, node)
|
|
385
|
-
for a in node.annotations:
|
|
386
|
-
self._walk_node(a, node)
|
|
387
|
-
|
|
388
|
-
def visit_match(self, node: ir.Match, parent: Optional[ir.Node]):
|
|
389
|
-
if node.engine is not None:
|
|
390
|
-
self._walk_engine(node.engine, node)
|
|
391
|
-
for h in node.hoisted:
|
|
392
|
-
self._walk_var_or_default(h, node)
|
|
393
|
-
for t in node.tasks:
|
|
394
|
-
self._walk_node(t, node)
|
|
395
|
-
for a in node.annotations:
|
|
396
|
-
self._walk_node(a, node)
|
|
397
|
-
|
|
398
|
-
def visit_until(self, node: ir.Until, parent: Optional[ir.Node]):
|
|
399
|
-
if node.engine is not None:
|
|
400
|
-
self._walk_engine(node.engine, node)
|
|
401
|
-
for h in node.hoisted:
|
|
402
|
-
self._walk_var_or_default(h, node)
|
|
403
|
-
self._walk_node(node.check, node)
|
|
404
|
-
self._walk_node(node.body, node)
|
|
405
|
-
for a in node.annotations:
|
|
406
|
-
self._walk_node(a, node)
|
|
407
|
-
|
|
408
|
-
def visit_wait(self, node: ir.Wait, parent: Optional[ir.Node]):
|
|
409
|
-
if node.engine is not None:
|
|
410
|
-
self._walk_engine(node.engine, node)
|
|
411
|
-
for h in node.hoisted:
|
|
412
|
-
self._walk_var_or_default(h, node)
|
|
413
|
-
self._walk_node(node.check, node)
|
|
414
|
-
for a in node.annotations:
|
|
415
|
-
self._walk_node(a, node)
|
|
416
|
-
|
|
417
|
-
def visit_require(self, node: ir.Require, parent: Optional[ir.Node]):
|
|
418
|
-
if node.engine is not None:
|
|
419
|
-
self._walk_engine(node.engine, node)
|
|
420
|
-
self._walk_node(node.domain, node)
|
|
421
|
-
for check in node.checks:
|
|
422
|
-
self._walk_node(check, node)
|
|
423
|
-
for a in node.annotations:
|
|
424
|
-
self._walk_node(a, node)
|
|
425
|
-
|
|
426
|
-
def visit_check(self, node: ir.Check, parent: Optional[ir.Node]):
|
|
427
|
-
self._walk_node(node.check, node)
|
|
428
|
-
if node.error:
|
|
429
|
-
self._walk_node(node.error, node)
|
|
430
|
-
for a in node.annotations:
|
|
431
|
-
self._walk_node(a, node)
|
|
432
|
-
|
|
433
|
-
##################################################
|
|
434
|
-
# Logical tasks
|
|
435
|
-
|
|
436
|
-
def visit_not(self, node: ir.Not, parent: Optional[ir.Node]):
|
|
437
|
-
if node.engine is not None:
|
|
438
|
-
self._walk_engine(node.engine, node)
|
|
439
|
-
self._walk_node(node.task, node)
|
|
440
|
-
for a in node.annotations:
|
|
441
|
-
self._walk_node(a, node)
|
|
442
|
-
|
|
443
|
-
def visit_exists(self, node: ir.Exists, parent: Optional[ir.Node]):
|
|
444
|
-
if node.engine is not None:
|
|
445
|
-
self._walk_engine(node.engine, node)
|
|
446
|
-
for v in node.vars:
|
|
447
|
-
self._walk_var(v, node)
|
|
448
|
-
self._walk_node(node.task, node)
|
|
449
|
-
for a in node.annotations:
|
|
450
|
-
self._walk_node(a, node)
|
|
451
|
-
|
|
452
|
-
def visit_forall(self, node: ir.ForAll, parent: Optional[ir.Node]):
|
|
453
|
-
if node.engine is not None:
|
|
454
|
-
self._walk_engine(node.engine, node)
|
|
455
|
-
for v in node.vars:
|
|
456
|
-
self._walk_var(v, node)
|
|
457
|
-
self._walk_node(node.task, node)
|
|
458
|
-
for a in node.annotations:
|
|
459
|
-
self._walk_node(a, node)
|
|
460
|
-
|
|
461
|
-
##################################################
|
|
462
|
-
# Iteration tasks
|
|
463
|
-
|
|
464
|
-
def visit_loop(self, node: ir.Loop, parent: Optional[ir.Node]):
|
|
465
|
-
if node.engine is not None:
|
|
466
|
-
self._walk_engine(node.engine, node)
|
|
467
|
-
for h in node.hoisted:
|
|
468
|
-
self._walk_var_or_default(h, node)
|
|
469
|
-
for iter in node.iter:
|
|
470
|
-
self._walk_var(iter, node)
|
|
471
|
-
self._walk_node(node.body, node)
|
|
472
|
-
for a in node.annotations:
|
|
473
|
-
self._walk_node(a, node)
|
|
474
|
-
|
|
475
|
-
def visit_break(self, node: ir.Break, parent: Optional[ir.Node]):
|
|
476
|
-
if node.engine is not None:
|
|
477
|
-
self._walk_engine(node.engine, node)
|
|
478
|
-
self._walk_node(node.check, node)
|
|
479
|
-
for a in node.annotations:
|
|
480
|
-
self._walk_node(a, node)
|
|
481
|
-
|
|
482
|
-
##################################################
|
|
483
|
-
# Leaf tasks
|
|
484
|
-
|
|
485
|
-
def visit_update(self, node: ir.Update, parent: Optional[ir.Node]):
|
|
486
|
-
if node.engine is not None:
|
|
487
|
-
self._walk_engine(node.engine, node)
|
|
488
|
-
self._walk_relation(node.relation, node)
|
|
489
|
-
for a in node.args:
|
|
490
|
-
self._walk_value(a, node)
|
|
491
|
-
for a in node.annotations:
|
|
492
|
-
self._walk_node(a, node)
|
|
493
|
-
|
|
494
|
-
def visit_annotation(self, node: ir.Annotation, parent: Optional[ir.Node]):
|
|
495
|
-
self._walk_relation(node.relation, node)
|
|
496
|
-
for a in node.args:
|
|
497
|
-
self._walk_value(a, node)
|
|
498
|
-
|
|
499
|
-
def visit_lookup(self, node: ir.Lookup, parent: Optional[ir.Node]):
|
|
500
|
-
if node.engine is not None:
|
|
501
|
-
self._walk_engine(node.engine, node)
|
|
502
|
-
self._walk_relation(node.relation, node)
|
|
503
|
-
for a in node.args:
|
|
504
|
-
self._walk_value(a, node)
|
|
505
|
-
for a in node.annotations:
|
|
506
|
-
self._walk_node(a, node)
|
|
507
|
-
|
|
508
|
-
def visit_output(self, node: ir.Output, parent: Optional[ir.Node]):
|
|
509
|
-
if node.engine is not None:
|
|
510
|
-
self._walk_engine(node.engine, node)
|
|
511
|
-
for _, v in node.aliases:
|
|
512
|
-
self._walk_value(v, node)
|
|
513
|
-
if node.keys:
|
|
514
|
-
for k in node.keys:
|
|
515
|
-
self._walk_var(k, node)
|
|
516
|
-
for a in node.annotations:
|
|
517
|
-
self._walk_node(a, node)
|
|
518
|
-
|
|
519
|
-
def visit_construct(self, node: ir.Construct, parent: Optional[ir.Node]):
|
|
520
|
-
if node.engine is not None:
|
|
521
|
-
self._walk_engine(node.engine, node)
|
|
522
|
-
for v in node.values:
|
|
523
|
-
self._walk_value(v, node)
|
|
524
|
-
self._walk_var(node.id_var, node)
|
|
525
|
-
for a in node.annotations:
|
|
526
|
-
self._walk_node(a, node)
|
|
527
|
-
|
|
528
|
-
def visit_aggregate(self, node: ir.Aggregate, parent: Optional[ir.Node]):
|
|
529
|
-
if node.engine is not None:
|
|
530
|
-
self._walk_engine(node.engine, node)
|
|
531
|
-
self._walk_relation(node.aggregation, node)
|
|
532
|
-
for p in node.projection:
|
|
533
|
-
self._walk_var(p, node)
|
|
534
|
-
for g in node.group:
|
|
535
|
-
self._walk_var(g, node)
|
|
536
|
-
for a in node.args:
|
|
537
|
-
self._walk_value(a, node)
|
|
538
|
-
for a in node.annotations:
|
|
539
|
-
self._walk_node(a, node)
|
|
540
|
-
|
|
541
|
-
def visit_rank(self, node: ir.Rank, parent: Optional[ir.Node]):
|
|
542
|
-
if node.engine is not None:
|
|
543
|
-
self._walk_engine(node.engine, node)
|
|
544
|
-
for p in node.projection:
|
|
545
|
-
self._walk_var(p, node)
|
|
546
|
-
for g in node.group:
|
|
547
|
-
self._walk_var(g, node)
|
|
548
|
-
for a in node.args:
|
|
549
|
-
self._walk_value(a, node)
|
|
550
|
-
self._walk_value(node.result, node)
|
|
551
|
-
for a in node.annotations:
|
|
552
|
-
self._walk_node(a, node)
|
|
553
|
-
|
|
554
|
-
def visit_task(self, node: ir.Task, parent: Optional[ir.Node]):
|
|
555
|
-
if node.engine is not None:
|
|
556
|
-
self._walk_engine(node.engine, node)
|
|
557
|
-
|
|
558
|
-
#--------------------------------------------------
|
|
559
|
-
# Some generally useful visitors
|
|
560
|
-
#--------------------------------------------------
|
|
561
|
-
|
|
562
|
-
@dataclass
|
|
563
|
-
class PruneVisitor(Visitor):
|
|
564
|
-
""" A Visitor that does not walk children. """
|
|
565
|
-
|
|
566
|
-
def _walk_node(self, node: ir.Node, parent: Optional[ir.Node]=None):
|
|
567
|
-
pass
|
|
568
|
-
def _walk_var(self, node: ir.Var, parent: Optional[ir.Node]):
|
|
569
|
-
pass
|
|
570
|
-
def _walk_var_or_default(self, node: ir.VarOrDefault, parent: Optional[ir.Node]):
|
|
571
|
-
pass
|
|
572
|
-
def _walk_engine(self, node: ir.Engine, parent: Optional[ir.Node]):
|
|
573
|
-
pass
|
|
574
|
-
def _walk_relation(self, node: ir.Relation, parent: Optional[ir.Node]):
|
|
575
|
-
pass
|
|
576
|
-
def _walk_type(self, node: ir.Type, parent: Optional[ir.Node]):
|
|
577
|
-
pass
|
|
578
|
-
|
|
579
|
-
@dataclass
|
|
580
|
-
class DAGVisitor(Visitor):
|
|
581
|
-
""" A visitor that just walks the AST, performing no changes. Nodes are visited at most once. """
|
|
582
|
-
seen: set[ir.Node] = field(default_factory=set)
|
|
583
|
-
|
|
584
|
-
def _walk_node(self, node: ir.Node, parent: Optional[ir.Node]=None):
|
|
585
|
-
if node in self.seen:
|
|
586
|
-
return
|
|
587
|
-
self.seen.add(node)
|
|
588
|
-
return super()._walk_node(node, parent)
|
|
589
|
-
def _walk_var(self, node: ir.Var, parent: Optional[ir.Node]):
|
|
590
|
-
if node in self.seen:
|
|
591
|
-
return
|
|
592
|
-
self.seen.add(node)
|
|
593
|
-
return super()._walk_var(node, parent)
|
|
594
|
-
def _walk_var_or_default(self, node: ir.VarOrDefault, parent: Optional[ir.Node]):
|
|
595
|
-
if node in self.seen:
|
|
596
|
-
return
|
|
597
|
-
self.seen.add(node)
|
|
598
|
-
return super()._walk_var_or_default(node, parent)
|
|
599
|
-
def _walk_engine(self, node: ir.Engine, parent: Optional[ir.Node]):
|
|
600
|
-
if node in self.seen:
|
|
601
|
-
return
|
|
602
|
-
self.seen.add(node)
|
|
603
|
-
return super()._walk_engine(node, parent)
|
|
604
|
-
def _walk_relation(self, node: ir.Relation, parent: Optional[ir.Node]):
|
|
605
|
-
if node in self.seen:
|
|
606
|
-
return
|
|
607
|
-
self.seen.add(node)
|
|
608
|
-
return super()._walk_relation(node, parent)
|
|
609
|
-
def _walk_type(self, node: ir.Type, parent: Optional[ir.Node]):
|
|
610
|
-
if node in self.seen:
|
|
611
|
-
return
|
|
612
|
-
self.seen.add(node)
|
|
613
|
-
return super()._walk_type(node, parent)
|
|
614
|
-
|
|
615
|
-
class Collector(Visitor):
|
|
616
|
-
""" A visitor that collects instances that match a predicate. """
|
|
617
|
-
def __init__(self, predicate: Callable[[ir.Node, Optional[ir.Node]], bool]):
|
|
618
|
-
super().__init__()
|
|
619
|
-
self.elements: OrderedSet = ordered_set()
|
|
620
|
-
self.predicate = predicate
|
|
621
|
-
|
|
622
|
-
def enter(self, node: ir.Node, parent: Optional[ir.Node]=None):
|
|
623
|
-
if self.predicate(node, parent):
|
|
624
|
-
self.elements.add(node)
|
|
625
|
-
return self
|
|
626
|
-
|
|
627
|
-
def collect(predicate: Callable[[ir.Node, Optional[ir.Node]], bool], *nodes: ir.Node) -> OrderedSet[ir.Node]:
|
|
628
|
-
""" Collect children of node that match the predicate. """
|
|
629
|
-
c = Collector(predicate)
|
|
630
|
-
for n in nodes:
|
|
631
|
-
n.accept(c)
|
|
632
|
-
return c.elements
|
|
633
|
-
|
|
634
|
-
T = TypeVar('T')
|
|
635
|
-
def collect_by_type(t: PyUnion[type[T], tuple[type[T], ...]], *nodes: ir.Node) -> OrderedSet[T]:
|
|
636
|
-
""" Collect instances of the type t by traversing this node and its children. """
|
|
637
|
-
return cast(OrderedSet[T],
|
|
638
|
-
collect(lambda n, parent: isinstance(n, t), *nodes)
|
|
639
|
-
)
|
|
640
|
-
|
|
641
|
-
@dataclass
|
|
642
|
-
class ReadWriteVisitor(Visitor):
|
|
643
|
-
"""
|
|
644
|
-
Compute the set of reads and writes for Logical nodes.
|
|
645
|
-
|
|
646
|
-
Note that reads are Lookups and writes are Updates. We don't consider Output a write
|
|
647
|
-
because it is not targeting a relation.
|
|
648
|
-
"""
|
|
649
|
-
# TODO: we currently only compute for Logical nodes, but it may be useful for other nodes
|
|
650
|
-
_reads: dict[int, OrderedSet[ir.Relation]] = field(default_factory=dict)
|
|
651
|
-
_writes: dict[int, OrderedSet[ir.Relation]] = field(default_factory=dict)
|
|
652
|
-
|
|
653
|
-
def reads(self, key: ir.Logical):
|
|
654
|
-
# TODO - use a singleton empty set
|
|
655
|
-
return self._reads[key.id] if key.id in self._reads else ordered_set()
|
|
656
|
-
|
|
657
|
-
def writes(self, key: ir.Logical):
|
|
658
|
-
return self._writes[key.id] if key.id in self._writes else ordered_set()
|
|
659
|
-
|
|
660
|
-
_stack: list[ir.Logical] = field(default_factory=list)
|
|
661
|
-
|
|
662
|
-
def visit_logical(self, node: ir.Logical, parent: Optional[ir.Node]):
|
|
663
|
-
self._stack.append(node)
|
|
664
|
-
super().visit_logical(node, parent)
|
|
665
|
-
self._stack.pop()
|
|
666
|
-
|
|
667
|
-
def visit_lookup(self, node: ir.Lookup, parent: Optional[ir.Node]):
|
|
668
|
-
for lu in self._stack:
|
|
669
|
-
if lu.id not in self._reads:
|
|
670
|
-
self._reads[lu.id] = ordered_set()
|
|
671
|
-
self._reads[lu.id].add(node.relation)
|
|
672
|
-
return super().visit_lookup(node, parent)
|
|
673
|
-
|
|
674
|
-
def visit_aggregate(self, node: ir.Aggregate, parent: Optional[ir.Node]):
|
|
675
|
-
for lu in self._stack:
|
|
676
|
-
if lu.id not in self._reads:
|
|
677
|
-
self._reads[lu.id] = ordered_set()
|
|
678
|
-
self._reads[lu.id].add(node.aggregation)
|
|
679
|
-
return super().visit_aggregate(node, parent)
|
|
680
|
-
|
|
681
|
-
def visit_update(self, node: ir.Update, parent: Optional[ir.Node]):
|
|
682
|
-
for lu in self._stack:
|
|
683
|
-
if lu.id not in self._writes:
|
|
684
|
-
self._writes[lu.id] = ordered_set()
|
|
685
|
-
self._writes[lu.id].add(node.relation)
|
|
686
|
-
return super().visit_update(node, parent)
|
|
687
|
-
|
|
688
|
-
@dataclass
|
|
689
|
-
class Rewriter():
|
|
690
|
-
"""
|
|
691
|
-
Rewrite a model, being careful to visit nodes only once.
|
|
692
|
-
"""
|
|
693
|
-
|
|
694
|
-
rewritten: dict[int, ir.Node] = field(default_factory=dict, init=False, compare=False, hash=False)
|
|
695
|
-
handler_cache: dict[str, Callable[[ir.Node, Optional[ir.Node]], ir.Node]] = field(default_factory=dict, init=False, compare=False, hash=False)
|
|
696
|
-
|
|
697
|
-
T = TypeVar('T', bound=PyUnion[ir.Node, ir.Value])
|
|
698
|
-
def walk(self, node: T, parent=None) -> T:
|
|
699
|
-
# if node is a tuple, walk the list
|
|
700
|
-
if isinstance(node, tuple):
|
|
701
|
-
return self.walk_list(node, parent)
|
|
702
|
-
# if node is a value, just return it
|
|
703
|
-
if not isinstance(node, ir.Node):
|
|
704
|
-
return node
|
|
705
|
-
|
|
706
|
-
result = self.rewritten.get(node.id, None)
|
|
707
|
-
if result:
|
|
708
|
-
return cast(T, result) # type: ignore[reportReturnType]
|
|
709
|
-
|
|
710
|
-
# node is actually some Node type, handle with the appropriate handler
|
|
711
|
-
handler = self.handler_cache.get(node.kind, None)
|
|
712
|
-
if not handler:
|
|
713
|
-
handler = getattr(self, f"handle_{node.kind}", None)
|
|
714
|
-
if handler:
|
|
715
|
-
self.handler_cache[node.kind] = handler
|
|
716
|
-
if handler:
|
|
717
|
-
result = cast(ir.Node, handler(node, parent))
|
|
718
|
-
self.rewritten[node.id] = result
|
|
719
|
-
return cast(T, result) # type: ignore[reportReturnType]
|
|
720
|
-
else:
|
|
721
|
-
raise NotImplementedError(f"walk: {node.kind}")
|
|
722
|
-
|
|
723
|
-
def walk_set(self, items: FrozenOrderedSet[T], parent=None) -> FrozenOrderedSet[T]:
|
|
724
|
-
return ordered_set(*[self.walk(n, parent) for n in items]).frozen()
|
|
725
|
-
|
|
726
|
-
def walk_list(self, items: Tuple[T, ...], parent=None) -> Tuple[T, ...]:
|
|
727
|
-
return tuple([self.walk(n, parent) for n in items])
|
|
728
|
-
|
|
729
|
-
#-------------------------------------------------
|
|
730
|
-
# Public Types - Model
|
|
731
|
-
#-------------------------------------------------
|
|
732
|
-
|
|
733
|
-
def handle_model(self, model: ir.Model, parent: None):
|
|
734
|
-
engines = rewrite_set(ir.Engine, lambda n: self.walk(n, model), model.engines)
|
|
735
|
-
relations = rewrite_set(ir.Relation, lambda n: self.walk(n, model), model.relations)
|
|
736
|
-
types = rewrite_set(ir.Type, lambda n: self.walk(n, model), model.types)
|
|
737
|
-
root = self.walk(model.root, model)
|
|
738
|
-
|
|
739
|
-
return model.reconstruct(engines, relations, types, root, model.annotations)
|
|
740
|
-
|
|
741
|
-
#-------------------------------------------------
|
|
742
|
-
# Public Types - Engine
|
|
743
|
-
#-------------------------------------------------
|
|
744
|
-
|
|
745
|
-
def handle_capability(self, node: ir.Capability, parent: ir.Node):
|
|
746
|
-
return node
|
|
747
|
-
|
|
748
|
-
def handle_engine(self, node: ir.Engine, parent: ir.Node):
|
|
749
|
-
return node
|
|
750
|
-
|
|
751
|
-
#-------------------------------------------------
|
|
752
|
-
# Public Types - Data Model
|
|
753
|
-
#-------------------------------------------------
|
|
754
|
-
|
|
755
|
-
def handle_scalartype(self, node: ir.ScalarType, parent: ir.Node):
|
|
756
|
-
return node
|
|
757
|
-
|
|
758
|
-
def handle_decimaltype(self, node: ir.DecimalType, parent: ir.Node):
|
|
759
|
-
return node
|
|
760
|
-
|
|
761
|
-
def handle_listtype(self, node: ir.ListType, parent: ir.Node):
|
|
762
|
-
return node
|
|
763
|
-
|
|
764
|
-
def handle_uniontype(self, node: ir.UnionType, parent: ir.Node):
|
|
765
|
-
# TODO - we could traverse the children
|
|
766
|
-
return node
|
|
767
|
-
|
|
768
|
-
def handle_tupletype(self, node: ir.TupleType, parent: ir.Node):
|
|
769
|
-
# TODO - we could traverse the children
|
|
770
|
-
return node
|
|
771
|
-
|
|
772
|
-
def handle_field(self, node: ir.Field, parent: ir.Node):
|
|
773
|
-
type_val = self.walk(node.type, node)
|
|
774
|
-
return node.reconstruct(node.name, type_val, node.input)
|
|
775
|
-
|
|
776
|
-
def handle_relation(self, node: ir.Relation, parent: ir.Node):
|
|
777
|
-
fields = rewrite_list(ir.Field, lambda n: self.walk(n, node), node.fields)
|
|
778
|
-
requires = rewrite_set(ir.Capability, lambda n: self.walk(n, node), node.requires)
|
|
779
|
-
annotations = rewrite_set(ir.Annotation, lambda n: self.walk(n, node), node.annotations)
|
|
780
|
-
overloads = rewrite_set(ir.Relation, lambda n: self.walk(n, node), node.overloads)
|
|
781
|
-
return node.reconstruct(node.name, fields, requires, annotations, overloads)
|
|
782
|
-
|
|
783
|
-
#-------------------------------------------------
|
|
784
|
-
# Public Types - Tasks
|
|
785
|
-
#-------------------------------------------------
|
|
786
|
-
|
|
787
|
-
def handle_task(self, node: ir.Task, parent: ir.Node):
|
|
788
|
-
return node
|
|
789
|
-
|
|
790
|
-
#
|
|
791
|
-
# Task composition
|
|
792
|
-
#
|
|
793
|
-
|
|
794
|
-
def handle_logical(self, node: ir.Logical, parent: ir.Node):
|
|
795
|
-
hoisted = rewrite_list(ir.VarOrDefault, lambda n: self.walk(n, node), node.hoisted)
|
|
796
|
-
body = rewrite_list(ir.Task, lambda n: self.walk(n, node), node.body)
|
|
797
|
-
|
|
798
|
-
return node.reconstruct(node.engine, hoisted, flatten_tuple(body, ir.Task), node.annotations)
|
|
799
|
-
|
|
800
|
-
def handle_union(self, node: ir.Union, parent: ir.Node):
|
|
801
|
-
hoisted = rewrite_list(ir.VarOrDefault, lambda n: self.walk(n, node), node.hoisted)
|
|
802
|
-
tasks = rewrite_list(ir.Task, lambda n: self.walk(n, node), node.tasks)
|
|
803
|
-
|
|
804
|
-
return node.reconstruct(node.engine, hoisted, tasks, node.annotations)
|
|
805
|
-
|
|
806
|
-
def handle_sequence(self, node: ir.Sequence, parent: ir.Node):
|
|
807
|
-
hoisted = rewrite_list(ir.VarOrDefault, lambda n: self.walk(n, node), node.hoisted)
|
|
808
|
-
tasks = rewrite_list(ir.Task, lambda n: self.walk(n, node), node.tasks)
|
|
809
|
-
|
|
810
|
-
return node.reconstruct(node.engine, hoisted, flatten_tuple(tasks, ir.Task), node.annotations)
|
|
811
|
-
|
|
812
|
-
def handle_match(self, node: ir.Match, parent: ir.Node):
|
|
813
|
-
hoisted = rewrite_list(ir.VarOrDefault, lambda n: self.walk(n, node), node.hoisted)
|
|
814
|
-
tasks = rewrite_list(ir.Task, lambda n: self.walk(n, node), node.tasks)
|
|
815
|
-
|
|
816
|
-
return node.reconstruct(node.engine, hoisted, tasks, node.annotations)
|
|
817
|
-
|
|
818
|
-
def handle_until(self, node: ir.Until, parent: ir.Node):
|
|
819
|
-
hoisted = rewrite_list(ir.VarOrDefault, lambda n: self.walk(n, node), node.hoisted)
|
|
820
|
-
check = self.walk(node.check, node)
|
|
821
|
-
body = self.walk(node.body, node)
|
|
822
|
-
|
|
823
|
-
return node.reconstruct(node.engine, hoisted, check, body, node.annotations)
|
|
824
|
-
|
|
825
|
-
def handle_wait(self, node: ir.Wait, parent: ir.Node):
|
|
826
|
-
hoisted = rewrite_list(ir.VarOrDefault, lambda n: self.walk(n, node), node.hoisted)
|
|
827
|
-
check = self.walk(node.check, node)
|
|
828
|
-
|
|
829
|
-
return node.reconstruct(node.engine, hoisted, check, node.annotations)
|
|
830
|
-
|
|
831
|
-
def handle_require(self, node: ir.Require, parent: ir.Node):
|
|
832
|
-
domain = self.walk(node.domain, node)
|
|
833
|
-
checks = rewrite_list(ir.Check, lambda n: self.walk(n, node), node.checks)
|
|
834
|
-
|
|
835
|
-
return node.reconstruct(node.engine, domain, checks, node.annotations)
|
|
836
|
-
|
|
837
|
-
def handle_check(self, node: ir.Check, parent: ir.Node):
|
|
838
|
-
check = self.walk(node.check, node)
|
|
839
|
-
error = None
|
|
840
|
-
if node.error:
|
|
841
|
-
error = self.walk(node.error, node)
|
|
842
|
-
|
|
843
|
-
return node.reconstruct(check, error, node.annotations)
|
|
844
|
-
|
|
845
|
-
#
|
|
846
|
-
# Relational Operations
|
|
847
|
-
#
|
|
848
|
-
|
|
849
|
-
def handle_var(self, node: ir.Var, parent: ir.Node):
|
|
850
|
-
type_val = self.walk(node.type, node)
|
|
851
|
-
name_val = node.name or f"v{node.id}"
|
|
852
|
-
return node.reconstruct(type_val, name_val)
|
|
853
|
-
|
|
854
|
-
def handle_default(self, node: ir.Default, parent: ir.Node):
|
|
855
|
-
var = self.walk(node.var, node)
|
|
856
|
-
return node.reconstruct(var, node.value)
|
|
857
|
-
|
|
858
|
-
def handle_literal(self, node: ir.Literal, parent: ir.Node):
|
|
859
|
-
type_val = self.walk(node.type, node)
|
|
860
|
-
return node.reconstruct(type_val, node.value)
|
|
861
|
-
|
|
862
|
-
def handle_data(self, node: ir.Data, parent: ir.Node):
|
|
863
|
-
vars = rewrite_list(ir.Var, lambda n: self.walk(n, node), node.vars)
|
|
864
|
-
return node.reconstruct(node.engine, node.data, vars)
|
|
865
|
-
|
|
866
|
-
def handle_annotation(self, node: ir.Annotation, parent: ir.Node):
|
|
867
|
-
return node
|
|
868
|
-
|
|
869
|
-
def handle_update(self, node: ir.Update, parent: ir.Node):
|
|
870
|
-
relation = self.walk(node.relation, node)
|
|
871
|
-
args = rewrite_list(ir.Value, lambda n: self.walk(n, node), node.args)
|
|
872
|
-
return node.reconstruct(node.engine, relation, args, node.effect, node.annotations)
|
|
873
|
-
|
|
874
|
-
def handle_lookup(self, node: ir.Lookup, parent: ir.Node):
|
|
875
|
-
relation = self.walk(node.relation, node)
|
|
876
|
-
args = rewrite_list(ir.Value, lambda n: self.walk(n, node), node.args)
|
|
877
|
-
return node.reconstruct(node.engine, relation, args, node.annotations)
|
|
878
|
-
|
|
879
|
-
def handle_output(self, node: ir.Output, parent: ir.Node):
|
|
880
|
-
def rewrite_alias(pair: Tuple[str, ir.Value]):
|
|
881
|
-
name, x = pair
|
|
882
|
-
new_x = self.walk(x, node)
|
|
883
|
-
if new_x is not x:
|
|
884
|
-
return (name, new_x)
|
|
885
|
-
else:
|
|
886
|
-
return pair
|
|
887
|
-
# rewrite_set can't be passed a generic type, so just use Tuple and cast the result.
|
|
888
|
-
aliases = cast(
|
|
889
|
-
FrozenOrderedSet[Tuple[str, ir.Value]],
|
|
890
|
-
rewrite_set(
|
|
891
|
-
Tuple,
|
|
892
|
-
rewrite_alias,
|
|
893
|
-
node.aliases))
|
|
894
|
-
keys = rewrite_list(ir.Var, lambda n: self.walk(n, node), tuple(node.keys)) if node.keys else None
|
|
895
|
-
return node.reconstruct(node.engine, aliases, keys, node.annotations)
|
|
896
|
-
|
|
897
|
-
def handle_construct(self, node: ir.Construct, parent: ir.Node):
|
|
898
|
-
values = rewrite_list(ir.Value, lambda n: self.walk(n, node), node.values)
|
|
899
|
-
id_var = self.walk(node.id_var, node)
|
|
900
|
-
return node.reconstruct(node.engine, values, id_var, node.annotations)
|
|
901
|
-
|
|
902
|
-
def handle_aggregate(self, node: ir.Aggregate, parent: ir.Node):
|
|
903
|
-
aggregation = self.walk(node.aggregation, node)
|
|
904
|
-
projection = rewrite_list(ir.Var, lambda n: self.walk(n, node), node.projection)
|
|
905
|
-
group = rewrite_list(ir.Var, lambda n: self.walk(n, node), node.group)
|
|
906
|
-
args = rewrite_list(ir.Value, lambda n: self.walk(n, node), node.args)
|
|
907
|
-
return node.reconstruct(node.engine, aggregation, projection, group, args, node.annotations)
|
|
908
|
-
|
|
909
|
-
def handle_rank(self, node: ir.Rank, parent: ir.Node):
|
|
910
|
-
projection = rewrite_list(ir.Var, lambda n: self.walk(n, node), node.projection)
|
|
911
|
-
group = rewrite_list(ir.Var, lambda n: self.walk(n, node), node.group)
|
|
912
|
-
args = rewrite_list(ir.Value, lambda n: self.walk(n, node), node.args)
|
|
913
|
-
result = self.walk(node.result, node)
|
|
914
|
-
return node.reconstruct(node.engine, projection, group, args, node.arg_is_ascending, result, node.limit,node.annotations)
|
|
915
|
-
|
|
916
|
-
#
|
|
917
|
-
# Logical Quantifiers
|
|
918
|
-
#
|
|
919
|
-
|
|
920
|
-
def handle_not(self, node: ir.Not, parent: ir.Node):
|
|
921
|
-
task = self.walk(node.task, node)
|
|
922
|
-
return node.reconstruct(node.engine, task, node.annotations)
|
|
923
|
-
|
|
924
|
-
def handle_exists(self, node: ir.Exists, parent: ir.Node):
|
|
925
|
-
vars = rewrite_list(ir.Var, lambda n: self.walk(n, node), node.vars)
|
|
926
|
-
task = self.walk(node.task, node)
|
|
927
|
-
return node.reconstruct(node.engine, vars, task, node.annotations)
|
|
928
|
-
|
|
929
|
-
def handle_forall(self, node: ir.ForAll, parent: ir.Node):
|
|
930
|
-
vars = rewrite_list(ir.Var, lambda n: self.walk(n, node), node.vars)
|
|
931
|
-
task = self.walk(node.task, node)
|
|
932
|
-
return node.reconstruct(node.engine, vars, task, node.annotations)
|
|
933
|
-
|
|
934
|
-
#
|
|
935
|
-
# Iteration (Loops)
|
|
936
|
-
#
|
|
937
|
-
def handle_loop(self, node: ir.Loop, parent: ir.Node):
|
|
938
|
-
hoisted = rewrite_list(ir.VarOrDefault, lambda n: self.walk(n, node), node.hoisted)
|
|
939
|
-
iter = rewrite_list(ir.Var, lambda n: self.walk(n, node), node.iter)
|
|
940
|
-
body = self.walk(node.body, node)
|
|
941
|
-
return node.reconstruct(node.engine, hoisted, iter, body, node.concurrency, node.annotations)
|
|
942
|
-
|
|
943
|
-
def handle_break(self, node: ir.Break, parent: ir.Node):
|
|
944
|
-
check = self.walk(node.check, node)
|
|
945
|
-
return node.reconstruct(node.engine, check, node.annotations)
|