alysis-code 0.13.0__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.
- alysis_code/__init__.py +3 -0
- alysis_code/__main__.py +4 -0
- alysis_code/_build_info.py +14 -0
- alysis_code/account_login.py +468 -0
- alysis_code/agent/README.md +35 -0
- alysis_code/agent/__init__.py +11 -0
- alysis_code/agent/acceptance_contract.py +2217 -0
- alysis_code/agent/blast_radius.py +1403 -0
- alysis_code/agent/cache_keepalive.py +227 -0
- alysis_code/agent/completion_certificate.py +366 -0
- alysis_code/agent/completion_gate.py +306 -0
- alysis_code/agent/empty_response_stall.py +403 -0
- alysis_code/agent/errors.py +28 -0
- alysis_code/agent/llm_calls.py +475 -0
- alysis_code/agent/mutation_classification.py +227 -0
- alysis_code/agent/prompt_context.py +2508 -0
- alysis_code/agent/read_ledger.py +253 -0
- alysis_code/agent/regression_baseline.py +642 -0
- alysis_code/agent/reproduction_first.py +610 -0
- alysis_code/agent/sensitive_output.py +629 -0
- alysis_code/agent/session.py +3218 -0
- alysis_code/agent/steering.py +191 -0
- alysis_code/agent/subagent_execution.py +5177 -0
- alysis_code/agent/subagent_workspace.py +666 -0
- alysis_code/agent/tools_assembly.py +4728 -0
- alysis_code/agent/turn/__init__.py +101 -0
- alysis_code/agent/turn/core.py +8483 -0
- alysis_code/agent/turn/events.py +113 -0
- alysis_code/agent/turn/exploration.py +590 -0
- alysis_code/agent/turn/interventions.py +65 -0
- alysis_code/agent/turn/read_cache.py +420 -0
- alysis_code/agent/turn/snapshot.py +179 -0
- alysis_code/agent/turn_contract.py +661 -0
- alysis_code/agent/turn_path.py +129 -0
- alysis_code/agent/verification.py +2885 -0
- alysis_code/agent/verification_commands.py +512 -0
- alysis_code/agent/verification_evidence.py +738 -0
- alysis_code/agent_loop.py +693 -0
- alysis_code/agent_runtimes/__init__.py +51 -0
- alysis_code/agent_runtimes/base.py +114 -0
- alysis_code/agent_runtimes/builtins.py +129 -0
- alysis_code/agent_runtimes/codex_cli.py +664 -0
- alysis_code/agent_runtimes/host.py +263 -0
- alysis_code/agent_runtimes/registry.py +64 -0
- alysis_code/agent_runtimes/service.py +150 -0
- alysis_code/agentbox_client.py +416 -0
- alysis_code/agentbox_integration.py +310 -0
- alysis_code/alysis_cloud.py +152 -0
- alysis_code/approval_scope.py +276 -0
- alysis_code/assets/README.md +33 -0
- alysis_code/assets/__init__.py +126 -0
- alysis_code/assets/asset_read_core.py +281 -0
- alysis_code/assets/budget_allocator.py +456 -0
- alysis_code/assets/comprehender.py +759 -0
- alysis_code/assets/index.py +654 -0
- alysis_code/assets/ingestion.py +275 -0
- alysis_code/assets/legacy_migration.py +413 -0
- alysis_code/assets/models.py +263 -0
- alysis_code/assets/ocr.py +239 -0
- alysis_code/assets/owl/ascii/f-000.txt +13 -0
- alysis_code/assets/owl/ascii/f-001.txt +13 -0
- alysis_code/assets/owl/ascii/f-002.txt +13 -0
- alysis_code/assets/owl/ascii/f-003.txt +13 -0
- alysis_code/assets/owl/ascii/f-004.txt +13 -0
- alysis_code/assets/owl/ascii/f-005.txt +13 -0
- alysis_code/assets/owl/ascii/f-006.txt +13 -0
- alysis_code/assets/owl/ascii/f-007.txt +13 -0
- alysis_code/assets/owl/ascii/f-008.txt +13 -0
- alysis_code/assets/owl/ascii/f-009.txt +13 -0
- alysis_code/assets/owl/ascii/f-010.txt +13 -0
- alysis_code/assets/owl/ascii/f-011.txt +13 -0
- alysis_code/assets/owl/ascii/f-012.txt +13 -0
- alysis_code/assets/owl/ascii/f-013.txt +13 -0
- alysis_code/assets/owl/ascii/f-014.txt +13 -0
- alysis_code/assets/owl/ascii/f-015.txt +13 -0
- alysis_code/assets/owl/ascii/f-016.txt +13 -0
- alysis_code/assets/owl/ascii/f-017.txt +13 -0
- alysis_code/assets/owl/ascii/f-018.txt +13 -0
- alysis_code/assets/owl/ascii/f-019.txt +13 -0
- alysis_code/assets/owl/ascii/f-020.txt +13 -0
- alysis_code/assets/owl/index.html +98 -0
- alysis_code/assets/owl/show-owl.sh +761 -0
- alysis_code/assets/paths.py +49 -0
- alysis_code/assets/plan_binding.py +326 -0
- alysis_code/assets/planner_context.py +466 -0
- alysis_code/assets/planner_tools.py +184 -0
- alysis_code/assets/prompts.py +101 -0
- alysis_code/assets/replanner_context.py +239 -0
- alysis_code/assets/surface.py +521 -0
- alysis_code/assets/untrusted_content.py +48 -0
- alysis_code/assets/usage_logger.py +94 -0
- alysis_code/assets/worker_mirror.py +428 -0
- alysis_code/assets/worker_section.py +303 -0
- alysis_code/assets/worker_tools.py +468 -0
- alysis_code/atomic_io.py +83 -0
- alysis_code/auth_diagnostics.py +272 -0
- alysis_code/background_runner.py +366 -0
- alysis_code/branding.py +270 -0
- alysis_code/budget_policy.py +390 -0
- alysis_code/build_identity.py +465 -0
- alysis_code/builtin_hooks/__init__.py +7 -0
- alysis_code/builtin_hooks/notify_done_windows.py +65 -0
- alysis_code/bwrap_etc.py +76 -0
- alysis_code/cancellation.py +41 -0
- alysis_code/capabilities.py +137 -0
- alysis_code/chatgpt_codex_static_provider.py +133 -0
- alysis_code/cli.py +51 -0
- alysis_code/cli_impl/__init__.py +1 -0
- alysis_code/cli_impl/assets_cli.py +537 -0
- alysis_code/cli_impl/assets_modal.py +412 -0
- alysis_code/cli_impl/chat/__init__.py +156 -0
- alysis_code/cli_impl/chat/commands.py +2616 -0
- alysis_code/cli_impl/chat/loop.py +4508 -0
- alysis_code/cli_impl/chat/mid_turn_policy.py +125 -0
- alysis_code/cli_impl/chat/rendering.py +444 -0
- alysis_code/cli_impl/chat/state.py +124 -0
- alysis_code/cli_impl/chat_resume.py +830 -0
- alysis_code/cli_impl/chat_slash_completer.py +258 -0
- alysis_code/cli_impl/commands/__init__.py +11 -0
- alysis_code/cli_impl/commands/_shared.py +89 -0
- alysis_code/cli_impl/commands/auth.py +623 -0
- alysis_code/cli_impl/commands/chat_resume_helpers.py +1531 -0
- alysis_code/cli_impl/commands/chat_state.py +158 -0
- alysis_code/cli_impl/commands/chat_status.py +1248 -0
- alysis_code/cli_impl/commands/chat_terminal.py +942 -0
- alysis_code/cli_impl/commands/chat_tui_panels.py +1018 -0
- alysis_code/cli_impl/commands/cli_common.py +1223 -0
- alysis_code/cli_impl/commands/cli_surface.py +77 -0
- alysis_code/cli_impl/commands/config.py +131 -0
- alysis_code/cli_impl/commands/conventions.py +85 -0
- alysis_code/cli_impl/commands/execution_helpers.py +350 -0
- alysis_code/cli_impl/commands/extensions.py +401 -0
- alysis_code/cli_impl/commands/forge.py +1282 -0
- alysis_code/cli_impl/commands/forge_asset_view.py +121 -0
- alysis_code/cli_impl/commands/forge_helpers.py +1215 -0
- alysis_code/cli_impl/commands/hooks.py +737 -0
- alysis_code/cli_impl/commands/ide_bridge.py +31 -0
- alysis_code/cli_impl/commands/mcp.py +700 -0
- alysis_code/cli_impl/commands/profile.py +453 -0
- alysis_code/cli_impl/commands/prompt_helpers.py +307 -0
- alysis_code/cli_impl/commands/report.py +88 -0
- alysis_code/cli_impl/commands/root.py +1118 -0
- alysis_code/cli_impl/commands/sandbox.py +184 -0
- alysis_code/cli_impl/commands/server.py +54 -0
- alysis_code/cli_impl/commands/sessions.py +252 -0
- alysis_code/cli_impl/commands/skills.py +404 -0
- alysis_code/cli_impl/commands/startup.py +946 -0
- alysis_code/cli_impl/commands/tools.py +335 -0
- alysis_code/cli_impl/commands/update.py +364 -0
- alysis_code/cli_impl/commands/welcome.py +972 -0
- alysis_code/cli_impl/config_menu.py +3882 -0
- alysis_code/cli_impl/forge.py +4509 -0
- alysis_code/cli_impl/forge_recovery.py +485 -0
- alysis_code/cli_impl/setup_wizard.py +2409 -0
- alysis_code/cli_impl/tui/__init__.py +58 -0
- alysis_code/cli_impl/tui/app.py +4551 -0
- alysis_code/cli_impl/tui/config.py +32 -0
- alysis_code/cli_impl/tui/config_flow.py +2754 -0
- alysis_code/cli_impl/tui/config_overlay.py +566 -0
- alysis_code/cli_impl/tui/content.py +78 -0
- alysis_code/cli_impl/tui/footer.py +218 -0
- alysis_code/cli_impl/tui/forge_status.py +136 -0
- alysis_code/cli_impl/tui/markdown.py +244 -0
- alysis_code/cli_impl/tui/owl.py +109 -0
- alysis_code/cli_impl/tui/plan_meta.py +477 -0
- alysis_code/cli_impl/tui/setup_app.py +519 -0
- alysis_code/cli_impl/tui/setup_flow.py +1622 -0
- alysis_code/cli_impl/tui/state.py +101 -0
- alysis_code/cli_impl/tui/subagent_identity.py +66 -0
- alysis_code/cli_impl/tui/subagent_panel.py +186 -0
- alysis_code/cli_impl/tui/surface.py +796 -0
- alysis_code/cli_impl/tui/transcript.py +514 -0
- alysis_code/cli_impl/tui/update_prompt.py +79 -0
- alysis_code/cli_impl/tui/workspace_guard.py +384 -0
- alysis_code/clipboard.py +172 -0
- alysis_code/code_review.py +1211 -0
- alysis_code/compaction/__init__.py +28 -0
- alysis_code/compaction/conversation_compactor.py +2932 -0
- alysis_code/compaction/importance.py +177 -0
- alysis_code/compaction/settings.py +297 -0
- alysis_code/compaction/tool_output_offload.py +447 -0
- alysis_code/config.py +3509 -0
- alysis_code/conflict_auto_resolver.py +895 -0
- alysis_code/context/__init__.py +1 -0
- alysis_code/context/tool_schema_budgeter.py +220 -0
- alysis_code/crash_diagnostics.py +282 -0
- alysis_code/custom_tools/README.md +34 -0
- alysis_code/custom_tools/__init__.py +43 -0
- alysis_code/custom_tools/discovery.py +903 -0
- alysis_code/custom_tools/runtime.py +1516 -0
- alysis_code/custom_tools/session.py +227 -0
- alysis_code/custom_tools/trust.py +232 -0
- alysis_code/diff_paths.py +113 -0
- alysis_code/direction_change.py +293 -0
- alysis_code/dispatch_timing.py +306 -0
- alysis_code/durable_service_manager.py +1236 -0
- alysis_code/edit_discipline.py +659 -0
- alysis_code/error_text.py +73 -0
- alysis_code/execution_budget.py +411 -0
- alysis_code/execution_context.py +915 -0
- alysis_code/execution_deadline.py +1065 -0
- alysis_code/execution_shared.py +1904 -0
- alysis_code/extensions/README.md +30 -0
- alysis_code/extensions/__init__.py +93 -0
- alysis_code/extensions/activation.py +138 -0
- alysis_code/extensions/install.py +1436 -0
- alysis_code/extensions/manifest.py +487 -0
- alysis_code/extensions/models.py +74 -0
- alysis_code/extensions/paths.py +56 -0
- alysis_code/extensions/registry.json +4 -0
- alysis_code/extensions/registry.py +52 -0
- alysis_code/extensions/state.py +83 -0
- alysis_code/extensions/workspace_trust.py +101 -0
- alysis_code/failed_task_evidence.py +369 -0
- alysis_code/failure_category.py +315 -0
- alysis_code/feedback_report.py +1647 -0
- alysis_code/file_classification.py +485 -0
- alysis_code/forge.py +2064 -0
- alysis_code/forge_completion.py +362 -0
- alysis_code/forge_events.py +475 -0
- alysis_code/frontmatter_utils.py +95 -0
- alysis_code/git_evidence.py +1181 -0
- alysis_code/git_ops.py +560 -0
- alysis_code/git_safe.py +62 -0
- alysis_code/git_worktrees.py +190 -0
- alysis_code/hooks/README.md +33 -0
- alysis_code/hooks/__init__.py +67 -0
- alysis_code/hooks/audit.py +171 -0
- alysis_code/hooks/config.py +225 -0
- alysis_code/hooks/dispatcher.py +1110 -0
- alysis_code/hooks/models.py +447 -0
- alysis_code/hooks/trust.py +202 -0
- alysis_code/host_actions.py +543 -0
- alysis_code/host_browser.py +103 -0
- alysis_code/ide/__init__.py +5 -0
- alysis_code/ide/activity_events.py +399 -0
- alysis_code/ide/approvals.py +337 -0
- alysis_code/ide/artifacts.py +153 -0
- alysis_code/ide/browser_egress_proxy.py +1076 -0
- alysis_code/ide/cdp_websocket_transport.py +1192 -0
- alysis_code/ide/change_ledger.py +1721 -0
- alysis_code/ide/context_blocks.py +979 -0
- alysis_code/ide/event_stream.py +531 -0
- alysis_code/ide/forge_protocol.py +3112 -0
- alysis_code/ide/forge_request_ledger.py +737 -0
- alysis_code/ide/health.py +965 -0
- alysis_code/ide/managed_browser.py +2251 -0
- alysis_code/ide/management_protocol.py +3414 -0
- alysis_code/ide/mcp_oauth_coordinator.py +744 -0
- alysis_code/ide/mcp_oauth_lifecycle.py +1504 -0
- alysis_code/ide/prompt_queue.py +1070 -0
- alysis_code/ide/protocol.py +191 -0
- alysis_code/ide/resumable_swarm.py +1543 -0
- alysis_code/ide/session_search.py +295 -0
- alysis_code/ide/stdio_bridge.py +9935 -0
- alysis_code/ide/structured_state.py +1579 -0
- alysis_code/ide/swarm_protocol.py +816 -0
- alysis_code/integration_gate.py +506 -0
- alysis_code/interactive_input_guard.py +39 -0
- alysis_code/interactive_plan_mode.py +26 -0
- alysis_code/internal_artifacts.py +179 -0
- alysis_code/knowledge_base.py +1409 -0
- alysis_code/knowledge_capture.py +1190 -0
- alysis_code/knowledge_librarian.py +605 -0
- alysis_code/language_policy.py +34 -0
- alysis_code/litellm_static_provider.py +535 -0
- alysis_code/llm/__init__.py +1 -0
- alysis_code/llm/anthropic_messages.py +2288 -0
- alysis_code/llm/base.py +71 -0
- alysis_code/llm/cache_capabilities.py +985 -0
- alysis_code/llm/cache_control_blocks.py +244 -0
- alysis_code/llm/cache_policy.py +388 -0
- alysis_code/llm/factory.py +373 -0
- alysis_code/llm/gemini_generate_content.py +2652 -0
- alysis_code/llm/gemini_interactions.py +739 -0
- alysis_code/llm/metadata.py +450 -0
- alysis_code/llm/openai_compat.py +2947 -0
- alysis_code/llm/openai_responses.py +2604 -0
- alysis_code/llm/protocols.py +609 -0
- alysis_code/llm/provider_limits.py +525 -0
- alysis_code/llm/request_plan.py +389 -0
- alysis_code/llm/request_shape.py +238 -0
- alysis_code/llm/streaming.py +108 -0
- alysis_code/llm/temperature_compat.py +78 -0
- alysis_code/llm/types.py +195 -0
- alysis_code/llm/usage_normalization.py +222 -0
- alysis_code/llm_error_display.py +315 -0
- alysis_code/logging_redaction.py +326 -0
- alysis_code/managed_host_deadline.py +196 -0
- alysis_code/mcp/README.md +33 -0
- alysis_code/mcp/__init__.py +24 -0
- alysis_code/mcp/client.py +1137 -0
- alysis_code/mcp/config.py +597 -0
- alysis_code/mcp/errors.py +113 -0
- alysis_code/mcp/forge_scope.py +154 -0
- alysis_code/mcp/jsonrpc.py +214 -0
- alysis_code/mcp/manager.py +2308 -0
- alysis_code/mcp/models.py +666 -0
- alysis_code/mcp/oauth.py +972 -0
- alysis_code/mcp/oauth_runtime.py +310 -0
- alysis_code/mcp/oauth_store.py +276 -0
- alysis_code/mcp/prompts.py +329 -0
- alysis_code/mcp/resources.py +295 -0
- alysis_code/mcp/roots.py +106 -0
- alysis_code/mcp/server_requests.py +75 -0
- alysis_code/mcp/token_store.py +859 -0
- alysis_code/mcp/transport_http.py +1338 -0
- alysis_code/mcp/transport_stdio.py +1267 -0
- alysis_code/mcp/untrusted_content.py +119 -0
- alysis_code/merge_conflict_reviewer.py +729 -0
- alysis_code/model_catalog/__init__.py +1 -0
- alysis_code/model_catalog/chatgpt_codex_subscription_snapshot.json +186 -0
- alysis_code/model_catalog/litellm_model_prices_snapshot.json +44715 -0
- alysis_code/model_catalog/litellm_model_prices_snapshot.meta.json +17 -0
- alysis_code/model_metadata_policy.py +223 -0
- alysis_code/model_metadata_utils.py +103 -0
- alysis_code/model_registry.py +1420 -0
- alysis_code/model_router.py +147 -0
- alysis_code/permission_policy.py +1016 -0
- alysis_code/personas.py +451 -0
- alysis_code/pipeline_facts.py +233 -0
- alysis_code/plan_assistant.py +4763 -0
- alysis_code/plan_mode.py +393 -0
- alysis_code/plan_reconciliation.py +1228 -0
- alysis_code/plan_repair.py +652 -0
- alysis_code/plan_validation.py +1099 -0
- alysis_code/planning_constraints.py +904 -0
- alysis_code/policy.py +95 -0
- alysis_code/preview_server.py +457 -0
- alysis_code/process_reaping.py +566 -0
- alysis_code/profile_presets.py +1834 -0
- alysis_code/profiles.py +666 -0
- alysis_code/provider_auth/__init__.py +29 -0
- alysis_code/provider_auth/base.py +99 -0
- alysis_code/provider_auth/openai_codex.py +951 -0
- alysis_code/provider_auth/registry.py +76 -0
- alysis_code/provider_auth/store.py +125 -0
- alysis_code/provider_diagnostics.py +1209 -0
- alysis_code/provider_model_catalog.py +685 -0
- alysis_code/provider_telemetry.py +1699 -0
- alysis_code/provider_url.py +75 -0
- alysis_code/reasoning_contracts.py +911 -0
- alysis_code/remote_sync.py +350 -0
- alysis_code/replanning.py +1195 -0
- alysis_code/repo_scan.py +1152 -0
- alysis_code/request_estimation.py +296 -0
- alysis_code/review_gate.py +617 -0
- alysis_code/run_lock.py +1141 -0
- alysis_code/run_outcome.py +58 -0
- alysis_code/run_provenance.py +774 -0
- alysis_code/run_state.py +445 -0
- alysis_code/runtime_artifacts.py +116 -0
- alysis_code/runtime_context_features.py +78 -0
- alysis_code/runtime_kind.py +52 -0
- alysis_code/safety/__init__.py +11 -0
- alysis_code/safety/mcp_sanitize.py +29 -0
- alysis_code/safety/safe_http.py +297 -0
- alysis_code/safety/subagent_report.py +184 -0
- alysis_code/sandbox_doctor.py +682 -0
- alysis_code/sandbox_runner.py +1025 -0
- alysis_code/sandbox_settings.py +423 -0
- alysis_code/serialized_paths.py +355 -0
- alysis_code/server/__init__.py +3 -0
- alysis_code/server/app.py +367 -0
- alysis_code/server/auth.py +34 -0
- alysis_code/server/job_config.py +30 -0
- alysis_code/server/settings.py +215 -0
- alysis_code/server/store.py +193 -0
- alysis_code/server/worker_runner.py +657 -0
- alysis_code/service_persistence.py +355 -0
- alysis_code/session_artifacts.py +108 -0
- alysis_code/session_metrics.py +331 -0
- alysis_code/session_store.py +624 -0
- alysis_code/skills/README.md +34 -0
- alysis_code/skills/__init__.py +104 -0
- alysis_code/skills/conventions.py +84 -0
- alysis_code/skills/discovery.py +176 -0
- alysis_code/skills/eval_models.py +232 -0
- alysis_code/skills/eval_runner.py +372 -0
- alysis_code/skills/evals.py +1344 -0
- alysis_code/skills/install.py +293 -0
- alysis_code/skills/loader.py +118 -0
- alysis_code/skills/matching.py +103 -0
- alysis_code/skills/models.py +71 -0
- alysis_code/skills/paths.py +56 -0
- alysis_code/skills/prompting.py +500 -0
- alysis_code/skills/scaffold.py +142 -0
- alysis_code/skills/state.py +441 -0
- alysis_code/skills/transactions.py +125 -0
- alysis_code/skills/validation.py +304 -0
- alysis_code/step_budget.py +238 -0
- alysis_code/subagent_labels.py +49 -0
- alysis_code/subagents.py +1072 -0
- alysis_code/surface/__init__.py +80 -0
- alysis_code/surface/base.py +305 -0
- alysis_code/surface/console.py +387 -0
- alysis_code/surface/events.py +372 -0
- alysis_code/surface/hidden_surface.py +529 -0
- alysis_code/surface/noop_surface.py +219 -0
- alysis_code/surface/rich_surface.py +1555 -0
- alysis_code/surface/styles.py +67 -0
- alysis_code/surface/theme.py +455 -0
- alysis_code/surface/types.py +100 -0
- alysis_code/swarm_backend.py +926 -0
- alysis_code/swarm_orchestrator.py +4020 -0
- alysis_code/swarm_scheduler.py +441 -0
- alysis_code/swarm_trace.py +429 -0
- alysis_code/swarm_worker.py +2119 -0
- alysis_code/swarm_write_guard.py +348 -0
- alysis_code/task_dependencies.py +170 -0
- alysis_code/task_readiness.py +992 -0
- alysis_code/task_scope.py +2148 -0
- alysis_code/terminal_manager.py +762 -0
- alysis_code/terminal_ownership.py +460 -0
- alysis_code/text_normalization.py +30 -0
- alysis_code/token_budget.py +97 -0
- alysis_code/tools/README.md +34 -0
- alysis_code/tools/__init__.py +1 -0
- alysis_code/tools/artifacts.py +127 -0
- alysis_code/tools/availability.py +188 -0
- alysis_code/tools/fs.py +1456 -0
- alysis_code/tools/git.py +461 -0
- alysis_code/tools/history.py +229 -0
- alysis_code/tools/http_timeout.py +78 -0
- alysis_code/tools/image_generation.py +552 -0
- alysis_code/tools/registry.py +2936 -0
- alysis_code/tools/repo_map.py +476 -0
- alysis_code/tools/search.py +563 -0
- alysis_code/tools/shell.py +135 -0
- alysis_code/tools/symbols.py +1350 -0
- alysis_code/tools/test_discovery.py +643 -0
- alysis_code/tools/web.py +482 -0
- alysis_code/tools/web_search.py +2012 -0
- alysis_code/tools/web_search_dashscope.py +557 -0
- alysis_code/tools/web_search_ddgs.py +221 -0
- alysis_code/tools/web_search_provider_adapters.py +1429 -0
- alysis_code/tools/web_search_tavily.py +194 -0
- alysis_code/updates.py +933 -0
- alysis_code/usage_tracker.py +1990 -0
- alysis_code/verification_command_analysis.py +1004 -0
- alysis_code/verification_contract.py +574 -0
- alysis_code/verification_failure_summary.py +273 -0
- alysis_code/verification_repair.py +385 -0
- alysis_code/verify_gate.py +3129 -0
- alysis_code/web_research.py +1872 -0
- alysis_code/web_search_adapters.py +66 -0
- alysis_code/web_search_policy.py +27 -0
- alysis_code/workspace_binding.py +389 -0
- alysis_code/workspace_binding_ui.py +408 -0
- alysis_code/workspace_context.py +273 -0
- alysis_code/workspace_isolation.py +138 -0
- alysis_code/workspace_provisioning.py +455 -0
- alysis_code-0.13.0.dist-info/METADATA +507 -0
- alysis_code-0.13.0.dist-info/RECORD +458 -0
- alysis_code-0.13.0.dist-info/WHEEL +4 -0
- alysis_code-0.13.0.dist-info/entry_points.txt +3 -0
- alysis_code-0.13.0.dist-info/licenses/LICENSE +176 -0
- alysis_code-0.13.0.dist-info/licenses/NOTICE +4 -0
|
@@ -0,0 +1,1181 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import hashlib
|
|
4
|
+
import os
|
|
5
|
+
import stat
|
|
6
|
+
import subprocess
|
|
7
|
+
from dataclasses import dataclass
|
|
8
|
+
from pathlib import Path, PurePosixPath
|
|
9
|
+
from typing import Any, Literal
|
|
10
|
+
|
|
11
|
+
from .file_classification import classify_path, is_generated_or_vendor_path
|
|
12
|
+
from .git_safe import build_git_cmd, build_git_process_env
|
|
13
|
+
from .runtime_artifacts import is_runtime_artifact_path
|
|
14
|
+
|
|
15
|
+
PatchCaptureStatus = Literal["complete", "partial", "failed"]
|
|
16
|
+
CandidatePatchCompleteness = Literal["complete", "partial", "failed"]
|
|
17
|
+
CandidateDeltaPathKind = Literal[
|
|
18
|
+
"committed",
|
|
19
|
+
"staged",
|
|
20
|
+
"unstaged",
|
|
21
|
+
"deleted",
|
|
22
|
+
"untracked_material",
|
|
23
|
+
"untracked_generated",
|
|
24
|
+
"unknown_binary_or_large",
|
|
25
|
+
"ignored_generated",
|
|
26
|
+
"ignored_material",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
@dataclass(frozen=True)
|
|
31
|
+
class CandidateDeltaPath:
|
|
32
|
+
path: str
|
|
33
|
+
kind: CandidateDeltaPathKind
|
|
34
|
+
tracked: bool
|
|
35
|
+
classification: str = "unknown"
|
|
36
|
+
size_bytes: int | None = None
|
|
37
|
+
sha256: str | None = None
|
|
38
|
+
reason: str | None = None
|
|
39
|
+
|
|
40
|
+
def to_dict(self) -> dict[str, Any]:
|
|
41
|
+
return {
|
|
42
|
+
"path": self.path,
|
|
43
|
+
"kind": self.kind,
|
|
44
|
+
"tracked": self.tracked,
|
|
45
|
+
"classification": self.classification,
|
|
46
|
+
"size_bytes": self.size_bytes,
|
|
47
|
+
"sha256": self.sha256,
|
|
48
|
+
"reason": self.reason,
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@classmethod
|
|
52
|
+
def from_dict(cls, payload: dict[str, object]) -> CandidateDeltaPath:
|
|
53
|
+
return cls(
|
|
54
|
+
path=str(payload.get("path") or ""),
|
|
55
|
+
kind=_delta_path_kind(payload.get("kind")),
|
|
56
|
+
tracked=bool(payload.get("tracked")),
|
|
57
|
+
classification=str(payload.get("classification") or "unknown"),
|
|
58
|
+
size_bytes=_optional_int(payload.get("size_bytes")),
|
|
59
|
+
sha256=str(payload.get("sha256")) if payload.get("sha256") is not None else None,
|
|
60
|
+
reason=str(payload.get("reason")) if payload.get("reason") is not None else None,
|
|
61
|
+
)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
@dataclass(frozen=True)
|
|
65
|
+
class CandidateEvidenceExclusion:
|
|
66
|
+
path: str
|
|
67
|
+
reason: str
|
|
68
|
+
tracked: bool = False
|
|
69
|
+
classification: str = "runtime_artifact"
|
|
70
|
+
size_bytes: int | None = None
|
|
71
|
+
sha256: str | None = None
|
|
72
|
+
|
|
73
|
+
def to_dict(self) -> dict[str, Any]:
|
|
74
|
+
return {
|
|
75
|
+
"path": self.path,
|
|
76
|
+
"reason": self.reason,
|
|
77
|
+
"tracked": self.tracked,
|
|
78
|
+
"classification": self.classification,
|
|
79
|
+
"size_bytes": self.size_bytes,
|
|
80
|
+
"sha256": self.sha256,
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
@classmethod
|
|
84
|
+
def from_dict(cls, payload: dict[str, object]) -> CandidateEvidenceExclusion:
|
|
85
|
+
return cls(
|
|
86
|
+
path=str(payload.get("path") or ""),
|
|
87
|
+
reason=str(payload.get("reason") or "excluded"),
|
|
88
|
+
tracked=bool(payload.get("tracked")),
|
|
89
|
+
classification=str(payload.get("classification") or "runtime_artifact"),
|
|
90
|
+
size_bytes=_optional_int(payload.get("size_bytes")),
|
|
91
|
+
sha256=str(payload.get("sha256")) if payload.get("sha256") is not None else None,
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
@dataclass(frozen=True)
|
|
96
|
+
class CandidatePatchCaptureResult:
|
|
97
|
+
status: PatchCaptureStatus
|
|
98
|
+
material_patch_complete: bool
|
|
99
|
+
patch_text_sha256: str
|
|
100
|
+
reason_codes: tuple[str, ...] = ()
|
|
101
|
+
|
|
102
|
+
def to_dict(self) -> dict[str, Any]:
|
|
103
|
+
return {
|
|
104
|
+
"status": self.status,
|
|
105
|
+
"material_patch_complete": self.material_patch_complete,
|
|
106
|
+
"patch_text_sha256": self.patch_text_sha256,
|
|
107
|
+
"reason_codes": list(self.reason_codes),
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
@classmethod
|
|
111
|
+
def from_dict(cls, payload: dict[str, object]) -> CandidatePatchCaptureResult:
|
|
112
|
+
status = _patch_status(payload.get("status"))
|
|
113
|
+
return cls(
|
|
114
|
+
status=status,
|
|
115
|
+
material_patch_complete=bool(payload.get("material_patch_complete")),
|
|
116
|
+
patch_text_sha256=str(payload.get("patch_text_sha256") or ""),
|
|
117
|
+
reason_codes=_tuple_strs(payload.get("reason_codes")),
|
|
118
|
+
)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
@dataclass(frozen=True)
|
|
122
|
+
class CandidateWorkingTreeDelta:
|
|
123
|
+
base_revision: str
|
|
124
|
+
final_head_revision: str | None
|
|
125
|
+
head_changed_from_base: bool = False
|
|
126
|
+
commits_ahead_count: int = 0
|
|
127
|
+
raw_changed_paths: tuple[str, ...] = ()
|
|
128
|
+
material_changed_paths: tuple[str, ...] = ()
|
|
129
|
+
excluded_generated_paths: tuple[str, ...] = ()
|
|
130
|
+
omitted_material_paths: tuple[str, ...] = ()
|
|
131
|
+
tracked_changed_paths: tuple[str, ...] = ()
|
|
132
|
+
staged_paths: tuple[str, ...] = ()
|
|
133
|
+
unstaged_paths: tuple[str, ...] = ()
|
|
134
|
+
deleted_paths: tuple[str, ...] = ()
|
|
135
|
+
untracked_material_paths: tuple[str, ...] = ()
|
|
136
|
+
untracked_generated_paths: tuple[str, ...] = ()
|
|
137
|
+
ignored_generated_paths: tuple[str, ...] = ()
|
|
138
|
+
unknown_binary_or_large_paths: tuple[str, ...] = ()
|
|
139
|
+
path_entries: tuple[CandidateDeltaPath, ...] = ()
|
|
140
|
+
excluded_paths: tuple[CandidateEvidenceExclusion, ...] = ()
|
|
141
|
+
omitted_material_entries: tuple[CandidateEvidenceExclusion, ...] = ()
|
|
142
|
+
patch_capture_status: PatchCaptureStatus = "complete"
|
|
143
|
+
material_patch_complete: bool = True
|
|
144
|
+
patch_reason_codes: tuple[str, ...] = ()
|
|
145
|
+
state_descriptors: tuple[str, ...] = ()
|
|
146
|
+
patch_text_sha256: str = ""
|
|
147
|
+
material_changed_file_count: int = 0
|
|
148
|
+
raw_changed_file_count: int = 0
|
|
149
|
+
evidence_filter_policy_version: str = "candidate-working-tree-delta-v1"
|
|
150
|
+
|
|
151
|
+
def __post_init__(self) -> None:
|
|
152
|
+
material = _sorted_unique(self.material_changed_paths)
|
|
153
|
+
raw = _sorted_unique(self.raw_changed_paths)
|
|
154
|
+
object.__setattr__(self, "material_changed_paths", material)
|
|
155
|
+
object.__setattr__(self, "raw_changed_paths", raw)
|
|
156
|
+
object.__setattr__(self, "material_changed_file_count", len(material))
|
|
157
|
+
object.__setattr__(self, "raw_changed_file_count", len(raw))
|
|
158
|
+
|
|
159
|
+
def to_dict(self) -> dict[str, Any]:
|
|
160
|
+
return {
|
|
161
|
+
"schema_version": 1,
|
|
162
|
+
"base_revision": self.base_revision,
|
|
163
|
+
"final_head_revision": self.final_head_revision,
|
|
164
|
+
"head_changed_from_base": self.head_changed_from_base,
|
|
165
|
+
"commits_ahead_count": self.commits_ahead_count,
|
|
166
|
+
"raw_changed_paths": list(self.raw_changed_paths),
|
|
167
|
+
"material_changed_paths": list(self.material_changed_paths),
|
|
168
|
+
"excluded_generated_paths": list(self.excluded_generated_paths),
|
|
169
|
+
"omitted_material_paths": list(self.omitted_material_paths),
|
|
170
|
+
"tracked_changed_paths": list(self.tracked_changed_paths),
|
|
171
|
+
"staged_paths": list(self.staged_paths),
|
|
172
|
+
"unstaged_paths": list(self.unstaged_paths),
|
|
173
|
+
"deleted_paths": list(self.deleted_paths),
|
|
174
|
+
"untracked_material_paths": list(self.untracked_material_paths),
|
|
175
|
+
"untracked_generated_paths": list(self.untracked_generated_paths),
|
|
176
|
+
"ignored_generated_paths": list(self.ignored_generated_paths),
|
|
177
|
+
"unknown_binary_or_large_paths": list(self.unknown_binary_or_large_paths),
|
|
178
|
+
"path_entries": [item.to_dict() for item in self.path_entries],
|
|
179
|
+
"excluded_paths": [item.to_dict() for item in self.excluded_paths],
|
|
180
|
+
"omitted_material_entries": [item.to_dict() for item in self.omitted_material_entries],
|
|
181
|
+
"patch_capture_status": self.patch_capture_status,
|
|
182
|
+
"material_patch_complete": self.material_patch_complete,
|
|
183
|
+
"patch_reason_codes": list(self.patch_reason_codes),
|
|
184
|
+
"state_descriptors": list(self.state_descriptors),
|
|
185
|
+
"patch_text_sha256": self.patch_text_sha256,
|
|
186
|
+
"material_changed_file_count": self.material_changed_file_count,
|
|
187
|
+
"raw_changed_file_count": self.raw_changed_file_count,
|
|
188
|
+
"evidence_filter_policy_version": self.evidence_filter_policy_version,
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
@classmethod
|
|
192
|
+
def from_dict(cls, payload: dict[str, object]) -> CandidateWorkingTreeDelta:
|
|
193
|
+
return cls(
|
|
194
|
+
base_revision=str(payload.get("base_revision") or ""),
|
|
195
|
+
final_head_revision=(
|
|
196
|
+
str(payload.get("final_head_revision"))
|
|
197
|
+
if payload.get("final_head_revision") is not None
|
|
198
|
+
else None
|
|
199
|
+
),
|
|
200
|
+
head_changed_from_base=bool(payload.get("head_changed_from_base")),
|
|
201
|
+
commits_ahead_count=_int(payload.get("commits_ahead_count")),
|
|
202
|
+
raw_changed_paths=_tuple_strs(payload.get("raw_changed_paths")),
|
|
203
|
+
material_changed_paths=_tuple_strs(payload.get("material_changed_paths")),
|
|
204
|
+
excluded_generated_paths=_tuple_strs(payload.get("excluded_generated_paths")),
|
|
205
|
+
omitted_material_paths=_tuple_strs(payload.get("omitted_material_paths")),
|
|
206
|
+
tracked_changed_paths=_tuple_strs(payload.get("tracked_changed_paths")),
|
|
207
|
+
staged_paths=_tuple_strs(payload.get("staged_paths")),
|
|
208
|
+
unstaged_paths=_tuple_strs(payload.get("unstaged_paths")),
|
|
209
|
+
deleted_paths=_tuple_strs(payload.get("deleted_paths")),
|
|
210
|
+
untracked_material_paths=_tuple_strs(payload.get("untracked_material_paths")),
|
|
211
|
+
untracked_generated_paths=_tuple_strs(payload.get("untracked_generated_paths")),
|
|
212
|
+
ignored_generated_paths=_tuple_strs(payload.get("ignored_generated_paths")),
|
|
213
|
+
unknown_binary_or_large_paths=_tuple_strs(payload.get("unknown_binary_or_large_paths")),
|
|
214
|
+
path_entries=tuple(
|
|
215
|
+
CandidateDeltaPath.from_dict(item)
|
|
216
|
+
for item in _tuple_dicts(payload.get("path_entries"))
|
|
217
|
+
),
|
|
218
|
+
excluded_paths=tuple(
|
|
219
|
+
CandidateEvidenceExclusion.from_dict(item)
|
|
220
|
+
for item in _tuple_dicts(payload.get("excluded_paths"))
|
|
221
|
+
),
|
|
222
|
+
omitted_material_entries=tuple(
|
|
223
|
+
CandidateEvidenceExclusion.from_dict(item)
|
|
224
|
+
for item in _tuple_dicts(payload.get("omitted_material_entries"))
|
|
225
|
+
),
|
|
226
|
+
patch_capture_status=_patch_status(payload.get("patch_capture_status")),
|
|
227
|
+
material_patch_complete=bool(payload.get("material_patch_complete")),
|
|
228
|
+
patch_reason_codes=_tuple_strs(payload.get("patch_reason_codes")),
|
|
229
|
+
state_descriptors=_tuple_strs(payload.get("state_descriptors")),
|
|
230
|
+
patch_text_sha256=str(payload.get("patch_text_sha256") or ""),
|
|
231
|
+
)
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
@dataclass(frozen=True)
|
|
235
|
+
class CandidateGitState:
|
|
236
|
+
base_ref: str
|
|
237
|
+
head_ref: str | None
|
|
238
|
+
base_ref_available: bool = False
|
|
239
|
+
git_commit_created: bool = False
|
|
240
|
+
status_porcelain: str = ""
|
|
241
|
+
changed_files: tuple[str, ...] = ()
|
|
242
|
+
committed_files: tuple[str, ...] = ()
|
|
243
|
+
staged_files: tuple[str, ...] = ()
|
|
244
|
+
unstaged_files: tuple[str, ...] = ()
|
|
245
|
+
untracked_files: tuple[str, ...] = ()
|
|
246
|
+
patch_text: str = ""
|
|
247
|
+
patch_capture_status: PatchCaptureStatus = "complete"
|
|
248
|
+
reason_codes: tuple[str, ...] = ()
|
|
249
|
+
state_descriptors: tuple[str, ...] = ()
|
|
250
|
+
raw_changed_paths: tuple[str, ...] = ()
|
|
251
|
+
material_changed_paths: tuple[str, ...] = ()
|
|
252
|
+
excluded_generated_paths: tuple[str, ...] = ()
|
|
253
|
+
omitted_material_paths: tuple[str, ...] = ()
|
|
254
|
+
tracked_changed_paths: tuple[str, ...] = ()
|
|
255
|
+
deleted_paths: tuple[str, ...] = ()
|
|
256
|
+
untracked_material_paths: tuple[str, ...] = ()
|
|
257
|
+
untracked_generated_paths: tuple[str, ...] = ()
|
|
258
|
+
unknown_binary_or_large_paths: tuple[str, ...] = ()
|
|
259
|
+
material_patch_complete: bool = True
|
|
260
|
+
patch_text_sha256: str = ""
|
|
261
|
+
material_changed_file_count: int = 0
|
|
262
|
+
raw_changed_file_count: int = 0
|
|
263
|
+
evidence_filter_policy_version: str = "candidate-working-tree-delta-v1"
|
|
264
|
+
working_tree_delta: CandidateWorkingTreeDelta | None = None
|
|
265
|
+
|
|
266
|
+
def __post_init__(self) -> None:
|
|
267
|
+
material = _sorted_unique(self.material_changed_paths or self.changed_files)
|
|
268
|
+
raw = _sorted_unique(self.raw_changed_paths or self.changed_files)
|
|
269
|
+
object.__setattr__(self, "changed_files", material)
|
|
270
|
+
object.__setattr__(self, "material_changed_paths", material)
|
|
271
|
+
object.__setattr__(self, "raw_changed_paths", raw)
|
|
272
|
+
object.__setattr__(self, "committed_files", _sorted_unique(self.committed_files))
|
|
273
|
+
object.__setattr__(self, "staged_files", _sorted_unique(self.staged_files))
|
|
274
|
+
object.__setattr__(self, "unstaged_files", _sorted_unique(self.unstaged_files))
|
|
275
|
+
object.__setattr__(self, "untracked_files", _sorted_unique(self.untracked_files))
|
|
276
|
+
object.__setattr__(self, "material_changed_file_count", len(material))
|
|
277
|
+
object.__setattr__(self, "raw_changed_file_count", len(raw))
|
|
278
|
+
if not self.patch_text_sha256:
|
|
279
|
+
object.__setattr__(self, "patch_text_sha256", _sha256_text(self.patch_text))
|
|
280
|
+
if self.working_tree_delta is None:
|
|
281
|
+
object.__setattr__(
|
|
282
|
+
self,
|
|
283
|
+
"working_tree_delta",
|
|
284
|
+
CandidateWorkingTreeDelta(
|
|
285
|
+
base_revision=self.base_ref,
|
|
286
|
+
final_head_revision=self.head_ref,
|
|
287
|
+
head_changed_from_base=self.git_commit_created,
|
|
288
|
+
raw_changed_paths=raw,
|
|
289
|
+
material_changed_paths=material,
|
|
290
|
+
excluded_generated_paths=self.excluded_generated_paths,
|
|
291
|
+
omitted_material_paths=self.omitted_material_paths,
|
|
292
|
+
tracked_changed_paths=self.tracked_changed_paths,
|
|
293
|
+
staged_paths=self.staged_files,
|
|
294
|
+
unstaged_paths=self.unstaged_files,
|
|
295
|
+
deleted_paths=self.deleted_paths,
|
|
296
|
+
untracked_material_paths=self.untracked_material_paths,
|
|
297
|
+
untracked_generated_paths=self.untracked_generated_paths,
|
|
298
|
+
unknown_binary_or_large_paths=self.unknown_binary_or_large_paths,
|
|
299
|
+
patch_capture_status=self.patch_capture_status,
|
|
300
|
+
material_patch_complete=self.material_patch_complete,
|
|
301
|
+
patch_reason_codes=self.reason_codes,
|
|
302
|
+
state_descriptors=self.state_descriptors,
|
|
303
|
+
patch_text_sha256=self.patch_text_sha256,
|
|
304
|
+
),
|
|
305
|
+
)
|
|
306
|
+
|
|
307
|
+
@property
|
|
308
|
+
def git_status_after(self) -> str:
|
|
309
|
+
return self.status_porcelain
|
|
310
|
+
|
|
311
|
+
def to_dict(self) -> dict[str, Any]:
|
|
312
|
+
return {
|
|
313
|
+
"base_ref": self.base_ref,
|
|
314
|
+
"head_ref": self.head_ref,
|
|
315
|
+
"base_ref_available": self.base_ref_available,
|
|
316
|
+
"git_commit_created": self.git_commit_created,
|
|
317
|
+
"status_porcelain": self.status_porcelain,
|
|
318
|
+
"git_status_after": self.status_porcelain,
|
|
319
|
+
"changed_files": list(self.changed_files),
|
|
320
|
+
"committed_files": list(self.committed_files),
|
|
321
|
+
"staged_files": list(self.staged_files),
|
|
322
|
+
"unstaged_files": list(self.unstaged_files),
|
|
323
|
+
"untracked_files": list(self.untracked_files),
|
|
324
|
+
"patch_text": self.patch_text,
|
|
325
|
+
"patch_capture_status": self.patch_capture_status,
|
|
326
|
+
"reason_codes": list(self.reason_codes),
|
|
327
|
+
"state_descriptors": list(self.state_descriptors),
|
|
328
|
+
"raw_changed_paths": list(self.raw_changed_paths),
|
|
329
|
+
"material_changed_paths": list(self.material_changed_paths),
|
|
330
|
+
"excluded_generated_paths": list(self.excluded_generated_paths),
|
|
331
|
+
"omitted_material_paths": list(self.omitted_material_paths),
|
|
332
|
+
"tracked_changed_paths": list(self.tracked_changed_paths),
|
|
333
|
+
"deleted_paths": list(self.deleted_paths),
|
|
334
|
+
"untracked_material_paths": list(self.untracked_material_paths),
|
|
335
|
+
"untracked_generated_paths": list(self.untracked_generated_paths),
|
|
336
|
+
"unknown_binary_or_large_paths": list(self.unknown_binary_or_large_paths),
|
|
337
|
+
"material_patch_complete": self.material_patch_complete,
|
|
338
|
+
"patch_text_sha256": self.patch_text_sha256,
|
|
339
|
+
"material_changed_file_count": self.material_changed_file_count,
|
|
340
|
+
"raw_changed_file_count": self.raw_changed_file_count,
|
|
341
|
+
"evidence_filter_policy_version": self.evidence_filter_policy_version,
|
|
342
|
+
"working_tree_delta": (
|
|
343
|
+
self.working_tree_delta.to_dict() if self.working_tree_delta is not None else None
|
|
344
|
+
),
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
def patch_capture_artifact(self) -> dict[str, Any]:
|
|
348
|
+
delta = self.working_tree_delta
|
|
349
|
+
return {
|
|
350
|
+
"schema_version": 1,
|
|
351
|
+
"base_revision": self.base_ref,
|
|
352
|
+
"final_head_revision": self.head_ref,
|
|
353
|
+
"raw_git_state": {
|
|
354
|
+
"status_porcelain": self.status_porcelain,
|
|
355
|
+
"committed_files": list(self.committed_files),
|
|
356
|
+
"staged_files": list(self.staged_files),
|
|
357
|
+
"unstaged_files": list(self.unstaged_files),
|
|
358
|
+
"untracked_files": list(self.untracked_files),
|
|
359
|
+
},
|
|
360
|
+
"material_delta": delta.to_dict() if delta is not None else {},
|
|
361
|
+
"raw_changed_paths": list(self.raw_changed_paths),
|
|
362
|
+
"material_changed_paths": list(self.material_changed_paths),
|
|
363
|
+
"excluded_paths": (
|
|
364
|
+
[item.to_dict() for item in delta.excluded_paths] if delta is not None else []
|
|
365
|
+
),
|
|
366
|
+
"omitted_material_paths": (
|
|
367
|
+
[item.to_dict() for item in delta.omitted_material_entries]
|
|
368
|
+
if delta is not None
|
|
369
|
+
else []
|
|
370
|
+
),
|
|
371
|
+
"patch_capture_status": self.patch_capture_status,
|
|
372
|
+
"material_patch_complete": self.material_patch_complete,
|
|
373
|
+
"state_descriptors": list(self.state_descriptors),
|
|
374
|
+
"reason_codes": list(self.reason_codes),
|
|
375
|
+
"patch_text_sha256": self.patch_text_sha256,
|
|
376
|
+
"evidence_filter_policy_version": self.evidence_filter_policy_version,
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
@classmethod
|
|
380
|
+
def from_dict(cls, payload: dict[str, object]) -> CandidateGitState:
|
|
381
|
+
status = str(
|
|
382
|
+
payload.get("status_porcelain")
|
|
383
|
+
if payload.get("status_porcelain") is not None
|
|
384
|
+
else payload.get("git_status_after") or ""
|
|
385
|
+
)
|
|
386
|
+
delta_payload = payload.get("working_tree_delta")
|
|
387
|
+
delta = (
|
|
388
|
+
CandidateWorkingTreeDelta.from_dict(delta_payload)
|
|
389
|
+
if isinstance(delta_payload, dict)
|
|
390
|
+
else None
|
|
391
|
+
)
|
|
392
|
+
patch_status = _patch_status(payload.get("patch_capture_status"))
|
|
393
|
+
return cls(
|
|
394
|
+
base_ref=str(payload.get("base_ref") or ""),
|
|
395
|
+
head_ref=str(payload.get("head_ref")) if payload.get("head_ref") is not None else None,
|
|
396
|
+
base_ref_available=bool(payload.get("base_ref_available") or payload.get("base_ref")),
|
|
397
|
+
git_commit_created=bool(payload.get("git_commit_created")),
|
|
398
|
+
status_porcelain=status,
|
|
399
|
+
changed_files=_tuple_strs(
|
|
400
|
+
payload.get("changed_files")
|
|
401
|
+
if payload.get("changed_files") is not None
|
|
402
|
+
else payload.get("material_changed_paths")
|
|
403
|
+
),
|
|
404
|
+
committed_files=_tuple_strs(payload.get("committed_files")),
|
|
405
|
+
staged_files=_tuple_strs(payload.get("staged_files")),
|
|
406
|
+
unstaged_files=_tuple_strs(payload.get("unstaged_files")),
|
|
407
|
+
untracked_files=_tuple_strs(payload.get("untracked_files")),
|
|
408
|
+
patch_text=str(payload.get("patch_text") or ""),
|
|
409
|
+
patch_capture_status=patch_status,
|
|
410
|
+
reason_codes=_tuple_strs(payload.get("reason_codes")),
|
|
411
|
+
state_descriptors=_tuple_strs(payload.get("state_descriptors")),
|
|
412
|
+
raw_changed_paths=_tuple_strs(payload.get("raw_changed_paths")),
|
|
413
|
+
material_changed_paths=_tuple_strs(payload.get("material_changed_paths")),
|
|
414
|
+
excluded_generated_paths=_tuple_strs(payload.get("excluded_generated_paths")),
|
|
415
|
+
omitted_material_paths=_tuple_strs(payload.get("omitted_material_paths")),
|
|
416
|
+
tracked_changed_paths=_tuple_strs(payload.get("tracked_changed_paths")),
|
|
417
|
+
deleted_paths=_tuple_strs(payload.get("deleted_paths")),
|
|
418
|
+
untracked_material_paths=_tuple_strs(payload.get("untracked_material_paths")),
|
|
419
|
+
untracked_generated_paths=_tuple_strs(payload.get("untracked_generated_paths")),
|
|
420
|
+
unknown_binary_or_large_paths=_tuple_strs(payload.get("unknown_binary_or_large_paths")),
|
|
421
|
+
material_patch_complete=bool(payload.get("material_patch_complete", True)),
|
|
422
|
+
patch_text_sha256=str(payload.get("patch_text_sha256") or ""),
|
|
423
|
+
evidence_filter_policy_version=str(
|
|
424
|
+
payload.get("evidence_filter_policy_version") or "candidate-working-tree-delta-v1"
|
|
425
|
+
),
|
|
426
|
+
working_tree_delta=delta,
|
|
427
|
+
)
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
def capture_candidate_git_state(
|
|
431
|
+
*,
|
|
432
|
+
worktree_path: Path,
|
|
433
|
+
base_ref: str,
|
|
434
|
+
untracked_text_size_limit: int = 512_000,
|
|
435
|
+
) -> CandidateGitState:
|
|
436
|
+
if not worktree_path.exists():
|
|
437
|
+
return CandidateGitState(
|
|
438
|
+
base_ref=base_ref,
|
|
439
|
+
head_ref=None,
|
|
440
|
+
base_ref_available=bool(base_ref),
|
|
441
|
+
patch_capture_status="failed",
|
|
442
|
+
material_patch_complete=False,
|
|
443
|
+
reason_codes=("worktree_missing",),
|
|
444
|
+
)
|
|
445
|
+
|
|
446
|
+
head_ref = _git_stdout(worktree_path, ["rev-parse", "HEAD"])
|
|
447
|
+
base_available = bool(
|
|
448
|
+
base_ref and _git_success(worktree_path, ["cat-file", "-e", f"{base_ref}^{{commit}}"])
|
|
449
|
+
)
|
|
450
|
+
status = _candidate_git_status(worktree_path)
|
|
451
|
+
git_commit_created = bool(base_available and head_ref and head_ref != base_ref)
|
|
452
|
+
commits_ahead = _commits_ahead(worktree_path, base_ref=base_ref) if base_available else 0
|
|
453
|
+
status_sets = _status_file_sets(status)
|
|
454
|
+
|
|
455
|
+
committed_files, committed_patch, committed_reasons = _committed_capture(
|
|
456
|
+
worktree_path,
|
|
457
|
+
base_ref=base_ref,
|
|
458
|
+
head_ref=head_ref,
|
|
459
|
+
base_ref_available=base_available,
|
|
460
|
+
)
|
|
461
|
+
staged_files, staged_patch, staged_reasons = _diff_capture(
|
|
462
|
+
worktree_path,
|
|
463
|
+
patch_args=["diff", "--binary", "--cached"],
|
|
464
|
+
name_args=["diff", "--name-only", "--cached"],
|
|
465
|
+
failed_reason="staged_patch_capture_failed",
|
|
466
|
+
)
|
|
467
|
+
unstaged_files, unstaged_patch, unstaged_reasons = _diff_capture(
|
|
468
|
+
worktree_path,
|
|
469
|
+
patch_args=["diff", "--binary"],
|
|
470
|
+
name_args=["diff", "--name-only"],
|
|
471
|
+
failed_reason="unstaged_patch_capture_failed",
|
|
472
|
+
)
|
|
473
|
+
|
|
474
|
+
tracked_changed_paths = _sorted_unique(
|
|
475
|
+
set(committed_files) | set(staged_files) | set(unstaged_files)
|
|
476
|
+
)
|
|
477
|
+
tracked_deleted_paths = _deleted_paths(
|
|
478
|
+
worktree_path, base_ref=base_ref, base_ref_available=base_available
|
|
479
|
+
)
|
|
480
|
+
material_tracked_paths = tracked_changed_paths
|
|
481
|
+
|
|
482
|
+
untracked_capture = _capture_untracked_paths(
|
|
483
|
+
worktree_path=worktree_path,
|
|
484
|
+
untracked_paths=status_sets.untracked_files,
|
|
485
|
+
ignored_paths=status_sets.ignored_files,
|
|
486
|
+
size_limit=untracked_text_size_limit,
|
|
487
|
+
)
|
|
488
|
+
|
|
489
|
+
material_paths = _sorted_unique(
|
|
490
|
+
set(material_tracked_paths) | set(untracked_capture.material_paths)
|
|
491
|
+
)
|
|
492
|
+
raw_paths = _sorted_unique(
|
|
493
|
+
set(material_tracked_paths)
|
|
494
|
+
| set(status_sets.untracked_files)
|
|
495
|
+
| set(status_sets.ignored_files)
|
|
496
|
+
| set(untracked_capture.excluded_generated_paths)
|
|
497
|
+
| set(untracked_capture.omitted_material_paths)
|
|
498
|
+
)
|
|
499
|
+
patch_text = _join_patch_parts(
|
|
500
|
+
committed_patch,
|
|
501
|
+
staged_patch,
|
|
502
|
+
unstaged_patch,
|
|
503
|
+
untracked_capture.patch_text,
|
|
504
|
+
)
|
|
505
|
+
|
|
506
|
+
state_descriptors: list[str] = []
|
|
507
|
+
if git_commit_created:
|
|
508
|
+
state_descriptors.append("commits_ahead")
|
|
509
|
+
if staged_files:
|
|
510
|
+
state_descriptors.append("staged_changes")
|
|
511
|
+
if unstaged_files:
|
|
512
|
+
state_descriptors.append("unstaged_changes")
|
|
513
|
+
if status_sets.untracked_files:
|
|
514
|
+
state_descriptors.append("untracked_changes")
|
|
515
|
+
if status_sets.ignored_files:
|
|
516
|
+
state_descriptors.append("ignored_changes")
|
|
517
|
+
|
|
518
|
+
reason_codes: list[str] = []
|
|
519
|
+
if not base_ref or not base_available:
|
|
520
|
+
reason_codes.append("base_revision_unavailable")
|
|
521
|
+
if untracked_capture.excluded_generated_paths:
|
|
522
|
+
reason_codes.append("generated_runtime_artifacts_excluded")
|
|
523
|
+
reason_codes.extend(committed_reasons)
|
|
524
|
+
reason_codes.extend(staged_reasons)
|
|
525
|
+
reason_codes.extend(unstaged_reasons)
|
|
526
|
+
reason_codes.extend(untracked_capture.reason_codes)
|
|
527
|
+
if not raw_paths:
|
|
528
|
+
reason_codes.append("no_changes_detected")
|
|
529
|
+
|
|
530
|
+
patch_status = _patch_capture_status(
|
|
531
|
+
material_changed_paths=material_paths,
|
|
532
|
+
patch_text=patch_text,
|
|
533
|
+
reason_codes=tuple(reason_codes),
|
|
534
|
+
)
|
|
535
|
+
material_complete = patch_status == "complete"
|
|
536
|
+
if patch_status == "failed":
|
|
537
|
+
reason_codes.append("patch_capture_failed")
|
|
538
|
+
elif patch_status == "partial":
|
|
539
|
+
reason_codes.append("patch_capture_partial")
|
|
540
|
+
|
|
541
|
+
patch_hash = _sha256_text(patch_text)
|
|
542
|
+
delta = CandidateWorkingTreeDelta(
|
|
543
|
+
base_revision=base_ref,
|
|
544
|
+
final_head_revision=head_ref or None,
|
|
545
|
+
head_changed_from_base=git_commit_created,
|
|
546
|
+
commits_ahead_count=commits_ahead,
|
|
547
|
+
raw_changed_paths=raw_paths,
|
|
548
|
+
material_changed_paths=material_paths,
|
|
549
|
+
excluded_generated_paths=untracked_capture.excluded_generated_paths,
|
|
550
|
+
omitted_material_paths=untracked_capture.omitted_material_paths,
|
|
551
|
+
tracked_changed_paths=tracked_changed_paths,
|
|
552
|
+
staged_paths=staged_files,
|
|
553
|
+
unstaged_paths=unstaged_files,
|
|
554
|
+
deleted_paths=tracked_deleted_paths,
|
|
555
|
+
untracked_material_paths=untracked_capture.material_paths,
|
|
556
|
+
untracked_generated_paths=untracked_capture.untracked_generated_paths,
|
|
557
|
+
ignored_generated_paths=untracked_capture.ignored_generated_paths,
|
|
558
|
+
unknown_binary_or_large_paths=untracked_capture.unknown_binary_or_large_paths,
|
|
559
|
+
path_entries=(
|
|
560
|
+
*_tracked_delta_entries(committed_files, kind="committed"),
|
|
561
|
+
*_tracked_delta_entries(staged_files, kind="staged"),
|
|
562
|
+
*_tracked_delta_entries(unstaged_files, kind="unstaged"),
|
|
563
|
+
*_tracked_delta_entries(tracked_deleted_paths, kind="deleted"),
|
|
564
|
+
*untracked_capture.path_entries,
|
|
565
|
+
),
|
|
566
|
+
excluded_paths=untracked_capture.exclusions,
|
|
567
|
+
omitted_material_entries=untracked_capture.omissions,
|
|
568
|
+
patch_capture_status=patch_status,
|
|
569
|
+
material_patch_complete=material_complete,
|
|
570
|
+
patch_reason_codes=tuple(dict.fromkeys(reason_codes)),
|
|
571
|
+
state_descriptors=tuple(dict.fromkeys(state_descriptors)),
|
|
572
|
+
patch_text_sha256=patch_hash,
|
|
573
|
+
)
|
|
574
|
+
|
|
575
|
+
return CandidateGitState(
|
|
576
|
+
base_ref=base_ref,
|
|
577
|
+
head_ref=head_ref or None,
|
|
578
|
+
base_ref_available=base_available,
|
|
579
|
+
git_commit_created=git_commit_created,
|
|
580
|
+
status_porcelain=status,
|
|
581
|
+
changed_files=material_paths,
|
|
582
|
+
committed_files=tuple(path for path in committed_files if path in set(material_paths)),
|
|
583
|
+
staged_files=tuple(path for path in staged_files if path in set(material_paths)),
|
|
584
|
+
unstaged_files=tuple(path for path in unstaged_files if path in set(material_paths)),
|
|
585
|
+
untracked_files=status_sets.untracked_files,
|
|
586
|
+
patch_text=patch_text,
|
|
587
|
+
patch_capture_status=patch_status,
|
|
588
|
+
reason_codes=tuple(dict.fromkeys(reason_codes)),
|
|
589
|
+
state_descriptors=tuple(dict.fromkeys(state_descriptors)),
|
|
590
|
+
raw_changed_paths=raw_paths,
|
|
591
|
+
material_changed_paths=material_paths,
|
|
592
|
+
excluded_generated_paths=untracked_capture.excluded_generated_paths,
|
|
593
|
+
omitted_material_paths=untracked_capture.omitted_material_paths,
|
|
594
|
+
tracked_changed_paths=tracked_changed_paths,
|
|
595
|
+
deleted_paths=tracked_deleted_paths,
|
|
596
|
+
untracked_material_paths=untracked_capture.material_paths,
|
|
597
|
+
untracked_generated_paths=untracked_capture.untracked_generated_paths,
|
|
598
|
+
unknown_binary_or_large_paths=untracked_capture.unknown_binary_or_large_paths,
|
|
599
|
+
material_patch_complete=material_complete,
|
|
600
|
+
patch_text_sha256=patch_hash,
|
|
601
|
+
working_tree_delta=delta,
|
|
602
|
+
)
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
@dataclass(frozen=True)
|
|
606
|
+
class _StatusFileSets:
|
|
607
|
+
staged_files: tuple[str, ...] = ()
|
|
608
|
+
unstaged_files: tuple[str, ...] = ()
|
|
609
|
+
untracked_files: tuple[str, ...] = ()
|
|
610
|
+
ignored_files: tuple[str, ...] = ()
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
@dataclass(frozen=True)
|
|
614
|
+
class _UntrackedCapture:
|
|
615
|
+
material_paths: tuple[str, ...] = ()
|
|
616
|
+
untracked_generated_paths: tuple[str, ...] = ()
|
|
617
|
+
ignored_generated_paths: tuple[str, ...] = ()
|
|
618
|
+
excluded_generated_paths: tuple[str, ...] = ()
|
|
619
|
+
omitted_material_paths: tuple[str, ...] = ()
|
|
620
|
+
unknown_binary_or_large_paths: tuple[str, ...] = ()
|
|
621
|
+
exclusions: tuple[CandidateEvidenceExclusion, ...] = ()
|
|
622
|
+
omissions: tuple[CandidateEvidenceExclusion, ...] = ()
|
|
623
|
+
path_entries: tuple[CandidateDeltaPath, ...] = ()
|
|
624
|
+
patch_text: str = ""
|
|
625
|
+
reason_codes: tuple[str, ...] = ()
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
def _committed_capture(
|
|
629
|
+
worktree_path: Path,
|
|
630
|
+
*,
|
|
631
|
+
base_ref: str,
|
|
632
|
+
head_ref: str,
|
|
633
|
+
base_ref_available: bool,
|
|
634
|
+
) -> tuple[tuple[str, ...], str, tuple[str, ...]]:
|
|
635
|
+
if not head_ref or not base_ref_available:
|
|
636
|
+
return (), "", ()
|
|
637
|
+
if head_ref == base_ref:
|
|
638
|
+
return (), "", ()
|
|
639
|
+
name_cp = _run_git(worktree_path, ["diff", "--name-only", f"{base_ref}...HEAD"])
|
|
640
|
+
patch_cp = _run_git(worktree_path, ["diff", "--binary", f"{base_ref}...HEAD"])
|
|
641
|
+
reason_codes: list[str] = []
|
|
642
|
+
if name_cp.returncode != 0 or patch_cp.returncode != 0:
|
|
643
|
+
reason_codes.append("committed_patch_capture_failed")
|
|
644
|
+
files = _stdout_paths(name_cp.stdout) if name_cp.returncode == 0 else ()
|
|
645
|
+
patch = _patch_stdout(patch_cp) if patch_cp.returncode == 0 else ""
|
|
646
|
+
return files, patch, tuple(reason_codes)
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
def _diff_capture(
|
|
650
|
+
worktree_path: Path,
|
|
651
|
+
*,
|
|
652
|
+
patch_args: list[str],
|
|
653
|
+
name_args: list[str],
|
|
654
|
+
failed_reason: str,
|
|
655
|
+
) -> tuple[tuple[str, ...], str, tuple[str, ...]]:
|
|
656
|
+
name_cp = _run_git(worktree_path, name_args)
|
|
657
|
+
patch_cp = _run_git(worktree_path, patch_args)
|
|
658
|
+
reason_codes: list[str] = []
|
|
659
|
+
if name_cp.returncode != 0 or patch_cp.returncode != 0:
|
|
660
|
+
reason_codes.append(failed_reason)
|
|
661
|
+
files = _stdout_paths(name_cp.stdout) if name_cp.returncode == 0 else ()
|
|
662
|
+
patch = _patch_stdout(patch_cp) if patch_cp.returncode == 0 else ""
|
|
663
|
+
return files, patch, tuple(reason_codes)
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
def _candidate_git_status(worktree_path: Path) -> str:
|
|
667
|
+
cp = _run_git(
|
|
668
|
+
worktree_path,
|
|
669
|
+
["status", "--porcelain=v1", "--untracked-files=all", "--ignored=matching"],
|
|
670
|
+
)
|
|
671
|
+
if cp.returncode != 0:
|
|
672
|
+
return ""
|
|
673
|
+
return cp.stdout.rstrip()
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
def _status_file_sets(status_porcelain: str) -> _StatusFileSets:
|
|
677
|
+
staged: set[str] = set()
|
|
678
|
+
unstaged: set[str] = set()
|
|
679
|
+
untracked: set[str] = set()
|
|
680
|
+
ignored: set[str] = set()
|
|
681
|
+
for line in status_porcelain.splitlines():
|
|
682
|
+
if not line:
|
|
683
|
+
continue
|
|
684
|
+
if line.startswith("?? "):
|
|
685
|
+
untracked.update(_status_line_paths(line))
|
|
686
|
+
continue
|
|
687
|
+
if line.startswith("!! "):
|
|
688
|
+
ignored.update(_status_line_paths(line))
|
|
689
|
+
continue
|
|
690
|
+
if len(line) < 3:
|
|
691
|
+
continue
|
|
692
|
+
index_status = line[0]
|
|
693
|
+
worktree_status = line[1]
|
|
694
|
+
paths = _status_line_paths(line)
|
|
695
|
+
if index_status not in {" ", "?"}:
|
|
696
|
+
staged.update(paths)
|
|
697
|
+
if worktree_status not in {" ", "?"}:
|
|
698
|
+
unstaged.update(paths)
|
|
699
|
+
return _StatusFileSets(
|
|
700
|
+
staged_files=_sorted_unique(staged),
|
|
701
|
+
unstaged_files=_sorted_unique(unstaged),
|
|
702
|
+
untracked_files=_sorted_unique(untracked),
|
|
703
|
+
ignored_files=_sorted_unique(ignored),
|
|
704
|
+
)
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
def _status_line_paths(line: str) -> tuple[str, ...]:
|
|
708
|
+
text = line[3:].strip() if len(line) > 3 else line.strip()
|
|
709
|
+
if " -> " in text:
|
|
710
|
+
parts = tuple(_normalize_rel_path(part) for part in text.split(" -> ") if part.strip())
|
|
711
|
+
return tuple(part for part in parts[-1:] if part)
|
|
712
|
+
normalized = _normalize_rel_path(text)
|
|
713
|
+
return (normalized,) if normalized else ()
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
def _capture_untracked_paths(
|
|
717
|
+
*,
|
|
718
|
+
worktree_path: Path,
|
|
719
|
+
untracked_paths: tuple[str, ...],
|
|
720
|
+
ignored_paths: tuple[str, ...],
|
|
721
|
+
size_limit: int,
|
|
722
|
+
) -> _UntrackedCapture:
|
|
723
|
+
material: list[str] = []
|
|
724
|
+
generated_untracked: list[str] = []
|
|
725
|
+
generated_ignored: list[str] = []
|
|
726
|
+
unknown_binary_or_large: list[str] = []
|
|
727
|
+
exclusions: list[CandidateEvidenceExclusion] = []
|
|
728
|
+
omissions: list[CandidateEvidenceExclusion] = []
|
|
729
|
+
entries: list[CandidateDeltaPath] = []
|
|
730
|
+
patches: list[str] = []
|
|
731
|
+
reason_codes: list[str] = []
|
|
732
|
+
|
|
733
|
+
for rel_path in untracked_paths:
|
|
734
|
+
classified = _classify_candidate_path(rel_path, root=worktree_path)
|
|
735
|
+
if classified.is_generated:
|
|
736
|
+
generated_untracked.append(rel_path)
|
|
737
|
+
exclusions.append(
|
|
738
|
+
_exclusion_for_path(worktree_path, rel_path, reason=classified.reason)
|
|
739
|
+
)
|
|
740
|
+
entries.append(
|
|
741
|
+
CandidateDeltaPath(
|
|
742
|
+
path=rel_path,
|
|
743
|
+
kind="untracked_generated",
|
|
744
|
+
tracked=False,
|
|
745
|
+
classification=classified.label,
|
|
746
|
+
size_bytes=_safe_size(worktree_path / rel_path),
|
|
747
|
+
reason=classified.reason,
|
|
748
|
+
)
|
|
749
|
+
)
|
|
750
|
+
continue
|
|
751
|
+
path = worktree_path / rel_path
|
|
752
|
+
try:
|
|
753
|
+
content, mode = _read_untracked_material(
|
|
754
|
+
path,
|
|
755
|
+
rel_path=rel_path,
|
|
756
|
+
root=worktree_path,
|
|
757
|
+
size_limit=size_limit,
|
|
758
|
+
)
|
|
759
|
+
except _OmitMaterialFile as exc:
|
|
760
|
+
unknown_binary_or_large.append(rel_path)
|
|
761
|
+
reason = exc.reason
|
|
762
|
+
omissions.append(_exclusion_for_path(worktree_path, rel_path, reason=reason))
|
|
763
|
+
entries.append(
|
|
764
|
+
CandidateDeltaPath(
|
|
765
|
+
path=rel_path,
|
|
766
|
+
kind="unknown_binary_or_large",
|
|
767
|
+
tracked=False,
|
|
768
|
+
classification=classified.label,
|
|
769
|
+
size_bytes=_safe_size(path),
|
|
770
|
+
sha256=_safe_sha256(path),
|
|
771
|
+
reason=reason,
|
|
772
|
+
)
|
|
773
|
+
)
|
|
774
|
+
reason_codes.append(reason)
|
|
775
|
+
continue
|
|
776
|
+
except OSError:
|
|
777
|
+
unknown_binary_or_large.append(rel_path)
|
|
778
|
+
omissions.append(
|
|
779
|
+
_exclusion_for_path(
|
|
780
|
+
worktree_path, rel_path, reason="patch_generation_failed_for_material_path"
|
|
781
|
+
)
|
|
782
|
+
)
|
|
783
|
+
reason_codes.append("patch_generation_failed_for_material_path")
|
|
784
|
+
continue
|
|
785
|
+
material.append(rel_path)
|
|
786
|
+
entries.append(
|
|
787
|
+
CandidateDeltaPath(
|
|
788
|
+
path=rel_path,
|
|
789
|
+
kind="untracked_material",
|
|
790
|
+
tracked=False,
|
|
791
|
+
classification=classified.label,
|
|
792
|
+
size_bytes=_safe_size(path),
|
|
793
|
+
sha256=_sha256_text(content),
|
|
794
|
+
)
|
|
795
|
+
)
|
|
796
|
+
patches.append(_new_file_patch(rel_path, content, mode=mode))
|
|
797
|
+
|
|
798
|
+
for rel_path in ignored_paths:
|
|
799
|
+
classified = _classify_candidate_path(rel_path.rstrip("/"), root=worktree_path)
|
|
800
|
+
if classified.is_generated:
|
|
801
|
+
generated_ignored.append(rel_path)
|
|
802
|
+
exclusions.append(
|
|
803
|
+
_exclusion_for_path(worktree_path, rel_path.rstrip("/"), reason=classified.reason)
|
|
804
|
+
)
|
|
805
|
+
entries.append(
|
|
806
|
+
CandidateDeltaPath(
|
|
807
|
+
path=rel_path,
|
|
808
|
+
kind="ignored_generated",
|
|
809
|
+
tracked=False,
|
|
810
|
+
classification=classified.label,
|
|
811
|
+
size_bytes=_safe_size(worktree_path / rel_path.rstrip("/")),
|
|
812
|
+
reason=classified.reason,
|
|
813
|
+
)
|
|
814
|
+
)
|
|
815
|
+
else:
|
|
816
|
+
omissions.append(
|
|
817
|
+
_exclusion_for_path(
|
|
818
|
+
worktree_path,
|
|
819
|
+
rel_path.rstrip("/"),
|
|
820
|
+
reason="ignored_material_path_not_captured",
|
|
821
|
+
)
|
|
822
|
+
)
|
|
823
|
+
reason_codes.append("ignored_material_path_not_captured")
|
|
824
|
+
|
|
825
|
+
excluded = _sorted_unique(set(generated_untracked) | set(generated_ignored))
|
|
826
|
+
return _UntrackedCapture(
|
|
827
|
+
material_paths=_sorted_unique(material),
|
|
828
|
+
untracked_generated_paths=_sorted_unique(generated_untracked),
|
|
829
|
+
ignored_generated_paths=_sorted_unique(generated_ignored),
|
|
830
|
+
excluded_generated_paths=excluded,
|
|
831
|
+
omitted_material_paths=_sorted_unique(
|
|
832
|
+
set(unknown_binary_or_large)
|
|
833
|
+
| {
|
|
834
|
+
item.path
|
|
835
|
+
for item in omissions
|
|
836
|
+
if item.reason == "ignored_material_path_not_captured"
|
|
837
|
+
}
|
|
838
|
+
),
|
|
839
|
+
unknown_binary_or_large_paths=_sorted_unique(unknown_binary_or_large),
|
|
840
|
+
exclusions=tuple(sorted(exclusions, key=lambda item: item.path)),
|
|
841
|
+
omissions=tuple(sorted(omissions, key=lambda item: item.path)),
|
|
842
|
+
path_entries=tuple(sorted(entries, key=lambda item: (item.path, item.kind))),
|
|
843
|
+
patch_text=_join_patch_parts(*patches),
|
|
844
|
+
reason_codes=tuple(dict.fromkeys(reason_codes)),
|
|
845
|
+
)
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
@dataclass(frozen=True)
|
|
849
|
+
class _PathClassification:
|
|
850
|
+
label: str
|
|
851
|
+
is_generated: bool
|
|
852
|
+
reason: str
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
def _classify_candidate_path(path: str, *, root: Path) -> _PathClassification:
|
|
856
|
+
normalized = _normalize_rel_path(path)
|
|
857
|
+
if is_runtime_artifact_path(normalized, root=root):
|
|
858
|
+
return _PathClassification("runtime_artifact", True, _runtime_artifact_reason(normalized))
|
|
859
|
+
if is_generated_or_vendor_path(normalized):
|
|
860
|
+
return _PathClassification("generated_or_vendor", True, "generated_or_vendor_path")
|
|
861
|
+
return _PathClassification(classify_path(normalized).kind, False, "material")
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
def _runtime_artifact_reason(path: str) -> str:
|
|
865
|
+
parts = tuple(part.casefold() for part in PurePosixPath(path).parts if part)
|
|
866
|
+
leaf = parts[-1] if parts else ""
|
|
867
|
+
if "__pycache__" in parts or leaf.endswith((".pyc", ".pyo")):
|
|
868
|
+
return "python_runtime_artifact"
|
|
869
|
+
if ".pytest_cache" in parts:
|
|
870
|
+
return "pytest_runtime_artifact"
|
|
871
|
+
if ".mypy_cache" in parts:
|
|
872
|
+
return "mypy_runtime_artifact"
|
|
873
|
+
if ".ruff_cache" in parts:
|
|
874
|
+
return "ruff_runtime_artifact"
|
|
875
|
+
if ".alysis" in parts:
|
|
876
|
+
return "alysis_runtime_artifact"
|
|
877
|
+
return "runtime_artifact"
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
def _read_untracked_material(
|
|
881
|
+
path: Path, *, rel_path: str, root: Path, size_limit: int
|
|
882
|
+
) -> tuple[str, int]:
|
|
883
|
+
if _normalize_rel_path(rel_path).startswith("../") or Path(rel_path).is_absolute():
|
|
884
|
+
raise _OmitMaterialFile("path_outside_worktree")
|
|
885
|
+
try:
|
|
886
|
+
resolved_parent = path.parent.resolve()
|
|
887
|
+
if not _path_within(resolved_parent, root):
|
|
888
|
+
raise _OmitMaterialFile("path_outside_worktree")
|
|
889
|
+
except OSError:
|
|
890
|
+
raise _OmitMaterialFile("path_outside_worktree") from None
|
|
891
|
+
try:
|
|
892
|
+
st = path.lstat()
|
|
893
|
+
except OSError as exc:
|
|
894
|
+
raise OSError from exc
|
|
895
|
+
if stat.S_ISLNK(st.st_mode):
|
|
896
|
+
target = os.readlink(path)
|
|
897
|
+
target_parts = PurePosixPath(target.replace("\\", "/")).parts
|
|
898
|
+
if os.path.isabs(target) or ".." in target_parts:
|
|
899
|
+
raise _OmitMaterialFile("unsupported_symlink_change")
|
|
900
|
+
return target, 0o120000
|
|
901
|
+
if not stat.S_ISREG(st.st_mode):
|
|
902
|
+
raise _OmitMaterialFile("unsupported_file_mode_change")
|
|
903
|
+
if st.st_size > max(0, int(size_limit)):
|
|
904
|
+
raise _OmitMaterialFile("unknown_binary_or_large_material_file_omitted")
|
|
905
|
+
data = path.read_bytes()
|
|
906
|
+
if b"\x00" in data:
|
|
907
|
+
raise _OmitMaterialFile("unknown_binary_or_large_material_file_omitted")
|
|
908
|
+
try:
|
|
909
|
+
content = data.decode("utf-8")
|
|
910
|
+
except UnicodeDecodeError as exc:
|
|
911
|
+
raise _OmitMaterialFile("unknown_binary_or_large_material_file_omitted") from exc
|
|
912
|
+
mode = 0o100755 if st.st_mode & stat.S_IXUSR else 0o100644
|
|
913
|
+
return content, mode
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
class _OmitMaterialFile(Exception):
|
|
917
|
+
def __init__(self, reason: str) -> None:
|
|
918
|
+
super().__init__(reason)
|
|
919
|
+
self.reason = reason
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
def _new_file_patch(rel_path: str, content: str, *, mode: int = 0o100644) -> str:
|
|
923
|
+
safe_path = _normalize_rel_path(rel_path)
|
|
924
|
+
mode_text = f"{mode:06o}"
|
|
925
|
+
lines = content.splitlines()
|
|
926
|
+
patch_lines = [
|
|
927
|
+
f"diff --git a/{safe_path} b/{safe_path}",
|
|
928
|
+
f"new file mode {mode_text}",
|
|
929
|
+
"index 0000000..0000000",
|
|
930
|
+
"--- /dev/null",
|
|
931
|
+
f"+++ b/{safe_path}",
|
|
932
|
+
]
|
|
933
|
+
if lines:
|
|
934
|
+
patch_lines.append(f"@@ -0,0 +1,{len(lines)} @@")
|
|
935
|
+
patch_lines.extend(f"+{line}" for line in lines)
|
|
936
|
+
if not content.endswith("\n"):
|
|
937
|
+
patch_lines.append("\")
|
|
938
|
+
return "\n".join(patch_lines) + "\n"
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
def _deleted_paths(
|
|
942
|
+
worktree_path: Path, *, base_ref: str, base_ref_available: bool
|
|
943
|
+
) -> tuple[str, ...]:
|
|
944
|
+
deleted: set[str] = set()
|
|
945
|
+
for args in (
|
|
946
|
+
["diff", "--name-only", "--diff-filter=D"],
|
|
947
|
+
["diff", "--cached", "--name-only", "--diff-filter=D"],
|
|
948
|
+
):
|
|
949
|
+
cp = _run_git(worktree_path, args)
|
|
950
|
+
if cp.returncode == 0:
|
|
951
|
+
deleted.update(_stdout_paths(cp.stdout))
|
|
952
|
+
if base_ref_available:
|
|
953
|
+
cp = _run_git(
|
|
954
|
+
worktree_path, ["diff", "--name-only", "--diff-filter=D", f"{base_ref}...HEAD"]
|
|
955
|
+
)
|
|
956
|
+
if cp.returncode == 0:
|
|
957
|
+
deleted.update(_stdout_paths(cp.stdout))
|
|
958
|
+
return _sorted_unique(deleted)
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
def _tracked_delta_entries(
|
|
962
|
+
paths: tuple[str, ...],
|
|
963
|
+
*,
|
|
964
|
+
kind: CandidateDeltaPathKind,
|
|
965
|
+
) -> tuple[CandidateDeltaPath, ...]:
|
|
966
|
+
return tuple(
|
|
967
|
+
CandidateDeltaPath(
|
|
968
|
+
path=path,
|
|
969
|
+
kind=kind,
|
|
970
|
+
tracked=True,
|
|
971
|
+
classification=classify_path(path).kind,
|
|
972
|
+
)
|
|
973
|
+
for path in paths
|
|
974
|
+
)
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
def _patch_capture_status(
|
|
978
|
+
*,
|
|
979
|
+
material_changed_paths: tuple[str, ...],
|
|
980
|
+
patch_text: str,
|
|
981
|
+
reason_codes: tuple[str, ...],
|
|
982
|
+
) -> PatchCaptureStatus:
|
|
983
|
+
partial_reasons = {
|
|
984
|
+
"base_revision_unavailable",
|
|
985
|
+
"committed_patch_capture_failed",
|
|
986
|
+
"staged_patch_capture_failed",
|
|
987
|
+
"unstaged_patch_capture_failed",
|
|
988
|
+
"unknown_binary_or_large_material_file_omitted",
|
|
989
|
+
"unsupported_symlink_change",
|
|
990
|
+
"patch_generation_failed_for_material_path",
|
|
991
|
+
"material_path_disappeared_during_capture",
|
|
992
|
+
"path_outside_worktree",
|
|
993
|
+
"capture_mismatch",
|
|
994
|
+
"unsupported_file_mode_change",
|
|
995
|
+
"ignored_material_path_not_captured",
|
|
996
|
+
}
|
|
997
|
+
if any(reason in partial_reasons for reason in reason_codes):
|
|
998
|
+
return "partial"
|
|
999
|
+
if not material_changed_paths:
|
|
1000
|
+
return "complete"
|
|
1001
|
+
return "complete" if patch_text.strip() else "failed"
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
def _commits_ahead(worktree_path: Path, *, base_ref: str) -> int:
|
|
1005
|
+
if not base_ref:
|
|
1006
|
+
return 0
|
|
1007
|
+
cp = _run_git(worktree_path, ["rev-list", "--count", f"{base_ref}..HEAD"])
|
|
1008
|
+
if cp.returncode != 0:
|
|
1009
|
+
return 0
|
|
1010
|
+
try:
|
|
1011
|
+
return int(cp.stdout.strip() or "0")
|
|
1012
|
+
except ValueError:
|
|
1013
|
+
return 0
|
|
1014
|
+
|
|
1015
|
+
|
|
1016
|
+
def _run_git(root: Path, args: list[str]) -> subprocess.CompletedProcess[str]:
|
|
1017
|
+
return subprocess.run(
|
|
1018
|
+
build_git_cmd(root, args),
|
|
1019
|
+
check=False,
|
|
1020
|
+
capture_output=True,
|
|
1021
|
+
text=True,
|
|
1022
|
+
env={
|
|
1023
|
+
**os.environ,
|
|
1024
|
+
**build_git_process_env(),
|
|
1025
|
+
},
|
|
1026
|
+
)
|
|
1027
|
+
|
|
1028
|
+
|
|
1029
|
+
def _git_stdout(root: Path, args: list[str]) -> str:
|
|
1030
|
+
cp = _run_git(root, args)
|
|
1031
|
+
if cp.returncode != 0:
|
|
1032
|
+
return ""
|
|
1033
|
+
return cp.stdout.strip()
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
def _git_success(root: Path, args: list[str]) -> bool:
|
|
1037
|
+
return _run_git(root, args).returncode == 0
|
|
1038
|
+
|
|
1039
|
+
|
|
1040
|
+
def _stdout_paths(stdout: str) -> tuple[str, ...]:
|
|
1041
|
+
return _sorted_unique(line.strip() for line in stdout.splitlines() if line.strip())
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
def _patch_stdout(cp: subprocess.CompletedProcess[str]) -> str:
|
|
1045
|
+
return _ensure_trailing_newline(cp.stdout) if cp.stdout else ""
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
def _join_patch_parts(*parts: str) -> str:
|
|
1049
|
+
patch_text = ""
|
|
1050
|
+
for part in parts:
|
|
1051
|
+
if not part or not part.strip():
|
|
1052
|
+
continue
|
|
1053
|
+
if patch_text and not patch_text.endswith("\n"):
|
|
1054
|
+
patch_text += "\n"
|
|
1055
|
+
patch_text += _ensure_trailing_newline(part)
|
|
1056
|
+
return patch_text
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
def _ensure_trailing_newline(text: str) -> str:
|
|
1060
|
+
if not text:
|
|
1061
|
+
return ""
|
|
1062
|
+
return text if text.endswith("\n") else f"{text}\n"
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
def _normalize_rel_path(path: str) -> str:
|
|
1066
|
+
normalized = str(path or "").replace("\\", "/").strip().strip("/")
|
|
1067
|
+
while normalized.startswith("./"):
|
|
1068
|
+
normalized = normalized[2:]
|
|
1069
|
+
return normalized
|
|
1070
|
+
|
|
1071
|
+
|
|
1072
|
+
def _path_within(path: Path, root: Path | None) -> bool:
|
|
1073
|
+
if root is None:
|
|
1074
|
+
return True
|
|
1075
|
+
try:
|
|
1076
|
+
path.resolve().relative_to(root.resolve())
|
|
1077
|
+
return True
|
|
1078
|
+
except (OSError, ValueError):
|
|
1079
|
+
return False
|
|
1080
|
+
|
|
1081
|
+
|
|
1082
|
+
def _safe_size(path: Path) -> int | None:
|
|
1083
|
+
try:
|
|
1084
|
+
return path.lstat().st_size
|
|
1085
|
+
except OSError:
|
|
1086
|
+
return None
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
def _safe_sha256(path: Path) -> str | None:
|
|
1090
|
+
try:
|
|
1091
|
+
if not path.is_file() or path.stat().st_size > 1024 * 1024:
|
|
1092
|
+
return None
|
|
1093
|
+
return hashlib.sha256(path.read_bytes()).hexdigest()
|
|
1094
|
+
except OSError:
|
|
1095
|
+
return None
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
def _exclusion_for_path(
|
|
1099
|
+
worktree_path: Path, rel_path: str, *, reason: str
|
|
1100
|
+
) -> CandidateEvidenceExclusion:
|
|
1101
|
+
normalized = _normalize_rel_path(rel_path)
|
|
1102
|
+
path = worktree_path / normalized
|
|
1103
|
+
return CandidateEvidenceExclusion(
|
|
1104
|
+
path=normalized,
|
|
1105
|
+
reason=reason,
|
|
1106
|
+
tracked=False,
|
|
1107
|
+
classification=classify_path(normalized).kind,
|
|
1108
|
+
size_bytes=_safe_size(path),
|
|
1109
|
+
sha256=_safe_sha256(path),
|
|
1110
|
+
)
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
def _sha256_text(text: str) -> str:
|
|
1114
|
+
return hashlib.sha256(text.encode("utf-8")).hexdigest()
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
def _patch_status(value: object) -> PatchCaptureStatus:
|
|
1118
|
+
raw = str(value or "complete")
|
|
1119
|
+
if raw == "ok":
|
|
1120
|
+
return "complete"
|
|
1121
|
+
if raw in {"complete", "partial", "failed"}:
|
|
1122
|
+
return raw # type: ignore[return-value]
|
|
1123
|
+
return "failed"
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
def _delta_path_kind(value: object) -> CandidateDeltaPathKind:
|
|
1127
|
+
raw = str(value or "untracked_material")
|
|
1128
|
+
allowed = {
|
|
1129
|
+
"committed",
|
|
1130
|
+
"staged",
|
|
1131
|
+
"unstaged",
|
|
1132
|
+
"deleted",
|
|
1133
|
+
"untracked_material",
|
|
1134
|
+
"untracked_generated",
|
|
1135
|
+
"unknown_binary_or_large",
|
|
1136
|
+
"ignored_generated",
|
|
1137
|
+
"ignored_material",
|
|
1138
|
+
}
|
|
1139
|
+
return raw if raw in allowed else "untracked_material" # type: ignore[return-value]
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
def _tuple_strs(value: object) -> tuple[str, ...]:
|
|
1143
|
+
if value is None:
|
|
1144
|
+
return ()
|
|
1145
|
+
if isinstance(value, str):
|
|
1146
|
+
normalized = _normalize_rel_path(value)
|
|
1147
|
+
return (normalized,) if normalized else ()
|
|
1148
|
+
if not isinstance(value, (list, tuple, set)):
|
|
1149
|
+
text = _normalize_rel_path(str(value))
|
|
1150
|
+
return (text,) if text else ()
|
|
1151
|
+
return _sorted_unique(_normalize_rel_path(str(item)) for item in value if str(item).strip())
|
|
1152
|
+
|
|
1153
|
+
|
|
1154
|
+
def _tuple_dicts(value: object) -> tuple[dict[str, object], ...]:
|
|
1155
|
+
if not isinstance(value, (list, tuple)):
|
|
1156
|
+
return ()
|
|
1157
|
+
return tuple(dict(item) for item in value if isinstance(item, dict))
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
def _sorted_unique(values: object) -> tuple[str, ...]:
|
|
1161
|
+
if isinstance(values, set):
|
|
1162
|
+
iterable = values
|
|
1163
|
+
else:
|
|
1164
|
+
iterable = values if isinstance(values, (list, tuple, set)) else tuple(values) # type: ignore[arg-type]
|
|
1165
|
+
return tuple(sorted({str(item) for item in iterable if str(item).strip()}))
|
|
1166
|
+
|
|
1167
|
+
|
|
1168
|
+
def _int(value: object, default: int = 0) -> int:
|
|
1169
|
+
try:
|
|
1170
|
+
return int(value)
|
|
1171
|
+
except (TypeError, ValueError):
|
|
1172
|
+
return default
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
def _optional_int(value: object) -> int | None:
|
|
1176
|
+
if value is None:
|
|
1177
|
+
return None
|
|
1178
|
+
try:
|
|
1179
|
+
return int(value)
|
|
1180
|
+
except (TypeError, ValueError):
|
|
1181
|
+
return None
|