File size: 27,855 Bytes
a2bafe1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 | """
task_executor.py β REST API task executor for the macOS AI Agent environment.
"""
import difflib
import logging
import os
import re
import shutil
import signal
import subprocess
import threading
import time
import uuid
from http import HTTPStatus
from flask import Flask, jsonify, request
from waitress import serve
# ---------------------------------------------------------------------------
# Configuration
# ---------------------------------------------------------------------------
TASK_BASE_DIR = os.environ.get("TASK_BASE_DIR", "/Users/AgentUser/tasks")
API_PORT = int(os.environ.get("API_PORT", "9090"))
API_TOKEN = os.environ.get("API_TOKEN", "")
# ---------------------------------------------------------------------------
# Logging
# ---------------------------------------------------------------------------
os.makedirs(TASK_BASE_DIR, exist_ok=True)
LOG_FILE = os.path.join(TASK_BASE_DIR, "task_executor.log")
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(levelname)s] %(name)s: %(message)s",
handlers=[
logging.FileHandler(LOG_FILE, encoding="utf-8"),
logging.StreamHandler(),
],
)
log = logging.getLogger("task_executor")
# ---------------------------------------------------------------------------
# In-memory task store
# ---------------------------------------------------------------------------
_tasks: dict[str, dict] = {}
_tasks_lock = threading.Lock()
_TASK_MAX_AGE = int(os.environ.get("TASK_MAX_AGE", "3600")) # 1 hour default
def _evict_old_tasks() -> None:
"""Drop completed/failed tasks older than TASK_MAX_AGE seconds."""
cutoff = time.monotonic() - _TASK_MAX_AGE
with _tasks_lock:
stale = [
tid for tid, t in _tasks.items()
if t["status"] not in ("pending", "running")
and t.get("_created", 0) < cutoff
]
for tid in stale:
_tasks.pop(tid)
app = Flask(__name__)
def _check_auth() -> bool:
"""Return True if the request is authorised (or auth is disabled)."""
if not API_TOKEN:
return True # auth disabled if no token configured
auth = request.headers.get("Authorization", "")
return auth == f"Bearer {API_TOKEN}"
# ===========================================================================
# Custom exceptions
# ===========================================================================
class _TaskTimeoutError(RuntimeError):
"""Raised by _run() when a subprocess exceeds its allotted time."""
# ===========================================================================
# Subprocess helper
# ===========================================================================
def _run(
command: list[str] | str,
cwd: str | None = None,
timeout: int = 120,
shell: bool = False,
) -> tuple[int, str, str]:
"""
Run a command in a new process group so the entire child tree can be
killed on timeout via os.killpg + SIGKILL (POSIX).
β’ list[str] β all internal commands (git clone/checkout/apply/diff).
argv passed directly to execvp; no shell, no injection.
β’ shell=True β user-supplied test_command and lint_command only.
Raises _TaskTimeoutError on timeout.
Returns (exit_code, stdout, stderr).
"""
proc = subprocess.Popen(
command,
cwd=cwd,
shell=shell,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
env=os.environ.copy(),
start_new_session=True,
)
try:
out, err = proc.communicate(timeout=timeout)
return proc.returncode, out, err
except subprocess.TimeoutExpired:
try:
os.killpg(os.getpgid(proc.pid), signal.SIGKILL)
except ProcessLookupError:
pass
proc.wait()
raise _TaskTimeoutError(f"Command timed out after {timeout}s")
# ===========================================================================
# Test result parsers
# ===========================================================================
def _parse_pytest(text: str) -> tuple[int, int]:
"""pytest: '5 passed, 2 failed, 1 error in 3.14s'"""
passed, failed = 0, 0
m = re.search(r"(\d+)\s+passed", text)
if m:
passed = int(m.group(1))
m = re.search(r"(\d+)\s+failed", text)
if m:
failed = int(m.group(1))
m = re.search(r"(\d+)\s+error", text)
if m:
failed += int(m.group(1))
return passed, failed
def _parse_cargo(text: str) -> tuple[int, int]:
"""cargo test: 'test result: ok. 5 passed; 0 failed; ...' β sums across binaries."""
passed, failed = 0, 0
for m in re.finditer(r"test result:.*?(\d+)\s+passed;\s*(\d+)\s+failed", text):
passed += int(m.group(1))
failed += int(m.group(2))
return passed, failed
def _parse_go(text: str) -> tuple[int, int]:
"""go test: '--- PASS/FAIL:' lines; falls back to package-level ok/FAIL."""
passed = len(re.findall(r"^--- PASS:", text, re.MULTILINE))
failed = len(re.findall(r"^--- FAIL:", text, re.MULTILINE))
if passed == 0 and failed == 0:
passed = len(re.findall(r"^ok\s+\S+", text, re.MULTILINE))
failed = len(re.findall(r"^FAIL\s+\S+", text, re.MULTILINE))
return passed, failed
def _parse_jest(text: str) -> tuple[int, int]:
"""Jest: 'Tests: 2 failed, 5 passed, 7 total'"""
passed, failed = 0, 0
m = re.search(r"^Tests:\s+(.+)$", text, re.MULTILINE)
if m:
summary = m.group(1)
p = re.search(r"(\d+)\s+passed", summary)
f = re.search(r"(\d+)\s+failed", summary)
if p:
passed = int(p.group(1))
if f:
failed = int(f.group(1))
return passed, failed
def _parse_dotnet(text: str) -> tuple[int, int]:
"""dotnet test: 'Failed: 2, Passed: 3, Skipped: 0, Total: 5'"""
passed, failed = 0, 0
m = re.search(r"Failed:\s*(\d+),\s*Passed:\s*(\d+)", text)
if m:
failed = int(m.group(1))
passed = int(m.group(2))
return passed, failed
def _parse_junit(text: str) -> tuple[int, int]:
"""Maven / Gradle / sbt: 'Tests run: 7, Failures: 2, Errors: 0, Skipped: 0'"""
passed_total = failed_total = 0
for m in re.finditer(
r"Tests run:\s*(\d+),\s*Failures:\s*(\d+),\s*Errors:\s*(\d+)", text
):
run = int(m.group(1))
failures = int(m.group(2))
errors = int(m.group(3))
failed_total += failures + errors
passed_total += max(run - failures - errors, 0)
return passed_total, failed_total
def _dispatch_test_parser(test_command: str, text: str) -> tuple[int, int]:
"""Route to the correct test parser; falls back to trying all."""
cmd = test_command.lower()
if "pytest" in cmd or "py.test" in cmd:
return _parse_pytest(text)
if "cargo" in cmd:
return _parse_cargo(text)
if "go test" in cmd:
return _parse_go(text)
if (
"jest" in cmd
or ("npm" in cmd and "test" in cmd)
or ("yarn" in cmd and "test" in cmd)
or ("pnpm" in cmd and "test" in cmd)
):
return _parse_jest(text)
if "dotnet" in cmd:
return _parse_dotnet(text)
if "mvn" in cmd or "gradle" in cmd or "sbt" in cmd or "junit" in cmd:
return _parse_junit(text)
for parser in (
_parse_pytest, _parse_cargo, _parse_go,
_parse_jest, _parse_dotnet, _parse_junit,
):
p, f = parser(text)
if p or f:
return p, f
return 0, 0
# ===========================================================================
# Lint error parser
# ===========================================================================
def _parse_lint_errors(lint_command: str, text: str, exit_code: int) -> int:
"""
Extract an error count from linter output.
Each branch targets the canonical output format of the most common CLI
linters. The fallback counts lines that contain the word 'error'
(case-insensitive), which covers the long tail of less common tools.
Soft scoring only β the result is stored but never changes task status.
"""
cmd = lint_command.lower()
# ββ ruff ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# "Found 3 errors." on the final summary line.
if "ruff" in cmd:
m = re.search(r"Found\s+(\d+)\s+error", text)
if m:
return int(m.group(1))
# ruff check --output-format json β array length
if "--output-format json" in cmd or "-o json" in cmd:
try:
import json
return len(json.loads(text))
except Exception:
pass
# ββ flake8 ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# One error per output line: "path/to/file.py:10:1: E302 ..."
if "flake8" in cmd:
return len([l for l in text.splitlines() if re.match(r".+:\d+:\d+:\s+[EWF]", l)])
# ββ mypy ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# "Found 4 errors in 2 files" on the summary line.
if "mypy" in cmd:
m = re.search(r"Found\s+(\d+)\s+error", text)
if m:
return int(m.group(1))
return text.count(": error:")
# ββ pylint ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# "Your code has been rated at X/10" β count E/F severity messages.
if "pylint" in cmd:
return len(re.findall(r"^\S+:\d+:\d+:\s+[EF]\d{4}:", text, re.MULTILINE))
# ββ cargo clippy ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# "error[E...]" lines; distinguish from "error: aborting" summary lines.
if "clippy" in cmd or ("cargo" in cmd and "check" in cmd):
return len(re.findall(r"^error\[", text, re.MULTILINE))
# ββ eslint ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Summary line: "3 errors, 1 warning"
# JSON mode: array of objects each with messages array filtered by severity=2.
if "eslint" in cmd:
if "--format json" in cmd or "-f json" in cmd:
try:
import json
data = json.loads(text)
return sum(
sum(1 for msg in f.get("messages", []) if msg.get("severity") == 2)
for f in data
)
except Exception:
pass
m = re.search(r"(\d+)\s+error", text)
return int(m.group(1)) if m else 0
# ββ go vet / staticcheck βββββββββββββββββββββββββββββββββββββββββββββββββ
# Each non-empty output line is a diagnostic.
if "go vet" in cmd or "staticcheck" in cmd:
return len([l for l in text.splitlines() if l.strip()])
# ββ clang-tidy / cppcheck ββββββββββββββββββββββββββββββββββββββββββββββββ
if "clang-tidy" in cmd or "cppcheck" in cmd:
return len(re.findall(r"\berror\b", text, re.IGNORECASE))
# ββ dotnet build (lint-as-build) βββββββββββββββββββββββββββββββββββββββββ
if "dotnet" in cmd and "build" in cmd:
m = re.search(r"(\d+)\s+Error\(s\)", text)
return int(m.group(1)) if m else 0
# ββ generic fallback ββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Non-zero exit + no recognised pattern β count 'error' occurrences.
if exit_code != 0:
return len(re.findall(r"\berror\b", text, re.IGNORECASE))
return 0
# ===========================================================================
# Patch normaliser + similarity scorer
# ===========================================================================
def _normalise_patch(patch: str) -> list[str]:
"""
Strip unified-diff metadata lines and return only the content lines
(lines starting with +, -, or space) with leading +/- preserved.
Lines stripped:
diff --git ...
index ...
--- a/...
+++ b/...
@@ ... @@ (hunk headers)
This lets difflib compare the actual code changes regardless of line
numbers, file paths, or git object hashes β so minor reformatting of
the patch header doesn't penalise an otherwise identical solution.
"""
kept: list[str] = []
for line in patch.splitlines():
if (
line.startswith("diff ")
or line.startswith("index ")
or line.startswith("--- ")
or line.startswith("+++ ")
or line.startswith("@@ ")
):
continue
kept.append(line)
return kept
def _patch_similarity(agent_patch: str, reference_patch: str) -> float:
"""
Return a similarity ratio in [0.0, 1.0] between two unified diffs after
normalisation. Uses difflib.SequenceMatcher (Ratcliff/Obershelp algorithm).
1.0 = identical changes after stripping metadata.
0.0 = completely different changes.
This is an informational signal β the caller decides what threshold
constitutes an acceptable match.
"""
a = _normalise_patch(agent_patch)
b = _normalise_patch(reference_patch)
if not a and not b:
return 1.0
if not a or not b:
return 0.0
return difflib.SequenceMatcher(None, a, b).ratio()
# ===========================================================================
# Core task executor
# ===========================================================================
def _execute(
task_id: str,
repo_url: str,
base_commit: str,
patch: str,
test_command: str,
timeout: int,
lint_command: str,
capture_diff: bool,
reference_patch: str,
) -> None:
"""
Full task lifecycle:
1. Create isolated workspace
2. git clone
3. git checkout <base_commit>
4. git apply <agent patch> (if patch provided)
5. Run test_command β pass/fail counts
6. Run lint_command (if provided; soft score)
7. git diff <base_commit> (if capture_diff or reference_patch)
8. Compute patch_similarity (if reference_patch provided)
9. Single atomic _update (status + all signals)
10. shutil.rmtree cleanup
"""
task_dir = os.path.join(TASK_BASE_DIR, task_id)
repo_dir = os.path.join(task_dir, "repo")
patch_file = os.path.join(task_dir, "task.patch")
stdout_parts: list[str] = []
stderr_parts: list[str] = []
start = time.monotonic()
# Failure sentinel β overwritten on success.
final_update: dict = {
"status": "failed",
"exit_code": -1,
"stdout": "",
"stderr": "",
"tests_passed": 0,
"tests_failed": 0,
"lint_errors": None,
"lint_output": None,
"patch_diff": None,
"patch_similarity": None,
"execution_time": 0.0,
}
def _update(**kw: object) -> None:
with _tasks_lock:
_tasks[task_id].update(kw)
_update(status="running")
try:
os.makedirs(task_dir, exist_ok=True)
# ββ 1. Clone βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
rc, out, err = _run(["git", "clone", repo_url, repo_dir], timeout=120)
stdout_parts.append(out); stderr_parts.append(err)
if rc != 0:
raise RuntimeError(f"git clone failed (rc={rc}): {err.strip()}")
# ββ 2. Checkout ββββββββββββββββββββββββββββββββββββββββββββββββββββ
rc, out, err = _run(["git", "checkout", base_commit], cwd=repo_dir, timeout=60)
stdout_parts.append(out); stderr_parts.append(err)
if rc != 0:
raise RuntimeError(f"git checkout failed (rc={rc}): {err.strip()}")
# ββ 3. Apply agent patch βββββββββββββββββββββββββββββββββββββββββββ
if patch and patch.strip():
with open(patch_file, "w", encoding="utf-8") as fh:
fh.write(patch)
rc, out, err = _run(["git", "apply", patch_file], cwd=repo_dir, timeout=30)
stdout_parts.append(out); stderr_parts.append(err)
if rc != 0:
raise RuntimeError(f"git apply failed (rc={rc}): {err.strip()}")
# ββ 4. Run tests βββββββββββββββββββββββββββββββββββββββββββββββββββ
rc, out, err = _run(test_command, cwd=repo_dir, timeout=timeout, shell=True)
stdout_parts.append(out); stderr_parts.append(err)
test_exit_code = rc
combined_stdout = "\n".join(filter(None, stdout_parts))
combined_stderr = "\n".join(filter(None, stderr_parts))
passed, failed = _dispatch_test_parser(
test_command, combined_stdout + "\n" + combined_stderr
)
# ββ 5. Lint (soft score β never mutates status) ββββββββββββββββββββ
lint_errors_count: int | None = None
lint_out: str | None = None
if lint_command and lint_command.strip():
try:
lint_rc, l_out, l_err = _run(
lint_command, cwd=repo_dir, timeout=120, shell=True
)
lint_out = (l_out + "\n" + l_err).strip() or None
lint_errors_count = _parse_lint_errors(
lint_command, lint_out or "", lint_rc
)
log.info(
"Task %s lint finished β rc=%d errors=%s",
task_id, lint_rc, lint_errors_count,
)
except _TaskTimeoutError:
lint_out = "Lint timed out after 120s"
lint_errors_count = None
log.warning("Task %s lint timed out", task_id)
except Exception as exc:
lint_out = f"Lint error: {exc}"
lint_errors_count = None
log.warning("Task %s lint exception: %s", task_id, exc)
# ββ 6. Capture git diff ββββββββββββββββββββββββββββββββββββββββββββ
# Always run when reference_patch is provided (needed for similarity).
# Also run when capture_diff=True (agent-produced code path).
patch_diff_text: str | None = None
if capture_diff or (reference_patch and reference_patch.strip()):
try:
_, diff_out, _ = _run(
["git", "diff", base_commit], cwd=repo_dir, timeout=30
)
patch_diff_text = diff_out.strip() or None
except Exception as exc:
log.warning("Task %s git diff failed: %s", task_id, exc)
# ββ 7. Reference patch similarity βββββββββββββββββββββββββββββββββ
similarity: float | None = None
if reference_patch and reference_patch.strip():
try:
agent_diff = patch_diff_text or (patch if patch and patch.strip() else "")
if agent_diff:
similarity = round(
_patch_similarity(agent_diff, reference_patch), 4
)
log.info("Task %s patch_similarity=%.4f", task_id, similarity)
except Exception as exc:
log.warning("Task %s similarity computation failed: %s", task_id, exc)
# ββ 8. Build success record ββββββββββββββββββββββββββββββββββββββββ
final_update = {
"status": "completed",
"exit_code": test_exit_code,
"stdout": combined_stdout,
"stderr": combined_stderr,
"tests_passed": passed,
"tests_failed": failed,
"lint_errors": lint_errors_count,
"lint_output": lint_out,
"patch_diff": patch_diff_text,
"patch_similarity": similarity,
"execution_time": round(time.monotonic() - start, 3),
}
except _TaskTimeoutError as exc:
stderr_parts.append(str(exc))
log.error("Task %s timed out after %ds", task_id, timeout)
final_update.update({
"stdout": "\n".join(filter(None, stdout_parts)),
"stderr": "\n".join(filter(None, stderr_parts)),
"execution_time": round(time.monotonic() - start, 3),
})
except Exception as exc:
stderr_parts.append(str(exc))
log.exception("Task %s failed: %s", task_id, exc)
final_update.update({
"stdout": "\n".join(filter(None, stdout_parts)),
"stderr": "\n".join(filter(None, stderr_parts)),
"execution_time": round(time.monotonic() - start, 3),
})
finally:
_update(**final_update)
try:
shutil.rmtree(task_dir, ignore_errors=True)
except Exception:
pass
# ===========================================================================
# REST endpoints
# ===========================================================================
@app.route("/task/submit", methods=["POST"])
def submit():
"""
POST /task/submit
Body (JSON):
repo_url str required
base_commit str optional (default: HEAD)
patch str optional β agent's unified diff
test_command str required β e.g. "python3 -m pytest tests/ -x"
timeout int optional (default: 300)
lint_command str optional β e.g. "ruff check . --output-format json"
capture_diff bool optional (default: false)
reference_patch str optional β ground-truth unified diff
Returns 202: { "task_id": "<uuid>", "status": "pending" }
"""
if not _check_auth():
return jsonify(error="Unauthorized"), HTTPStatus.UNAUTHORIZED
_evict_old_tasks()
body = request.get_json(force=True, silent=True)
if not body:
return jsonify(error="Request body must be valid JSON"), HTTPStatus.BAD_REQUEST
missing = [f for f in ("repo_url", "test_command") if not body.get(f)]
if missing:
return jsonify(error=f"Missing required fields: {missing}"), HTTPStatus.BAD_REQUEST
task_id = str(uuid.uuid4())
record: dict = {
"task_id": task_id,
"status": "pending",
"_created": time.monotonic(),
"repo_url": body["repo_url"],
"base_commit": body.get("base_commit", "HEAD"),
"test_command": body["test_command"],
"timeout": int(body.get("timeout", 300)),
"exit_code": None,
"stdout": None,
"stderr": None,
"tests_passed": None,
"tests_failed": None,
"lint_errors": None,
"lint_output": None,
"patch_diff": None,
"patch_similarity": None,
"execution_time": None,
}
with _tasks_lock:
_tasks[task_id] = record
threading.Thread(
target=_execute,
args=(
task_id,
body["repo_url"],
body.get("base_commit", "HEAD"),
body.get("patch", ""),
body["test_command"],
int(body.get("timeout", 300)),
body.get("lint_command", ""),
bool(body.get("capture_diff", False)),
body.get("reference_patch", ""),
),
daemon=True,
).start()
log.info("Task %s submitted β repo=%s", task_id, body["repo_url"])
return jsonify(task_id=task_id, status="pending"), HTTPStatus.ACCEPTED
@app.route("/task/<task_id>", methods=["GET"])
def status(task_id: str):
"""
GET /task/<task_id>
Returns: { "task_id": "...", "status": "pending|running|completed|failed" }
"""
if not _check_auth():
return jsonify(error="Unauthorized"), HTTPStatus.UNAUTHORIZED
with _tasks_lock:
t = _tasks.get(task_id)
if t is None:
return jsonify(error="Task not found"), HTTPStatus.NOT_FOUND
return jsonify(task_id=t["task_id"], status=t["status"])
@app.route("/task/<task_id>/result", methods=["GET"])
def result(task_id: str):
"""
GET /task/<task_id>/result
Returns 202 while running.
Returns 200 with full record on completion:
{
"task_id": "...",
"status": "completed|failed",
"exit_code": 0,
"stdout": "...",
"stderr": "...",
"tests_passed": 5,
"tests_failed": 1,
"lint_errors": 3,
"lint_output": "...",
"patch_diff": "...",
"patch_similarity": 0.9412,
"execution_time": 14.2
}
"""
if not _check_auth():
return jsonify(error="Unauthorized"), HTTPStatus.UNAUTHORIZED
with _tasks_lock:
t = _tasks.get(task_id)
if t is None:
return jsonify(error="Task not found"), HTTPStatus.NOT_FOUND
if t["status"] in ("pending", "running"):
return jsonify(
task_id=task_id,
status=t["status"],
message="Task not yet complete β poll again shortly",
), HTTPStatus.ACCEPTED
return jsonify(t)
@app.route("/task/<task_id>", methods=["DELETE"])
def delete(task_id: str):
"""
DELETE /task/<task_id>
Returns: { "task_id": "...", "deleted": true }
"""
if not _check_auth():
return jsonify(error="Unauthorized"), HTTPStatus.UNAUTHORIZED
with _tasks_lock:
if task_id not in _tasks:
return jsonify(error="Task not found"), HTTPStatus.NOT_FOUND
_tasks.pop(task_id)
log.info("Task %s deleted", task_id)
return jsonify(task_id=task_id, deleted=True)
# ===========================================================================
# Entry point
# ===========================================================================
if __name__ == "__main__":
log.info("Task executor starting on 0.0.0.0:%d", API_PORT)
serve(app, host="0.0.0.0", port=API_PORT, threads=16)
|