|
| 1 | +from __future__ import annotations |
| 2 | + |
| 3 | +from enum import Enum |
| 4 | +from typing import Optional |
| 5 | + |
| 6 | +from pydantic import BaseModel, model_validator |
| 7 | + |
| 8 | +from ..common import CaseInsensitiveEnum, CodeTFWriter |
| 9 | + |
| 10 | + |
| 11 | +class Run(BaseModel): |
| 12 | + """Metadata about the analysis run that produced the results""" |
| 13 | + |
| 14 | + vendor: str |
| 15 | + tool: str |
| 16 | + version: str |
| 17 | + # Optional free-form metadata about the project being analyzed |
| 18 | + # e.g. project name, directory, commit SHA, etc. |
| 19 | + projectMetadata: Optional[str] = None |
| 20 | + # Analysis duration in milliseconds |
| 21 | + elapsed: Optional[int] = None |
| 22 | + # Optional free-form metadata about the inputs used for the analysis |
| 23 | + # e.g. command line, environment variables, etc. |
| 24 | + inputMetadata: Optional[dict] = None |
| 25 | + # Optional free-form metadata about the analysis itself |
| 26 | + # e.g. timeouts, memory usage, etc. |
| 27 | + analysisMetadata: Optional[dict] = None |
| 28 | + |
| 29 | + |
| 30 | +class FixStatusType(str, Enum): |
| 31 | + """Status of a fix""" |
| 32 | + |
| 33 | + fixed = "fixed" |
| 34 | + skipped = "skipped" |
| 35 | + failed = "failed" |
| 36 | + wontfix = "wontfix" |
| 37 | + |
| 38 | + |
| 39 | +class FixStatus(BaseModel): |
| 40 | + """Metadata describing fix outcome""" |
| 41 | + |
| 42 | + status: FixStatus |
| 43 | + reason: Optional[str] |
| 44 | + details: Optional[str] |
| 45 | + |
| 46 | + |
| 47 | +class Rule(BaseModel): |
| 48 | + id: str |
| 49 | + name: str |
| 50 | + url: Optional[str] = None |
| 51 | + |
| 52 | + |
| 53 | +class Finding(BaseModel): |
| 54 | + id: str |
| 55 | + rule: Optional[Rule] = None |
| 56 | + |
| 57 | + |
| 58 | +class Action(CaseInsensitiveEnum): |
| 59 | + ADD = "add" |
| 60 | + REMOVE = "remove" |
| 61 | + |
| 62 | + |
| 63 | +class PackageResult(CaseInsensitiveEnum): |
| 64 | + COMPLETED = "completed" |
| 65 | + FAILED = "failed" |
| 66 | + SKIPPED = "skipped" |
| 67 | + |
| 68 | + |
| 69 | +class DiffSide(CaseInsensitiveEnum): |
| 70 | + LEFT = "left" |
| 71 | + RIGHT = "right" |
| 72 | + |
| 73 | + |
| 74 | +class PackageAction(BaseModel): |
| 75 | + action: Action |
| 76 | + result: PackageResult |
| 77 | + package: str |
| 78 | + |
| 79 | + |
| 80 | +class Change(BaseModel): |
| 81 | + lineNumber: int |
| 82 | + description: Optional[str] |
| 83 | + diffSide: DiffSide = DiffSide.RIGHT |
| 84 | + properties: Optional[dict] = None |
| 85 | + packageActions: Optional[list[PackageAction]] = None |
| 86 | + |
| 87 | + @model_validator(mode="after") |
| 88 | + def validate_lineNumber(self): |
| 89 | + if self.lineNumber < 1: |
| 90 | + raise ValueError("lineNumber must be greater than 0") |
| 91 | + return self |
| 92 | + |
| 93 | + @model_validator(mode="after") |
| 94 | + def validate_description(self): |
| 95 | + if self.description is not None and not self.description: |
| 96 | + raise ValueError("description must not be empty") |
| 97 | + return self |
| 98 | + |
| 99 | + |
| 100 | +class ChangeSet(BaseModel): |
| 101 | + path: str |
| 102 | + diff: str |
| 103 | + changes: list[Change] |
| 104 | + |
| 105 | + |
| 106 | +class Reference(BaseModel): |
| 107 | + url: str |
| 108 | + description: Optional[str] = None |
| 109 | + |
| 110 | + @model_validator(mode="after") |
| 111 | + def validate_description(self): |
| 112 | + self.description = self.description or self.url |
| 113 | + return self |
| 114 | + |
| 115 | + |
| 116 | +class Strategy(Enum): |
| 117 | + ai = "ai" |
| 118 | + hybrid = "hybrid" |
| 119 | + deterministic = "deterministic" |
| 120 | + |
| 121 | + |
| 122 | +class AIMetadata(BaseModel): |
| 123 | + provider: Optional[str] = None |
| 124 | + models: Optional[list[str]] = None |
| 125 | + total_tokens: Optional[int] = None |
| 126 | + completion_tokens: Optional[int] = None |
| 127 | + prompt_tokens: Optional[int] = None |
| 128 | + |
| 129 | + |
| 130 | +class GenerationMetadata(BaseModel): |
| 131 | + strategy: Strategy |
| 132 | + ai: Optional[AIMetadata] = None |
| 133 | + provisional: bool |
| 134 | + |
| 135 | + |
| 136 | +class FixMetadata(BaseModel): |
| 137 | + # Fix provider ID, corresponds to legacy codemod ID |
| 138 | + id: str |
| 139 | + # A brief summary of the fix |
| 140 | + summary: str |
| 141 | + # A detailed description of the fix |
| 142 | + description: str |
| 143 | + references: list[Reference] |
| 144 | + generation: GenerationMetadata |
| 145 | + |
| 146 | + |
| 147 | +class Rating(BaseModel): |
| 148 | + score: int |
| 149 | + description: Optional[str] = None |
| 150 | + |
| 151 | + |
| 152 | +class FixQuality(BaseModel): |
| 153 | + safetyRating: Rating |
| 154 | + effectivenessRating: Rating |
| 155 | + cleanlinessRating: Rating |
| 156 | + |
| 157 | + |
| 158 | +class FixResult(BaseModel): |
| 159 | + """Result corresponding to a single finding""" |
| 160 | + |
| 161 | + finding: Finding |
| 162 | + fixStatus: FixStatus |
| 163 | + changeSets: list[ChangeSet] |
| 164 | + fixMetadata: Optional[FixMetadata] = None |
| 165 | + fixQuality: Optional[FixQuality] = None |
| 166 | + # A description of the reasoning process that led to the fix |
| 167 | + reasoningSteps: Optional[list[str]] = None |
| 168 | + |
| 169 | + @model_validator(mode="after") |
| 170 | + def validate_fixMetadata(self): |
| 171 | + if self.fixStatus.status == FixStatusType.fixed: |
| 172 | + if not self.changeSets: |
| 173 | + raise ValueError("changeSets must be provided for fixed results") |
| 174 | + if not self.fixMetadata: |
| 175 | + raise ValueError("fixMetadata must be provided for fixed results") |
| 176 | + return self |
| 177 | + |
| 178 | + |
| 179 | +class CodeTF(CodeTFWriter, BaseModel): |
| 180 | + run: Run |
| 181 | + results: list[FixResult] |
0 commit comments