foobara 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +5 -0
- data/.rubocop.yml +20 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +10 -0
- data/DECISION_LOG.md +220 -0
- data/Guardfile +9 -0
- data/LICENSE-AGPL.txt +666 -0
- data/LICENSE.txt +4 -0
- data/README.md +50 -0
- data/Rakefile +10 -0
- data/concepts.md +153 -0
- data/projects/builtin_types/lib/foobara/builtin_types.rb +67 -0
- data/projects/builtin_types/src/README.md +140 -0
- data/projects/builtin_types/src/array/casters/arrayable.rb +22 -0
- data/projects/builtin_types/src/array/supported_processors/element_type_declaration.rb +41 -0
- data/projects/builtin_types/src/array/supported_validators/size.rb +43 -0
- data/projects/builtin_types/src/associative_array/casters/array.rb +22 -0
- data/projects/builtin_types/src/associative_array/supported_processors/key_type_declaration.rb +44 -0
- data/projects/builtin_types/src/associative_array/supported_processors/value_type_declaration.rb +44 -0
- data/projects/builtin_types/src/atomic_duck.rb +6 -0
- data/projects/builtin_types/src/attributes/casters/array.rb +33 -0
- data/projects/builtin_types/src/attributes/casters/hash.rb +28 -0
- data/projects/builtin_types/src/attributes/supported_processors/element_type_declarations.rb +89 -0
- data/projects/builtin_types/src/attributes/supported_transformers/defaults/type_declaration_extension/extend_attributes_type_declaration/desugarizers/move_defaults_from_element_types_to_root.rb +40 -0
- data/projects/builtin_types/src/attributes/supported_transformers/defaults/type_declaration_extension/extend_attributes_type_declaration/desugarizers/symbolize_defaults.rb +31 -0
- data/projects/builtin_types/src/attributes/supported_transformers/defaults/type_declaration_extension/extend_attributes_type_declaration/type_declaration_validators/hash_with_symbolic_keys.rb +37 -0
- data/projects/builtin_types/src/attributes/supported_transformers/defaults/type_declaration_extension/extend_attributes_type_declaration/type_declaration_validators/valid_attribute_names.rb +60 -0
- data/projects/builtin_types/src/attributes/supported_transformers/defaults.rb +41 -0
- data/projects/builtin_types/src/attributes/supported_validators/required/type_declaration_extension/extend_attributes_type_declaration/desugarizers/move_required_from_element_types_to_root.rb +55 -0
- data/projects/builtin_types/src/attributes/supported_validators/required/type_declaration_extension/extend_attributes_type_declaration/type_declaration_validators/array_of_symbols.rb +47 -0
- data/projects/builtin_types/src/attributes/supported_validators/required/type_declaration_extension/extend_attributes_type_declaration/type_declaration_validators/array_with_valid_attribute_names.rb +54 -0
- data/projects/builtin_types/src/attributes/supported_validators/required.rb +51 -0
- data/projects/builtin_types/src/big_decimal/casters/integer.rb +21 -0
- data/projects/builtin_types/src/big_decimal/casters/string.rb +24 -0
- data/projects/builtin_types/src/boolean/casters/numeric.rb +21 -0
- data/projects/builtin_types/src/boolean/casters/string_or_symbol.rb +27 -0
- data/projects/builtin_types/src/builtin_types.rb +189 -0
- data/projects/builtin_types/src/date/casters/hash.rb +23 -0
- data/projects/builtin_types/src/date/casters/string.rb +40 -0
- data/projects/builtin_types/src/datetime/casters/date.rb +21 -0
- data/projects/builtin_types/src/datetime/casters/hash.rb +77 -0
- data/projects/builtin_types/src/datetime/casters/seconds_since_epoch.rb +21 -0
- data/projects/builtin_types/src/datetime/casters/string.rb +31 -0
- data/projects/builtin_types/src/duck/supported_casters/allow_nil.rb +38 -0
- data/projects/builtin_types/src/duck/supported_validators/instance_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/class_desugarizer.rb +29 -0
- data/projects/builtin_types/src/duck/supported_validators/instance_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/instance_of_class_desugarizer.rb +31 -0
- data/projects/builtin_types/src/duck/supported_validators/instance_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/instance_of_symbol_desugarizer.rb +31 -0
- data/projects/builtin_types/src/duck/supported_validators/instance_of/type_declaration_extension/extend_registered_type_declaration/type_declaration_validators/is_valid_class.rb +43 -0
- data/projects/builtin_types/src/duck/supported_validators/instance_of.rb +42 -0
- data/projects/builtin_types/src/duck/supported_validators/one_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/cast_one_of.rb +37 -0
- data/projects/builtin_types/src/duck/supported_validators/one_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/module_desugarizer.rb +41 -0
- data/projects/builtin_types/src/duck/supported_validators/one_of.rb +41 -0
- data/projects/builtin_types/src/duck.rb +6 -0
- data/projects/builtin_types/src/duckture.rb +6 -0
- data/projects/builtin_types/src/email/transformers/downcase.rb +15 -0
- data/projects/builtin_types/src/email/validator_base.rb +94 -0
- data/projects/builtin_types/src/float/casters/integer.rb +21 -0
- data/projects/builtin_types/src/float/casters/string.rb +24 -0
- data/projects/builtin_types/src/integer/casters/string.rb +23 -0
- data/projects/builtin_types/src/number/supported_validators/max.rb +41 -0
- data/projects/builtin_types/src/number/supported_validators/min.rb +41 -0
- data/projects/builtin_types/src/string/casters/numeric.rb +21 -0
- data/projects/builtin_types/src/string/casters/symbol.rb +21 -0
- data/projects/builtin_types/src/string/supported_transformers/downcase.rb +11 -0
- data/projects/builtin_types/src/string/supported_validators/matches.rb +41 -0
- data/projects/builtin_types/src/string/supported_validators/max_length.rb +37 -0
- data/projects/builtin_types/src/symbol/casters/string.rb +21 -0
- data/projects/builtin_types/src/tuple/supported_processors/element_type_declarations/type_declaration_extension/extend_tuple_type_declaration/desugarizers/set_size.rb +32 -0
- data/projects/builtin_types/src/tuple/supported_processors/element_type_declarations/type_declaration_extension/extend_tuple_type_declaration/type_declaration_validators/size_matches.rb +50 -0
- data/projects/builtin_types/src/tuple/supported_processors/element_type_declarations.rb +59 -0
- data/projects/callback/lib/foobara/callback.rb +1 -0
- data/projects/callback/src/block/after.rb +10 -0
- data/projects/callback/src/block/around.rb +10 -0
- data/projects/callback/src/block/before.rb +10 -0
- data/projects/callback/src/block/concerns/block_parameter_not_allowed.rb +21 -0
- data/projects/callback/src/block/concerns/block_parameter_required.rb +21 -0
- data/projects/callback/src/block/concerns/keyword_argumentable_block.rb +31 -0
- data/projects/callback/src/block/concerns/single_argument_block.rb +22 -0
- data/projects/callback/src/block/concerns/type.rb +17 -0
- data/projects/callback/src/block/error.rb +10 -0
- data/projects/callback/src/block.rb +83 -0
- data/projects/callback/src/registry/base.rb +90 -0
- data/projects/callback/src/registry/chained_conditioned.rb +24 -0
- data/projects/callback/src/registry/chained_multiple_action.rb +24 -0
- data/projects/callback/src/registry/conditioned.rb +101 -0
- data/projects/callback/src/registry/multiple_action.rb +110 -0
- data/projects/callback/src/registry/single_action.rb +15 -0
- data/projects/callback/src/runner.rb +89 -0
- data/projects/callback/src/set.rb +56 -0
- data/projects/command/lib/foobara/command.rb +9 -0
- data/projects/command/src/command/entity_helpers.rb +145 -0
- data/projects/command/src/command.rb +36 -0
- data/projects/command/src/concerns/callbacks.rb +93 -0
- data/projects/command/src/concerns/description.rb +23 -0
- data/projects/command/src/concerns/domain_mappers.rb +35 -0
- data/projects/command/src/concerns/entities.rb +88 -0
- data/projects/command/src/concerns/errors.rb +181 -0
- data/projects/command/src/concerns/errors_type.rb +124 -0
- data/projects/command/src/concerns/inputs.rb +59 -0
- data/projects/command/src/concerns/inputs_type.rb +58 -0
- data/projects/command/src/concerns/namespace.rb +49 -0
- data/projects/command/src/concerns/reflection.rb +137 -0
- data/projects/command/src/concerns/result.rb +25 -0
- data/projects/command/src/concerns/result_type.rb +29 -0
- data/projects/command/src/concerns/runtime.rb +119 -0
- data/projects/command/src/concerns/state_machine.rb +12 -0
- data/projects/command/src/concerns/subcommands.rb +102 -0
- data/projects/command/src/concerns/transactions.rb +81 -0
- data/projects/command/src/state_machine.rb +57 -0
- data/projects/command/src/transformed_command.rb +459 -0
- data/projects/command_connectors/lib/foobara/command_connectors.rb +12 -0
- data/projects/command_connectors/src/command_connector.rb +401 -0
- data/projects/command_connectors/src/command_registry/allowed_rule.rb +29 -0
- data/projects/command_connectors/src/command_registry/exposed_command.rb +140 -0
- data/projects/command_connectors/src/command_registry/exposed_domain.rb +30 -0
- data/projects/command_connectors/src/command_registry/exposed_organization.rb +30 -0
- data/projects/command_connectors/src/command_registry.rb +257 -0
- data/projects/command_connectors/src/commands/describe.rb +36 -0
- data/projects/command_connectors/src/commands/list_commands.rb +51 -0
- data/projects/command_connectors/src/commands/ping.rb +21 -0
- data/projects/command_connectors/src/commands/query_git_commit_info.rb +81 -0
- data/projects/command_connectors/src/request.rb +99 -0
- data/projects/command_connectors/src/response.rb +17 -0
- data/projects/command_connectors/src/serializer.rb +25 -0
- data/projects/command_connectors/src/serializers/aggregate_serializer.rb +32 -0
- data/projects/command_connectors/src/serializers/atomic_serializer.rb +25 -0
- data/projects/command_connectors/src/serializers/entities_to_primary_keys_serializer.rb +28 -0
- data/projects/command_connectors/src/serializers/errors_serializer.rb +18 -0
- data/projects/command_connectors/src/serializers/json_serializer.rb +20 -0
- data/projects/command_connectors/src/serializers/noop_serializer.rb +20 -0
- data/projects/command_connectors/src/serializers/record_store_serializer.rb +31 -0
- data/projects/command_connectors/src/serializers/success_serializer.rb +14 -0
- data/projects/command_connectors/src/serializers/yaml_serializer.rb +20 -0
- data/projects/command_connectors/src/transformers/auth_errors_transformer.rb +35 -0
- data/projects/command_connectors/src/transformers/load_aggregates_pre_commit_transformer.rb +36 -0
- data/projects/command_connectors_http/lib/foobara/command_connectors_http.rb +6 -0
- data/projects/command_connectors_http/src/http/commands/get_options.rb +16 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/command.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/domain.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/entity.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/error.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/model.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/organization.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/processor.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/processor_class.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/root.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter/type.rb +14 -0
- data/projects/command_connectors_http/src/http/commands/help/presenter.rb +162 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/command.html.erb +11 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/domain.html.erb +1 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/entity.html.erb +1 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/error.html.erb +1 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/model.html.erb +1 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/organization.html.erb +1 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/processor.html.erb +1 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/processor_class.html.erb +1 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/root.html.erb +3 -0
- data/projects/command_connectors_http/src/http/commands/help/templates/type.html.erb +1 -0
- data/projects/command_connectors_http/src/http/commands/help.rb +98 -0
- data/projects/command_connectors_http/src/http/request.rb +98 -0
- data/projects/command_connectors_http/src/http/response.rb +14 -0
- data/projects/command_connectors_http/src/http.rb +84 -0
- data/projects/common/lib/foobara/common.rb +11 -0
- data/projects/common/src/data_path.rb +272 -0
- data/projects/common/src/error.rb +215 -0
- data/projects/common/src/error_collection.rb +97 -0
- data/projects/common/src/error_key.rb +168 -0
- data/projects/common/src/outcome.rb +101 -0
- data/projects/common/src/possible_error.rb +80 -0
- data/projects/common/src/runtime_error.rb +24 -0
- data/projects/concerns/lib/foobara/concerns.rb +1 -0
- data/projects/concerns/src/concern.rb +93 -0
- data/projects/delegate/lib/foobara/delegate.rb +1 -0
- data/projects/delegate/src/extensions/module.rb +12 -0
- data/projects/domain/lib/foobara/domain.rb +25 -0
- data/projects/domain/src/domain.rb +65 -0
- data/projects/domain/src/domain_mapper/registry.rb +47 -0
- data/projects/domain/src/domain_mapper.rb +162 -0
- data/projects/domain/src/domain_module_extension.rb +510 -0
- data/projects/domain/src/extensions/foobara.rb +69 -0
- data/projects/domain/src/global_domain.rb +14 -0
- data/projects/domain/src/global_organization.rb +12 -0
- data/projects/domain/src/is_manifestable.rb +68 -0
- data/projects/domain/src/manifestable.rb +12 -0
- data/projects/domain/src/module_extension.rb +122 -0
- data/projects/domain/src/organization.rb +52 -0
- data/projects/domain/src/organization_module_extension.rb +50 -0
- data/projects/entity/lib/foobara/entity.rb +27 -0
- data/projects/entity/src/concerns/associations.rb +241 -0
- data/projects/entity/src/concerns/attributes.rb +170 -0
- data/projects/entity/src/concerns/callbacks.rb +97 -0
- data/projects/entity/src/concerns/initialization.rb +127 -0
- data/projects/entity/src/concerns/persistence.rb +142 -0
- data/projects/entity/src/concerns/primary_key.rb +43 -0
- data/projects/entity/src/concerns/queries.rb +96 -0
- data/projects/entity/src/concerns/reflection.rb +51 -0
- data/projects/entity/src/concerns/transactions.rb +31 -0
- data/projects/entity/src/concerns/types.rb +31 -0
- data/projects/entity/src/entity.rb +61 -0
- data/projects/entity/src/extensions/builtin_types/entity/casters/hash.rb +33 -0
- data/projects/entity/src/extensions/builtin_types/entity/validators/attributes_declaration.rb +32 -0
- data/projects/entity/src/extensions/builtin_types/entity.rb +6 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration/attributes_handler_desugarizer.rb +14 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration/hash_desugarizer.rb +43 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration/model_class_desugarizer.rb +21 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration/primary_key_desugarizer.rb +19 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration/to_type_transformer.rb +64 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration/validate_primary_key_is_symbol.rb +35 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration/validate_primary_key_present.rb +27 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration/validate_primary_key_references_attribute.rb +36 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration.rb +11 -0
- data/projects/entity/src/new_prepend.rb +21 -0
- data/projects/entity/src/not_found_error.rb +72 -0
- data/projects/enumerated/lib/foobara/enumerated.rb +1 -0
- data/projects/enumerated/src/accessors.rb +61 -0
- data/projects/enumerated/src/values.rb +121 -0
- data/projects/foobara/lib/foobara/all.rb +44 -0
- data/projects/in_memory_crud_driver/lib/foobara/in_memory_crud_driver.rb +3 -0
- data/projects/in_memory_crud_driver/src/in_memory.rb +10 -0
- data/projects/in_memory_crud_driver_minimal/lib/foobara/in_memory_crud_driver_minimal.rb +1 -0
- data/projects/in_memory_crud_driver_minimal/src/in_memory_minimal.rb +113 -0
- data/projects/manifest/lib/foobara/manifest.rb +4 -0
- data/projects/manifest/src/foobara/manifest/array.rb +13 -0
- data/projects/manifest/src/foobara/manifest/attributes.rb +40 -0
- data/projects/manifest/src/foobara/manifest/base_manifest.rb +161 -0
- data/projects/manifest/src/foobara/manifest/command.rb +59 -0
- data/projects/manifest/src/foobara/manifest/domain.rb +43 -0
- data/projects/manifest/src/foobara/manifest/entity.rb +35 -0
- data/projects/manifest/src/foobara/manifest/error.rb +33 -0
- data/projects/manifest/src/foobara/manifest/model.rb +43 -0
- data/projects/manifest/src/foobara/manifest/organization.rb +45 -0
- data/projects/manifest/src/foobara/manifest/possible_error.rb +30 -0
- data/projects/manifest/src/foobara/manifest/processor.rb +11 -0
- data/projects/manifest/src/foobara/manifest/processor_class.rb +11 -0
- data/projects/manifest/src/foobara/manifest/root_manifest.rb +112 -0
- data/projects/manifest/src/foobara/manifest/type.rb +86 -0
- data/projects/manifest/src/foobara/manifest/type_declaration.rb +117 -0
- data/projects/model/lib/foobara/model.rb +23 -0
- data/projects/model/src/concerns/reflection.rb +22 -0
- data/projects/model/src/concerns/types.rb +104 -0
- data/projects/model/src/extensions/builtin_types/model/casters/hash.rb +23 -0
- data/projects/model/src/extensions/builtin_types/model/transformers/mutable.rb +26 -0
- data/projects/model/src/extensions/builtin_types/model/validators/attributes_declaration.rb +33 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_model_type_declaration/attributes_handler_desugarizer.rb +24 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_model_type_declaration/hash_desugarizer.rb +32 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_model_type_declaration/model_class_desugarizer.rb +119 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_model_type_declaration/to_type_transformer.rb +57 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_model_type_declaration.rb +21 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/hash_desugarizer.rb +37 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/model_class_type_desugarizer.rb +25 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/mutable_validator.rb +46 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/normalize_mutable_attributes_desugarizer.rb +28 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/to_type_transformer.rb +27 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration.rb +31 -0
- data/projects/model/src/extensions/type_declarations/handlers/registered_type_declaration/model_class_desugarizer.rb +23 -0
- data/projects/model/src/model.rb +320 -0
- data/projects/monorepo/lib/foobara/monorepo/project.rb +52 -0
- data/projects/monorepo/lib/foobara/monorepo.rb +63 -0
- data/projects/namespace/lib/foobara/namespace.rb +4 -0
- data/projects/namespace/src/ambiguous_registry.rb +104 -0
- data/projects/namespace/src/base_registry.rb +66 -0
- data/projects/namespace/src/extensions/module.rb +5 -0
- data/projects/namespace/src/is_namespace.rb +352 -0
- data/projects/namespace/src/namespace/lookup_mode.rb +41 -0
- data/projects/namespace/src/namespace.rb +61 -0
- data/projects/namespace/src/namespace_helpers.rb +273 -0
- data/projects/namespace/src/prefixless_registry.rb +54 -0
- data/projects/namespace/src/scoped.rb +113 -0
- data/projects/namespace/src/unambiguous_registry.rb +65 -0
- data/projects/persistence/lib/foobara/persistence.rb +22 -0
- data/projects/persistence/src/entity_attributes_crud_driver.rb +241 -0
- data/projects/persistence/src/entity_base/table.rb +14 -0
- data/projects/persistence/src/entity_base/transaction/concerns/entity_callback_handling.rb +157 -0
- data/projects/persistence/src/entity_base/transaction/concerns/state_transitions.rb +83 -0
- data/projects/persistence/src/entity_base/transaction/concerns/transaction_tracking.rb +53 -0
- data/projects/persistence/src/entity_base/transaction/state_machine.rb +27 -0
- data/projects/persistence/src/entity_base/transaction.rb +163 -0
- data/projects/persistence/src/entity_base/transaction_table/concerns/queries.rb +42 -0
- data/projects/persistence/src/entity_base/transaction_table/concerns/record_tracking.rb +134 -0
- data/projects/persistence/src/entity_base/transaction_table.rb +620 -0
- data/projects/persistence/src/entity_base.rb +114 -0
- data/projects/persistence/src/persistence.rb +172 -0
- data/projects/state_machine/lib/foobara/state_machine.rb +1 -0
- data/projects/state_machine/src/callbacks.rb +158 -0
- data/projects/state_machine/src/log_entry.rb +13 -0
- data/projects/state_machine/src/state_machine.rb +91 -0
- data/projects/state_machine/src/sugar.rb +125 -0
- data/projects/state_machine/src/transition_log.rb +19 -0
- data/projects/state_machine/src/validations.rb +69 -0
- data/projects/thread_parent/lib/foobara/thread_parent.rb +1 -0
- data/projects/thread_parent/src/thread_parent.rb +38 -0
- data/projects/type_declarations/lib/foobara/type_declarations.rb +131 -0
- data/projects/type_declarations/src/attributes.rb +34 -0
- data/projects/type_declarations/src/caster.rb +7 -0
- data/projects/type_declarations/src/desugarizer.rb +25 -0
- data/projects/type_declarations/src/dsl/attributes.rb +199 -0
- data/projects/type_declarations/src/element_processor.rb +7 -0
- data/projects/type_declarations/src/error_extension.rb +73 -0
- data/projects/type_declarations/src/handlers/extend_array_type_declaration/array_desugarizer.rb +31 -0
- data/projects/type_declarations/src/handlers/extend_array_type_declaration/element_type_declaration_desugarizer.rb +37 -0
- data/projects/type_declarations/src/handlers/extend_array_type_declaration/to_type_transformer.rb +22 -0
- data/projects/type_declarations/src/handlers/extend_array_type_declaration/type_set_to_array_desugarizer.rb +36 -0
- data/projects/type_declarations/src/handlers/extend_array_type_declaration.rb +14 -0
- data/projects/type_declarations/src/handlers/extend_associative_array_type_declaration/to_type_transformer.rb +28 -0
- data/projects/type_declarations/src/handlers/extend_associative_array_type_declaration.rb +20 -0
- data/projects/type_declarations/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb +25 -0
- data/projects/type_declarations/src/handlers/extend_attributes_type_declaration/element_type_declarations_desugarizer.rb +34 -0
- data/projects/type_declarations/src/handlers/extend_attributes_type_declaration/hash_desugarizer.rb +60 -0
- data/projects/type_declarations/src/handlers/extend_attributes_type_declaration/to_type_transformer.rb +21 -0
- data/projects/type_declarations/src/handlers/extend_attributes_type_declaration.rb +16 -0
- data/projects/type_declarations/src/handlers/extend_registered_type_declaration/to_type_transformer.rb +75 -0
- data/projects/type_declarations/src/handlers/extend_registered_type_declaration.rb +23 -0
- data/projects/type_declarations/src/handlers/extend_tuple_type_declaration/array_desugarizer.rb +30 -0
- data/projects/type_declarations/src/handlers/extend_tuple_type_declaration/to_type_transformer.rb +24 -0
- data/projects/type_declarations/src/handlers/extend_tuple_type_declaration.rb +13 -0
- data/projects/type_declarations/src/handlers/registered_type_declaration/desugarizer_metadata_cleanup_desugarizer.rb +29 -0
- data/projects/type_declarations/src/handlers/registered_type_declaration/short_type_name_desugarizer.rb +65 -0
- data/projects/type_declarations/src/handlers/registered_type_declaration/strict_desugarizer.rb +32 -0
- data/projects/type_declarations/src/handlers/registered_type_declaration/strict_stringified_desugarizer.rb +39 -0
- data/projects/type_declarations/src/handlers/registered_type_declaration/symbol_desugarizer.rb +26 -0
- data/projects/type_declarations/src/handlers/registered_type_declaration/to_type_transformer.rb +28 -0
- data/projects/type_declarations/src/handlers/registered_type_declaration/type_desugarizer.rb +24 -0
- data/projects/type_declarations/src/handlers/registered_type_declaration.rb +26 -0
- data/projects/type_declarations/src/processor.rb +7 -0
- data/projects/type_declarations/src/to_type_transformer.rb +11 -0
- data/projects/type_declarations/src/transformer.rb +7 -0
- data/projects/type_declarations/src/type_builder.rb +112 -0
- data/projects/type_declarations/src/type_declaration_error.rb +9 -0
- data/projects/type_declarations/src/type_declaration_handler.rb +120 -0
- data/projects/type_declarations/src/type_declaration_handler_registry.rb +27 -0
- data/projects/type_declarations/src/type_declaration_validator.rb +19 -0
- data/projects/type_declarations/src/type_declarations.rb +128 -0
- data/projects/type_declarations/src/typed_transformer.rb +89 -0
- data/projects/type_declarations/src/validator.rb +7 -0
- data/projects/type_declarations/src/with_registries.rb +41 -0
- data/projects/types/lib/foobara/types.rb +11 -0
- data/projects/types/src/element_processor.rb +7 -0
- data/projects/types/src/extensions/error.rb +32 -0
- data/projects/types/src/type/concerns/reflection.rb +79 -0
- data/projects/types/src/type/concerns/supported_processor_registration.rb +56 -0
- data/projects/types/src/type.rb +375 -0
- data/projects/types/src/types.rb +4 -0
- data/projects/value/lib/foobara/value.rb +7 -0
- data/projects/value/src/caster.rb +84 -0
- data/projects/value/src/data_error.rb +27 -0
- data/projects/value/src/processor/casting.rb +123 -0
- data/projects/value/src/processor/multi.rb +63 -0
- data/projects/value/src/processor/pipeline.rb +27 -0
- data/projects/value/src/processor/runner.rb +38 -0
- data/projects/value/src/processor/selection.rb +90 -0
- data/projects/value/src/processor.rb +358 -0
- data/projects/value/src/transformer.rb +84 -0
- data/projects/value/src/validator.rb +53 -0
- data/projects/version/lib/foobara/version.rb +4 -0
- data/projects/version/src/version.rb +5 -0
- data/projects/weak_object_set/lib/foobara/weak_object_set.rb +3 -0
- data/projects/weak_object_set/src/weak_object_set.rb +163 -0
- metadata +445 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
module Foobara
|
2
|
+
module BuiltinTypes
|
3
|
+
module Model
|
4
|
+
# TODO: Create Mutations/SupportedMutations concept
|
5
|
+
class Transformers
|
6
|
+
class Mutable < TypeDeclarations::Transformer
|
7
|
+
class << self
|
8
|
+
def requires_parent_declaration_data?
|
9
|
+
true
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def transform(record)
|
14
|
+
record.mutable = if parent_declaration_data.key?(:mutable)
|
15
|
+
parent_declaration_data[:mutable]
|
16
|
+
else
|
17
|
+
false
|
18
|
+
end
|
19
|
+
|
20
|
+
record
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module Foobara
|
2
|
+
module BuiltinTypes
|
3
|
+
module Model
|
4
|
+
module Validators
|
5
|
+
class AttributesDeclaration < TypeDeclarations::Processor
|
6
|
+
class << self
|
7
|
+
def requires_parent_declaration_data?
|
8
|
+
true
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def always_applicable?
|
13
|
+
true
|
14
|
+
end
|
15
|
+
|
16
|
+
def process_value(model_instance)
|
17
|
+
Outcome.new(result: model_instance, errors: model_instance.validation_errors)
|
18
|
+
end
|
19
|
+
|
20
|
+
def possible_errors
|
21
|
+
model_class_name = parent_declaration_data[:model_class]
|
22
|
+
|
23
|
+
if model_class_name
|
24
|
+
Object.const_get(model_class_name).possible_errors
|
25
|
+
else
|
26
|
+
super
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
class AttributesHandlerDesugarizer < TypeDeclarations::Desugarizer
|
6
|
+
def applicable?(sugary_type_declaration)
|
7
|
+
sugary_type_declaration[:type] == expected_type_symbol
|
8
|
+
end
|
9
|
+
|
10
|
+
def expected_type_symbol
|
11
|
+
:model
|
12
|
+
end
|
13
|
+
|
14
|
+
def desugarize(sugary_type_declaration)
|
15
|
+
handler = handler_for_class(ExtendAttributesTypeDeclaration)
|
16
|
+
attributes_type_declaration = sugary_type_declaration[:attributes_declaration]
|
17
|
+
|
18
|
+
sugary_type_declaration.merge(attributes_declaration: handler.desugarize(attributes_type_declaration))
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
class HashDesugarizer < TypeDeclarations::Desugarizer
|
6
|
+
def applicable?(sugary_type_declaration)
|
7
|
+
return false unless sugary_type_declaration.is_a?(::Hash)
|
8
|
+
return false unless Util.all_symbolizable_keys?(sugary_type_declaration)
|
9
|
+
|
10
|
+
sugary_type_declaration = Util.symbolize_keys(sugary_type_declaration)
|
11
|
+
|
12
|
+
return true unless sugary_type_declaration.key?(:type)
|
13
|
+
|
14
|
+
sugary_type_declaration[:type] == expected_type_symbol
|
15
|
+
end
|
16
|
+
|
17
|
+
def expected_type_symbol
|
18
|
+
:model
|
19
|
+
end
|
20
|
+
|
21
|
+
def desugarize(sugary_type_declaration)
|
22
|
+
Util.symbolize_keys(sugary_type_declaration)
|
23
|
+
end
|
24
|
+
|
25
|
+
def priority
|
26
|
+
Priority::HIGH
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,119 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
class ModelClassDesugarizer < TypeDeclarations::Desugarizer
|
6
|
+
def applicable?(sugary_type_declaration)
|
7
|
+
sugary_type_declaration[:type] == expected_type_symbol
|
8
|
+
end
|
9
|
+
|
10
|
+
def expected_type_symbol
|
11
|
+
:model
|
12
|
+
end
|
13
|
+
|
14
|
+
def default_model_base_class
|
15
|
+
Foobara::Model
|
16
|
+
end
|
17
|
+
|
18
|
+
def desugarize(strictish_type_declaration)
|
19
|
+
klass = strictish_type_declaration[:model_class]
|
20
|
+
|
21
|
+
model_module = if strictish_type_declaration.key?(:model_module)
|
22
|
+
mod = strictish_type_declaration[:model_module]
|
23
|
+
|
24
|
+
mod = case mod
|
25
|
+
when ::Module
|
26
|
+
mod
|
27
|
+
when ::String, ::Symbol
|
28
|
+
Object.const_get(mod)
|
29
|
+
else
|
30
|
+
# :nocov:
|
31
|
+
raise ArgumentError,
|
32
|
+
"expected module_module to be a module or module name"
|
33
|
+
# :nocov:
|
34
|
+
end
|
35
|
+
|
36
|
+
if mod == GlobalDomain
|
37
|
+
Object
|
38
|
+
else
|
39
|
+
mod
|
40
|
+
end
|
41
|
+
else
|
42
|
+
Object
|
43
|
+
end
|
44
|
+
|
45
|
+
model_class = if klass.is_a?(::Class)
|
46
|
+
klass
|
47
|
+
elsif klass && Object.const_defined?(klass) && Object.const_get(klass).is_a?(::Class)
|
48
|
+
Object.const_get(klass)
|
49
|
+
else
|
50
|
+
model_base_class = strictish_type_declaration[:model_base_class] || default_model_base_class
|
51
|
+
|
52
|
+
if model_base_class.is_a?(::String) || model_base_class.is_a?(::Symbol)
|
53
|
+
model_base_class = Object.const_get(model_base_class)
|
54
|
+
end
|
55
|
+
|
56
|
+
# TODO: why not call this domain_module instead????
|
57
|
+
|
58
|
+
model_name = strictish_type_declaration[:name]
|
59
|
+
|
60
|
+
existing_class = if model_module.const_defined?(model_name)
|
61
|
+
model_module.const_get(model_name)
|
62
|
+
end
|
63
|
+
|
64
|
+
# TODO: This is a pretty crazy situation and hacky. Should come up with a better solution.
|
65
|
+
# Here's the situation: if models are nested, like A::B and A and A::B are modules, then
|
66
|
+
# if A::B is imported first, A will be created as a module via make_module_p.
|
67
|
+
# But then when we are here creating A, A is already in use incorrectly as a module.
|
68
|
+
# We need to move A out of the way but set all of its constants on the newly created model
|
69
|
+
# A.
|
70
|
+
if existing_class.is_a?(::Module) && !existing_class.is_a?(::Class)
|
71
|
+
if existing_class.instance_variable_get(
|
72
|
+
:@foobara_created_via_make_class
|
73
|
+
)
|
74
|
+
existing_module_to_copy_over = existing_class
|
75
|
+
parent_mod = Util.module_for(existing_class)
|
76
|
+
parent_mod.send(:remove_const, Util.non_full_name(existing_class))
|
77
|
+
existing_class = nil
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# TODO: feels too destructive to be in a desugarizer. Technically probably should be in the
|
82
|
+
# to type transformer instead.
|
83
|
+
existing_class || model_base_class.subclass(
|
84
|
+
**create_model_class_args(model_module:, type_declaration: strictish_type_declaration)
|
85
|
+
).tap do |model_class|
|
86
|
+
if existing_module_to_copy_over
|
87
|
+
Foobara::Domain::DomainModuleExtension._copy_constants(
|
88
|
+
existing_module_to_copy_over, model_class
|
89
|
+
)
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
strictish_type_declaration[:model_class] = model_class.name
|
95
|
+
model_module ||= Util.module_for(model_class)
|
96
|
+
|
97
|
+
model_module = nil if model_module == Object
|
98
|
+
|
99
|
+
strictish_type_declaration[:model_module] = model_module&.name
|
100
|
+
strictish_type_declaration[:model_base_class] = model_class.superclass.name
|
101
|
+
|
102
|
+
strictish_type_declaration
|
103
|
+
end
|
104
|
+
|
105
|
+
def create_model_class_args(model_module:, type_declaration:)
|
106
|
+
{
|
107
|
+
name: type_declaration[:name],
|
108
|
+
model_module:
|
109
|
+
}
|
110
|
+
end
|
111
|
+
|
112
|
+
def priority
|
113
|
+
Priority::LOW
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
class ToTypeTransformer < ExtendRegisteredTypeDeclaration::ToTypeTransformer
|
6
|
+
# TODO: make declaration validator for model_class and model_base_class
|
7
|
+
def target_classes(strict_type_declaration)
|
8
|
+
Object.const_get(strict_type_declaration[:model_class])
|
9
|
+
end
|
10
|
+
|
11
|
+
# TODO: must explode if name missing...
|
12
|
+
def type_name(strict_type_declaration)
|
13
|
+
strict_type_declaration[:name]
|
14
|
+
end
|
15
|
+
|
16
|
+
# TODO: create declaration validator for name and the others
|
17
|
+
# TODO: seems like a smell that we don't have processors for these?
|
18
|
+
def non_processor_keys
|
19
|
+
[:name, :model_class, :model_base_class, :model_module, :attributes_declaration, :mutable, *super]
|
20
|
+
end
|
21
|
+
|
22
|
+
def process_value(...)
|
23
|
+
super.tap do |outcome|
|
24
|
+
if outcome.success?
|
25
|
+
type = outcome.result
|
26
|
+
|
27
|
+
handler = handler_for_class(ExtendAttributesTypeDeclaration)
|
28
|
+
attributes_type_declaration = type.declaration_data[:attributes_declaration]
|
29
|
+
|
30
|
+
type.element_types = handler.process_value!(attributes_type_declaration)
|
31
|
+
|
32
|
+
model_class = type.target_class
|
33
|
+
existing_model_type = model_class.model_type
|
34
|
+
|
35
|
+
domain = model_class.domain || Domain.global
|
36
|
+
|
37
|
+
if existing_model_type
|
38
|
+
if existing_model_type.declaration_data != type.declaration_data &&
|
39
|
+
domain.foobara_type_registered?(existing_model_type)
|
40
|
+
type.type_symbol = type.declaration_data[:name]
|
41
|
+
model_class.model_type = type
|
42
|
+
domain.foobara_reregister_model(model_class)
|
43
|
+
end
|
44
|
+
else
|
45
|
+
model_class.model_type = type
|
46
|
+
type.type_symbol = type.declaration_data[:name]
|
47
|
+
model_class.description type.declaration_data[:description]
|
48
|
+
domain.foobara_register_model(model_class)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
data/projects/model/src/extensions/type_declarations/handlers/extend_model_type_declaration.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
def applicable?(sugary_type_declaration)
|
6
|
+
if sugary_type_declaration.is_a?(::Hash)
|
7
|
+
desugarize(sugary_type_declaration)[:type] == expected_type_symbol
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
def expected_type_symbol
|
12
|
+
:model
|
13
|
+
end
|
14
|
+
|
15
|
+
def priority
|
16
|
+
Priority::LOW
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendRegisteredModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
class HashDesugarizer < TypeDeclarations::Desugarizer
|
6
|
+
def applicable?(sugary_type_declaration)
|
7
|
+
return false unless sugary_type_declaration.is_a?(::Hash)
|
8
|
+
|
9
|
+
type_symbol = sugary_type_declaration[:type]
|
10
|
+
|
11
|
+
if type_symbol
|
12
|
+
if type_symbol.is_a?(::Symbol) && type_registered?(type_symbol)
|
13
|
+
type = Foobara.foobara_root_namespace.foobara_lookup_type(
|
14
|
+
type_symbol, mode: Namespace::LookupMode::ABSOLUTE
|
15
|
+
)
|
16
|
+
|
17
|
+
type&.extends?(BuiltinTypes[expected_type_symbol])
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def expected_type_symbol
|
23
|
+
:model
|
24
|
+
end
|
25
|
+
|
26
|
+
def desugarize(sugary_type_declaration)
|
27
|
+
Util.symbolize_keys(sugary_type_declaration)
|
28
|
+
end
|
29
|
+
|
30
|
+
def priority
|
31
|
+
Priority::HIGH
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendRegisteredModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
class ModelClassTypeDesugarizer < TypeDeclarations::Desugarizer
|
6
|
+
def applicable?(sugary_type_declaration)
|
7
|
+
if sugary_type_declaration.is_a?(::Hash) && sugary_type_declaration.key?(:type)
|
8
|
+
type = sugary_type_declaration[:type]
|
9
|
+
type.is_a?(::Class) && type < Model
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def desugarize(hash)
|
14
|
+
model_class = hash[:type]
|
15
|
+
hash.merge(type: model_class.model_type.foobara_manifest_reference.to_sym)
|
16
|
+
end
|
17
|
+
|
18
|
+
def priority
|
19
|
+
Priority::FIRST
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendRegisteredModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
class MutableValidator < TypeDeclarations::TypeDeclarationValidator
|
6
|
+
class InvalidMutableValueGivenError < Value::DataError
|
7
|
+
class << self
|
8
|
+
def context_type_declaration
|
9
|
+
{
|
10
|
+
invalid_key: :symbol,
|
11
|
+
valid_attribute_names: [:symbol],
|
12
|
+
mutable: [:symbol]
|
13
|
+
}
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def applicable?(value)
|
19
|
+
value.key?(:mutable)
|
20
|
+
end
|
21
|
+
|
22
|
+
def validation_errors(strict_type_declaration)
|
23
|
+
mutable = strict_type_declaration[:mutable]
|
24
|
+
return if [true, false].include?(mutable)
|
25
|
+
|
26
|
+
model_type = type_for_declaration(strict_type_declaration[:type])
|
27
|
+
valid_attribute_names = model_type.element_types.element_types.keys
|
28
|
+
|
29
|
+
mutable.map do |key|
|
30
|
+
unless valid_attribute_names.include?(key)
|
31
|
+
build_error(
|
32
|
+
message: "#{key} is not a valid attribute, expected one of #{valid_attribute_names}",
|
33
|
+
context: {
|
34
|
+
invalid_key: key,
|
35
|
+
valid_attribute_names:,
|
36
|
+
mutable:
|
37
|
+
}
|
38
|
+
)
|
39
|
+
end
|
40
|
+
end.compact
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendRegisteredModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
class NormalizeMutableAttributesDesugarizer < TypeDeclarations::Desugarizer
|
6
|
+
def applicable?(value)
|
7
|
+
if value.is_a?(::Hash) && value.key?(:mutable) && value.key?(:type)
|
8
|
+
mutable = value[:mutable]
|
9
|
+
|
10
|
+
return false if [true, false].include?(mutable)
|
11
|
+
|
12
|
+
if !mutable.is_a?(::Array) || (mutable.is_a?(::Array) && mutable.any? { |k| !k.is_a?(::Symbol) })
|
13
|
+
type = type_for_declaration(value[:type])
|
14
|
+
type.extends?(BuiltinTypes[:model])
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def desugarize(rawish_type_declaration)
|
20
|
+
rawish_type_declaration.merge(
|
21
|
+
mutable: Util.array(rawish_type_declaration[:mutable]).map!(&:to_sym)
|
22
|
+
)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class ExtendRegisteredModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
5
|
+
class ToTypeTransformer < ExtendRegisteredTypeDeclaration::ToTypeTransformer
|
6
|
+
# TODO: make declaration validator for model_class and model_base_class
|
7
|
+
def target_classes(strict_type_declaration)
|
8
|
+
declaration_to_type(strict_type_declaration).target_classes
|
9
|
+
end
|
10
|
+
|
11
|
+
# TODO: must explode if name missing...
|
12
|
+
def type_name(strict_type_declaration)
|
13
|
+
declaration_to_type(strict_type_declaration).name
|
14
|
+
end
|
15
|
+
|
16
|
+
def declaration_to_type(strict_type_declaration)
|
17
|
+
type_for_declaration(strict_type_declaration[:type])
|
18
|
+
end
|
19
|
+
|
20
|
+
def non_processor_keys
|
21
|
+
[:mutable, *super]
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
# Why doesn't this inherit from ExtendModelTypeDeclaration
|
5
|
+
class ExtendRegisteredModelTypeDeclaration < ExtendRegisteredTypeDeclaration
|
6
|
+
def applicable?(sugary_type_declaration)
|
7
|
+
strict_type_declaration = desugarize(sugary_type_declaration)
|
8
|
+
|
9
|
+
if strict_type_declaration.is_a?(::Hash) && strict_type_declaration.key?(:type)
|
10
|
+
type_symbol = strict_type_declaration[:type]
|
11
|
+
|
12
|
+
return false if type_symbol == expected_type_symbol
|
13
|
+
|
14
|
+
if type_registered?(type_symbol)
|
15
|
+
type = type_for_declaration(type_symbol)
|
16
|
+
type.extends?(BuiltinTypes[expected_type_symbol])
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def expected_type_symbol
|
22
|
+
:model
|
23
|
+
end
|
24
|
+
|
25
|
+
def priority
|
26
|
+
super - 1
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Foobara
|
2
|
+
module TypeDeclarations
|
3
|
+
module Handlers
|
4
|
+
class RegisteredTypeDeclaration < TypeDeclarationHandler
|
5
|
+
class ModelClassDesugarizer < TypeDeclarations::Desugarizer
|
6
|
+
def applicable?(sugary_type_declaration)
|
7
|
+
sugary_type_declaration.is_a?(Class) && sugary_type_declaration < Model
|
8
|
+
end
|
9
|
+
|
10
|
+
def desugarize(model_class)
|
11
|
+
{
|
12
|
+
type: model_class.model_type.foobara_manifest_reference.to_sym
|
13
|
+
}
|
14
|
+
end
|
15
|
+
|
16
|
+
def priority
|
17
|
+
Priority::FIRST - 1
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|