Source code for kailash.nodes.base

"""Base node class and node system implementation.

This module provides the foundation for all nodes in the Kailash system. It defines
the abstract base class that all nodes must inherit from, along with supporting
classes for metadata, configuration, and registration.

The node system is designed to be:
1. Type-safe through parameter validation
2. Discoverable through the node registry
3. Composable in workflows
4. Serializable for export/import
5. Extensible for custom implementations

Key Components:
- Node: Abstract base class for all nodes
- NodeMetadata: Metadata about nodes for discovery and documentation
- NodeParameter: Type definitions for node inputs/outputs
- NodeRegistry: Global registry for node discovery
"""

import inspect
import json
import logging
import os
import threading
from abc import ABC, abstractmethod
from collections import OrderedDict
from collections.abc import Callable
from datetime import UTC, datetime
from typing import Any, TypeVar

from pydantic import BaseModel, Field, ValidationError

from kailash.nodes.ports import InputPort, OutputPort, get_port_registry
from kailash.sdk_exceptions import (
    NodeConfigurationError,
    NodeExecutionError,
    NodeValidationError,
)
from kailash.utils.secure_logging import redact_mapping

# ADR-002: Module-level logger for node registration messages
_logger = logging.getLogger(__name__)


class NodeMetadata(BaseModel):
    """Metadata for a node.

    This class stores descriptive information about a node that is used for:

    1. Discovery in the UI/CLI (name, description, tags)
    2. Version tracking and compatibility checks
    3. Documentation and tooltips
    4. Workflow export metadata

    Upstream consumers:
    - Node.__init__: Creates metadata during node instantiation
    - NodeRegistry: Uses metadata for discovery and filtering
    - WorkflowExporter: Includes metadata in exported workflows

    Downstream usage:
    - Workflow visualization: Shows node names and descriptions
    - CLI help: Displays available nodes with their metadata
    - Kailash UI: Node palette and property panels
    """

    id: str = Field(default="", description="Node ID")
    name: str = Field(..., description="Node name")
    description: str = Field(default="", description="Node description")
    version: str = Field(default="1.0.0", description="Node version")
    author: str = Field(default="", description="Node author")
    created_at: datetime = Field(
        default_factory=lambda: datetime.now(UTC),
        description="Node creation date",
    )
    tags: set[str] = Field(default_factory=set, description="Node tags")


class NodeParameter(BaseModel):
    """Definition of a node parameter with enhanced auto-mapping capabilities.

    This class defines the schema for node inputs and outputs, providing:

    1. Type information for validation
    2. Default values for optional parameters
    3. Documentation for users
    4. Requirements specification
    5. Auto-mapping from workflow connections (NEW)

    Enhanced Features (v0.2.0):
    - auto_map_from: Alternative parameter names for flexible mapping
    - auto_map_primary: Designates primary input for automatic data routing
    - workflow_alias: Preferred name in workflow connections
    - These features enable robust parameter resolution across all node types

    Design Purpose:
    - Enables static analysis of workflow connections
    - Provides runtime validation of data types
    - Supports automatic UI generation for node configuration
    - Facilitates workflow validation before execution
    - Resolves parameter mapping issues between workflow data and node inputs

    Upstream usage:
    - Node.get_parameters(): Returns dict of parameters
    - Custom nodes: Define their input/output schemas

    Downstream consumers:
    - Node._validate_config(): Validates configuration against parameters
    - Node.validate_inputs(): Validates runtime inputs with auto-mapping
    - Workflow.connect(): Validates connections between nodes
    - WorkflowExporter: Exports parameter schemas
    """

    name: str
    type: Any | None = None
    required: bool = True
    default: Any | None = None
    description: str = ""

    # Extended parameter metadata for UI generation and validation
    choices: list[Any] | None = Field(
        default=None, description="Valid choices for this parameter"
    )
    enum: list[Any] | None = Field(
        default=None, description="Enumerated values for this parameter"
    )
    default_value: Any | None = Field(
        default=None, description="Alternative default value specification"
    )
    category: str = Field(default="", description="Parameter category for grouping")
    display_name: str = Field(default="", description="Human-readable display name")
    icon: str = Field(default="", description="Icon identifier for UI display")

    # Port direction markers for input/output classification
    input: bool = Field(
        default=False, description="Whether this parameter is an input port"
    )
    output: bool = Field(
        default=False, description="Whether this parameter is an output port"
    )

    # Enhanced auto-mapping capabilities
    auto_map_from: list[str] = Field(
        default_factory=list, description="Alternative parameter names for auto-mapping"
    )
    auto_map_primary: bool = Field(
        default=False, description="Use as primary input for automatic data routing"
    )
    workflow_alias: str = Field(
        default="", description="Preferred name in workflow connections"
    )


[docs] class Node(ABC): """Base class for all nodes in the Kailash system. This abstract class defines the contract that all nodes must implement. It provides the foundation for: 1. Parameter validation and type checking 2. Execution lifecycle management 3. Error handling and reporting 4. Serialization for workflow export 5. Configuration management Design Philosophy: - Nodes are stateless processors of data - All configuration is provided at initialization - Runtime inputs are validated against schemas - Outputs must be JSON-serializable - Errors are wrapped in appropriate exception types Inheritance Pattern: All concrete nodes must: 1. Implement get_parameters() to define inputs 2. Implement run() to process data 3. Call super().__init__() with configuration 4. Use self.logger for logging Upstream components: - Workflow: Creates and manages node instances - NodeRegistry: Provides node classes for instantiation - CLI/UI: Configures nodes based on user input Downstream usage: - LocalRuntime: Executes nodes in workflows - TaskManager: Tracks node execution status - WorkflowExporter: Serializes nodes for export """ # Class-level configuration _DEFAULT_CACHE_SIZE = 128 _SPECIAL_PARAMS = {"context", "config"} # Parameters excluded from cache key _strict_unknown_params = False # Subclasses can set True to error on unknown params _env_cache: dict[str, str | None] = {} # Init-capture machinery — see __init_subclass__ below. # Names here are NEVER captured into self.config from a subclass __init__'s # bound parameters. They are either internal-routing keys (`_node_id`), # NodeMetadata-derived (`name`, `description`, `version`, `author`, `tags`, # `metadata`), or framework-private (`config` itself, `*args`, `**kwargs`). # `name` IS captured separately via NodeMetadata; `description` likewise. _INIT_CAPTURE_EXCLUDE: frozenset[str] = frozenset( { "self", "_node_id", "args", "kwargs", "metadata", } )
[docs] def __init_subclass__(cls, **subclass_kwargs): """Install a per-subclass __init__ wrapper that captures bound init params. Issue #929: ``Workflow.to_dict() → Workflow.from_dict()`` silently strips every named/positional argument that a subclass ``__init__`` consumes WITHOUT re-injecting into ``self.config``. ``PythonCodeNode.__init__`` consumes ``code``, ``input_types``, ``output_type``, etc. as named args; none of them flow into ``super().__init__(**kwargs)`` because they were peeled off the kwargs dict before the super call. The fix is applied here ONCE per subclass: wrap ``cls.__init__`` so that AFTER the original init runs (and ``self.config`` is populated by ``Node.__init__``), the bound init parameters are merged into ``self.config`` for every name that: 1. is not in ``_INIT_CAPTURE_EXCLUDE``, 2. is not already present in ``self.config`` (subclass may have set it directly via ``**kwargs`` forwarding), 3. has a non-sentinel value (positional defaults pass through; the sentinel for "user passed this" is "binding succeeded" — we keep the bound value verbatim, including ``None``, so round-trip is faithful). The wrapper is installed exactly once per subclass tree leaf via the ``_init_capture_installed`` marker, so re-imports / multiple subclass definitions of the same class do not re-wrap. Round-trip contract: ``cls(**self.config)`` after ``to_dict``/``from_dict`` reconstructs an equivalent node, EXCEPT for params whose values are non-JSON-serializable runtime objects (callables, classes, file handles). Those are still captured into ``self.config`` (so the dict carries them in-memory), but ``Workflow.to_json()`` will skip or fail on them — that is a separate concern and matches existing behavior. """ super().__init_subclass__(**subclass_kwargs) # Skip if this class did not redefine __init__. # (Subclasses inheriting Node.__init__ unchanged need no wrapping.) if "__init__" not in cls.__dict__: return original_init = cls.__dict__["__init__"] # Avoid double-wrapping if a class is re-imported or its init is # already a capture-wrapper from a previous installation. if getattr(original_init, "_init_capture_installed", False): return # Pre-compute the signature once at class-definition time. try: sig = inspect.signature(original_init) except (TypeError, ValueError): # Some C-extension / built-in inits have no signature. Skip. return param_names_to_capture = [ name for name in sig.parameters if name not in cls._INIT_CAPTURE_EXCLUDE and sig.parameters[name].kind not in ( inspect.Parameter.VAR_POSITIONAL, inspect.Parameter.VAR_KEYWORD, ) ] # Nothing to capture beyond what Node.__init__ already records. if not param_names_to_capture: return def __init_with_capture(self, *args, **kwargs): # Bind args before calling original; falls back gracefully if the # call would TypeError (we let the real init raise the real error). try: bound = sig.bind(self, *args, **kwargs) bound.apply_defaults() except TypeError: bound = None original_init(self, *args, **kwargs) # After original_init returns, self.config is populated by # Node.__init__. Merge bound init params for round-trip faithfulness. if bound is None: return if not hasattr(self, "config") or self.config is None: # Defensive: original_init failed to populate config but didn't # raise. Don't mask the bug; just skip capture. return if not isinstance(self.config, dict): # Param-capture merges init params into the dict that # Node.__init__ creates. A subclass that deliberately replaces # self.config with a typed config object (e.g. BaseAgentConfig) # opts out of capture — skip rather than crash on the `in` / # item-assignment operations below, which require a mapping. return for name in param_names_to_capture: if name in self.config: # Subclass already forwarded this via **kwargs; preserve. continue if name in bound.arguments: self.config[name] = bound.arguments[name] __init_with_capture.__wrapped__ = original_init __init_with_capture._init_capture_installed = True # Preserve the original signature for inspect.signature(cls.__init__) # callers (e.g., graph._create_node_instance). __init_with_capture.__signature__ = sig try: __init_with_capture.__doc__ = original_init.__doc__ __init_with_capture.__name__ = original_init.__name__ __init_with_capture.__qualname__ = original_init.__qualname__ except (AttributeError, TypeError): pass cls.__init__ = __init_with_capture
@classmethod def _get_env(cls, key: str, default: str | None = None) -> str | None: """Get environment variable with class-level caching. Avoids repeated os.environ lookups during high-frequency node execution. Use _clear_env_cache() in tests or when env vars change. """ if key not in cls._env_cache: cls._env_cache[key] = os.environ.get(key, default) return cls._env_cache[key] @classmethod def _clear_env_cache(cls) -> None: """Clear the environment variable cache. Use in tests for isolation.""" cls._env_cache.clear()
[docs] def __init__(self, **kwargs): """Initialize the node with configuration parameters. This method performs the following initialization steps: 1. Sets the node ID (defaults to class name) 2. Creates metadata from provided arguments 3. Sets up logging for the node 4. Stores configuration in self.config 5. Validates configuration against parameters The configuration is validated by calling _validate_config(), which checks that all required parameters are present and of the correct type. Args: **kwargs: Configuration parameters including: - id: Optional custom node ID - name: Display name for the node - description: Node description - version: Node version - author: Node author - tags: Set of tags for discovery - Any parameters defined in get_parameters() Raises: NodeConfigurationError: If configuration is invalid or if metadata validation fails Downstream effects: - Creates self.metadata for discovery - Sets up self.logger for execution logging - Stores self.config for runtime access - Validates parameters are correctly specified """ try: # Use _node_id for internal node identifier (namespace separation) # This prevents collision with user's 'id' parameter self._node_id = kwargs.get("_node_id", self.__class__.__name__) # FIX: Use _node_metadata internally to avoid collision with user's "metadata" parameter # This allows users to have parameters named "metadata" without conflicts # Type-based routing: NodeMetadata object → internal, dict → user parameter metadata_value = kwargs.get("metadata") if isinstance(metadata_value, NodeMetadata): # Core SDK or external code providing NodeMetadata object self._node_metadata = metadata_value elif metadata_value is None or not isinstance(metadata_value, dict): # Check if the class defines _node_metadata (subclass pattern) class_meta = getattr(type(self), "_node_metadata", None) if isinstance(class_meta, NodeMetadata): self._node_metadata = class_meta else: # No metadata provided or invalid type → create default NodeMetadata self._node_metadata = NodeMetadata( id=self._node_id, # NodeMetadata still uses 'id' internally name=kwargs.get("name", self.__class__.__name__), description=kwargs.get("description", self.__doc__ or ""), version=kwargs.get("version", "1.0.0"), author=kwargs.get("author", ""), tags=kwargs.get("tags", set()), ) else: # User provided dict as "metadata" parameter → create default NodeMetadata, # and let the dict flow through to node.config (handled in filtering below) self._node_metadata = NodeMetadata( id=self._node_id, name=kwargs.get("name", self.__class__.__name__), description=kwargs.get("description", self.__doc__ or ""), version=kwargs.get("version", "1.0.0"), author=kwargs.get("author", ""), tags=kwargs.get("tags", set()), ) self.logger = logging.getLogger(f"kailash.nodes.{self._node_id}") # Filter out internal fields from config with comprehensive parameter handling # Get parameter definitions once and cache for both filtering and validation try: if not hasattr(self, "_temp_param_definitions"): self._temp_param_definitions = self.get_parameters() defined_params = set(self._temp_param_definitions.keys()) except Exception as e: # If get_parameters() fails, log but continue with safe defaults self.logger.debug( f"Could not get parameter definitions during init: {e}" ) defined_params = set() self._temp_param_definitions = {} # Comprehensive parameter filtering: handle ALL potential conflicts # Fields that are always internal (never user parameters) # FIX: Removed "metadata" from this set to allow users to use "metadata" as parameter name # The internal NodeMetadata is now stored in self._node_metadata always_internal = {"_node_id"} # Fields that can be either internal or user parameters # Note: 'id' removed from this list - users can now use 'id' freely # since node identifier is now '_node_id' potentially_user_params = { "name", "description", "version", "author", "tags", } # Build dynamic filter list based on user-defined parameters internal_fields = always_internal.copy() for field in potentially_user_params: if field not in defined_params: # Field is not user-defined, so treat as internal field internal_fields.add(field) # If field IS user-defined, don't add to internal_fields (preserve it) # Filter internal SDK fields from user parameters # NOTE: Do NOT filter based on field name patterns like "metadata_*" # as users may have legitimate fields with those names (e.g., metadata_json) def is_internal_field(field_name: str) -> bool: # Check if it's in our explicit internal fields list if field_name in internal_fields: return True # Check for private fields (underscore prefix) if field_name.startswith("_"): return True # Filter out NodeMetadata objects (they're internal, not user parameters) if field_name == "metadata" and isinstance( kwargs.get(field_name), NodeMetadata ): return True return False # Apply comprehensive filtering self.config = {k: v for k, v in kwargs.items() if not is_internal_field(k)} # Parameter resolution cache - initialize before validation cache_size = int( self._get_env("KAILASH_PARAM_CACHE_SIZE", str(self._DEFAULT_CACHE_SIZE)) or str(self._DEFAULT_CACHE_SIZE) ) self._cache_enabled = ( self._get_env("KAILASH_DISABLE_PARAM_CACHE", "") or "" ).lower() != "true" # Use OrderedDict for LRU implementation self._param_cache = OrderedDict() self._param_cache_lock = threading.Lock() self._cache_max_size = cache_size self._cached_params = None # Cache statistics self._cache_hits = 0 self._cache_misses = 0 self._cache_evictions = 0 self._validate_config() except ValidationError as e: raise NodeConfigurationError(f"Invalid node metadata: {e}") from e except Exception as e: raise NodeConfigurationError( f"Failed to initialize node '{self.id}': {e}" ) from e
[docs] def get_workflow_context(self, key: str, default: Any | None = None) -> Any: """Get a value from the workflow context. This method allows nodes to retrieve shared state from the workflow execution context. The workflow context is managed by the runtime and provides a way for nodes to share data within a single workflow execution. Args: key: The key to retrieve from the workflow context default: Default value to return if key is not found Returns: The value from the workflow context, or default if not found Example: >>> # In a transaction node >>> connection = self.get_workflow_context('transaction_connection') >>> if connection: >>> # Use the shared connection >>> result = await connection.execute(query) """ if not hasattr(self, "_workflow_context"): self._workflow_context = {} return self._workflow_context.get(key, default)
[docs] def set_workflow_context(self, key: str, value: Any) -> None: """Set a value in the workflow context. This method allows nodes to store shared state in the workflow execution context. Other nodes in the same workflow execution can retrieve this data using get_workflow_context(). Args: key: The key to store the value under value: The value to store in the workflow context Example: >>> # In a transaction scope node >>> connection = await self.get_connection() >>> transaction = await connection.begin() >>> self.set_workflow_context('transaction_connection', connection) >>> self.set_workflow_context('active_transaction', transaction) """ if not hasattr(self, "_workflow_context"): self._workflow_context = {} self._workflow_context[key] = value
@property def id(self) -> str: """ Backward compatibility property for node identifier. Returns the node's identifier (_node_id). This property maintains backward compatibility for code that accesses node.id. The internal identifier is now _node_id to prevent namespace collision with user's 'id' parameter. """ return self._node_id @id.setter def id(self, value: str): """ Setter for backward compatibility with code that sets node.id. This allows graph.py and other code to set the node identifier while internally using _node_id for namespace separation. Args: value: The node identifier to set """ self._node_id = value @property def metadata(self) -> NodeMetadata: """ Backward compatibility property for node metadata. Returns the node's internal NodeMetadata object (_node_metadata). This property maintains backward compatibility for code that accesses node.metadata. The internal metadata is now _node_metadata to prevent namespace collision with user's 'metadata' parameter. Returns: NodeMetadata object containing node identification and documentation Note: Users can now have parameters named "metadata" without conflicts. The parameter will be in node.config['metadata'], while this property returns the internal NodeMetadata object. """ return self._node_metadata @metadata.setter def metadata(self, value: NodeMetadata | dict): """ Setter for backward compatibility with type-based routing. This setter routes the value based on its type: - NodeMetadata object → sets internal _node_metadata (Core SDK usage) - dict → sets node.config['metadata'] (user parameter) - other types → raises TypeError for safety Args: value: NodeMetadata object or dict Raises: TypeError: If value is neither NodeMetadata nor dict Example: >>> # Core SDK usage >>> node.metadata = NodeMetadata(name="custom") # Routes to _node_metadata >>> # User parameter (if node has "metadata" parameter) >>> node.metadata = {"key": "value"} # Routes to config['metadata'] """ if isinstance(value, NodeMetadata): # Core SDK usage - route to internal metadata self._node_metadata = value elif isinstance(value, dict) or value is None: # User parameter - route to config (None is valid for optional parameters) self.config["metadata"] = value else: # Ambiguous type - raise error for safety raise TypeError( f"metadata must be NodeMetadata, dict, or None, got {type(value).__name__}. " f"For Core SDK metadata, use NodeMetadata object. " f"For user metadata parameter, use dict or None." )
[docs] @abstractmethod def get_parameters(self) -> dict[str, NodeParameter]: """Define the parameters this node accepts. This abstract method must be implemented by all concrete nodes to specify their input schema. The parameters define: 1. What inputs the node expects 2. Type requirements for each input 3. Whether inputs are required or optional 4. Default values for optional inputs 5. Documentation for each parameter The returned dictionary is used throughout the node lifecycle: - During initialization: _validate_config() checks configuration - During execution: validate_inputs() validates runtime data - During workflow creation: Used for connection validation - During export: Included in workflow manifests Example: >>> def get_parameters(self): ... return { ... 'input_file': NodeParameter( ... name='input_file', ... type=str, ... required=True, ... description='Path to input CSV file' ... ), ... 'delimiter': NodeParameter( ... name='delimiter', ... type=str, ... required=False, ... default=',', ... description='CSV delimiter character' ... ) ... } Returns: Dictionary mapping parameter names to their definitions Used by: - _validate_config(): Validates configuration matches parameters - validate_inputs(): Validates runtime inputs - to_dict(): Includes parameters in serialization - Workflow.connect(): Validates compatible connections """
[docs] def get_output_schema(self) -> dict[str, NodeParameter]: """Define output parameters for this node. This optional method allows nodes to specify their output schema for validation. If not overridden, outputs will only be validated for JSON-serializability. Design purpose: - Enables static analysis of node outputs - Provides runtime validation of output types - Supports automatic documentation of outputs - Facilitates workflow validation and type checking The output schema serves similar purposes as input parameters: 1. Type validation during execution 2. Documentation for downstream consumers 3. Workflow connection validation 4. Export manifest generation Example: >>> def get_output_schema(self): ... return { ... 'dataframe': NodeParameter( ... name='dataframe', ... type=dict, ... required=True, ... description='Processed data as dictionary' ... ), ... 'row_count': NodeParameter( ... name='row_count', ... type=int, ... required=True, ... description='Number of rows processed' ... ), ... 'processing_time': NodeParameter( ... name='processing_time', ... type=float, ... required=False, ... description='Time taken to process in seconds' ... ) ... } Returns: Dictionary mapping output names to their parameter definitions Empty dict by default (no schema validation) Used by: - validate_outputs(): Validates runtime outputs - Workflow.connect(): Validates connections between nodes - Documentation generators: Create output documentation - Export systems: Include output schemas in manifests """ return {}
[docs] @abstractmethod def run(self, **kwargs) -> dict[str, Any]: """Execute the node's logic. This is the core method that implements the node's data processing logic. It receives validated inputs and must return a dictionary of outputs. Design requirements: 1. Must be stateless - no side effects between runs 2. All inputs are provided as keyword arguments 3. Must return a dictionary (JSON-serializable) 4. Should handle errors gracefully 5. Can use self.config for configuration values 6. Should use self.logger for status reporting The method is called by execute() which handles: - Input validation before calling run() - Output validation after run() completes - Error wrapping and logging - Execution timing and metrics Example: >>> def run(self, input_file, delimiter=','): ... df = pd.read_csv(input_file, delimiter=delimiter) ... return { ... 'dataframe': df.to_dict(), ... 'row_count': len(df), ... 'columns': list(df.columns) ... } Args: **kwargs: Validated input parameters matching get_parameters() Returns: Dictionary of outputs that will be validated and passed to downstream nodes Raises: NodeExecutionError: If execution fails (will be caught and re-raised by execute()) Called by: - execute(): Wraps with validation and error handling - LocalRuntime: During workflow execution - TestRunner: During unit testing """ # Abstract: subclass must override ...
def _validate_config(self): """Validate node configuration against defined parameters. This internal method is called during __init__ to ensure that the provided configuration matches the node's parameter requirements. Validation process: 1. Calls get_parameters() to get schema 2. For each parameter, checks if: - Required parameters are present - Values match expected types - Type conversion is possible if needed 3. Sets default values for missing optional parameters 4. Updates self.config with validated values Type conversion: - If a value doesn't match the expected type, attempts conversion - For example: string "123" -> int 123 - Conversion failures result in descriptive errors Called by: - __init__(): During node initialization Modifies: - self.config: Updates with defaults and converted values Raises: NodeConfigurationError: If configuration is invalid, including: - Missing required parameters - Type mismatches that can't be converted - get_parameters() implementation errors """ try: params = self._get_cached_parameters() except Exception as e: raise NodeConfigurationError(f"Failed to get node parameters: {e}") from e for param_name, param_def in params.items(): if param_name not in self.config: if param_def.required and param_def.default is None: # During node construction, we may not have all parameters yet # Skip validation for required parameters - they will be validated at execution time continue elif param_def.default is not None: self.config[param_name] = param_def.default if param_name in self.config: value = self.config[param_name] # Skip type checking for Any type if param_def.type is Any: continue # Skip validation for template expressions like ${variable_name} if isinstance(value, str) and self._is_template_expression(value): continue # FIX: Allow None for optional parameters (not required) if value is None and not param_def.required: continue if not isinstance(value, param_def.type): # type: ignore[reportArgumentType] try: # Special handling for datetime conversion from ISO strings if ( param_def.type.__name__ == "datetime" and isinstance( # type: ignore[reportOptionalMemberAccess] value, str ) ): from datetime import datetime # Try to parse ISO format string self.config[param_name] = datetime.fromisoformat( value.replace("Z", "+00:00") ) else: self.config[param_name] = param_def.type(value) # type: ignore[reportOptionalCall] except (ValueError, TypeError) as e: raise NodeConfigurationError( f"Configuration parameter '{param_name}' must be of type " f"{param_def.type.__name__}, got {type(value).__name__}. " # type: ignore[reportOptionalMemberAccess] f"Conversion failed: {e}" ) from e def _is_template_expression(self, value: str) -> bool: """Check if a string value is a template expression like ${variable_name}. Args: value: String value to check Returns: True if the value is a template expression, False otherwise """ import re # Match template expressions like ${variable_name} or ${node.output} return bool(re.match(r"^\$\{[^}]+\}$", value)) def _get_cached_parameters(self) -> dict[str, NodeParameter]: # type: ignore[reportRedeclaration] """Get cached parameter definitions with optimal performance. Uses parameters cached during initialization to avoid duplicate get_parameters() calls. Returns: Dictionary of parameter definitions, cached for performance """ # First check if we have parameters cached from initialization if hasattr(self, "_temp_param_definitions") and self._temp_param_definitions: # Use cached parameters from init and clean up temporary cache if self._cached_params is None: self._cached_params = self._temp_param_definitions # Clean up temporary cache to free memory delattr(self, "_temp_param_definitions") return self._cached_params # Fallback to original behavior if no cached parameters from init if self._cached_params is None: try: self._cached_params = self.get_parameters() except Exception as e: raise NodeValidationError( f"Failed to get node parameters for validation: {e}" ) from e return self._cached_params
[docs] def validate_inputs(self, **kwargs) -> dict[str, Any]: r"""Validate runtime inputs against node requirements. This method validates inputs provided at execution time against the node's parameter schema. It ensures type safety and provides helpful error messages for invalid inputs. Validation steps: 1. Gets parameter definitions from get_parameters() 2. Checks each parameter for: - Presence (if required) - Type compatibility - Null handling for optional parameters 3. Attempts type conversion if needed 4. Applies default values for missing optional parameters Key behaviors: - Required parameters must be provided or have defaults - Optional parameters can be None - Type mismatches attempt conversion before failing - Error messages include parameter descriptions Example flow: # Node expects: {'count': int, 'name': str (optional)} inputs = {'count': '42', 'name': None} validated = validate_inputs(\**inputs) # Returns: {'count': 42} # Converted and None removed Args: **kwargs: Runtime inputs to validate Returns: Dictionary of validated inputs with: - Type conversions applied - Defaults for missing optional parameters - None values removed for optional parameters Raises: NodeValidationError: If inputs are invalid: - Missing required parameters - Type conversion failures - get_parameters() errors Called by: - execute(): Before passing inputs to run() - Workflow validation: During connection checks """ # Use cached parameters for better performance params = self._get_cached_parameters() # Check if caching is enabled if not self._cache_enabled: resolved, used_inputs = self._resolve_parameters(kwargs, params) else: # Check if we have a cached resolution for this input pattern cache_key = self._get_cache_key(kwargs) with self._param_cache_lock: if cache_key in self._param_cache: # Move to end for LRU self._param_cache.move_to_end(cache_key) self._cache_hits += 1 # Use cached resolution and apply values cached_mapping = self._param_cache[cache_key] resolved = self._apply_cached_mapping(kwargs, cached_mapping) # Reconstruct used_inputs from cached mapping # cached_mapping is {param_name: input_key}, so values() are the kwargs keys consumed used_inputs = set(cached_mapping.values()) & set(kwargs.keys()) else: self._cache_misses += 1 # Phase 1: Resolve parameters using enhanced mapping resolved, used_inputs = self._resolve_parameters(kwargs, params) # Cache the mapping pattern for future use mapping = self._extract_mapping_pattern(kwargs, resolved) self._param_cache[cache_key] = mapping # Evict oldest if cache is full (LRU) if len(self._param_cache) > self._cache_max_size: self._param_cache.popitem(last=False) # Remove oldest self._cache_evictions += 1 # Phase 2: Detect unknown parameters unknown = { k for k in kwargs if k not in used_inputs and k not in self._SPECIAL_PARAMS and not k.startswith("_") } if unknown: declared = list(params.keys()) suggestions = { k: self._suggest_parameter_mapping(k, declared) for k in unknown } msg = ( f"Unknown parameter(s) for {self.__class__.__name__}: {sorted(unknown)}. " f"Valid parameters: {sorted(declared)}." ) if suggestions: hints = [ f" '{k}' -> did you mean {s}?" for k, s in suggestions.items() if s ] if hints: msg += " Suggestions:\n" + "\n".join(hints) if self._strict_unknown_params: raise NodeValidationError(msg) else: _logger.warning("[NODE] %s", msg) # Phase 3: Validate resolved parameters validated = self._validate_resolved_parameters(resolved, params) # Preserve special runtime parameters that are not in schema for special_param in self._SPECIAL_PARAMS: if special_param in kwargs: validated[special_param] = kwargs[special_param] return validated
def _get_cached_parameters(self) -> dict[str, NodeParameter]: """Get node parameters with caching for performance. Returns: Cached parameter definitions """ if self._cached_params is None: self._cached_params = self.get_parameters() return self._cached_params def _get_cache_key(self, inputs: dict) -> str: """Generate a cache key based on input parameter names. Args: inputs: Runtime inputs dictionary Returns: Cache key string based on sorted parameter names """ # Exclude special parameters from cache key cache_params = [k for k in inputs.keys() if k not in self._SPECIAL_PARAMS] return "|".join(sorted(cache_params)) def _apply_cached_mapping(self, inputs: dict, mapping: dict) -> dict: """Apply cached mapping pattern to current inputs. Args: inputs: Current runtime inputs mapping: Cached mapping pattern Returns: Resolved parameters dictionary """ resolved = {} for param_name, source_key in mapping.items(): if source_key in inputs: resolved[param_name] = inputs[source_key] return resolved def _extract_mapping_pattern(self, inputs: dict, resolved: dict) -> dict: """Extract the mapping pattern for caching. The cache stores which input keys map to which parameter names, allowing fast resolution for repeated input patterns. Args: inputs: Original runtime inputs resolved: Resolved parameters Returns: Mapping pattern dictionary {param_name: input_key} """ mapping = {} # Build reverse mapping from resolved params to input keys # This tracks the resolution decisions made by _resolve_parameters for param_name in resolved: # Direct match - parameter name exists in inputs if param_name in inputs and self._safe_compare( inputs[param_name], resolved[param_name] ): mapping[param_name] = param_name else: # Search for which input key provided this parameter value # Must match exact resolution logic from _resolve_parameters params = self._get_cached_parameters() param_def = params.get(param_name) if param_def: # Check workflow alias if param_def.workflow_alias and param_def.workflow_alias in inputs: if self._safe_compare( inputs[param_def.workflow_alias], resolved[param_name] ): mapping[param_name] = param_def.workflow_alias continue # Check auto_map_from alternatives if param_def.auto_map_from: for alt_name in param_def.auto_map_from: if alt_name in inputs and self._safe_compare( inputs[alt_name], resolved[param_name] ): mapping[param_name] = alt_name break return mapping def _safe_compare(self, value1: Any, value2: Any) -> bool: """Safely compare two values, handling special cases like DataFrames. Args: value1: First value to compare value2: Second value to compare Returns: True if values are equal, False otherwise """ # Handle pandas DataFrame and Series try: import pandas as pd if isinstance(value1, (pd.DataFrame, pd.Series)) or isinstance( value2, (pd.DataFrame, pd.Series) ): # For DataFrames/Series, use identity comparison # This is safe for caching since we're tracking object references return value1 is value2 except ImportError: pass # Handle numpy arrays try: import numpy as np if isinstance(value1, np.ndarray) or isinstance(value2, np.ndarray): # For numpy arrays, use identity comparison return value1 is value2 except ImportError: pass # For all other types, use standard equality try: return value1 == value2 except (ValueError, TypeError): # If comparison fails, they're not equal return False def _resolve_parameters(self, runtime_inputs: dict, params: dict) -> dict: """Enhanced parameter resolution with auto-mapping. This method implements the core parameter mapping logic that resolves workflow inputs to node parameters using multiple strategies: 1. Direct parameter matches (existing behavior) 2. Workflow alias mapping 3. Auto-mapping from alternative names 4. Primary input auto-detection Args: runtime_inputs: Inputs provided by workflow runtime params: Node parameter definitions from get_parameters() Returns: Tuple of (resolved parameters dict, set of consumed input keys) """ resolved = {} used_inputs = set() # Optimized single-pass resolution combining all phases for param_name, param_def in params.items(): # Skip if already resolved if param_name in resolved: continue # Phase 1: Direct match (highest priority) if param_name in runtime_inputs: resolved[param_name] = runtime_inputs[param_name] used_inputs.add(param_name) continue # Phase 2: Workflow alias if param_def.workflow_alias and param_def.workflow_alias in runtime_inputs: resolved[param_name] = runtime_inputs[param_def.workflow_alias] used_inputs.add(param_def.workflow_alias) continue # Phase 3: Auto-mapping alternatives if param_def.auto_map_from: for alt_name in param_def.auto_map_from: if alt_name in runtime_inputs and alt_name not in used_inputs: resolved[param_name] = runtime_inputs[alt_name] used_inputs.add(alt_name) break # Phase 4: Primary input auto-mapping (handled separately for efficiency) primary_params = [] for param_name, param_def in params.items(): if param_def.auto_map_primary and param_name not in resolved: primary_params.append((param_name, param_def)) if len(primary_params) == 1: param_name, param_def = primary_params[0] # Find the main data input (usually the largest unused input) remaining_inputs = { k: v for k, v in runtime_inputs.items() if k not in used_inputs and not k.startswith("_") } if remaining_inputs: # Use the input with the most substantial data as primary main_input = max( remaining_inputs.items(), key=lambda x: len(str(x[1])) if x[1] is not None else 0, ) resolved[param_name] = main_input[1] used_inputs.add(main_input[0]) return resolved, used_inputs # type: ignore[reportReturnType] def _validate_resolved_parameters(self, resolved: dict, params: dict) -> dict: """Validate resolved parameters against their definitions. Args: resolved: Parameters resolved by _resolve_parameters params: Node parameter definitions Returns: Dict of validated parameters with type conversions applied Raises: NodeValidationError: If validation fails """ validated = {} for param_name, param_def in params.items(): if param_name in resolved: value = resolved[param_name] if value is None and not param_def.required: continue # Skip type checking for Any type if param_def.type is Any: validated[param_name] = value elif not isinstance(value, param_def.type): try: validated[param_name] = param_def.type(value) except (ValueError, TypeError) as e: raise NodeValidationError( f"Input '{param_name}' must be of type {param_def.type.__name__}, " f"got {type(value).__name__}. Conversion failed: {e}" ) from e else: validated[param_name] = value elif param_def.required: if param_def.default is not None: validated[param_name] = param_def.default else: # Enhanced error message with suggestions available = list(resolved.keys()) if resolved else ["none"] suggestions = self._suggest_parameter_mapping( param_name, list(resolved.keys()) ) raise NodeValidationError( f"Required parameter '{param_name}' not provided. " f"Available resolved inputs: {available}. " f"Mapping suggestions: {suggestions}. " f"Description: {param_def.description or 'No description available'}" ) return validated def _suggest_parameter_mapping( self, param_name: str, available: list[str] ) -> list[str]: """Suggest likely parameter mappings based on name similarity. Args: param_name: The parameter name we're trying to map available: List of available input names Returns: List of suggested parameter names """ try: import difflib return difflib.get_close_matches(param_name, available, n=3, cutoff=0.3) except ImportError: # Fallback if difflib is not available return [ name for name in available if param_name.lower() in name.lower() or name.lower() in param_name.lower() ]
[docs] def validate_outputs(self, outputs: dict[str, Any]) -> dict[str, Any]: """Validate outputs against schema and JSON-serializability. This enhanced method validates outputs in two ways: 1. Schema validation: If get_output_schema() is defined, validates types and required fields 2. JSON serialization: Ensures all outputs can be serialized Validation process: 1. Check outputs is a dictionary 2. If output schema exists: - Validate required fields are present - Check type compatibility - Attempt type conversion if needed 3. Verify JSON-serializability 4. Return validated outputs Schema validation features: - Required outputs must be present - Optional outputs can be None or missing - Type mismatches attempt conversion - Clear error messages with field details Args: outputs: Outputs to validate from run() method Returns: The same outputs dictionary if valid Raises: NodeValidationError: If outputs are invalid: - Not a dictionary - Missing required outputs - Type validation failures - Non-serializable values Called by: - execute(): After run() completes - Test utilities: For output validation """ if not isinstance(outputs, dict): raise NodeValidationError( f"Node outputs must be a dictionary, got {type(outputs).__name__}" ) # First, validate against output schema if defined output_schema = self.get_output_schema() if output_schema: validated_outputs = {} for param_name, param_def in output_schema.items(): if param_def.required and param_name not in outputs: raise NodeValidationError( f"Required output '{param_name}' not provided. " f"Description: {param_def.description or 'No description available'}" ) if param_name in outputs: value = outputs[param_name] if value is None and not param_def.required: continue # Optional outputs can be None if value is not None: # Skip type checking for Any type if param_def.type is Any: validated_outputs[param_name] = value elif not isinstance(value, param_def.type): # type: ignore[reportArgumentType] try: # Attempt type conversion converted_value = param_def.type(value) # type: ignore[reportOptionalCall] validated_outputs[param_name] = converted_value except (ValueError, TypeError) as e: raise NodeValidationError( f"Output '{param_name}' must be of type {param_def.type.__name__}, " # type: ignore[reportOptionalMemberAccess] f"got {type(value).__name__}. Conversion failed: {e}" ) from e else: validated_outputs[param_name] = value else: validated_outputs[param_name] = None # Include any additional outputs not in schema (for flexibility) for key, value in outputs.items(): if key not in validated_outputs: validated_outputs[key] = value outputs = validated_outputs # Then validate JSON-serializability # Skip JSON validation for state management objects from pydantic import BaseModel from kailash.workflow.state import WorkflowStateWrapper non_serializable = [] for k, v in outputs.items(): # Allow WorkflowStateWrapper objects to pass through if isinstance(v, WorkflowStateWrapper): continue # Allow Pydantic models (they can be serialized with .model_dump()) if isinstance(v, BaseModel): continue if not self._is_json_serializable(v): non_serializable.append(k) if non_serializable: raise NodeValidationError( f"Node outputs must be JSON-serializable. Failed keys: {non_serializable}" ) return outputs
def _is_json_serializable(self, obj: Any) -> bool: """Check if an object is JSON-serializable. Helper method that attempts JSON serialization to determine if an object can be serialized. Used by validate_outputs() to identify problematic values. Enhanced to recognize objects with .to_dict() methods and validate their output. This resolves platform-specific serialization issues between LocalRuntime and Nexus. Args: obj: Any object to test for JSON serializability Returns: True if object can be JSON serialized, False otherwise Used by: - validate_outputs(): To identify non-serializable keys """ try: json.dumps(obj) return True except (TypeError, ValueError): # Check if object has .to_dict() method for enhanced validation if hasattr(obj, "to_dict") and callable(getattr(obj, "to_dict")): try: dict_result = obj.to_dict() # Validate that .to_dict() result is actually serializable json.dumps(dict_result) return True except (TypeError, ValueError, AttributeError): # If .to_dict() fails or returns non-serializable data, fall back to False return False return False
[docs] def execute(self, **runtime_inputs) -> dict[str, Any]: """Execute the node with validation and error handling. This is the main entry point for node execution that orchestrates the complete execution lifecycle: 1. Input validation (validate_inputs) 2. Execution (run) 3. Output validation (validate_outputs) 4. Error handling and logging 5. Performance metrics Execution flow: 1. Logs execution start 2. Validates inputs against parameter schema 3. Calls run() with validated inputs 4. Validates outputs are JSON-serializable 5. Logs execution time 6. Returns validated outputs Error handling strategy: - NodeValidationError: Re-raised as-is (input/output issues) - NodeExecutionError: Re-raised as-is (run() failures) - Other exceptions: Wrapped in NodeExecutionError Performance tracking: - Records execution start/end times - Logs total execution duration - Includes timing in execution logs Returns: Dictionary of validated outputs from run() Raises: NodeExecutionError: If execution fails in run() NodeValidationError: If input/output validation fails Called by: - LocalRuntime: During workflow execution - TaskManager: With execution tracking - Unit tests: For node testing Downstream effects: - Logs provide execution history - Metrics enable performance monitoring - Validation ensures data integrity """ start_time = datetime.now(UTC) try: self.logger.info(f"Executing node {self.id}") # Merge runtime inputs with config (runtime inputs take precedence) merged_inputs = {**self.config, **runtime_inputs} # Resolve ${param} templates in merged parameters (v0.9.30) # This enables dynamic parameter injection in nested configurations # Example: {"filter": {"tag": "${tag}"}} with runtime_inputs={"tag": "local"} # Becomes: {"filter": {"tag": "local"}} from kailash.runtime.template_resolver import resolve_templates merged_inputs = resolve_templates(merged_inputs, runtime_inputs) # Handle nested config case (for nodes that store parameters in config['config']) if "config" in merged_inputs and isinstance(merged_inputs["config"], dict): # Extract nested config but preserve runtime input precedence nested_config = merged_inputs["config"] # ENTERPRISE PARAMETER INJECTION FIX: Runtime inputs should take precedence over config dict # First apply config dict values, then re-apply runtime inputs to ensure they override for key, value in nested_config.items(): if ( key not in runtime_inputs ): # Only use config values if not overridden by runtime merged_inputs[key] = value # Don't remove the config key as some nodes might need it # Validate inputs validated_inputs = self.validate_inputs(**merged_inputs) # REDACTED (#2167). This logged EVERY node's full validated input # dict, so any credential parameter -- `auth_password`, `api_key`, # `secret_key`, a connection string -- reached the log in clear text, # for every node in the SDK rather than one. Surfaced by the #2167 # http.py regression test, which caught `auth_password` here after the # http-level leak beside it was already fixed. DEBUG is not a defence: # debug logging is routinely enabled in staging and shipped to an # aggregator. Keys are preserved so the diagnostic still says which # inputs bound. # Guarded: `redact_mapping` walks the whole input structure, and this # runs on EVERY node execution. Passing it as a lazy `%s` arg is not # enough -- the call itself would still evaluate before `debug()` is # entered. `isEnabledFor` keeps the cost at zero when DEBUG is off. if self.logger.isEnabledFor(logging.DEBUG): self.logger.debug( "Validated inputs for %s: %s", self.id, redact_mapping(validated_inputs), ) # Execute node logic with progress context from kailash.runtime.progress import _current_node_id node_id_token = _current_node_id.set(self.id) try: outputs = self.run(**validated_inputs) finally: _current_node_id.reset(node_id_token) # Validate outputs validated_outputs = self.validate_outputs(outputs) execution_time = (datetime.now(UTC) - start_time).total_seconds() self.logger.info( f"Node {self.id} executed successfully in {execution_time:.3f}s" ) return validated_outputs except NodeValidationError: # Re-raise validation errors as-is raise except NodeExecutionError: # Re-raise execution errors as-is raise except Exception as e: # Wrap any other exception in NodeExecutionError self.logger.error(f"Node {self.id} execution failed: {e}", exc_info=True) raise NodeExecutionError( f"Node '{self.id}' execution failed: {type(e).__name__}: {e}" ) from e
[docs] def get_cache_stats(self) -> dict[str, Any]: """Get parameter cache statistics. Returns: Dictionary containing cache statistics: - enabled: Whether caching is enabled - size: Current cache size - max_size: Maximum cache size - hits: Number of cache hits - misses: Number of cache misses - evictions: Number of cache evictions - hit_rate: Cache hit rate (0-1) """ with self._param_cache_lock: total_requests = self._cache_hits + self._cache_misses hit_rate = self._cache_hits / total_requests if total_requests > 0 else 0 return { "enabled": self._cache_enabled, "size": len(self._param_cache), "max_size": self._cache_max_size, "hits": self._cache_hits, "misses": self._cache_misses, "evictions": self._cache_evictions, "hit_rate": hit_rate, }
[docs] def clear_cache(self) -> None: """Clear the parameter resolution cache and reset statistics.""" with self._param_cache_lock: self._param_cache.clear() self._cache_hits = 0 self._cache_misses = 0 self._cache_evictions = 0
[docs] def warm_cache(self, patterns: list[dict[str, Any]]) -> None: """Warm the cache with known parameter patterns. Args: patterns: List of parameter dictionaries to pre-cache """ if not self._cache_enabled: return for pattern in patterns: # Simulate parameter resolution to populate cache try: self.validate_inputs(**pattern) except Exception: # Ignore validation errors during warmup pass
[docs] def to_dict(self) -> dict[str, Any]: """Convert node to dictionary representation. Serializes the node instance to a dictionary format suitable for: 1. Workflow export 2. Node persistence 3. API responses 4. Configuration sharing The serialized format includes: - id: Unique node identifier - type: Node class name - metadata: Complete node metadata - config: Current configuration - parameters: Parameter definitions with types Type serialization: - Python types are converted to string names - Complex types may require custom handling - Parameter defaults are included Returns: Dictionary representation containing: - Node identification and type - Complete metadata - Configuration values - Parameter schemas Raises: NodeExecutionError: If serialization fails due to: - get_parameters() errors - Metadata serialization issues - Type conversion problems Used by: - WorkflowExporter: For workflow serialization - CLI: For node inspection - API: For node information endpoints - Debugging: For node state inspection """ try: return { "id": self.id, "type": self.__class__.__name__, "metadata": self.metadata.model_dump(), "config": self.config, "parameters": { name: { "type": param.type.__name__, # type: ignore[reportOptionalMemberAccess] "required": param.required, "default": param.default, "description": param.description, } for name, param in self.get_parameters().items() }, } except Exception as e: raise NodeExecutionError( f"Failed to serialize node '{self.id}': {e}" ) from e
class TypedNode(Node): """Enhanced node base class with type-safe port system. This class extends the base Node with a declarative port system that provides: 1. Type-safe input/output declarations using descriptors 2. Automatic parameter schema generation from ports 3. IDE support with full autocomplete and type checking 4. Runtime type validation and constraint enforcement 5. Backward compatibility with existing Node patterns Design Goals: - Better developer experience with IDE support - Compile-time type checking for safer workflows - Declarative port definitions reduce boilerplate - Runtime safety through automatic validation - Seamless migration from existing Node classes Usage Pattern: class MyTypedNode(TypedNode): # Input ports with type safety text_input = InputPort[str]("text_input", description="Text to process") count = InputPort[int]("count", default=1, description="Number of iterations") # Output ports result = OutputPort[str]("result", description="Processed text") metadata = OutputPort[Dict[str, Any]]("metadata", description="Processing info") def run(self, **kwargs) -> Dict[str, Any]: # Type-safe access to inputs text = self.text_input.get() count = self.count.get() # Process data processed = text * count # Set outputs (with type validation) self.result.set(processed) self.metadata.set({"length": len(processed), "iterations": count}) # Return traditional dict format return { self.result.name: processed, self.metadata.name: {"length": len(processed), "iterations": count} } Migration Benefits: - Existing Node.run() signature unchanged - get_parameters() automatically generated from ports - execute() handles port-to-parameter conversion - Full backward compatibility maintained Advanced Features: - Port constraints (min/max length, value ranges, patterns) - Complex type support (Union, Optional, List[T], Dict[K,V]) - Port metadata for documentation and UI generation - Connection compatibility checking """ def __init__(self, **kwargs): """Initialize typed node with port system integration. Performs the same initialization as Node, plus: 1. Scan class for port definitions 2. Set up port registry for validation 3. Initialize port instances for this node Args: **kwargs: Node configuration including port defaults """ # Set up port registry BEFORE calling super().__init__() # because base class will call get_parameters() during validation self._port_registry = get_port_registry(self.__class__) # Initialize base node super().__init__(**kwargs) # Set default values for input ports from config for port_name, port in self._port_registry.input_ports.items(): if hasattr(self, port_name): bound_port = getattr(self, port_name) # Set default from config if available if port_name in self.config and hasattr(bound_port, "set"): try: bound_port.set(self.config[port_name]) except (TypeError, ValueError): # If type validation fails, let normal validation handle it pass def get_parameters(self) -> dict[str, NodeParameter]: """Generate parameter schema from port definitions. Automatically creates NodeParameter definitions from InputPort declarations, providing seamless integration with existing Node validation systems. Returns: Dictionary mapping parameter names to NodeParameter instances generated from port definitions """ parameters = {} for port_name, port in self._port_registry.input_ports.items(): # Convert port metadata to NodeParameter param_type = port.type_hint if port.type_hint else Any # Handle generic types - NodeParameter expects plain types if hasattr(param_type, "__origin__"): # For generic types like List[str], Dict[str, Any], use the origin type from typing import Union, get_origin origin = get_origin(param_type) if origin is Union: # For Union types (including Optional), use object as a safe fallback param_type = object else: param_type = origin or param_type parameters[port_name] = NodeParameter( name=port_name, type=param_type, required=port.metadata.required, default=port.metadata.default, description=port.metadata.description, ) return parameters def get_output_schema(self) -> dict[str, NodeParameter]: """Generate output schema from port definitions. Creates output parameter definitions from OutputPort declarations, enabling output validation and documentation generation. Returns: Dictionary mapping output names to NodeParameter instances """ outputs = {} for port_name, port in self._port_registry.output_ports.items(): param_type = port.type_hint if port.type_hint else Any # Handle generic types - NodeParameter expects plain types if hasattr(param_type, "__origin__"): # For generic types like List[str], Dict[str, Any], use the origin type from typing import Union, get_origin origin = get_origin(param_type) if origin is Union: # For Union types (including Optional), use object as a safe fallback param_type = object else: param_type = origin or param_type outputs[port_name] = NodeParameter( name=port_name, type=param_type, required=False, # Output ports are generally not "required" default=None, description=port.metadata.description, ) return outputs def validate_inputs(self, **kwargs) -> dict[str, Any]: """Enhanced input validation using port system. Performs validation in two phases: 1. Standard Node validation for backward compatibility 2. Port-specific validation for enhanced type checking This dual approach ensures: - Existing validation logic continues to work - Enhanced type safety from port definitions - Constraint validation (min/max, patterns, etc.) - Better error messages with port context Args: **kwargs: Runtime inputs to validate Returns: Validated inputs with type conversions applied Raises: NodeValidationError: If validation fails with enhanced error context """ # First, run standard Node validation validated = super().validate_inputs(**kwargs) # Then, perform port-specific validation port_errors = self._port_registry.validate_input_types(validated) if port_errors: error_details = "; ".join(port_errors) raise NodeValidationError( f"Port validation failed for node '{self.id}': {error_details}" ) # Set validated values in bound ports for type-safe access # This allows port.get() to work during run() execution for port_name, port in self._port_registry.input_ports.items(): if port_name in validated: bound_port = getattr(self, port_name, None) if bound_port and hasattr(bound_port, "set"): try: bound_port.set(validated[port_name]) except (TypeError, ValueError): # Port validation should have caught this, but be safe pass elif hasattr(self, port_name): # If bound port doesn't have set method, set the value directly port_instance = getattr(self, port_name) if hasattr(port_instance, "_value"): port_instance._value = validated[port_name] return validated def validate_outputs(self, outputs: dict[str, Any]) -> dict[str, Any]: """Enhanced output validation using port system. Validates outputs using both standard Node validation and port definitions: 1. Standard JSON serializability checks 2. Port type validation with enhanced error messages 3. Constraint validation for output values Args: outputs: Output dictionary from run() method Returns: Validated outputs Raises: NodeValidationError: If validation fails """ # First, run standard Node validation validated = super().validate_outputs(outputs) # Then, perform port-specific validation port_errors = self._port_registry.validate_output_types(validated) if port_errors: error_details = "; ".join(port_errors) raise NodeValidationError( f"Output port validation failed for node '{self.id}': {error_details}" ) return validated def get_port_schema(self) -> dict[str, Any]: """Get complete port schema for documentation and tooling. Returns the full port schema including type information, constraints, examples, and metadata. Used by: - Documentation generators - UI form builders - Workflow validation tools - Type inference systems Returns: Complete port schema with input and output definitions """ return self._port_registry.get_port_schema() def to_dict(self) -> dict[str, Any]: """Enhanced serialization including port information. Extends base Node serialization with port schema information for complete node documentation and reconstruction. Returns: Node dictionary with port schema included """ base_dict = super().to_dict() base_dict["port_schema"] = self.get_port_schema() return base_dict class AsyncTypedNode(TypedNode): """Async version of TypedNode with full async support. This class combines the type-safe port system from TypedNode with the async execution capabilities of AsyncNode, providing: 1. Type-safe input/output ports with async execution 2. Async-first execution with execute_async() and async_run() 3. All port validation and type checking in async context 4. Full backward compatibility with TypedNode patterns 5. Optimal performance for I/O-bound async operations Design Goals: - Async-first execution for modern Kailash workflows - Type safety with full IDE support in async context - Seamless port access during async execution - Compatible with AsyncLocalRuntime and async workflows Usage Pattern: class MyAsyncTypedNode(AsyncTypedNode): # Same port declarations as TypedNode text_input = InputPort[str]("text_input", description="Text to process") count = InputPort[int]("count", default=1, description="Number of iterations") # Output ports result = OutputPort[str]("result", description="Processed text") metadata = OutputPort[Dict[str, Any]]("metadata", description="Processing info") async def async_run(self, **kwargs) -> Dict[str, Any]: # Type-safe async access to inputs text = self.text_input.get() count = self.count.get() # Async processing (e.g., API calls, DB queries) processed = await self.process_async(text, count) # Set outputs (with type validation) self.result.set(processed) self.metadata.set({"length": len(processed), "iterations": count}) # Return traditional dict format return { self.result.name: processed, self.metadata.name: {"length": len(processed), "iterations": count} } async def process_async(self, text: str, count: int) -> str: # Example async processing await asyncio.sleep(0.1) # Simulate I/O return text * count Migration from TypedNode: - Change inheritance from TypedNode to AsyncTypedNode - Change run() method to async def async_run() - Add await to any async operations - Use execute_async() for execution instead of execute() """ def run(self, **kwargs) -> dict[str, Any]: """Override run() to require async_run() implementation. AsyncTypedNode requires async_run() implementation for proper async execution. This method should not be called directly - use execute_async() instead. Raises: NotImplementedError: Always, as async typed nodes must use async_run() """ raise NotImplementedError( f"AsyncTypedNode '{self.__class__.__name__}' should implement async_run() method, not run()" ) @abstractmethod async def async_run(self, **kwargs) -> dict[str, Any]: """Execute the async node's logic with type-safe port access. This is the core method that implements the node's async data processing logic. It receives validated inputs and must return a dictionary of outputs. Design requirements: - Must be async and stateless - no side effects between runs - All inputs are provided as keyword arguments - Must return a dictionary (JSON-serializable) - Can use self.port.get() for type-safe input access - Can use self.port.set() for type-safe output setting - Should handle errors gracefully with async context - Can use self.config for configuration values - Should use self.logger for status reporting - Can perform async I/O operations (API calls, DB queries, etc.) Example: async def async_run(self, **kwargs): # Type-safe port access text = self.text_input.get() count = self.count.get() # Async processing result = await self.process_text_async(text, count) # Set outputs and return self.result.set(result) return {"result": result} Args: **kwargs: Validated input parameters matching get_parameters() Returns: Dictionary of outputs that will be validated and passed to downstream nodes Raises: NodeExecutionError: If execution fails (will be caught and re-raised by execute_async()) Called by: - execute_async(): Wraps with validation and error handling - AsyncLocalRuntime: During async workflow execution - Async test runners: During async unit testing """ ... async def execute_async(self, **runtime_inputs) -> dict[str, Any]: """Execute the async node with validation and error handling. This is the main entry point for async node execution that orchestrates the complete async execution lifecycle: 1. Input validation (validate_inputs) 2. Async execution (async_run) 3. Output validation (validate_outputs) 4. Error handling and logging 5. Performance metrics Async execution flow: 1. Logs execution start 2. Validates inputs against parameter schema (including port validation) 3. Sets validated values in ports for type-safe access 4. Calls async_run() with validated inputs 5. Validates outputs are JSON-serializable (including port validation) 6. Logs execution time 7. Returns validated outputs Args: **runtime_inputs: Runtime inputs for async node execution Returns: Dictionary of validated outputs from async_run() Raises: NodeExecutionError: If async execution fails in async_run() NodeValidationError: If input/output validation fails """ from datetime import UTC, datetime start_time = datetime.now(UTC) try: self.logger.info(f"Executing async node {self.id}") # Merge runtime inputs with config (runtime inputs take precedence) merged_inputs = {**self.config, **runtime_inputs} # Handle nested config case (same as base Node) if "config" in merged_inputs and isinstance(merged_inputs["config"], dict): nested_config = merged_inputs["config"] for key, value in nested_config.items(): if key not in runtime_inputs: merged_inputs[key] = value # Validate inputs (includes port validation and setting port values) validated_inputs = self.validate_inputs(**merged_inputs) # REDACTED (#2167). This logged EVERY node's full validated input # dict, so any credential parameter -- `auth_password`, `api_key`, # `secret_key`, a connection string -- reached the log in clear text, # for every node in the SDK rather than one. Surfaced by the #2167 # http.py regression test, which caught `auth_password` here after the # http-level leak beside it was already fixed. DEBUG is not a defence: # debug logging is routinely enabled in staging and shipped to an # aggregator. Keys are preserved so the diagnostic still says which # inputs bound. # Guarded: `redact_mapping` walks the whole input structure, and this # runs on EVERY node execution. Passing it as a lazy `%s` arg is not # enough -- the call itself would still evaluate before `debug()` is # entered. `isEnabledFor` keeps the cost at zero when DEBUG is off. if self.logger.isEnabledFor(logging.DEBUG): self.logger.debug( "Validated inputs for async node %s: %s", self.id, redact_mapping(validated_inputs), ) # Execute async node logic with progress context from kailash.runtime.progress import _current_node_id node_id_token = _current_node_id.set(self.id) try: outputs = await self.async_run(**validated_inputs) finally: _current_node_id.reset(node_id_token) # Validate outputs (includes port validation) validated_outputs = self.validate_outputs(outputs) execution_time = (datetime.now(UTC) - start_time).total_seconds() self.logger.info( f"Async node {self.id} executed successfully in {execution_time:.3f}s" ) return validated_outputs except NodeValidationError: # Re-raise validation errors as-is raise except NodeExecutionError: # Re-raise execution errors as-is raise except Exception as e: # Wrap any other exception in NodeExecutionError self.logger.error( f"Async node {self.id} execution failed: {e}", exc_info=True ) raise NodeExecutionError( f"Async node '{self.id}' execution failed: {type(e).__name__}: {e}" ) from e def execute(self, **runtime_inputs) -> dict[str, Any]: """Execute the async node synchronously by running async code. This method provides backward compatibility by running the async execution in a synchronous context. It handles event loop management automatically. For optimal performance in async workflows, use execute_async() directly. Args: **runtime_inputs: Runtime inputs for node execution Returns: Dictionary of validated outputs """ import asyncio import concurrent.futures import sys import threading # Handle event loop scenarios (same as AsyncNode) if sys.platform == "win32": asyncio.set_event_loop_policy(asyncio.WindowsProactorEventLoopPolicy()) current_thread = threading.current_thread() is_main_thread = isinstance(current_thread, threading._MainThread) # type: ignore[reportAttributeAccessIssue] try: # Try to get current event loop loop = asyncio.get_running_loop() # Event loop is running - need to run in separate thread return self._execute_in_thread(**runtime_inputs) except RuntimeError: # No event loop running if is_main_thread: # Main thread without loop - safe to use asyncio.run() return asyncio.run(self.execute_async(**runtime_inputs)) else: # Non-main thread without loop - create new loop return self._execute_in_new_loop(**runtime_inputs) def _execute_in_thread(self, **runtime_inputs) -> dict[str, Any]: """Execute async code in a separate thread with its own event loop.""" import asyncio import concurrent.futures def run_in_thread(): loop = asyncio.new_event_loop() asyncio.set_event_loop(loop) try: return loop.run_until_complete(self.execute_async(**runtime_inputs)) finally: loop.close() with concurrent.futures.ThreadPoolExecutor() as executor: future = executor.submit(run_in_thread) return future.result() def _execute_in_new_loop(self, **runtime_inputs) -> dict[str, Any]: """Execute async code in a new event loop.""" import asyncio new_loop = asyncio.new_event_loop() asyncio.set_event_loop(new_loop) try: return new_loop.run_until_complete(self.execute_async(**runtime_inputs)) finally: new_loop.close() # Node Registry class NodeRegistry: """Registry for discovering and managing available nodes. This singleton class provides a global registry for node types, enabling: 1. Dynamic node discovery 2. Node class registration 3. Workflow deserialization 4. CLI/UI node palettes Design pattern: Singleton - Single global instance (_instance) - Shared registry of node classes (_nodes) - Thread-safe through class methods Registration flow: 1. Nodes register via @register_node decorator 2. Registry validates node inheritance 3. Stores class reference by name/alias 4. Available for instantiation Usage patterns: - Automatic: @register_node decorator - Manual: NodeRegistry.register(NodeClass) - Discovery: NodeRegistry.list_nodes() - Instantiation: NodeRegistry.get('NodeName') Upstream components: - Node implementations: Register themselves - Module imports: Trigger registration - Setup scripts: Bulk registration Downstream consumers: - Workflow: Creates nodes by name - CLI: Lists available nodes - UI: Populates node palette - WorkflowImporter: Deserializes nodes """ _instance = None _nodes: dict[str, type[Node]] = {} # Names whose CURRENT incumbent was registered with allow_override=True # (DataFlow @db.model generates CRUD node classes). Updated on every # registration to track the live incumbent — added on a dynamic # registration, removed on a static one — so the cross-module collision # guard (issue #891) is exempted only while a dynamic node holds the # slot, never permanently. See register(). _dynamic_names: set[str] = set() def __new__(cls): """Ensure singleton instance. Implements the singleton pattern to maintain a single global registry of nodes. Returns: The single NodeRegistry instance """ if cls._instance is None: cls._instance = super().__new__(cls) return cls._instance @classmethod def register( cls, node_class: type[Node], alias: str | None = None, *, allow_override: bool = False, ): """Register a node class. Adds a node class to the global registry, making it available for discovery and instantiation. Registration process: 1. Validates node_class inherits from Node 2. Determines registration name (alias or class name) 3. Warns if overwriting existing registration 4. Stores class reference in registry Thread safety: - Class method ensures single registry - Dictionary operations are atomic - Safe for concurrent registration Example usage: NodeRegistry.register(CSVReaderNode) NodeRegistry.register(CustomNode, alias='MyNode') Args: node_class: Node class to register (must inherit from Node) alias: Optional alias for the node (defaults to class name) Raises: NodeConfigurationError: If registration fails: - node_class doesn't inherit from Node - Invalid class type provided Side effects: - Updates cls._nodes dictionary - Logs registration success/warnings - Overwrites existing registrations Used by: - @register_node decorator - Manual registration in setup - Plugin loading systems """ if not issubclass(node_class, Node): raise NodeConfigurationError( f"Cannot register {node_class.__name__}: must be a subclass of Node" ) # Validate constructor signature (Core SDK improvement) cls._validate_node_constructor(node_class) node_name = alias or node_class.__name__ if node_name in cls._nodes: existing = cls._nodes[node_name] existing_module = getattr(existing, "__module__", None) new_module = getattr(node_class, "__module__", None) # The cross-module guard targets only static-vs-static cross-package # collisions (issue #891). A registration is "dynamic" when the # caller passed allow_override=True (DataFlow @db.model generates a # fresh CRUD node class per decoration) OR the incumbent name was # itself registered dynamically — in either order the overwrite is # intentional, not the #891 import-order-dependent dispatch bug. dynamic = allow_override or node_name in cls._dynamic_names if not dynamic and existing_module != new_module: # __module__ strings differ — but a package reachable both as # `pkg.*` and `src.pkg.*` (src/ on sys.path) yields two module # spellings for ONE source file. A genuine collision is two # DIFFERENT files; compare source files to tell them apart. try: same_file = inspect.getfile(existing) == inspect.getfile(node_class) except (TypeError, OSError): same_file = False if not same_file: # Cross-module collision: two distinct classes from # different modules claiming one registry name — # import-order-dependent dispatch (issue #891). BLOCKED. _logger.error( f"Node name collision for '{node_name}': " f"{existing_module} vs {new_module} — registration refused" ) raise NodeConfigurationError( f"Node name collision for '{node_name}': already " f"registered by {existing_module}." f"{getattr(existing, '__name__', existing)}; " f"{new_module}.{node_class.__name__} cannot re-register " f"the same name from a different module. Register one " f"under an explicit @register_node(alias=...) with a " f"distinct name." ) # ADR-002: same-module / same-file / dynamic re-registration stays # non-fatal — DataFlow model decoration regenerates CRUD node # classes (fresh class objects, same __module__) per @db.model call. _logger.info(f"Overwriting existing node registration for '{node_name}'") # Track the LIVE incumbent's dynamic-ness: a dynamic registration marks # the name exempt; a subsequent static registration un-marks it, so the # exemption never outlives the dynamic node that earned it (issue #891). if allow_override: cls._dynamic_names.add(node_name) else: cls._dynamic_names.discard(node_name) cls._nodes[node_name] = node_class _logger.debug(f"Registered node '{node_name}'") @classmethod def _validate_node_constructor(cls, node_class: type[Node]): """Validate that node constructor follows SDK patterns. This is a core SDK improvement to ensure all nodes have consistent constructor signatures that work with WorkflowBuilder.from_dict(). Validates that the node constructor either: 1. Accepts 'name' parameter (like PythonCodeNode) 2. Accepts 'id' parameter (traditional pattern) 3. Uses **kwargs to accept both Args: node_class: Node class to validate Raises: NodeConfigurationError: If constructor signature is incompatible """ try: sig = inspect.signature(node_class.__init__) params = list(sig.parameters.keys()) # Skip 'self' parameter if "self" in params: params.remove("self") # Check if constructor accepts required parameters has_name = "name" in params has_id = "id" in params has_kwargs = any( param.kind == param.VAR_KEYWORD for param in sig.parameters.values() ) if not (has_name or has_id or has_kwargs): logging.warning( f"Node {node_class.__name__} constructor may not work with WorkflowBuilder.from_dict(). " f"Constructor should accept 'name', 'id', or **kwargs parameter. " f"Current parameters: {params}" ) except Exception as e: # Don't fail registration for signature inspection issues logging.warning( f"Could not validate constructor for {node_class.__name__}: {e}" ) @classmethod def get(cls, node_name: str) -> type[Node]: """Get a registered node class by name. Retrieves a node class from the registry for instantiation. Used during workflow creation and deserialization. Lookup process: 1. Searches registry by exact name match 2. Returns class reference if found 3. Provides helpful error with available nodes Example usage: NodeClass = NodeRegistry.get('CSVReader') node = NodeClass(config={'file': 'data.csv'}) Args: node_name: Name of the node (class name or alias) Returns: Node class ready for instantiation Raises: NodeConfigurationError: If node is not registered: - Includes list of available nodes - Suggests similar names if possible Used by: - Workflow.add_node(): Creates nodes by name - WorkflowImporter: Deserializes nodes - CLI commands: Instantiates nodes - Factory methods: Dynamic node creation """ if node_name not in cls._nodes: available_nodes = sorted(cls._nodes.keys()) # Provide more helpful error message based on registry state if not available_nodes: # Registry is empty - likely a test isolation or import issue raise NodeConfigurationError( f"Node '{node_name}' not found in registry. " f"The node registry is empty. This usually means:\n" f" 1. Nodes haven't been imported yet (try: import kailash.nodes)\n" f" 2. Test isolation cleared the registry without re-importing\n" f" 3. The node module containing '{node_name}' wasn't imported\n" f"Common nodes: PythonCodeNode, CSVReaderNode, SQLDatabaseNode, HTTPRequestNode" ) else: # Registry has nodes but not the requested one nodes_list = ", ".join(available_nodes) # Try to suggest similar node names similar = [ n for n in available_nodes if node_name.lower() in n.lower() or n.lower() in node_name.lower() ] suggestion = f"\nDid you mean: {', '.join(similar)}?" if similar else "" raise NodeConfigurationError( f"Node '{node_name}' not found in registry. " f"Available nodes: {nodes_list}{suggestion}" ) return cls._nodes[node_name] @classmethod def list_nodes(cls) -> dict[str, type[Node]]: """List all registered nodes. Returns a copy of the registry for discovery purposes. Used by CLI help, UI node palettes, and documentation. Returns: Dictionary mapping node names to their classes: - Keys: Node names/aliases - Values: Node class references - Safe copy prevents registry modification Used by: - CLI 'list-nodes' command - UI node palette population - Documentation generators - Testing and debugging """ return cls._nodes.copy() @classmethod def unregister(cls, node_name: str) -> bool: """Unregister a single node from the registry. Removes a specific node class from the global registry. Used for: 1. Test isolation - Clean up test-specific nodes 2. Dynamic reloading - Remove before re-registering 3. Instance cleanup - Remove DataFlow instance nodes Args: node_name: Name of the node to unregister Returns: bool: True if node was unregistered, False if not found Side effects: - Removes node from _nodes dictionary - Logs the unregistration - Existing node instances remain valid Example usage: NodeRegistry.unregister('UserCreateNode') NodeRegistry.unregister('custom_alias') Used by: - Test cleanup fixtures - DataFlow instance cleanup - Dynamic node reloading """ if node_name in cls._nodes: del cls._nodes[node_name] logging.debug(f"Unregistered node '{node_name}'") return True return False @classmethod def unregister_nodes(cls, node_names: list[str]) -> int: """Unregister multiple nodes from the registry. Batch unregistration for cleaning up a set of related nodes. Returns count of successfully unregistered nodes. Args: node_names: List of node names to unregister Returns: int: Number of nodes successfully unregistered Example usage: # Clean up DataFlow model nodes nodes = ['UserCreateNode', 'UserReadNode', 'UserUpdateNode'] count = NodeRegistry.unregister_nodes(nodes) print(f"Unregistered {count} nodes") Used by: - DataFlow.cleanup_nodes() - Test fixture teardown - Multi-instance cleanup """ count = 0 for node_name in node_names: if cls.unregister(node_name): count += 1 if count > 0: logging.info(f"Unregistered {count} nodes from registry") return count @classmethod def clear(cls): """Clear all registered nodes. Removes all nodes from the registry. Primarily used for: 1. Testing - Clean state between tests 2. Reloading - Before re-registering nodes 3. Cleanup - Memory management Side effects: - Empties the _nodes dictionary - Logs the clearing action - Existing node instances remain valid Warning: >>> # Warning: This affects all future operations >>> # - Subsequent get() calls will fail >>> # - Workflows may not deserialize >>> # - Should re-register needed nodes """ cls._nodes.clear() cls._dynamic_names.clear() logging.info("Cleared all registered nodes") _NodeT = TypeVar("_NodeT", bound=Node) def register_node( alias: str | None = None, ) -> Callable[[type[_NodeT]], type[_NodeT]]: """Decorator to register a node class. Provides a convenient decorator pattern for automatic node registration when the module is imported. Usage patterns: @register_node() class MyNode(Node): pass @register_node(alias='CustomName') class MyNode(Node): pass Registration timing: - Occurs when module is imported - Before any workflow creation - Enables automatic discovery Error handling: - Wraps registration errors - Provides clear error messages - Preserves original class Args: alias: Optional alias for the node (defaults to class name) Returns: Decorator function that: - Registers the node class - Returns the unmodified class - Handles registration errors Example: >>> @register_node(alias='CSV') ... class CSVReaderNode(Node): ... def get_parameters(self): ... return {'file': NodeParameter(...)} ... ... def run(self, file): ... return pd.read_csv(file) """ def decorator(node_class: type[_NodeT]) -> type[_NodeT]: """Inner decorator that performs registration. Args: node_class: The node class to register Returns: The unmodified node class Raises: NodeConfigurationError: If registration fails """ try: NodeRegistry.register(node_class, alias) except Exception as e: raise NodeConfigurationError( f"Failed to register node {node_class.__name__}: {e}" ) from e return node_class return decorator