omnibase_infra 0.2.1__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.
Files changed (675) hide show
  1. omnibase_infra/__init__.py +101 -0
  2. omnibase_infra/cli/__init__.py +1 -0
  3. omnibase_infra/cli/commands.py +216 -0
  4. omnibase_infra/clients/__init__.py +0 -0
  5. omnibase_infra/contracts/handlers/filesystem/handler_contract.yaml +261 -0
  6. omnibase_infra/contracts/handlers/mcp/handler_contract.yaml +138 -0
  7. omnibase_infra/decorators/__init__.py +29 -0
  8. omnibase_infra/decorators/allow_any.py +109 -0
  9. omnibase_infra/dlq/__init__.py +90 -0
  10. omnibase_infra/dlq/constants_dlq.py +57 -0
  11. omnibase_infra/dlq/models/__init__.py +26 -0
  12. omnibase_infra/dlq/models/enum_replay_status.py +37 -0
  13. omnibase_infra/dlq/models/model_dlq_replay_record.py +135 -0
  14. omnibase_infra/dlq/models/model_dlq_tracking_config.py +184 -0
  15. omnibase_infra/dlq/service_dlq_tracking.py +611 -0
  16. omnibase_infra/enums/__init__.py +123 -0
  17. omnibase_infra/enums/enum_any_type_violation.py +104 -0
  18. omnibase_infra/enums/enum_backend_type.py +27 -0
  19. omnibase_infra/enums/enum_capture_outcome.py +42 -0
  20. omnibase_infra/enums/enum_capture_state.py +88 -0
  21. omnibase_infra/enums/enum_chain_violation_type.py +119 -0
  22. omnibase_infra/enums/enum_circuit_state.py +51 -0
  23. omnibase_infra/enums/enum_confirmation_event_type.py +27 -0
  24. omnibase_infra/enums/enum_contract_type.py +84 -0
  25. omnibase_infra/enums/enum_dedupe_strategy.py +46 -0
  26. omnibase_infra/enums/enum_dispatch_status.py +191 -0
  27. omnibase_infra/enums/enum_environment.py +46 -0
  28. omnibase_infra/enums/enum_execution_shape_violation.py +103 -0
  29. omnibase_infra/enums/enum_handler_error_type.py +101 -0
  30. omnibase_infra/enums/enum_handler_loader_error.py +178 -0
  31. omnibase_infra/enums/enum_handler_source_type.py +87 -0
  32. omnibase_infra/enums/enum_handler_type.py +77 -0
  33. omnibase_infra/enums/enum_handler_type_category.py +61 -0
  34. omnibase_infra/enums/enum_infra_transport_type.py +73 -0
  35. omnibase_infra/enums/enum_introspection_reason.py +154 -0
  36. omnibase_infra/enums/enum_message_category.py +213 -0
  37. omnibase_infra/enums/enum_node_archetype.py +74 -0
  38. omnibase_infra/enums/enum_node_output_type.py +185 -0
  39. omnibase_infra/enums/enum_non_retryable_error_category.py +224 -0
  40. omnibase_infra/enums/enum_policy_type.py +32 -0
  41. omnibase_infra/enums/enum_registration_state.py +261 -0
  42. omnibase_infra/enums/enum_registration_status.py +33 -0
  43. omnibase_infra/enums/enum_registry_response_status.py +28 -0
  44. omnibase_infra/enums/enum_response_status.py +26 -0
  45. omnibase_infra/enums/enum_retry_error_category.py +98 -0
  46. omnibase_infra/enums/enum_security_rule_id.py +103 -0
  47. omnibase_infra/enums/enum_selection_strategy.py +91 -0
  48. omnibase_infra/enums/enum_topic_standard.py +42 -0
  49. omnibase_infra/enums/enum_validation_severity.py +78 -0
  50. omnibase_infra/errors/__init__.py +156 -0
  51. omnibase_infra/errors/error_architecture_violation.py +152 -0
  52. omnibase_infra/errors/error_chain_propagation.py +188 -0
  53. omnibase_infra/errors/error_compute_registry.py +92 -0
  54. omnibase_infra/errors/error_consul.py +132 -0
  55. omnibase_infra/errors/error_container_wiring.py +243 -0
  56. omnibase_infra/errors/error_event_bus_registry.py +102 -0
  57. omnibase_infra/errors/error_infra.py +608 -0
  58. omnibase_infra/errors/error_message_type_registry.py +101 -0
  59. omnibase_infra/errors/error_policy_registry.py +112 -0
  60. omnibase_infra/errors/error_vault.py +123 -0
  61. omnibase_infra/event_bus/__init__.py +72 -0
  62. omnibase_infra/event_bus/configs/kafka_event_bus_config.yaml +86 -0
  63. omnibase_infra/event_bus/event_bus_inmemory.py +743 -0
  64. omnibase_infra/event_bus/event_bus_kafka.py +1658 -0
  65. omnibase_infra/event_bus/mixin_kafka_broadcast.py +184 -0
  66. omnibase_infra/event_bus/mixin_kafka_dlq.py +765 -0
  67. omnibase_infra/event_bus/models/__init__.py +29 -0
  68. omnibase_infra/event_bus/models/config/__init__.py +20 -0
  69. omnibase_infra/event_bus/models/config/model_kafka_event_bus_config.py +725 -0
  70. omnibase_infra/event_bus/models/model_dlq_event.py +206 -0
  71. omnibase_infra/event_bus/models/model_dlq_metrics.py +304 -0
  72. omnibase_infra/event_bus/models/model_event_headers.py +115 -0
  73. omnibase_infra/event_bus/models/model_event_message.py +60 -0
  74. omnibase_infra/event_bus/topic_constants.py +376 -0
  75. omnibase_infra/handlers/__init__.py +75 -0
  76. omnibase_infra/handlers/filesystem/__init__.py +48 -0
  77. omnibase_infra/handlers/filesystem/enum_file_system_operation.py +35 -0
  78. omnibase_infra/handlers/filesystem/model_file_system_request.py +298 -0
  79. omnibase_infra/handlers/filesystem/model_file_system_result.py +166 -0
  80. omnibase_infra/handlers/handler_consul.py +787 -0
  81. omnibase_infra/handlers/handler_db.py +1039 -0
  82. omnibase_infra/handlers/handler_filesystem.py +1478 -0
  83. omnibase_infra/handlers/handler_graph.py +1154 -0
  84. omnibase_infra/handlers/handler_http.py +920 -0
  85. omnibase_infra/handlers/handler_manifest_persistence.contract.yaml +184 -0
  86. omnibase_infra/handlers/handler_manifest_persistence.py +1539 -0
  87. omnibase_infra/handlers/handler_mcp.py +748 -0
  88. omnibase_infra/handlers/handler_qdrant.py +1076 -0
  89. omnibase_infra/handlers/handler_vault.py +422 -0
  90. omnibase_infra/handlers/mcp/__init__.py +19 -0
  91. omnibase_infra/handlers/mcp/adapter_onex_to_mcp.py +446 -0
  92. omnibase_infra/handlers/mcp/protocols.py +178 -0
  93. omnibase_infra/handlers/mcp/transport_streamable_http.py +352 -0
  94. omnibase_infra/handlers/mixins/__init__.py +42 -0
  95. omnibase_infra/handlers/mixins/mixin_consul_initialization.py +349 -0
  96. omnibase_infra/handlers/mixins/mixin_consul_kv.py +337 -0
  97. omnibase_infra/handlers/mixins/mixin_consul_service.py +277 -0
  98. omnibase_infra/handlers/mixins/mixin_vault_initialization.py +338 -0
  99. omnibase_infra/handlers/mixins/mixin_vault_retry.py +412 -0
  100. omnibase_infra/handlers/mixins/mixin_vault_secrets.py +450 -0
  101. omnibase_infra/handlers/mixins/mixin_vault_token.py +365 -0
  102. omnibase_infra/handlers/models/__init__.py +286 -0
  103. omnibase_infra/handlers/models/consul/__init__.py +81 -0
  104. omnibase_infra/handlers/models/consul/enum_consul_operation_type.py +57 -0
  105. omnibase_infra/handlers/models/consul/model_consul_deregister_payload.py +51 -0
  106. omnibase_infra/handlers/models/consul/model_consul_handler_config.py +153 -0
  107. omnibase_infra/handlers/models/consul/model_consul_handler_payload.py +89 -0
  108. omnibase_infra/handlers/models/consul/model_consul_kv_get_found_payload.py +55 -0
  109. omnibase_infra/handlers/models/consul/model_consul_kv_get_not_found_payload.py +49 -0
  110. omnibase_infra/handlers/models/consul/model_consul_kv_get_recurse_payload.py +50 -0
  111. omnibase_infra/handlers/models/consul/model_consul_kv_item.py +33 -0
  112. omnibase_infra/handlers/models/consul/model_consul_kv_put_payload.py +41 -0
  113. omnibase_infra/handlers/models/consul/model_consul_register_payload.py +53 -0
  114. omnibase_infra/handlers/models/consul/model_consul_retry_config.py +66 -0
  115. omnibase_infra/handlers/models/consul/model_payload_consul.py +66 -0
  116. omnibase_infra/handlers/models/consul/registry_payload_consul.py +214 -0
  117. omnibase_infra/handlers/models/graph/__init__.py +35 -0
  118. omnibase_infra/handlers/models/graph/enum_graph_operation_type.py +20 -0
  119. omnibase_infra/handlers/models/graph/model_graph_execute_payload.py +38 -0
  120. omnibase_infra/handlers/models/graph/model_graph_handler_config.py +54 -0
  121. omnibase_infra/handlers/models/graph/model_graph_handler_payload.py +44 -0
  122. omnibase_infra/handlers/models/graph/model_graph_query_payload.py +40 -0
  123. omnibase_infra/handlers/models/graph/model_graph_record.py +22 -0
  124. omnibase_infra/handlers/models/http/__init__.py +50 -0
  125. omnibase_infra/handlers/models/http/enum_http_operation_type.py +29 -0
  126. omnibase_infra/handlers/models/http/model_http_body_content.py +45 -0
  127. omnibase_infra/handlers/models/http/model_http_get_payload.py +88 -0
  128. omnibase_infra/handlers/models/http/model_http_handler_payload.py +90 -0
  129. omnibase_infra/handlers/models/http/model_http_post_payload.py +88 -0
  130. omnibase_infra/handlers/models/http/model_payload_http.py +66 -0
  131. omnibase_infra/handlers/models/http/registry_payload_http.py +212 -0
  132. omnibase_infra/handlers/models/mcp/__init__.py +23 -0
  133. omnibase_infra/handlers/models/mcp/enum_mcp_operation_type.py +24 -0
  134. omnibase_infra/handlers/models/mcp/model_mcp_handler_config.py +40 -0
  135. omnibase_infra/handlers/models/mcp/model_mcp_tool_call.py +32 -0
  136. omnibase_infra/handlers/models/mcp/model_mcp_tool_result.py +45 -0
  137. omnibase_infra/handlers/models/model_consul_handler_response.py +96 -0
  138. omnibase_infra/handlers/models/model_db_describe_response.py +83 -0
  139. omnibase_infra/handlers/models/model_db_query_payload.py +95 -0
  140. omnibase_infra/handlers/models/model_db_query_response.py +60 -0
  141. omnibase_infra/handlers/models/model_filesystem_config.py +98 -0
  142. omnibase_infra/handlers/models/model_filesystem_delete_payload.py +54 -0
  143. omnibase_infra/handlers/models/model_filesystem_delete_result.py +77 -0
  144. omnibase_infra/handlers/models/model_filesystem_directory_entry.py +75 -0
  145. omnibase_infra/handlers/models/model_filesystem_ensure_directory_payload.py +54 -0
  146. omnibase_infra/handlers/models/model_filesystem_ensure_directory_result.py +60 -0
  147. omnibase_infra/handlers/models/model_filesystem_list_directory_payload.py +60 -0
  148. omnibase_infra/handlers/models/model_filesystem_list_directory_result.py +68 -0
  149. omnibase_infra/handlers/models/model_filesystem_read_payload.py +62 -0
  150. omnibase_infra/handlers/models/model_filesystem_read_result.py +61 -0
  151. omnibase_infra/handlers/models/model_filesystem_write_payload.py +70 -0
  152. omnibase_infra/handlers/models/model_filesystem_write_result.py +55 -0
  153. omnibase_infra/handlers/models/model_graph_handler_response.py +98 -0
  154. omnibase_infra/handlers/models/model_handler_response.py +103 -0
  155. omnibase_infra/handlers/models/model_http_handler_response.py +101 -0
  156. omnibase_infra/handlers/models/model_manifest_metadata.py +75 -0
  157. omnibase_infra/handlers/models/model_manifest_persistence_config.py +62 -0
  158. omnibase_infra/handlers/models/model_manifest_query_payload.py +90 -0
  159. omnibase_infra/handlers/models/model_manifest_query_result.py +97 -0
  160. omnibase_infra/handlers/models/model_manifest_retrieve_payload.py +44 -0
  161. omnibase_infra/handlers/models/model_manifest_retrieve_result.py +98 -0
  162. omnibase_infra/handlers/models/model_manifest_store_payload.py +47 -0
  163. omnibase_infra/handlers/models/model_manifest_store_result.py +67 -0
  164. omnibase_infra/handlers/models/model_operation_context.py +187 -0
  165. omnibase_infra/handlers/models/model_qdrant_handler_response.py +98 -0
  166. omnibase_infra/handlers/models/model_retry_state.py +162 -0
  167. omnibase_infra/handlers/models/model_vault_handler_response.py +98 -0
  168. omnibase_infra/handlers/models/qdrant/__init__.py +44 -0
  169. omnibase_infra/handlers/models/qdrant/enum_qdrant_operation_type.py +26 -0
  170. omnibase_infra/handlers/models/qdrant/model_qdrant_collection_payload.py +42 -0
  171. omnibase_infra/handlers/models/qdrant/model_qdrant_delete_payload.py +36 -0
  172. omnibase_infra/handlers/models/qdrant/model_qdrant_handler_config.py +42 -0
  173. omnibase_infra/handlers/models/qdrant/model_qdrant_handler_payload.py +54 -0
  174. omnibase_infra/handlers/models/qdrant/model_qdrant_search_payload.py +42 -0
  175. omnibase_infra/handlers/models/qdrant/model_qdrant_search_result.py +30 -0
  176. omnibase_infra/handlers/models/qdrant/model_qdrant_upsert_payload.py +36 -0
  177. omnibase_infra/handlers/models/vault/__init__.py +69 -0
  178. omnibase_infra/handlers/models/vault/enum_vault_operation_type.py +35 -0
  179. omnibase_infra/handlers/models/vault/model_payload_vault.py +66 -0
  180. omnibase_infra/handlers/models/vault/model_vault_delete_payload.py +57 -0
  181. omnibase_infra/handlers/models/vault/model_vault_handler_config.py +148 -0
  182. omnibase_infra/handlers/models/vault/model_vault_handler_payload.py +101 -0
  183. omnibase_infra/handlers/models/vault/model_vault_list_payload.py +58 -0
  184. omnibase_infra/handlers/models/vault/model_vault_renew_token_payload.py +67 -0
  185. omnibase_infra/handlers/models/vault/model_vault_retry_config.py +66 -0
  186. omnibase_infra/handlers/models/vault/model_vault_secret_payload.py +106 -0
  187. omnibase_infra/handlers/models/vault/model_vault_write_payload.py +66 -0
  188. omnibase_infra/handlers/models/vault/registry_payload_vault.py +213 -0
  189. omnibase_infra/handlers/registration_storage/__init__.py +43 -0
  190. omnibase_infra/handlers/registration_storage/handler_registration_storage_mock.py +392 -0
  191. omnibase_infra/handlers/registration_storage/handler_registration_storage_postgres.py +915 -0
  192. omnibase_infra/handlers/registration_storage/models/__init__.py +23 -0
  193. omnibase_infra/handlers/registration_storage/models/model_delete_registration_request.py +58 -0
  194. omnibase_infra/handlers/registration_storage/models/model_update_registration_request.py +73 -0
  195. omnibase_infra/handlers/registration_storage/protocol_registration_persistence.py +191 -0
  196. omnibase_infra/handlers/service_discovery/__init__.py +43 -0
  197. omnibase_infra/handlers/service_discovery/handler_service_discovery_consul.py +747 -0
  198. omnibase_infra/handlers/service_discovery/handler_service_discovery_mock.py +258 -0
  199. omnibase_infra/handlers/service_discovery/models/__init__.py +22 -0
  200. omnibase_infra/handlers/service_discovery/models/model_discovery_result.py +64 -0
  201. omnibase_infra/handlers/service_discovery/models/model_registration_result.py +138 -0
  202. omnibase_infra/handlers/service_discovery/models/model_service_info.py +99 -0
  203. omnibase_infra/handlers/service_discovery/protocol_discovery_operations.py +170 -0
  204. omnibase_infra/idempotency/__init__.py +94 -0
  205. omnibase_infra/idempotency/models/__init__.py +43 -0
  206. omnibase_infra/idempotency/models/model_idempotency_check_result.py +85 -0
  207. omnibase_infra/idempotency/models/model_idempotency_guard_config.py +130 -0
  208. omnibase_infra/idempotency/models/model_idempotency_record.py +86 -0
  209. omnibase_infra/idempotency/models/model_idempotency_store_health_check_result.py +81 -0
  210. omnibase_infra/idempotency/models/model_idempotency_store_metrics.py +140 -0
  211. omnibase_infra/idempotency/models/model_postgres_idempotency_store_config.py +299 -0
  212. omnibase_infra/idempotency/protocol_idempotency_store.py +184 -0
  213. omnibase_infra/idempotency/store_inmemory.py +265 -0
  214. omnibase_infra/idempotency/store_postgres.py +923 -0
  215. omnibase_infra/infrastructure/__init__.py +0 -0
  216. omnibase_infra/mixins/__init__.py +71 -0
  217. omnibase_infra/mixins/mixin_async_circuit_breaker.py +655 -0
  218. omnibase_infra/mixins/mixin_dict_like_accessors.py +146 -0
  219. omnibase_infra/mixins/mixin_envelope_extraction.py +119 -0
  220. omnibase_infra/mixins/mixin_node_introspection.py +2465 -0
  221. omnibase_infra/mixins/mixin_retry_execution.py +386 -0
  222. omnibase_infra/mixins/protocol_circuit_breaker_aware.py +133 -0
  223. omnibase_infra/models/__init__.py +136 -0
  224. omnibase_infra/models/corpus/__init__.py +17 -0
  225. omnibase_infra/models/corpus/model_capture_config.py +133 -0
  226. omnibase_infra/models/corpus/model_capture_result.py +86 -0
  227. omnibase_infra/models/discovery/__init__.py +42 -0
  228. omnibase_infra/models/discovery/model_dependency_spec.py +319 -0
  229. omnibase_infra/models/discovery/model_discovered_capabilities.py +50 -0
  230. omnibase_infra/models/discovery/model_introspection_config.py +311 -0
  231. omnibase_infra/models/discovery/model_introspection_performance_metrics.py +169 -0
  232. omnibase_infra/models/discovery/model_introspection_task_config.py +116 -0
  233. omnibase_infra/models/dispatch/__init__.py +147 -0
  234. omnibase_infra/models/dispatch/model_dispatch_context.py +439 -0
  235. omnibase_infra/models/dispatch/model_dispatch_error.py +336 -0
  236. omnibase_infra/models/dispatch/model_dispatch_log_context.py +400 -0
  237. omnibase_infra/models/dispatch/model_dispatch_metadata.py +228 -0
  238. omnibase_infra/models/dispatch/model_dispatch_metrics.py +496 -0
  239. omnibase_infra/models/dispatch/model_dispatch_outcome.py +317 -0
  240. omnibase_infra/models/dispatch/model_dispatch_outputs.py +231 -0
  241. omnibase_infra/models/dispatch/model_dispatch_result.py +436 -0
  242. omnibase_infra/models/dispatch/model_dispatch_route.py +279 -0
  243. omnibase_infra/models/dispatch/model_dispatcher_metrics.py +275 -0
  244. omnibase_infra/models/dispatch/model_dispatcher_registration.py +352 -0
  245. omnibase_infra/models/dispatch/model_parsed_topic.py +135 -0
  246. omnibase_infra/models/dispatch/model_topic_parser.py +725 -0
  247. omnibase_infra/models/dispatch/model_tracing_context.py +285 -0
  248. omnibase_infra/models/errors/__init__.py +45 -0
  249. omnibase_infra/models/errors/model_handler_validation_error.py +594 -0
  250. omnibase_infra/models/errors/model_infra_error_context.py +99 -0
  251. omnibase_infra/models/errors/model_message_type_registry_error_context.py +71 -0
  252. omnibase_infra/models/errors/model_timeout_error_context.py +110 -0
  253. omnibase_infra/models/handlers/__init__.py +37 -0
  254. omnibase_infra/models/handlers/model_contract_discovery_result.py +80 -0
  255. omnibase_infra/models/handlers/model_handler_descriptor.py +185 -0
  256. omnibase_infra/models/handlers/model_handler_identifier.py +215 -0
  257. omnibase_infra/models/health/__init__.py +9 -0
  258. omnibase_infra/models/health/model_health_check_result.py +40 -0
  259. omnibase_infra/models/lifecycle/__init__.py +39 -0
  260. omnibase_infra/models/logging/__init__.py +51 -0
  261. omnibase_infra/models/logging/model_log_context.py +756 -0
  262. omnibase_infra/models/model_retry_error_classification.py +78 -0
  263. omnibase_infra/models/projection/__init__.py +43 -0
  264. omnibase_infra/models/projection/model_capability_fields.py +112 -0
  265. omnibase_infra/models/projection/model_registration_projection.py +434 -0
  266. omnibase_infra/models/projection/model_registration_snapshot.py +322 -0
  267. omnibase_infra/models/projection/model_sequence_info.py +182 -0
  268. omnibase_infra/models/projection/model_snapshot_topic_config.py +590 -0
  269. omnibase_infra/models/projectors/__init__.py +41 -0
  270. omnibase_infra/models/projectors/model_projector_column.py +289 -0
  271. omnibase_infra/models/projectors/model_projector_discovery_result.py +65 -0
  272. omnibase_infra/models/projectors/model_projector_index.py +270 -0
  273. omnibase_infra/models/projectors/model_projector_schema.py +415 -0
  274. omnibase_infra/models/projectors/model_projector_validation_error.py +63 -0
  275. omnibase_infra/models/projectors/util_sql_identifiers.py +115 -0
  276. omnibase_infra/models/registration/__init__.py +59 -0
  277. omnibase_infra/models/registration/commands/__init__.py +15 -0
  278. omnibase_infra/models/registration/commands/model_node_registration_acked.py +108 -0
  279. omnibase_infra/models/registration/events/__init__.py +56 -0
  280. omnibase_infra/models/registration/events/model_node_became_active.py +103 -0
  281. omnibase_infra/models/registration/events/model_node_liveness_expired.py +103 -0
  282. omnibase_infra/models/registration/events/model_node_registration_accepted.py +98 -0
  283. omnibase_infra/models/registration/events/model_node_registration_ack_received.py +98 -0
  284. omnibase_infra/models/registration/events/model_node_registration_ack_timed_out.py +112 -0
  285. omnibase_infra/models/registration/events/model_node_registration_initiated.py +107 -0
  286. omnibase_infra/models/registration/events/model_node_registration_rejected.py +104 -0
  287. omnibase_infra/models/registration/model_introspection_metrics.py +253 -0
  288. omnibase_infra/models/registration/model_node_capabilities.py +179 -0
  289. omnibase_infra/models/registration/model_node_heartbeat_event.py +126 -0
  290. omnibase_infra/models/registration/model_node_introspection_event.py +175 -0
  291. omnibase_infra/models/registration/model_node_metadata.py +79 -0
  292. omnibase_infra/models/registration/model_node_registration.py +162 -0
  293. omnibase_infra/models/registration/model_node_registration_record.py +162 -0
  294. omnibase_infra/models/registry/__init__.py +29 -0
  295. omnibase_infra/models/registry/model_domain_constraint.py +202 -0
  296. omnibase_infra/models/registry/model_message_type_entry.py +271 -0
  297. omnibase_infra/models/resilience/__init__.py +9 -0
  298. omnibase_infra/models/resilience/model_circuit_breaker_config.py +227 -0
  299. omnibase_infra/models/routing/__init__.py +25 -0
  300. omnibase_infra/models/routing/model_routing_entry.py +52 -0
  301. omnibase_infra/models/routing/model_routing_subcontract.py +70 -0
  302. omnibase_infra/models/runtime/__init__.py +40 -0
  303. omnibase_infra/models/runtime/model_contract_security_config.py +41 -0
  304. omnibase_infra/models/runtime/model_discovery_error.py +81 -0
  305. omnibase_infra/models/runtime/model_discovery_result.py +162 -0
  306. omnibase_infra/models/runtime/model_discovery_warning.py +74 -0
  307. omnibase_infra/models/runtime/model_failed_plugin_load.py +63 -0
  308. omnibase_infra/models/runtime/model_handler_contract.py +280 -0
  309. omnibase_infra/models/runtime/model_loaded_handler.py +120 -0
  310. omnibase_infra/models/runtime/model_plugin_load_context.py +93 -0
  311. omnibase_infra/models/runtime/model_plugin_load_summary.py +124 -0
  312. omnibase_infra/models/security/__init__.py +50 -0
  313. omnibase_infra/models/security/classification_levels.py +99 -0
  314. omnibase_infra/models/security/model_environment_policy.py +145 -0
  315. omnibase_infra/models/security/model_handler_security_policy.py +107 -0
  316. omnibase_infra/models/security/model_security_error.py +81 -0
  317. omnibase_infra/models/security/model_security_validation_result.py +328 -0
  318. omnibase_infra/models/security/model_security_warning.py +67 -0
  319. omnibase_infra/models/snapshot/__init__.py +27 -0
  320. omnibase_infra/models/snapshot/model_field_change.py +65 -0
  321. omnibase_infra/models/snapshot/model_snapshot.py +270 -0
  322. omnibase_infra/models/snapshot/model_snapshot_diff.py +203 -0
  323. omnibase_infra/models/snapshot/model_subject_ref.py +81 -0
  324. omnibase_infra/models/types/__init__.py +71 -0
  325. omnibase_infra/models/validation/__init__.py +89 -0
  326. omnibase_infra/models/validation/model_any_type_validation_result.py +118 -0
  327. omnibase_infra/models/validation/model_any_type_violation.py +141 -0
  328. omnibase_infra/models/validation/model_category_match_result.py +345 -0
  329. omnibase_infra/models/validation/model_chain_violation.py +166 -0
  330. omnibase_infra/models/validation/model_coverage_metrics.py +316 -0
  331. omnibase_infra/models/validation/model_execution_shape_rule.py +159 -0
  332. omnibase_infra/models/validation/model_execution_shape_validation.py +208 -0
  333. omnibase_infra/models/validation/model_execution_shape_validation_result.py +294 -0
  334. omnibase_infra/models/validation/model_execution_shape_violation.py +122 -0
  335. omnibase_infra/models/validation/model_localhandler_validation_result.py +139 -0
  336. omnibase_infra/models/validation/model_localhandler_violation.py +100 -0
  337. omnibase_infra/models/validation/model_output_validation_params.py +74 -0
  338. omnibase_infra/models/validation/model_validate_and_raise_params.py +84 -0
  339. omnibase_infra/models/validation/model_validation_error_params.py +84 -0
  340. omnibase_infra/models/validation/model_validation_outcome.py +287 -0
  341. omnibase_infra/nodes/__init__.py +48 -0
  342. omnibase_infra/nodes/architecture_validator/__init__.py +79 -0
  343. omnibase_infra/nodes/architecture_validator/contract.yaml +252 -0
  344. omnibase_infra/nodes/architecture_validator/contract_architecture_validator.yaml +208 -0
  345. omnibase_infra/nodes/architecture_validator/mixins/__init__.py +16 -0
  346. omnibase_infra/nodes/architecture_validator/mixins/mixin_file_path_rule.py +92 -0
  347. omnibase_infra/nodes/architecture_validator/models/__init__.py +36 -0
  348. omnibase_infra/nodes/architecture_validator/models/model_architecture_validation_request.py +56 -0
  349. omnibase_infra/nodes/architecture_validator/models/model_architecture_validation_result.py +311 -0
  350. omnibase_infra/nodes/architecture_validator/models/model_architecture_violation.py +163 -0
  351. omnibase_infra/nodes/architecture_validator/models/model_rule_check_result.py +265 -0
  352. omnibase_infra/nodes/architecture_validator/models/model_validation_request.py +105 -0
  353. omnibase_infra/nodes/architecture_validator/models/model_validation_result.py +314 -0
  354. omnibase_infra/nodes/architecture_validator/node.py +262 -0
  355. omnibase_infra/nodes/architecture_validator/node_architecture_validator.py +383 -0
  356. omnibase_infra/nodes/architecture_validator/protocols/__init__.py +9 -0
  357. omnibase_infra/nodes/architecture_validator/protocols/protocol_architecture_rule.py +225 -0
  358. omnibase_infra/nodes/architecture_validator/registry/__init__.py +28 -0
  359. omnibase_infra/nodes/architecture_validator/registry/registry_infra_architecture_validator.py +99 -0
  360. omnibase_infra/nodes/architecture_validator/validators/__init__.py +104 -0
  361. omnibase_infra/nodes/architecture_validator/validators/validator_no_direct_dispatch.py +422 -0
  362. omnibase_infra/nodes/architecture_validator/validators/validator_no_handler_publishing.py +481 -0
  363. omnibase_infra/nodes/architecture_validator/validators/validator_no_orchestrator_fsm.py +491 -0
  364. omnibase_infra/nodes/effects/README.md +358 -0
  365. omnibase_infra/nodes/effects/__init__.py +26 -0
  366. omnibase_infra/nodes/effects/contract.yaml +172 -0
  367. omnibase_infra/nodes/effects/models/__init__.py +32 -0
  368. omnibase_infra/nodes/effects/models/model_backend_result.py +190 -0
  369. omnibase_infra/nodes/effects/models/model_effect_idempotency_config.py +92 -0
  370. omnibase_infra/nodes/effects/models/model_registry_request.py +132 -0
  371. omnibase_infra/nodes/effects/models/model_registry_response.py +263 -0
  372. omnibase_infra/nodes/effects/protocol_consul_client.py +89 -0
  373. omnibase_infra/nodes/effects/protocol_effect_idempotency_store.py +143 -0
  374. omnibase_infra/nodes/effects/protocol_postgres_adapter.py +96 -0
  375. omnibase_infra/nodes/effects/registry_effect.py +525 -0
  376. omnibase_infra/nodes/effects/store_effect_idempotency_inmemory.py +425 -0
  377. omnibase_infra/nodes/node_registration_orchestrator/README.md +542 -0
  378. omnibase_infra/nodes/node_registration_orchestrator/__init__.py +120 -0
  379. omnibase_infra/nodes/node_registration_orchestrator/contract.yaml +475 -0
  380. omnibase_infra/nodes/node_registration_orchestrator/dispatchers/__init__.py +53 -0
  381. omnibase_infra/nodes/node_registration_orchestrator/dispatchers/dispatcher_node_introspected.py +376 -0
  382. omnibase_infra/nodes/node_registration_orchestrator/dispatchers/dispatcher_node_registration_acked.py +376 -0
  383. omnibase_infra/nodes/node_registration_orchestrator/dispatchers/dispatcher_runtime_tick.py +373 -0
  384. omnibase_infra/nodes/node_registration_orchestrator/handlers/__init__.py +62 -0
  385. omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_node_heartbeat.py +376 -0
  386. omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_node_introspected.py +609 -0
  387. omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_node_registration_acked.py +458 -0
  388. omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_runtime_tick.py +364 -0
  389. omnibase_infra/nodes/node_registration_orchestrator/introspection_event_router.py +544 -0
  390. omnibase_infra/nodes/node_registration_orchestrator/models/__init__.py +75 -0
  391. omnibase_infra/nodes/node_registration_orchestrator/models/model_consul_intent_payload.py +194 -0
  392. omnibase_infra/nodes/node_registration_orchestrator/models/model_consul_registration_intent.py +67 -0
  393. omnibase_infra/nodes/node_registration_orchestrator/models/model_intent_execution_result.py +50 -0
  394. omnibase_infra/nodes/node_registration_orchestrator/models/model_node_liveness_expired.py +107 -0
  395. omnibase_infra/nodes/node_registration_orchestrator/models/model_orchestrator_config.py +67 -0
  396. omnibase_infra/nodes/node_registration_orchestrator/models/model_orchestrator_input.py +41 -0
  397. omnibase_infra/nodes/node_registration_orchestrator/models/model_orchestrator_output.py +166 -0
  398. omnibase_infra/nodes/node_registration_orchestrator/models/model_postgres_intent_payload.py +235 -0
  399. omnibase_infra/nodes/node_registration_orchestrator/models/model_postgres_upsert_intent.py +68 -0
  400. omnibase_infra/nodes/node_registration_orchestrator/models/model_reducer_execution_result.py +384 -0
  401. omnibase_infra/nodes/node_registration_orchestrator/models/model_reducer_state.py +60 -0
  402. omnibase_infra/nodes/node_registration_orchestrator/models/model_registration_intent.py +177 -0
  403. omnibase_infra/nodes/node_registration_orchestrator/models/model_registry_intent.py +247 -0
  404. omnibase_infra/nodes/node_registration_orchestrator/node.py +195 -0
  405. omnibase_infra/nodes/node_registration_orchestrator/plugin.py +909 -0
  406. omnibase_infra/nodes/node_registration_orchestrator/protocols.py +439 -0
  407. omnibase_infra/nodes/node_registration_orchestrator/registry/__init__.py +41 -0
  408. omnibase_infra/nodes/node_registration_orchestrator/registry/registry_infra_node_registration_orchestrator.py +525 -0
  409. omnibase_infra/nodes/node_registration_orchestrator/timeout_coordinator.py +392 -0
  410. omnibase_infra/nodes/node_registration_orchestrator/wiring.py +742 -0
  411. omnibase_infra/nodes/node_registration_reducer/__init__.py +15 -0
  412. omnibase_infra/nodes/node_registration_reducer/contract.yaml +301 -0
  413. omnibase_infra/nodes/node_registration_reducer/models/__init__.py +38 -0
  414. omnibase_infra/nodes/node_registration_reducer/models/model_validation_result.py +113 -0
  415. omnibase_infra/nodes/node_registration_reducer/node.py +139 -0
  416. omnibase_infra/nodes/node_registration_reducer/registry/__init__.py +9 -0
  417. omnibase_infra/nodes/node_registration_reducer/registry/registry_infra_node_registration_reducer.py +79 -0
  418. omnibase_infra/nodes/node_registration_storage_effect/__init__.py +41 -0
  419. omnibase_infra/nodes/node_registration_storage_effect/contract.yaml +225 -0
  420. omnibase_infra/nodes/node_registration_storage_effect/models/__init__.py +44 -0
  421. omnibase_infra/nodes/node_registration_storage_effect/models/model_delete_result.py +132 -0
  422. omnibase_infra/nodes/node_registration_storage_effect/models/model_registration_record.py +199 -0
  423. omnibase_infra/nodes/node_registration_storage_effect/models/model_registration_update.py +155 -0
  424. omnibase_infra/nodes/node_registration_storage_effect/models/model_storage_health_check_details.py +123 -0
  425. omnibase_infra/nodes/node_registration_storage_effect/models/model_storage_health_check_result.py +117 -0
  426. omnibase_infra/nodes/node_registration_storage_effect/models/model_storage_query.py +100 -0
  427. omnibase_infra/nodes/node_registration_storage_effect/models/model_storage_result.py +136 -0
  428. omnibase_infra/nodes/node_registration_storage_effect/models/model_upsert_result.py +127 -0
  429. omnibase_infra/nodes/node_registration_storage_effect/node.py +109 -0
  430. omnibase_infra/nodes/node_registration_storage_effect/protocols/__init__.py +22 -0
  431. omnibase_infra/nodes/node_registration_storage_effect/protocols/protocol_registration_persistence.py +333 -0
  432. omnibase_infra/nodes/node_registration_storage_effect/registry/__init__.py +23 -0
  433. omnibase_infra/nodes/node_registration_storage_effect/registry/registry_infra_registration_storage.py +194 -0
  434. omnibase_infra/nodes/node_registry_effect/__init__.py +85 -0
  435. omnibase_infra/nodes/node_registry_effect/contract.yaml +682 -0
  436. omnibase_infra/nodes/node_registry_effect/handlers/__init__.py +70 -0
  437. omnibase_infra/nodes/node_registry_effect/handlers/handler_consul_deregister.py +211 -0
  438. omnibase_infra/nodes/node_registry_effect/handlers/handler_consul_register.py +212 -0
  439. omnibase_infra/nodes/node_registry_effect/handlers/handler_partial_retry.py +416 -0
  440. omnibase_infra/nodes/node_registry_effect/handlers/handler_postgres_deactivate.py +215 -0
  441. omnibase_infra/nodes/node_registry_effect/handlers/handler_postgres_upsert.py +208 -0
  442. omnibase_infra/nodes/node_registry_effect/models/__init__.py +43 -0
  443. omnibase_infra/nodes/node_registry_effect/models/model_partial_retry_request.py +92 -0
  444. omnibase_infra/nodes/node_registry_effect/node.py +165 -0
  445. omnibase_infra/nodes/node_registry_effect/registry/__init__.py +27 -0
  446. omnibase_infra/nodes/node_registry_effect/registry/registry_infra_registry_effect.py +196 -0
  447. omnibase_infra/nodes/node_service_discovery_effect/__init__.py +111 -0
  448. omnibase_infra/nodes/node_service_discovery_effect/contract.yaml +246 -0
  449. omnibase_infra/nodes/node_service_discovery_effect/models/__init__.py +67 -0
  450. omnibase_infra/nodes/node_service_discovery_effect/models/enum_health_status.py +72 -0
  451. omnibase_infra/nodes/node_service_discovery_effect/models/enum_service_discovery_operation.py +58 -0
  452. omnibase_infra/nodes/node_service_discovery_effect/models/model_discovery_query.py +99 -0
  453. omnibase_infra/nodes/node_service_discovery_effect/models/model_discovery_result.py +98 -0
  454. omnibase_infra/nodes/node_service_discovery_effect/models/model_health_check_config.py +121 -0
  455. omnibase_infra/nodes/node_service_discovery_effect/models/model_query_metadata.py +63 -0
  456. omnibase_infra/nodes/node_service_discovery_effect/models/model_registration_result.py +130 -0
  457. omnibase_infra/nodes/node_service_discovery_effect/models/model_service_discovery_health_check_details.py +111 -0
  458. omnibase_infra/nodes/node_service_discovery_effect/models/model_service_discovery_health_check_result.py +119 -0
  459. omnibase_infra/nodes/node_service_discovery_effect/models/model_service_info.py +106 -0
  460. omnibase_infra/nodes/node_service_discovery_effect/models/model_service_registration.py +121 -0
  461. omnibase_infra/nodes/node_service_discovery_effect/node.py +111 -0
  462. omnibase_infra/nodes/node_service_discovery_effect/protocols/__init__.py +14 -0
  463. omnibase_infra/nodes/node_service_discovery_effect/protocols/protocol_discovery_operations.py +279 -0
  464. omnibase_infra/nodes/node_service_discovery_effect/registry/__init__.py +13 -0
  465. omnibase_infra/nodes/node_service_discovery_effect/registry/registry_infra_service_discovery.py +214 -0
  466. omnibase_infra/nodes/reducers/__init__.py +30 -0
  467. omnibase_infra/nodes/reducers/models/__init__.py +32 -0
  468. omnibase_infra/nodes/reducers/models/model_payload_consul_register.py +76 -0
  469. omnibase_infra/nodes/reducers/models/model_payload_postgres_upsert_registration.py +60 -0
  470. omnibase_infra/nodes/reducers/models/model_registration_confirmation.py +166 -0
  471. omnibase_infra/nodes/reducers/models/model_registration_state.py +433 -0
  472. omnibase_infra/nodes/reducers/registration_reducer.py +1137 -0
  473. omnibase_infra/observability/__init__.py +143 -0
  474. omnibase_infra/observability/constants_metrics.py +91 -0
  475. omnibase_infra/observability/factory_observability_sink.py +525 -0
  476. omnibase_infra/observability/handlers/__init__.py +118 -0
  477. omnibase_infra/observability/handlers/handler_logging_structured.py +967 -0
  478. omnibase_infra/observability/handlers/handler_metrics_prometheus.py +1120 -0
  479. omnibase_infra/observability/handlers/model_logging_handler_config.py +71 -0
  480. omnibase_infra/observability/handlers/model_logging_handler_response.py +77 -0
  481. omnibase_infra/observability/handlers/model_metrics_handler_config.py +172 -0
  482. omnibase_infra/observability/handlers/model_metrics_handler_payload.py +135 -0
  483. omnibase_infra/observability/handlers/model_metrics_handler_response.py +101 -0
  484. omnibase_infra/observability/hooks/__init__.py +74 -0
  485. omnibase_infra/observability/hooks/hook_observability.py +1223 -0
  486. omnibase_infra/observability/models/__init__.py +30 -0
  487. omnibase_infra/observability/models/enum_required_log_context_key.py +77 -0
  488. omnibase_infra/observability/models/model_buffered_log_entry.py +117 -0
  489. omnibase_infra/observability/models/model_logging_sink_config.py +73 -0
  490. omnibase_infra/observability/models/model_metrics_sink_config.py +156 -0
  491. omnibase_infra/observability/sinks/__init__.py +69 -0
  492. omnibase_infra/observability/sinks/sink_logging_structured.py +809 -0
  493. omnibase_infra/observability/sinks/sink_metrics_prometheus.py +710 -0
  494. omnibase_infra/plugins/__init__.py +27 -0
  495. omnibase_infra/plugins/examples/__init__.py +28 -0
  496. omnibase_infra/plugins/examples/plugin_json_normalizer.py +271 -0
  497. omnibase_infra/plugins/examples/plugin_json_normalizer_error_handling.py +210 -0
  498. omnibase_infra/plugins/models/__init__.py +21 -0
  499. omnibase_infra/plugins/models/model_plugin_context.py +76 -0
  500. omnibase_infra/plugins/models/model_plugin_input_data.py +58 -0
  501. omnibase_infra/plugins/models/model_plugin_output_data.py +62 -0
  502. omnibase_infra/plugins/plugin_compute_base.py +435 -0
  503. omnibase_infra/projectors/__init__.py +30 -0
  504. omnibase_infra/projectors/contracts/__init__.py +63 -0
  505. omnibase_infra/projectors/contracts/registration_projector.yaml +370 -0
  506. omnibase_infra/projectors/projection_reader_registration.py +1559 -0
  507. omnibase_infra/projectors/snapshot_publisher_registration.py +1329 -0
  508. omnibase_infra/protocols/__init__.py +99 -0
  509. omnibase_infra/protocols/protocol_capability_projection.py +253 -0
  510. omnibase_infra/protocols/protocol_capability_query.py +251 -0
  511. omnibase_infra/protocols/protocol_event_bus_like.py +127 -0
  512. omnibase_infra/protocols/protocol_event_projector.py +96 -0
  513. omnibase_infra/protocols/protocol_idempotency_store.py +142 -0
  514. omnibase_infra/protocols/protocol_message_dispatcher.py +247 -0
  515. omnibase_infra/protocols/protocol_message_type_registry.py +306 -0
  516. omnibase_infra/protocols/protocol_plugin_compute.py +368 -0
  517. omnibase_infra/protocols/protocol_projector_schema_validator.py +82 -0
  518. omnibase_infra/protocols/protocol_registry_metrics.py +215 -0
  519. omnibase_infra/protocols/protocol_snapshot_publisher.py +396 -0
  520. omnibase_infra/protocols/protocol_snapshot_store.py +567 -0
  521. omnibase_infra/runtime/__init__.py +296 -0
  522. omnibase_infra/runtime/binding_config_resolver.py +2706 -0
  523. omnibase_infra/runtime/chain_aware_dispatch.py +467 -0
  524. omnibase_infra/runtime/contract_handler_discovery.py +582 -0
  525. omnibase_infra/runtime/contract_loaders/__init__.py +42 -0
  526. omnibase_infra/runtime/contract_loaders/handler_routing_loader.py +464 -0
  527. omnibase_infra/runtime/dispatch_context_enforcer.py +427 -0
  528. omnibase_infra/runtime/enums/__init__.py +18 -0
  529. omnibase_infra/runtime/enums/enum_config_ref_scheme.py +33 -0
  530. omnibase_infra/runtime/enums/enum_scheduler_status.py +170 -0
  531. omnibase_infra/runtime/envelope_validator.py +179 -0
  532. omnibase_infra/runtime/handler_contract_source.py +669 -0
  533. omnibase_infra/runtime/handler_plugin_loader.py +2029 -0
  534. omnibase_infra/runtime/handler_registry.py +321 -0
  535. omnibase_infra/runtime/invocation_security_enforcer.py +427 -0
  536. omnibase_infra/runtime/kernel.py +40 -0
  537. omnibase_infra/runtime/mixin_policy_validation.py +522 -0
  538. omnibase_infra/runtime/mixin_semver_cache.py +378 -0
  539. omnibase_infra/runtime/mixins/__init__.py +17 -0
  540. omnibase_infra/runtime/mixins/mixin_projector_sql_operations.py +757 -0
  541. omnibase_infra/runtime/models/__init__.py +192 -0
  542. omnibase_infra/runtime/models/model_batch_lifecycle_result.py +217 -0
  543. omnibase_infra/runtime/models/model_binding_config.py +168 -0
  544. omnibase_infra/runtime/models/model_binding_config_cache_stats.py +135 -0
  545. omnibase_infra/runtime/models/model_binding_config_resolver_config.py +329 -0
  546. omnibase_infra/runtime/models/model_cached_secret.py +138 -0
  547. omnibase_infra/runtime/models/model_compute_key.py +138 -0
  548. omnibase_infra/runtime/models/model_compute_registration.py +97 -0
  549. omnibase_infra/runtime/models/model_config_cache_entry.py +61 -0
  550. omnibase_infra/runtime/models/model_config_ref.py +331 -0
  551. omnibase_infra/runtime/models/model_config_ref_parse_result.py +125 -0
  552. omnibase_infra/runtime/models/model_domain_plugin_config.py +92 -0
  553. omnibase_infra/runtime/models/model_domain_plugin_result.py +270 -0
  554. omnibase_infra/runtime/models/model_duplicate_response.py +54 -0
  555. omnibase_infra/runtime/models/model_enabled_protocols_config.py +61 -0
  556. omnibase_infra/runtime/models/model_event_bus_config.py +54 -0
  557. omnibase_infra/runtime/models/model_failed_component.py +55 -0
  558. omnibase_infra/runtime/models/model_health_check_response.py +168 -0
  559. omnibase_infra/runtime/models/model_health_check_result.py +228 -0
  560. omnibase_infra/runtime/models/model_lifecycle_result.py +245 -0
  561. omnibase_infra/runtime/models/model_logging_config.py +42 -0
  562. omnibase_infra/runtime/models/model_optional_correlation_id.py +167 -0
  563. omnibase_infra/runtime/models/model_optional_string.py +94 -0
  564. omnibase_infra/runtime/models/model_optional_uuid.py +110 -0
  565. omnibase_infra/runtime/models/model_policy_context.py +100 -0
  566. omnibase_infra/runtime/models/model_policy_key.py +138 -0
  567. omnibase_infra/runtime/models/model_policy_registration.py +139 -0
  568. omnibase_infra/runtime/models/model_policy_result.py +103 -0
  569. omnibase_infra/runtime/models/model_policy_type_filter.py +157 -0
  570. omnibase_infra/runtime/models/model_projector_plugin_loader_config.py +47 -0
  571. omnibase_infra/runtime/models/model_protocol_registration_config.py +65 -0
  572. omnibase_infra/runtime/models/model_retry_policy.py +105 -0
  573. omnibase_infra/runtime/models/model_runtime_config.py +150 -0
  574. omnibase_infra/runtime/models/model_runtime_scheduler_config.py +624 -0
  575. omnibase_infra/runtime/models/model_runtime_scheduler_metrics.py +233 -0
  576. omnibase_infra/runtime/models/model_runtime_tick.py +193 -0
  577. omnibase_infra/runtime/models/model_secret_cache_stats.py +82 -0
  578. omnibase_infra/runtime/models/model_secret_mapping.py +63 -0
  579. omnibase_infra/runtime/models/model_secret_resolver_config.py +107 -0
  580. omnibase_infra/runtime/models/model_secret_resolver_metrics.py +111 -0
  581. omnibase_infra/runtime/models/model_secret_source_info.py +72 -0
  582. omnibase_infra/runtime/models/model_secret_source_spec.py +66 -0
  583. omnibase_infra/runtime/models/model_shutdown_batch_result.py +75 -0
  584. omnibase_infra/runtime/models/model_shutdown_config.py +94 -0
  585. omnibase_infra/runtime/projector_plugin_loader.py +1462 -0
  586. omnibase_infra/runtime/projector_schema_manager.py +565 -0
  587. omnibase_infra/runtime/projector_shell.py +1102 -0
  588. omnibase_infra/runtime/protocol_contract_descriptor.py +92 -0
  589. omnibase_infra/runtime/protocol_contract_source.py +92 -0
  590. omnibase_infra/runtime/protocol_domain_plugin.py +474 -0
  591. omnibase_infra/runtime/protocol_handler_discovery.py +221 -0
  592. omnibase_infra/runtime/protocol_handler_plugin_loader.py +327 -0
  593. omnibase_infra/runtime/protocol_lifecycle_executor.py +435 -0
  594. omnibase_infra/runtime/protocol_policy.py +366 -0
  595. omnibase_infra/runtime/protocols/__init__.py +27 -0
  596. omnibase_infra/runtime/protocols/protocol_runtime_scheduler.py +468 -0
  597. omnibase_infra/runtime/registry/__init__.py +93 -0
  598. omnibase_infra/runtime/registry/mixin_message_type_query.py +326 -0
  599. omnibase_infra/runtime/registry/mixin_message_type_registration.py +354 -0
  600. omnibase_infra/runtime/registry/registry_event_bus_binding.py +268 -0
  601. omnibase_infra/runtime/registry/registry_message_type.py +542 -0
  602. omnibase_infra/runtime/registry/registry_protocol_binding.py +444 -0
  603. omnibase_infra/runtime/registry_compute.py +1143 -0
  604. omnibase_infra/runtime/registry_dispatcher.py +678 -0
  605. omnibase_infra/runtime/registry_policy.py +1502 -0
  606. omnibase_infra/runtime/runtime_scheduler.py +1070 -0
  607. omnibase_infra/runtime/secret_resolver.py +2110 -0
  608. omnibase_infra/runtime/security_metadata_validator.py +776 -0
  609. omnibase_infra/runtime/service_kernel.py +1573 -0
  610. omnibase_infra/runtime/service_message_dispatch_engine.py +1805 -0
  611. omnibase_infra/runtime/service_runtime_host_process.py +2260 -0
  612. omnibase_infra/runtime/util_container_wiring.py +1123 -0
  613. omnibase_infra/runtime/util_validation.py +314 -0
  614. omnibase_infra/runtime/util_version.py +98 -0
  615. omnibase_infra/runtime/util_wiring.py +566 -0
  616. omnibase_infra/schemas/schema_registration_projection.sql +320 -0
  617. omnibase_infra/services/__init__.py +68 -0
  618. omnibase_infra/services/corpus_capture.py +678 -0
  619. omnibase_infra/services/service_capability_query.py +945 -0
  620. omnibase_infra/services/service_health.py +897 -0
  621. omnibase_infra/services/service_node_selector.py +530 -0
  622. omnibase_infra/services/service_timeout_emitter.py +682 -0
  623. omnibase_infra/services/service_timeout_scanner.py +390 -0
  624. omnibase_infra/services/snapshot/__init__.py +31 -0
  625. omnibase_infra/services/snapshot/service_snapshot.py +647 -0
  626. omnibase_infra/services/snapshot/store_inmemory.py +637 -0
  627. omnibase_infra/services/snapshot/store_postgres.py +1279 -0
  628. omnibase_infra/shared/__init__.py +8 -0
  629. omnibase_infra/testing/__init__.py +10 -0
  630. omnibase_infra/testing/utils.py +23 -0
  631. omnibase_infra/types/__init__.py +48 -0
  632. omnibase_infra/types/type_cache_info.py +49 -0
  633. omnibase_infra/types/type_dsn.py +173 -0
  634. omnibase_infra/types/type_infra_aliases.py +60 -0
  635. omnibase_infra/types/typed_dict/__init__.py +21 -0
  636. omnibase_infra/types/typed_dict/typed_dict_introspection_cache.py +128 -0
  637. omnibase_infra/types/typed_dict/typed_dict_performance_metrics_cache.py +140 -0
  638. omnibase_infra/types/typed_dict_capabilities.py +64 -0
  639. omnibase_infra/utils/__init__.py +89 -0
  640. omnibase_infra/utils/correlation.py +208 -0
  641. omnibase_infra/utils/util_datetime.py +372 -0
  642. omnibase_infra/utils/util_dsn_validation.py +333 -0
  643. omnibase_infra/utils/util_env_parsing.py +264 -0
  644. omnibase_infra/utils/util_error_sanitization.py +457 -0
  645. omnibase_infra/utils/util_pydantic_validators.py +477 -0
  646. omnibase_infra/utils/util_semver.py +233 -0
  647. omnibase_infra/validation/__init__.py +307 -0
  648. omnibase_infra/validation/enums/__init__.py +11 -0
  649. omnibase_infra/validation/enums/enum_contract_violation_severity.py +13 -0
  650. omnibase_infra/validation/infra_validators.py +1486 -0
  651. omnibase_infra/validation/linter_contract.py +907 -0
  652. omnibase_infra/validation/mixin_any_type_classification.py +120 -0
  653. omnibase_infra/validation/mixin_any_type_exemption.py +580 -0
  654. omnibase_infra/validation/mixin_any_type_reporting.py +106 -0
  655. omnibase_infra/validation/mixin_execution_shape_violation_checks.py +596 -0
  656. omnibase_infra/validation/mixin_node_archetype_detection.py +254 -0
  657. omnibase_infra/validation/models/__init__.py +15 -0
  658. omnibase_infra/validation/models/model_contract_lint_result.py +101 -0
  659. omnibase_infra/validation/models/model_contract_violation.py +41 -0
  660. omnibase_infra/validation/service_validation_aggregator.py +395 -0
  661. omnibase_infra/validation/validation_exemptions.yaml +1710 -0
  662. omnibase_infra/validation/validator_any_type.py +715 -0
  663. omnibase_infra/validation/validator_chain_propagation.py +839 -0
  664. omnibase_infra/validation/validator_execution_shape.py +465 -0
  665. omnibase_infra/validation/validator_localhandler.py +261 -0
  666. omnibase_infra/validation/validator_registration_security.py +410 -0
  667. omnibase_infra/validation/validator_routing_coverage.py +1020 -0
  668. omnibase_infra/validation/validator_runtime_shape.py +915 -0
  669. omnibase_infra/validation/validator_security.py +410 -0
  670. omnibase_infra/validation/validator_topic_category.py +1152 -0
  671. omnibase_infra-0.2.1.dist-info/METADATA +197 -0
  672. omnibase_infra-0.2.1.dist-info/RECORD +675 -0
  673. omnibase_infra-0.2.1.dist-info/WHEEL +4 -0
  674. omnibase_infra-0.2.1.dist-info/entry_points.txt +4 -0
  675. omnibase_infra-0.2.1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,682 @@
1
+ # SPDX-License-Identifier: MIT
2
+ # Copyright (c) 2025 OmniNode Team
3
+ #
4
+ # ONEX Node Contract
5
+ # Node: NodeRegistryEffect
6
+ #
7
+ # This contract defines the interface for the Registry Effect node,
8
+ # which handles dual-backend node registration against Consul and PostgreSQL.
9
+ # The node uses declarative operation routing to dispatch operations to
10
+ # backend-specific handlers.
11
+ # Contract identifiers
12
+ name: "node_registry_effect"
13
+ contract_name: "node_registry_effect"
14
+ node_name: "node_registry_effect"
15
+ # Version (semantic versioning)
16
+ version:
17
+ major: 1
18
+ minor: 1
19
+ patch: 0
20
+ contract_version:
21
+ major: 1
22
+ minor: 1
23
+ patch: 0
24
+ node_version:
25
+ major: 1
26
+ minor: 1
27
+ patch: 0
28
+ # Node type
29
+ node_type: "EFFECT_GENERIC"
30
+ # Description
31
+ description: >
32
+ Effect node for dual-backend node registration. Executes registration operations against both Consul (service discovery) and PostgreSQL (registration record persistence), with support for partial failure handling and targeted retries. Uses declarative operation routing to dispatch to backend-specific handlers.
33
+
34
+ # Strongly typed I/O models
35
+ input_model:
36
+ name: "ModelRegistryRequest"
37
+ module: "omnibase_infra.nodes.node_registry_effect.models"
38
+ description: "Input model containing operation type and registration parameters."
39
+ output_model:
40
+ name: "ModelRegistryResponse"
41
+ module: "omnibase_infra.nodes.node_registry_effect.models"
42
+ description: "Output model containing backend status and registration outcome."
43
+ # =============================================================================
44
+ # HANDLER ROUTING (Declarative Handler Dispatch)
45
+ # =============================================================================
46
+ # This section defines how operations are routed to backend-specific handlers.
47
+ # The routing strategy determines handler selection based on payload type
48
+ # (per ONEX handler routing standards).
49
+ #
50
+ # Design Rationale:
51
+ # - Parallel execution for independent backends (Consul + Postgres)
52
+ # - Partial failure handling allows one backend to succeed even if other fails
53
+ # - Each handler is responsible for a single backend operation
54
+ #
55
+ # Execution Flow:
56
+ # 1. Receive ModelRegistryRequest with operation type
57
+ # 2. Route to all matching handlers based on payload type
58
+ # 3. Execute handlers in parallel (for dual-backend operations)
59
+ # 4. Aggregate results with partial failure handling
60
+ # 5. Return ModelRegistryResponse with combined status
61
+ #
62
+ # ┌─────────────────────────────────────────────────────────────────────────┐
63
+ # │ HANDLER ROUTING ARCHITECTURE │
64
+ # ├─────────────────────────────────────────────────────────────────────────┤
65
+ # │ │
66
+ # │ ┌────────────────────┐ │
67
+ # │ │ ModelRegistryRequest│ │
68
+ # │ │ operation: "X" │ │
69
+ # │ └─────────┬──────────┘ │
70
+ # │ │ │
71
+ # │ ▼ │
72
+ # │ ┌─────────────────────┐ │
73
+ # │ │ Handler Router │ routing_strategy: "payload_type_match" │
74
+ # │ │ (Contract-Driven) │ Matches payload type to handlers │
75
+ # │ └─────────┬───────────┘ │
76
+ # │ │ │
77
+ # │ │ operation == "register_node" │
78
+ # │ │ │
79
+ # │ ┌──────┴──────┐ execution_mode: "parallel" │
80
+ # │ │ │ (asyncio.gather) │
81
+ # │ ▼ ▼ │
82
+ # │ ┌────────────┐ ┌────────────┐ │
83
+ # │ │ Handler │ │ Handler │ │
84
+ # │ │ Consul │ │ Postgres │ │
85
+ # │ │ Register │ │ Upsert │ │
86
+ # │ └─────┬──────┘ └─────┬──────┘ │
87
+ # │ │ │ │
88
+ # │ ▼ ▼ │
89
+ # │ ┌──────────────────────────┐ │
90
+ # │ │ Result Aggregator │ aggregation_strategy: "all_or_partial" │
91
+ # │ │ partial_failure: true │ │
92
+ # │ └────────────┬─────────────┘ │
93
+ # │ │ │
94
+ # │ ▼ │
95
+ # │ ┌─────────────────────────┐ │
96
+ # │ │ ModelRegistryResponse │ status: "success"/"partial"/"failed" │
97
+ # │ │ consul_result: Result │ consul_result.success: bool │
98
+ # │ │ postgres_result: Result│ postgres_result.success: bool │
99
+ # │ └─────────────────────────┘ │
100
+ # │ │
101
+ # └─────────────────────────────────────────────────────────────────────────┘
102
+ #
103
+ # Parallel Execution Behavior:
104
+ # When execution_mode is "parallel", handlers for the same operation execute
105
+ # concurrently using asyncio.gather(). For dual-backend operations like
106
+ # "register_node", both HandlerConsulRegister and HandlerPostgresUpsert run
107
+ # simultaneously, reducing total latency to max(consul_time, postgres_time)
108
+ # rather than consul_time + postgres_time.
109
+ #
110
+ # Partial failure (partial_failure_handling: true) means if Consul succeeds
111
+ # but PostgreSQL fails (or vice versa), the operation returns status="partial"
112
+ # with the successful backend's result.success=true and the failed backend's
113
+ # result.success=false, allowing callers to retry the failed backend
114
+ # via the "retry_partial_failure" operation.
115
+ #
116
+ # Handler Responsibility:
117
+ # Each handler manages its own retry logic using the retry_policy defined
118
+ # in error_handling. The orchestration layer dispatches once per handler
119
+ # and delegates retry behavior to the handlers themselves.
120
+ # =============================================================================
121
+ handler_routing:
122
+ routing_strategy: "payload_type_match"
123
+ handlers:
124
+ # Register Node - Consul Backend
125
+ # Registers service with Consul for service discovery.
126
+ # Uses health check endpoint for automated liveness monitoring.
127
+ - operation: "register_node"
128
+ handler:
129
+ name: "HandlerConsulRegister"
130
+ module: "omnibase_infra.nodes.node_registry_effect.handlers.handler_consul_register"
131
+ backend: "consul"
132
+ description: "Register node with Consul service discovery"
133
+ output_fields:
134
+ - consul_registered
135
+ - consul_service_id
136
+ # Register Node - PostgreSQL Backend
137
+ # Persists registration record to PostgreSQL for durability.
138
+ # Uses upsert semantics for idempotent re-registration.
139
+ - operation: "register_node"
140
+ handler:
141
+ name: "HandlerPostgresUpsert"
142
+ module: "omnibase_infra.nodes.node_registry_effect.handlers.handler_postgres_upsert"
143
+ backend: "postgres"
144
+ description: "Persist node registration to PostgreSQL"
145
+ output_fields:
146
+ - postgres_registered
147
+ - registration_id
148
+ # Deregister Node - Consul Backend
149
+ # Removes service from Consul to stop routing traffic.
150
+ - operation: "deregister_node"
151
+ handler:
152
+ name: "HandlerConsulDeregister"
153
+ module: "omnibase_infra.nodes.node_registry_effect.handlers.handler_consul_deregister"
154
+ backend: "consul"
155
+ description: "Deregister node from Consul service discovery"
156
+ output_fields:
157
+ - consul_deregistered
158
+ # Deregister Node - PostgreSQL Backend
159
+ # Marks registration record as inactive in PostgreSQL.
160
+ - operation: "deregister_node"
161
+ handler:
162
+ name: "HandlerPostgresDeactivate"
163
+ module: "omnibase_infra.nodes.node_registry_effect.handlers.handler_postgres_deactivate"
164
+ backend: "postgres"
165
+ description: "Mark node registration as inactive in PostgreSQL"
166
+ output_fields:
167
+ - postgres_deregistered
168
+ # Retry Partial Failure - Targeted Backend
169
+ # Retries a specific backend after partial failure.
170
+ # Uses idempotency key to ensure safe retry semantics.
171
+ - operation: "retry_partial_failure"
172
+ handler:
173
+ name: "HandlerPartialRetry"
174
+ module: "omnibase_infra.nodes.node_registry_effect.handlers.handler_partial_retry"
175
+ backend: "dynamic"
176
+ description: "Retry registration for specific backend after partial failure"
177
+ dynamic_backend_field: "target_backend"
178
+ output_fields:
179
+ - success
180
+ - backend_status
181
+ # Execution configuration
182
+ execution_mode: "parallel"
183
+ partial_failure_handling: true
184
+ aggregation_strategy: "all_or_partial"
185
+ # =============================================================================
186
+ # ERROR HANDLING (Circuit Breaker + Retry + Sanitization)
187
+ # =============================================================================
188
+ # Error handling configuration following ONEX infrastructure patterns.
189
+ # Uses circuit breakers for backend protection and retry policies for
190
+ # transient failure recovery.
191
+ #
192
+ # Error Flow:
193
+ # 1. Operation fails -> Check if error is retriable
194
+ # 2. Retry with exponential backoff if retriable
195
+ # 3. After max retries, check circuit breaker state
196
+ # 4. Open circuit if failure threshold exceeded
197
+ # 5. Sanitize error before logging/returning
198
+ # =============================================================================
199
+ error_handling:
200
+ # Circuit breaker configuration
201
+ # Prevents cascading failures by stopping requests to failing backends.
202
+ circuit_breaker:
203
+ enabled: true
204
+ failure_threshold: 5
205
+ reset_timeout_ms: 60000
206
+ half_open_max_requests: 3
207
+ per_backend: true
208
+ backends:
209
+ - name: "consul"
210
+ failure_threshold: 5
211
+ reset_timeout_ms: 60000
212
+ - name: "postgres"
213
+ failure_threshold: 5
214
+ reset_timeout_ms: 60000
215
+ # Retry policy with exponential backoff
216
+ # Handles transient infrastructure failures.
217
+ #
218
+ # ==========================================================================
219
+ # IMPORTANT: Effect Layer vs Handler Layer Retry Behavior
220
+ # ==========================================================================
221
+ #
222
+ # Effect Layer (NodeRegistryEffect):
223
+ # - Dispatches to handlers EXACTLY ONCE per operation
224
+ # - Does NOT implement retry loops
225
+ # - Returns immediately after handler execution
226
+ # - Effective retry count at this layer: ZERO (0)
227
+ #
228
+ # Handler Layer (HandlerConsulRegister, HandlerPostgresUpsert, etc.):
229
+ # - OWNS retry logic using this retry_policy configuration
230
+ # - Implements exponential backoff for retriable errors
231
+ # - Returns final ModelBackendResult after all retries exhausted
232
+ # - Effective retry count: 0 to max_retries
233
+ #
234
+ # Caller Layer (Orchestrator or External):
235
+ # - Can call "retry_partial_failure" operation after partial failures
236
+ # - This is explicit retry, not automatic
237
+ # - Retries only the failed backend, not both
238
+ #
239
+ # Why this separation?
240
+ # - Clear separation of concerns (effect routes, handlers retry)
241
+ # - Per-backend retry isolation (Consul retries don't affect Postgres)
242
+ # - Consistent retry behavior across all handler implementations
243
+ # - Callers have full control over partial failure retry strategy
244
+ #
245
+ # ==========================================================================
246
+ retry_policy:
247
+ max_retries: 3
248
+ initial_delay_ms: 100
249
+ max_delay_ms: 5000
250
+ exponential_base: 2
251
+ retry_on:
252
+ - "InfraConnectionError"
253
+ - "InfraTimeoutError"
254
+ - "InfraUnavailableError"
255
+ # Error sanitization
256
+ # Removes sensitive information from error messages before logging.
257
+ error_sanitization:
258
+ enabled: true
259
+ utility: "omnibase_infra.utils.util_error_sanitization"
260
+ sanitize_patterns:
261
+ - "password"
262
+ - "secret"
263
+ - "token"
264
+ - "api_key"
265
+ - "connection_string"
266
+ # Error type definitions
267
+ error_types:
268
+ - name: "InfraConnectionError"
269
+ description: "Failed to connect to backend service"
270
+ recoverable: true
271
+ retry_strategy: "exponential_backoff"
272
+ - name: "InfraTimeoutError"
273
+ description: "Backend operation timed out"
274
+ recoverable: true
275
+ retry_strategy: "exponential_backoff"
276
+ - name: "InfraAuthenticationError"
277
+ description: "Authentication failed with backend"
278
+ recoverable: false
279
+ retry_strategy: "none"
280
+ - name: "InfraUnavailableError"
281
+ description: "Backend service is unavailable (circuit open)"
282
+ recoverable: true
283
+ retry_strategy: "exponential_backoff"
284
+ # Error codes used in ModelBackendResult.error_code field
285
+ # These codes provide programmatic error categorization for handlers.
286
+ # Each code maps to a specific operation failure scenario.
287
+ #
288
+ # Error Code Classification:
289
+ # - *_CONNECTION_ERROR: Retriable - network/connection issues
290
+ # - *_TIMEOUT_ERROR: Retriable - operation exceeded timeout
291
+ # - *_AUTH_ERROR: Non-retriable - authentication/authorization failed
292
+ # - *_UNKNOWN_ERROR: Unknown - unclassified exceptions
293
+ # - *_REGISTRATION_ERROR, *_DEREGISTRATION_ERROR, etc.: Operation-specific failures
294
+ error_codes:
295
+ # Consul backend error codes
296
+ - code: "CONSUL_REGISTRATION_ERROR"
297
+ backend: "consul"
298
+ operation: "register_node"
299
+ description: "Consul service registration failed (non-connection error)"
300
+ retriable: false
301
+ - code: "CONSUL_DEREGISTRATION_ERROR"
302
+ backend: "consul"
303
+ operation: "deregister_node"
304
+ description: "Consul service deregistration failed (non-connection error)"
305
+ retriable: false
306
+ - code: "CONSUL_CONNECTION_ERROR"
307
+ backend: "consul"
308
+ operation: "all"
309
+ description: "Connection to Consul server failed"
310
+ retriable: true
311
+ - code: "CONSUL_TIMEOUT_ERROR"
312
+ backend: "consul"
313
+ operation: "all"
314
+ description: "Consul operation exceeded timeout"
315
+ retriable: true
316
+ - code: "CONSUL_AUTH_ERROR"
317
+ backend: "consul"
318
+ operation: "all"
319
+ description: "Authentication with Consul server failed"
320
+ retriable: false
321
+ - code: "CONSUL_UNKNOWN_ERROR"
322
+ backend: "consul"
323
+ operation: "all"
324
+ description: "Unknown error during Consul operation"
325
+ retriable: false
326
+ # PostgreSQL backend error codes
327
+ - code: "POSTGRES_UPSERT_ERROR"
328
+ backend: "postgres"
329
+ operation: "register_node"
330
+ description: "PostgreSQL upsert operation failed (non-connection error)"
331
+ retriable: false
332
+ - code: "POSTGRES_DEACTIVATION_ERROR"
333
+ backend: "postgres"
334
+ operation: "deregister_node"
335
+ description: "PostgreSQL deactivation operation failed (non-connection error)"
336
+ retriable: false
337
+ - code: "POSTGRES_CONNECTION_ERROR"
338
+ backend: "postgres"
339
+ operation: "all"
340
+ description: "Connection to PostgreSQL server failed"
341
+ retriable: true
342
+ - code: "POSTGRES_TIMEOUT_ERROR"
343
+ backend: "postgres"
344
+ operation: "all"
345
+ description: "PostgreSQL operation exceeded timeout"
346
+ retriable: true
347
+ - code: "POSTGRES_AUTH_ERROR"
348
+ backend: "postgres"
349
+ operation: "all"
350
+ description: "Authentication with PostgreSQL server failed"
351
+ retriable: false
352
+ - code: "POSTGRES_UNKNOWN_ERROR"
353
+ backend: "postgres"
354
+ operation: "all"
355
+ description: "Unknown error during PostgreSQL operation"
356
+ retriable: false
357
+ # Retry operation error codes
358
+ - code: "INVALID_TARGET_BACKEND"
359
+ backend: "dynamic"
360
+ operation: "retry_partial_failure"
361
+ description: "Invalid target_backend specified for retry (must be 'consul' or 'postgres')"
362
+ retriable: false
363
+ # Orchestration-level error codes (used by node.py dispatcher)
364
+ - code: "HANDLER_NOT_EXECUTED"
365
+ backend: "any"
366
+ operation: "all"
367
+ description: "Handler was not executed (default state before dispatch)"
368
+ retriable: true
369
+ - code: "CONSUL_EXCEPTION"
370
+ backend: "consul"
371
+ operation: "all"
372
+ description: "Unhandled exception during Consul operation dispatch"
373
+ retriable: false
374
+ - code: "POSTGRES_EXCEPTION"
375
+ backend: "postgres"
376
+ operation: "all"
377
+ description: "Unhandled exception during PostgreSQL operation dispatch"
378
+ retriable: false
379
+ # IO operations (EFFECT node specific)
380
+ # Note: Input fields reference ModelRegistryRequest, output fields reference ModelRegistryResponse
381
+ io_operations:
382
+ - operation: "register_node"
383
+ description: "Register a node with both Consul and PostgreSQL backends"
384
+ input_fields:
385
+ - node_id
386
+ - node_type
387
+ - node_version
388
+ - correlation_id
389
+ - service_name
390
+ - endpoints
391
+ - tags
392
+ - metadata
393
+ - health_check_config
394
+ - timestamp
395
+ output_fields:
396
+ - status
397
+ - node_id
398
+ - correlation_id
399
+ - consul_result
400
+ - postgres_result
401
+ - processing_time_ms
402
+ - timestamp
403
+ - error_summary
404
+ - operation: "deregister_node"
405
+ description: "Deregister a node from both backends"
406
+ input_fields:
407
+ - node_id
408
+ - node_type
409
+ - node_version
410
+ - correlation_id
411
+ - timestamp
412
+ output_fields:
413
+ - status
414
+ - node_id
415
+ - correlation_id
416
+ - consul_result
417
+ - postgres_result
418
+ - processing_time_ms
419
+ - timestamp
420
+ - error_summary
421
+ - operation: "retry_partial_failure"
422
+ description: "Retry registration for a specific backend after partial failure"
423
+ input_fields:
424
+ - node_id
425
+ - target_backend
426
+ - idempotency_key
427
+ output_fields:
428
+ - status
429
+ - node_id
430
+ - correlation_id
431
+ - consul_result
432
+ - postgres_result
433
+ - processing_time_ms
434
+ - timestamp
435
+ - error_summary
436
+ # Dependencies (protocols this node requires)
437
+ dependencies:
438
+ - name: "protocol_consul_client"
439
+ type: "protocol"
440
+ class_name: "ProtocolConsulClient"
441
+ module: "omnibase_infra.nodes.effects.protocol_consul_client"
442
+ description: "Consul service discovery operations"
443
+ - name: "protocol_postgres_adapter"
444
+ type: "protocol"
445
+ class_name: "ProtocolPostgresAdapter"
446
+ module: "omnibase_infra.nodes.effects.protocol_postgres_adapter"
447
+ description: "PostgreSQL registration persistence"
448
+ - name: "protocol_effect_idempotency_store"
449
+ type: "protocol"
450
+ class_name: "ProtocolEffectIdempotencyStore"
451
+ module: "omnibase_infra.nodes.effects.protocol_effect_idempotency_store"
452
+ description: "Idempotency tracking for retry safety"
453
+ - name: "protocol_circuit_breaker_aware"
454
+ type: "protocol"
455
+ class_name: "ProtocolCircuitBreakerAware"
456
+ module: "omnibase_infra.mixins.protocol_circuit_breaker_aware"
457
+ description: "Circuit breaker awareness for backend protection"
458
+ # Capabilities provided by this node
459
+ capabilities:
460
+ - name: "dual_backend_registration"
461
+ description: "Register nodes with both Consul and PostgreSQL simultaneously"
462
+ - name: "partial_failure_handling"
463
+ description: "Handle and recover from partial registration failures"
464
+ - name: "targeted_retry"
465
+ description: "Retry specific backend operations independently"
466
+ - name: "idempotent_operations"
467
+ description: "Ensure operations are idempotent via idempotency store"
468
+ - name: "circuit_breaker_protection"
469
+ description: "Protect backends with circuit breaker pattern"
470
+ - name: "parallel_execution"
471
+ description: "Execute backend operations in parallel for reduced latency"
472
+ # Model definitions
473
+ # These definitions must exactly match the Pydantic models.
474
+ #
475
+ # Module Resolution:
476
+ # The input_model and output_model reference the node's local models package:
477
+ # - omnibase_infra.nodes.node_registry_effect.models
478
+ # This package re-exports shared effect models from:
479
+ # - omnibase_infra.nodes.effects.models.model_registry_request
480
+ # - omnibase_infra.nodes.effects.models.model_registry_response
481
+ # - omnibase_infra.nodes.effects.models.model_backend_result
482
+ #
483
+ # Sync Status:
484
+ # Last verified: 2026-01-08
485
+ # All definitions below match the Pydantic model fields, types, and defaults.
486
+ definitions:
487
+ ModelRegistryRequest:
488
+ type: object
489
+ description: "Request model for dual-backend registration operations"
490
+ frozen: true
491
+ extra: "forbid"
492
+ properties:
493
+ node_id:
494
+ type: uuid
495
+ description: "Unique identifier for the node being registered"
496
+ node_type:
497
+ type: enum
498
+ enum_class: "EnumNodeKind"
499
+ module: "omnibase_core.enums.enum_node_kind"
500
+ description: "Type of ONEX node (effect, compute, reducer, orchestrator)"
501
+ enum:
502
+ - "effect"
503
+ - "compute"
504
+ - "reducer"
505
+ - "orchestrator"
506
+ node_version:
507
+ type: string
508
+ description: "Semantic version of the node"
509
+ correlation_id:
510
+ type: uuid
511
+ description: "Correlation ID for distributed tracing"
512
+ default_factory: "uuid4"
513
+ service_name:
514
+ type: string
515
+ nullable: true
516
+ default: null
517
+ description: "Name for service discovery registration"
518
+ endpoints:
519
+ type: object
520
+ key_type: string
521
+ value_type: string
522
+ description: "Dict of endpoint type to URL (e.g., {'health': 'http://...'})"
523
+ default_factory: "dict"
524
+ tags:
525
+ type: array
526
+ items:
527
+ type: string
528
+ description: "List of tags for service discovery"
529
+ default_factory: "list"
530
+ metadata:
531
+ type: object
532
+ key_type: string
533
+ value_type: string
534
+ description: "Additional metadata for the registration record"
535
+ default_factory: "dict"
536
+ health_check_config:
537
+ type: object
538
+ key_type: string
539
+ value_type: string
540
+ nullable: true
541
+ default: null
542
+ description: "Optional health check configuration for Consul"
543
+ timestamp:
544
+ type: datetime
545
+ description: "When this request was created (must be timezone-aware, explicitly provided)"
546
+ validation:
547
+ - name: "validate_timestamp_timezone_aware"
548
+ description: "Validates that timestamp has timezone info"
549
+ required:
550
+ - node_id
551
+ - node_type
552
+ - node_version
553
+ - timestamp
554
+ ModelBackendResult:
555
+ type: object
556
+ description: "Result of an individual backend operation (Consul or PostgreSQL)"
557
+ frozen: true
558
+ extra: "forbid"
559
+ # ==========================================================================
560
+ # Design Note: No 'retries' Field at Effect Layer
561
+ # ==========================================================================
562
+ # ModelBackendResult intentionally does NOT include a 'retries' field.
563
+ #
564
+ # Rationale:
565
+ # 1. Effect layer dispatches to handlers ONCE per operation
566
+ # 2. Handlers own their retry logic internally using retry_policy
567
+ # 3. Retry count is handler-internal state, not exposed in results
568
+ # 4. Callers use error_code to determine if retry is appropriate
569
+ #
570
+ # If you need to track retries for observability:
571
+ # - Handlers should emit metrics/logs during retry loops
572
+ # - Use correlation_id to correlate retry attempts
573
+ # - Orchestrator layer can track retry_partial_failure calls
574
+ #
575
+ # See: error_handling.retry_policy for handler retry configuration
576
+ # See: operation_routing.operations["retry_partial_failure"] for caller retries
577
+ # ==========================================================================
578
+ properties:
579
+ success:
580
+ type: boolean
581
+ description: "Whether the backend operation completed successfully"
582
+ error:
583
+ type: string
584
+ nullable: true
585
+ default: null
586
+ description: "Sanitized error message if success is False"
587
+ error_code:
588
+ type: string
589
+ nullable: true
590
+ default: null
591
+ description: "Error code for programmatic handling (e.g., DATABASE_CONNECTION_ERROR)"
592
+ duration_ms:
593
+ type: float
594
+ description: "Time taken for the operation in milliseconds"
595
+ default: 0.0
596
+ ge: 0.0
597
+ backend_id:
598
+ type: string
599
+ nullable: true
600
+ default: null
601
+ description: "Optional identifier for the backend instance"
602
+ correlation_id:
603
+ type: uuid
604
+ nullable: true
605
+ default: null
606
+ description: "Correlation ID for tracing the operation"
607
+ required:
608
+ - success
609
+ ModelRegistryResponse:
610
+ type: object
611
+ description: "Response model for dual-backend registration operations with partial failure support"
612
+ frozen: true
613
+ extra: "forbid"
614
+ properties:
615
+ status:
616
+ type: string
617
+ description: "Overall status: success (both succeeded), partial (one succeeded), or failed (both failed)"
618
+ enum:
619
+ - "success"
620
+ - "partial"
621
+ - "failed"
622
+ node_id:
623
+ type: uuid
624
+ description: "UUID of the node that was registered"
625
+ correlation_id:
626
+ type: uuid
627
+ description: "Correlation ID for distributed tracing"
628
+ consul_result:
629
+ type: ref
630
+ ref: "ModelBackendResult"
631
+ description: "Result of the Consul registration operation"
632
+ postgres_result:
633
+ type: ref
634
+ ref: "ModelBackendResult"
635
+ description: "Result of the PostgreSQL upsert operation"
636
+ processing_time_ms:
637
+ type: float
638
+ description: "Total time for the dual-registration operation in milliseconds"
639
+ default: 0.0
640
+ ge: 0.0
641
+ timestamp:
642
+ type: datetime
643
+ description: "When this response was created (must be explicitly provided)"
644
+ error_summary:
645
+ type: string
646
+ nullable: true
647
+ default: null
648
+ description: "Aggregated error message for failed operations (e.g., 'Consul: error; PostgreSQL: error')"
649
+ required:
650
+ - status
651
+ - node_id
652
+ - correlation_id
653
+ - consul_result
654
+ - postgres_result
655
+ - timestamp
656
+ # Health check configuration
657
+ health_check:
658
+ enabled: true
659
+ endpoint: "/health"
660
+ interval_seconds: 30
661
+ backends:
662
+ - name: "consul"
663
+ check_type: "http"
664
+ endpoint: "/v1/status/leader"
665
+ - name: "postgres"
666
+ check_type: "connection"
667
+ timeout_ms: 5000
668
+ # Metadata
669
+ metadata:
670
+ author: "OmniNode Team"
671
+ license: "MIT"
672
+ created: "2025-01-01"
673
+ updated: "2026-01-08"
674
+ tags:
675
+ - effect
676
+ - registration
677
+ - consul
678
+ - postgresql
679
+ - dual-backend
680
+ - idempotency
681
+ - circuit-breaker
682
+ - parallel-execution