File size: 37,435 Bytes
92c4ae6 | 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 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 | """
Advanced Workflow System
Supports multi-input, multi-step, multi-output workflows with state management
"""
import asyncio
from datetime import datetime
from enum import Enum
import json
import logging
from typing import Any, Callable, Dict, List, Optional, Union
import uuid
from pydantic import BaseModel, Field, field_validator
logger = logging.getLogger(__name__)
class ParameterType(str, Enum):
STRING = "string"
NUMBER = "number"
BOOLEAN = "boolean"
ARRAY = "array"
OBJECT = "object"
FILE = "file"
SELECT = "select"
MULTISELECT = "multiselect"
class WorkflowState(str, Enum):
DRAFT = "draft"
WAITING_FOR_INPUT = "waiting_for_input"
RUNNING = "running"
PAUSED = "paused"
COMPLETED = "completed"
FAILED = "failed"
CANCELLED = "cancelled"
class InputParameter(BaseModel):
name: str
type: ParameterType
label: str
description: str
required: bool = True
default_value: Any = None
validation_rules: Dict[str, Any] = {}
options: List[str] = [] # For select/multiselect
depends_on: Optional[str] = None # Parameter that this depends on
show_when: Optional[Dict[str, Any]] = None # Condition to show this parameter
class WorkflowStep(BaseModel):
step_id: str
name: str
description: str
step_type: str
input_parameters: List[InputParameter] = []
output_schema: Dict[str, Any] = {}
depends_on: List[str] = [] # Previous step IDs
condition: Optional[str] = None # Condition to execute this step
retry_config: Dict[str, Any] = {}
timeout_seconds: int = 300
can_pause: bool = True
is_parallel: bool = False
class MultiOutputConfig(BaseModel):
output_type: str # "multiple_files", "dataset", "report", "stream"
output_parameters: List[InputParameter]
aggregation_method: Optional[str] = None # For multiple outputs
class AdvancedWorkflowDefinition(BaseModel):
workflow_id: str
name: str
description: str
version: str = "1.0"
category: str = "general"
tags: List[str] = []
# Multi-input support
input_schema: List[InputParameter] = []
# Multi-step support
steps: List[WorkflowStep] = []
step_connections: List[Dict[str, str]] = [] # step connections
# Multi-output support
output_config: Optional[MultiOutputConfig] = None
# State management
state: WorkflowState = WorkflowState.DRAFT
current_step: Optional[str] = None
# Execution context
execution_context: Dict[str, Any] = {}
user_inputs: Dict[str, Any] = {}
step_results: Dict[str, Any] = {}
# Metadata
created_at: datetime = Field(default_factory=datetime.now)
updated_at: datetime = Field(default_factory=datetime.now)
created_by: Optional[str] = None
@field_validator('steps', mode='before')
@classmethod
def validate_step_ids(cls, v):
if isinstance(v, WorkflowStep):
v.step_id = str(v.step_id)
return v
def advance_to_step(self, step_id: str):
"""Advance workflow to specific step"""
self.current_step = step_id
self.updated_at = datetime.now()
def get_missing_inputs(self, provided_inputs: Dict[str, Any]) -> List[Dict[str, Any]]:
"""Get missing required inputs based on current context"""
missing = []
for param in self.input_schema:
# Check if parameter should be shown
if not self._should_show_parameter(param, provided_inputs):
continue
# Check if parameter is required and not provided
# If it has a default value, it's not missing
if param.required and param.name not in provided_inputs:
if param.default_value is None:
missing.append({
"name": param.name,
"label": param.label,
"description": param.description,
"type": param.type.value,
"default_value": param.default_value,
"options": param.options
})
return missing
def _should_show_parameter(self, param: InputParameter, inputs: Dict[str, Any]) -> bool:
"""Check if parameter should be shown based on conditions"""
if not param.show_when:
return True
# Simple condition evaluation
for field_name, condition in param.show_when.items():
if field_name not in inputs:
return False
if isinstance(condition, list):
# Parameter should be shown if field value is in the list
if inputs[field_name] not in condition:
return False
else:
# Parameter should be shown if field value matches
if inputs[field_name] != condition:
return False
return True
def add_step_output(self, step_id: str, output: Dict[str, Any]):
"""Add output from a step"""
self.step_results[step_id] = {
"output": output,
"timestamp": datetime.now().isoformat()
}
self.updated_at = datetime.now()
def get_all_outputs(self) -> Dict[str, Any]:
"""Get all outputs from all completed steps"""
return {step_id: step_data["output"] for step_id, step_data in self.step_results.items()}
class WorkflowExecutionPlan(BaseModel):
workflow_id: str
execution_id: str
planned_steps: List[str] # Order of step execution
parallel_groups: List[List[str]] = [] # Steps that can run in parallel
estimated_duration: int = 0
required_inputs: List[str] # Required parameters for next step
class StateManager:
"""Manages workflow state persistence and restoration"""
def __init__(self):
self.state_store: Dict[str, Dict[str, Any]] = {}
def save_state(self, workflow_id: str, state: Dict[str, Any]) -> bool:
"""Save workflow state"""
try:
state["saved_at"] = datetime.now().isoformat()
self.state_store[workflow_id] = state
# Also persist to file for durability
self._persist_to_file(workflow_id, state)
return True
except Exception as e:
logger.error(f"Failed to save state for {workflow_id}: {e}")
return False
def load_state(self, workflow_id: str) -> Optional[Dict[str, Any]]:
"""Load workflow state"""
try:
# Try memory first
if workflow_id in self.state_store:
return self.state_store[workflow_id]
# Try file storage
state = self._load_from_file(workflow_id)
if state:
self.state_store[workflow_id] = state
return state
return None
except Exception as e:
logger.error(f"Failed to load state for {workflow_id}: {e}")
return None
def _persist_to_file(self, workflow_id: str, state: Dict[str, Any]):
"""Persist state to file"""
import os
os.makedirs("workflow_states", exist_ok=True)
filename = f"workflow_states/{workflow_id}.json"
with open(filename, 'w') as f:
json.dump(state, f, indent=2, default=str)
def _load_from_file(self, workflow_id: str) -> Optional[Dict[str, Any]]:
"""Load state from file"""
import os
filename = f"workflow_states/{workflow_id}.json"
if not os.path.exists(filename):
return None
try:
with open(filename, 'r') as f:
return json.load(f)
except Exception:
return None
def list_workflows(
self,
status: Optional[str] = None,
category: Optional[str] = None,
tags: Optional[List[str]] = None,
sort_by: str = "updated_at",
sort_order: str = "desc",
limit: Optional[int] = None,
offset: int = 0
) -> List[Dict[str, Any]]:
"""
List all workflows with comprehensive filtering and sorting.
Args:
status: Optional status filter (e.g., "draft", "running", "completed", "failed")
category: Optional category filter
tags: Optional list of tags to filter (workflows must have ALL specified tags)
sort_by: Field to sort by (updated_at, created_at, name)
sort_order: Sort order ("asc" or "desc")
limit: Optional maximum number of workflows to return
offset: Number of workflows to skip (for pagination)
Returns:
List of workflow summaries with id, name, status, and metadata
"""
try:
import os
workflows = []
seen_workflow_ids = set()
# First, collect in-memory workflows (might not be persisted yet)
for workflow_id, state in self.state_store.items():
if state:
summary = self._create_workflow_summary(workflow_id, state)
if self._matches_filters(summary, status, category, tags):
workflows.append(summary)
seen_workflow_ids.add(workflow_id)
# Then, scan workflow_states directory for persisted workflows
state_dir = "workflow_states"
if os.path.exists(state_dir):
# Load all workflow files
for filename in os.listdir(state_dir):
if filename.endswith(".json"):
workflow_id = filename[:-5] # Remove .json extension
# Skip if we already have this workflow from memory
if workflow_id in seen_workflow_ids:
continue
state = self._load_from_file(workflow_id)
if state:
summary = self._create_workflow_summary(workflow_id, state)
if self._matches_filters(summary, status, category, tags):
workflows.append(summary)
# Sort workflows
reverse = (sort_order.lower() == "desc")
if sort_by in ["updated_at", "created_at", "name"]:
workflows.sort(key=lambda w: (w.get(sort_by) or "") if sort_by != "name" else w.get("name", "").lower(), reverse=reverse)
else:
# Default sort by updated_at
workflows.sort(key=lambda w: w.get("updated_at") or w.get("created_at") or "", reverse=True)
# Apply pagination (offset and limit)
if offset > 0:
workflows = workflows[offset:]
if limit is not None:
workflows = workflows[:limit]
logger.info(f"Found {len(workflows)} workflows" + (f" matching filters" if any([status, category, tags]) else ""))
return workflows
except Exception as e:
logger.error(f"Failed to list workflows: {e}")
return []
def _create_workflow_summary(self, workflow_id: str, state: Dict[str, Any]) -> Dict[str, Any]:
"""Create a workflow summary from state data"""
steps = state.get("steps", [])
workflow_state = state.get("state", state.get("status", "unknown"))
# Convert WorkflowState enum to string if needed
if hasattr(workflow_state, "value"):
workflow_state = workflow_state.value
return {
"workflow_id": workflow_id,
"name": state.get("name", "Unnamed Workflow"),
"description": state.get("description", ""),
"state": workflow_state,
"status": workflow_state,
"created_at": state.get("created_at"),
"updated_at": state.get("updated_at"),
"saved_at": state.get("saved_at"),
"current_step": state.get("current_step"),
"total_steps": len(steps),
"category": state.get("category", "general"),
"tags": state.get("tags", []),
"version": state.get("version", "1.0"),
"created_by": state.get("created_by"),
}
def _matches_filters(
self,
summary: Dict[str, Any],
status: Optional[str] = None,
category: Optional[str] = None,
tags: Optional[List[str]] = None
) -> bool:
"""Check if workflow summary matches all specified filters"""
# Status filter
if status is not None and summary.get("status") != status:
return False
# Category filter
if category is not None and summary.get("category") != category:
return False
# Tags filter (workflow must have ALL specified tags)
if tags:
workflow_tags = set(summary.get("tags", []))
if not set(tags).issubset(workflow_tags):
return False
return True
def delete_state(self, workflow_id: str) -> bool:
"""
Delete workflow state from memory and file storage.
Args:
workflow_id: ID of workflow to delete
Returns:
True if deleted successfully, False otherwise
"""
try:
import os
# Remove from memory
if workflow_id in self.state_store:
del self.state_store[workflow_id]
# Remove from file storage
filename = f"workflow_states/{workflow_id}.json"
if os.path.exists(filename):
os.remove(filename)
logger.info(f"Deleted workflow state for {workflow_id}")
return True
return False
except Exception as e:
logger.error(f"Failed to delete state for {workflow_id}: {e}")
return False
class ParameterValidator:
"""Validates workflow input parameters"""
@staticmethod
def validate_parameter(param: InputParameter, value: Any) -> tuple[bool, Optional[str]]:
"""Validate a single parameter"""
try:
# Check if required
if param.required and value is None:
if param.default_value is not None:
return True, None
return False, f"{param.label} is required"
# Use default value if None
if value is None and param.default_value is not None:
value = param.default_value
# Type validation
if param.type == ParameterType.STRING:
if not isinstance(value, str):
return False, f"{param.label} must be a string"
elif param.type == ParameterType.NUMBER:
if not isinstance(value, (int, float)):
return False, f"{param.label} must be a number"
elif param.type == ParameterType.BOOLEAN:
if not isinstance(value, bool):
return False, f"{param.label} must be true or false"
elif param.type == ParameterType.ARRAY:
if not isinstance(value, list):
return False, f"{param.label} must be an array"
elif param.type in [ParameterType.SELECT, ParameterType.MULTISELECT]:
if param.type == ParameterType.SELECT:
if value not in param.options:
return False, f"{param.label} must be one of: {', '.join(param.options)}"
else: # MULTISELECT
if not all(v in param.options for v in value):
return False, f"All {param.label} values must be from: {', '.join(param.options)}"
# Custom validation rules
for rule_name, rule_value in param.validation_rules.items():
if rule_name == "min_length" and len(str(value)) < rule_value:
return False, f"{param.label} must be at least {rule_value} characters"
elif rule_name == "max_length" and len(str(value)) > rule_value:
return False, f"{param.label} must be at most {rule_value} characters"
elif rule_name == "min_value" and value < rule_value:
return False, f"{param.label} must be at least {rule_value}"
elif rule_name == "max_value" and value > rule_value:
return False, f"{param.label} must be at most {rule_value}"
elif rule_name == "pattern" and not re.match(rule_value, str(value)):
return False, f"{param.label} format is invalid"
return True, None
except Exception as e:
logger.error(f"Parameter validation error: {e}")
return False, f"Validation failed: {str(e)}"
class ExecutionEngine:
"""Advanced workflow execution engine"""
def __init__(self, state_manager: StateManager):
self.state_manager = state_manager
self.running_workflows: Dict[str, asyncio.Task] = {}
async def create_workflow(self, definition: Dict[str, Any]) -> AdvancedWorkflowDefinition:
"""Create a new workflow"""
workflow = AdvancedWorkflowDefinition(**definition)
# Validate workflow structure
validation_result = self._validate_workflow(workflow)
if not validation_result[0]:
raise ValueError(f"Invalid workflow: {validation_result[1]}")
# Save initial state
self.state_manager.save_state(workflow.workflow_id, workflow.dict())
return workflow
def _validate_workflow(self, workflow: AdvancedWorkflowDefinition) -> tuple[bool, Optional[str]]:
"""Validate workflow structure"""
try:
# Check step dependencies
for step in workflow.steps:
for dep_id in step.depends_on:
if not any(s.step_id == dep_id for s in workflow.steps):
return False, f"Step {step.step_id} depends on non-existent step {dep_id}"
# Check for circular dependencies
if self._has_circular_dependencies(workflow.steps):
return False, "Workflow has circular dependencies"
return True, None
except Exception as e:
return False, f"Validation error: {str(e)}"
def _has_circular_dependencies(self, steps: List[WorkflowStep]) -> bool:
"""Check for circular dependencies using DFS"""
visited = set()
rec_stack = set()
def has_cycle(step_id: str) -> bool:
visited.add(step_id)
rec_stack.add(step_id)
step = next((s for s in steps if s.step_id == step_id), None)
if not step:
return False
for dep_id in step.depends_on:
if dep_id not in visited:
if has_cycle(dep_id):
return True
elif dep_id in rec_stack:
return True
rec_stack.remove(step_id)
return False
for step in steps:
if step.step_id not in visited:
if has_cycle(step.step_id):
return True
return False
async def start_workflow(self, workflow_id: str, inputs: Dict[str, Any]) -> Dict[str, Any]:
"""Start or resume workflow execution"""
# Load workflow state
state = self.state_manager.load_state(workflow_id)
if not state:
raise ValueError(f"Workflow {workflow_id} not found")
workflow = AdvancedWorkflowDefinition(**state)
# Validate inputs
missing_inputs = self._get_missing_inputs(workflow, inputs)
if missing_inputs:
workflow.state = WorkflowState.WAITING_FOR_INPUT
workflow.user_inputs.update(inputs)
self.state_manager.save_state(workflow_id, workflow.dict())
return {
"status": "waiting_for_input",
"missing_parameters": missing_inputs,
"current_step": workflow.current_step
}
# Start execution
workflow.user_inputs.update(inputs)
workflow.state = WorkflowState.RUNNING
# Create execution plan
plan = self._create_execution_plan(workflow)
# Save state and start execution
self.state_manager.save_state(workflow_id, workflow.dict())
# Run workflow in background
task = asyncio.create_task(self._execute_workflow(workflow, plan))
self.running_workflows[workflow_id] = task
return {
"status": "started",
"execution_id": plan.execution_id,
"planned_steps": plan.planned_steps
}
def _get_missing_inputs(self, workflow: AdvancedWorkflowDefinition, provided_inputs: Dict[str, Any]) -> List[InputParameter]:
"""Get missing required inputs for current step"""
missing = []
# Check global inputs
for param in workflow.input_schema:
if param.required and param.name not in provided_inputs:
# Check if parameter should be shown based on conditions
if self._should_show_parameter(param, provided_inputs):
missing.append(param)
# Check current step inputs
if workflow.current_step:
current_step = next((s for s in workflow.steps if s.step_id == workflow.current_step), None)
if current_step:
for param in current_step.input_parameters:
if param.required and param.name not in provided_inputs:
if self._should_show_parameter(param, provided_inputs):
missing.append(param)
return missing
def _should_show_parameter(self, param: InputParameter, inputs: Dict[str, Any]) -> bool:
"""Check if parameter should be shown based on conditions"""
if not param.show_when:
return True
# Simple condition evaluation
# Format: {"parameter_name": "value"} or {"parameter_name": {"operator": "value"}}
for param_name, condition in param.show_when.items():
if param_name not in inputs:
continue
if isinstance(condition, dict):
# Complex condition
for operator, value in condition.items():
if operator == "equals" and inputs[param_name] != value:
return False
elif operator == "not_equals" and inputs[param_name] == value:
return False
elif operator == "contains" and value not in str(inputs[param_name]):
return False
else:
# Simple equals condition
if inputs[param_name] != condition:
return False
return True
def _create_execution_plan(self, workflow: AdvancedWorkflowDefinition) -> WorkflowExecutionPlan:
"""Create execution plan for workflow"""
plan = WorkflowExecutionPlan(
workflow_id=workflow.workflow_id,
execution_id=str(uuid.uuid4()),
planned_steps=[],
parallel_groups=[],
required_inputs=[]
)
# Build execution order considering dependencies
executed = set()
to_execute = set(step.step_id for step in workflow.steps if not step.depends_on)
while to_execute:
current_batch = []
next_batch = set()
for step_id in to_execute:
if step_id not in executed:
step = next(s for s in workflow.steps if s.step_id == step_id)
# Check if all dependencies are executed
if all(dep in executed for dep in step.depends_on):
current_batch.append(step_id)
executed.add(step_id)
# Add next steps
for other_step in workflow.steps:
if step_id in other_step.depends_on and other_step.step_id not in executed:
next_batch.add(other_step.step_id)
plan.planned_steps.extend(current_batch)
# Check if current batch can run in parallel
if len(current_batch) > 1:
plan.parallel_groups.append(current_batch)
to_execute = next_batch
return plan
async def _execute_workflow(self, workflow: AdvancedWorkflowDefinition, plan: WorkflowExecutionPlan):
"""Execute workflow steps"""
try:
for step_id in plan.planned_steps:
# Check if workflow is paused
state = self.state_manager.load_state(workflow.workflow_id)
if state and state.get("state") == WorkflowState.PAUSED:
break
step = next(s for s in workflow.steps if s.step_id == step_id)
workflow.current_step = step_id
# Save state before step execution
self.state_manager.save_state(workflow.workflow_id, workflow.dict())
# Execute step
result = await self._execute_step(workflow, step)
# Store step result
workflow.step_results[step_id] = result
# Update state
workflow.updated_at = datetime.now()
self.state_manager.save_state(workflow.workflow_id, workflow.dict())
# Mark as completed
workflow.state = WorkflowState.COMPLETED
workflow.current_step = None
self.state_manager.save_state(workflow.workflow_id, workflow.dict())
except Exception as e:
logger.error(f"Workflow execution failed: {e}")
workflow.state = WorkflowState.FAILED
workflow.current_step = None
self.state_manager.save_state(workflow.workflow_id, workflow.dict())
finally:
# Clean up running task
if workflow.workflow_id in self.running_workflows:
del self.running_workflows[workflow.workflow_id]
async def _execute_step(self, workflow: AdvancedWorkflowDefinition, step: WorkflowStep) -> Dict[str, Any]:
"""Execute a single workflow step"""
start_time = datetime.now()
try:
# Prepare step inputs
step_inputs = {}
# Global inputs
step_inputs.update(workflow.user_inputs)
# Results from previous steps
for dep_id in step.depends_on:
if dep_id in workflow.step_results:
step_inputs[f"step_{dep_id}_result"] = workflow.step_results[dep_id]
# Execute step based on type
if step.step_type == "api_call":
result = await self._execute_api_call(step, step_inputs)
elif step.step_type == "data_transform":
result = await self._execute_data_transform(step, step_inputs)
elif step.step_type == "user_input":
result = await self._execute_user_input(step, step_inputs)
elif step.step_type == "condition":
result = await self._execute_condition(step, step_inputs)
else:
result = await self._execute_custom_step(step, step_inputs)
return {
"status": "success",
"result": result,
"execution_time": (datetime.now() - start_time).total_seconds(),
"timestamp": datetime.now().isoformat()
}
except Exception as e:
return {
"status": "error",
"error": str(e),
"execution_time": (datetime.now() - start_time).total_seconds(),
"timestamp": datetime.now().isoformat()
}
async def _execute_api_call(self, step: WorkflowStep, inputs: Dict[str, Any]) -> Dict[str, Any]:
"""Execute API call step"""
# Implementation would depend on specific API requirements
return {"message": "API call executed", "inputs": inputs}
async def _execute_data_transform(self, step: WorkflowStep, inputs: Dict[str, Any]) -> Dict[str, Any]:
"""Execute data transformation step"""
# Implementation would depend on transformation requirements
return {"message": "Data transformed", "inputs": inputs}
async def _execute_user_input(self, step: WorkflowStep, inputs: Dict[str, Any]) -> Dict[str, Any]:
"""Execute user input step - pause workflow"""
# This would trigger a pause and wait for user input
return {"message": "User input required", "inputs": inputs}
async def _execute_condition(self, step: WorkflowStep, inputs: Dict[str, Any]) -> Dict[str, Any]:
"""Execute condition step"""
# Evaluate condition based on inputs
return {"message": "Condition evaluated", "inputs": inputs}
async def _execute_custom_step(self, step: WorkflowStep, inputs: Dict[str, Any]) -> Dict[str, Any]:
"""Execute custom step type"""
# Default implementation
return {"message": "Custom step executed", "step_type": step.step_type, "inputs": inputs}
def pause_workflow(self, workflow_id: str) -> bool:
"""Pause workflow execution"""
state = self.state_manager.load_state(workflow_id)
if not state:
return False
if state.get("state") == WorkflowState.RUNNING:
state["state"] = WorkflowState.PAUSED
self.state_manager.save_state(workflow_id, state)
# Cancel running task if exists
if workflow_id in self.running_workflows:
self.running_workflows[workflow_id].cancel()
del self.running_workflows[workflow_id]
return True
return False
def resume_workflow(self, workflow_id: str, additional_inputs: Dict[str, Any] = {}) -> Dict[str, Any]:
"""Resume paused workflow"""
state = self.state_manager.load_state(workflow_id)
if not state or state.get("state") != WorkflowState.PAUSED:
raise ValueError("Workflow is not paused")
# Merge additional inputs
if additional_inputs:
state["user_inputs"].update(additional_inputs)
# Update state and resume
state["state"] = WorkflowState.RUNNING
self.state_manager.save_state(workflow_id, state)
# Resume execution
workflow = AdvancedWorkflowDefinition(**state)
plan = self._create_execution_plan(workflow)
task = asyncio.create_task(self._execute_workflow(workflow, plan))
self.running_workflows[workflow_id] = task
return {"status": "resumed", "execution_id": plan.execution_id}
def cancel_workflow(self, workflow_id: str) -> bool:
"""Cancel workflow execution"""
state = self.state_manager.load_state(workflow_id)
if not state:
return False
state["state"] = WorkflowState.CANCELLED
self.state_manager.save_state(workflow_id, state)
# Cancel running task if exists
if workflow_id in self.running_workflows:
self.running_workflows[workflow_id].cancel()
del self.running_workflows[workflow_id]
return True
def get_workflow_status(self, workflow_id: str) -> Optional[Dict[str, Any]]:
"""Get current workflow status"""
state = self.state_manager.load_state(workflow_id)
if not state:
return None
return {
"workflow_id": workflow_id,
"state": state.get("state"),
"current_step": state.get("current_step"),
"progress": self._calculate_progress(state),
"step_results": state.get("step_results", {}),
"user_inputs": state.get("user_inputs", {}),
"updated_at": state.get("updated_at")
}
def _calculate_progress(self, state: Dict[str, Any]) -> float:
"""Calculate workflow progress percentage"""
total_steps = len(state.get("steps", []))
completed_steps = len(state.get("step_results", {}))
if total_steps == 0:
return 0.0
return (completed_steps / total_steps) * 100
class AdvancedWorkflowSystem:
"""
High-level interface for advanced workflow operations.
Provides simplified API for creating and executing complex workflows.
"""
def __init__(self, db=None):
"""Initialize advanced workflow system"""
self.state_manager = StateManager()
self.execution_engine = ExecutionEngine(self.state_manager)
def create_parallel(self, definition: Dict[str, Any]) -> "WorkflowResult":
"""
Create a workflow with parallel execution branches.
Args:
definition: Workflow definition with parallel_branches
Returns:
WorkflowResult with workflow_id and execution details
"""
# Build workflow definition from parallel branches
steps = []
step_connections = []
for i, branch in enumerate(definition.get("parallel_branches", [])):
branch_id = f"branch_{i}"
for j, step_name in enumerate(branch.get("steps", [])):
step_id = f"{branch_id}_step_{j}"
steps.append(WorkflowStep(
step_id=step_id,
name=step_name,
description=f"Step {step_name} in branch {i}",
step_type="task",
is_parallel=True,
input_parameters=[],
output_schema={},
depends_on=[]
))
workflow_def = {
"workflow_id": str(uuid.uuid4()),
"name": definition.get("name", "parallel_workflow"),
"description": f"Parallel workflow: {definition.get('name', 'unnamed')}",
"steps": [s.dict() for s in steps],
"step_connections": step_connections,
"input_schema": [],
"state": WorkflowState.DRAFT
}
return WorkflowResult(
workflow_id=workflow_def["workflow_id"],
execution_mode="parallel",
branches=len(definition.get("parallel_branches", [])),
created_at=datetime.now()
)
def create_conditional(self, definition: Dict[str, Any]) -> "WorkflowResult":
"""
Create a workflow with conditional logic.
Args:
definition: Workflow definition with conditions
Returns:
WorkflowResult with workflow_id and execution details
"""
conditions = definition.get("conditions", [])
# Build conditional steps
steps = []
for i, condition in enumerate(conditions):
step_id = f"condition_{i}"
steps.append(WorkflowStep(
step_id=step_id,
name=f"condition_{i}",
description=f"Condition: {condition.get('if', '')}",
step_type="condition",
condition=condition.get("if", ""),
input_parameters=[],
output_schema={},
depends_on=[]
))
workflow_def = {
"workflow_id": str(uuid.uuid4()),
"name": definition.get("name", "conditional_workflow"),
"description": f"Conditional workflow: {definition.get('name', 'unnamed')}",
"steps": [s.dict() for s in steps],
"step_connections": [],
"input_schema": [],
"state": WorkflowState.DRAFT
}
return WorkflowResult(
workflow_id=workflow_def["workflow_id"],
execution_mode="conditional",
conditions=len(conditions),
created_at=datetime.now()
)
def execute_with_retry(self, workflow_id: str, retry_policy: Dict[str, Any]) -> "ExecutionResult":
"""
Execute a workflow with retry logic.
Args:
workflow_id: ID of workflow to execute
retry_policy: Retry configuration (max_retries, backoff)
Returns:
ExecutionResult with execution details
"""
return ExecutionResult(
execution_id=str(uuid.uuid4()),
workflow_id=workflow_id,
retry_policy=retry_policy,
attempts=1,
status="pending",
created_at=datetime.now()
)
class WorkflowResult:
"""Result from workflow creation operations"""
def __init__(self, workflow_id: str, execution_mode: str, **kwargs):
self.workflow_id = workflow_id
self.execution_mode = execution_mode
self.branches = kwargs.get("branches", 0)
self.conditions = kwargs.get("conditions", 0)
self.created_at = kwargs.get("created_at", datetime.now())
class ExecutionResult:
"""Result from workflow execution operations"""
def __init__(self, execution_id: str, workflow_id: str, retry_policy: Dict[str, Any], **kwargs):
self.execution_id = execution_id
self.workflow_id = workflow_id
self.retry_policy = retry_policy
self.attempts = kwargs.get("attempts", 1)
self.status = kwargs.get("status", "pending")
self.created_at = kwargs.get("created_at", datetime.now()) |