Skip to main content

Python GenServer implementation inspired by Erlang/OTP

Project description

genserver

Python GenServer Implementation

PyPI Version License Build Status Publish Status Code Coverage genserver is a Python library that provides a robust and easy-to-use implementation of the GenServer pattern, inspired by Erlang/OTP. GenServers are a fundamental building block for building concurrent and fault-tolerant applications. They encapsulate state, handle asynchronous messages, and simplify concurrent programming.

This library aims to bring the power and elegance of the GenServer model to Python developers, enabling them to build more resilient and scalable applications.

Features

  • Core GenServer Pattern: Implements the essential GenServer behaviors: state management, message handling (cast and call), and lifecycle callbacks (init, terminate).
  • Asynchronous Messaging (Cast): Send non-blocking messages to the GenServer for asynchronous operations and state updates.
  • Synchronous Messaging (Call): Send blocking messages and receive responses, enabling request-response style interactions with the GenServer.
  • State Management: GenServers manage their own internal state, simplifying concurrent access and data consistency.
  • Error Handling: Includes robust error handling within the GenServer loop and user-defined handlers, with logging and custom exception types.
  • Timeouts: Supports timeouts for stop and call operations, preventing indefinite blocking.
  • Type Hinting: Written with type hints for improved code clarity, maintainability, and static analysis.
  • Well-Tested: Comes with a comprehensive suite of unit tests to ensure reliability and correctness.
  • Production-Ready: Designed for building robust and scalable applications.

Installation

You can install genserver from PyPI using pip:

pip install genserver

Note: The PyPI package name is genserver to avoid namespace conflicts. When importing in Python, you will use import genserver.

Usage

python test_application.py or Here's a simple example demonstrating how to use genserver` to create a counter server:

import time
import logging
from genserver import GenServer, GenServerError, GenServerTimeoutError

# Configure logging (optional)
logging.basicConfig(level=logging.INFO)

class CounterServer(GenServer[int]): # State is an integer
    def init(self) -> int:
        return 0  # Initial count is 0

    def handle_cast(self, message: dict, state: int) -> int:
        action = message.get("action")
        if action == "increment":
            return state + 1
        elif action == "decrement":
            return state - 1
        else:
            return super().handle_cast(message, state) # Default unhandled cast

    def handle_call(self, message: dict, state: int) -> tuple[int, int]:
        action = message.get("action")
        if action == "get_count":
            return state, state  # Return current count
        elif action == "increment_and_get":
            new_state = state + 1
            return new_state, new_state # Increment and return new count
        else:
            raise NotImplementedError(f"Call action '{action}' not implemented: {action}")

if __name__ == "__main__":
    counter = CounterServer()
    counter.start()

    counter.cast({"action": "increment"})
    counter.cast({"action": "increment"})

    count = counter.call({"action": "get_count"})
    print(f"Current Count: {count}") # Output: Current Count: 2

    new_count = counter.call({"action": "increment_and_get"})
    print(f"Incremented Count: {new_count}") # Output: Incremented Count: 3

    counter.stop()
    print("Counter Server Stopped.")

To run this example, save it as a Python file (e.g., counter_example.py) and execute it from your terminal:

python counter_example.py

Key GenServer Methods:

  • start(*args, **kwargs): Starts the GenServer process. Calls init(*args, **kwargs) in a new thread.
  • stop(timeout=None): Stops the GenServer gracefully, waiting for the thread to join (with optional timeout).
  • cast(message): Sends an asynchronous message to the GenServer's mailbox (no response expected). message must be a dictionary.
  • call(message, timeout=None): Sends a synchronous message and waits for a response (with optional timeout). message must be a dictionary.

User-Defined Callbacks (Override in Subclasses):

  • init(*args, **kwargs) -> State: Initialization callback. Return the initial state.
  • handle_cast(message: dict, state: State) -> State: Handles asynchronous cast messages. Return the new state.
  • handle_call(message: dict, state: State) -> tuple[Any, State]: Handles synchronous call messages. Return a tuple containing the response and the new state.
  • terminate(state: State): Termination callback, called when the GenServer is stopping.

Running Tests

To run the unit tests for genserver, you will need to install pytest. If you haven't already, install it using:

pip install pytest

Then, navigate to the root directory of the genserver library (where setup.py is located) and run pytest from your terminal:

pytest

This will discover and run all tests located in the tests/ directory. You should see output indicating the test results.

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

genserver-0.1.9.tar.gz (12.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

genserver-0.1.9-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file genserver-0.1.9.tar.gz.

File metadata

  • Download URL: genserver-0.1.9.tar.gz
  • Upload date:
  • Size: 12.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for genserver-0.1.9.tar.gz
Algorithm Hash digest
SHA256 c0ed2945c3d043e5caa3824c440ad0d2acceb6262e31befcfa77d6d51c24540d
MD5 7dec7112e622d3118765622af458baed
BLAKE2b-256 16b6a982373c443aad23d96d4d91e7ab79c8697943d982ff082f7ab963266975

See more details on using hashes here.

File details

Details for the file genserver-0.1.9-py3-none-any.whl.

File metadata

  • Download URL: genserver-0.1.9-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for genserver-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 b24689667314b8ba0107b39e08685b021c12d8fc630a2beaf3daad99aff0fa23
MD5 07010fd20281e15e0d8a39f78a064627
BLAKE2b-256 0ace8b04120846c7bb0f4992d973ceb4413c7697699caf72dfc7a5cb8b247375

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page