Skip to main content

Python bindings for rsolace

Project description

pyrsolace

License: GPL v3 Python PyPI

Python bindings for rsolace with full async/await support and proper GIL release.

✨ Key Features

  • 🐍 Full asyncio Support: Native async/await patterns with asyncio
  • 🔓 GIL Release: Properly releases GIL during blocking operations
  • 🔄 Sync + Async: Choose the best pattern for your use case
  • 📦 Complete API: Pub/Sub, Request/Reply, Message Caching, Events
  • High Performance: Zero-copy message handling from Rust
  • 🛡️ Type Safe: Complete type hints with .pyi files

🚀 Installation

# Using pip
pip install pyrsolace

# Using uv (recommended)
uv add pyrsolace

🔥 Quick Start

Async Example (NEW!)

import asyncio
import pyrsolace

async def main():
    # Initialize client
    client = pyrsolace.Client()
    
    # Connect to Solace broker
    connected = client.connect(
        host="tcp://localhost:55555",
        vpn="default",
        username="admin",
        password="admin",
        compression_level=5
    )
    
    if not connected:
        print("Failed to connect")
        return
    
    # Subscribe to topics
    client.subscribe_ext("test/topic/*", pyrsolace.SubscribeFlag.RequestConfirm)
    
    # Get async receivers
    async_msg_receiver = client.get_async_msg_receiver()
    async_event_receiver = client.get_async_event_receiver()
    
    # Handle messages asynchronously
    async def message_handler():
        while True:
            try:
                msg = await async_msg_receiver.recv()
                print(f"Async received: {msg.topic} - {msg.data}")
            except Exception as e:
                print(f"Message handler error: {e}")
                break
    
    # Handle events asynchronously
    async def event_handler():
        while True:
            try:
                event = await async_event_receiver.recv()
                print(f"Event: {event.session_event}")
            except Exception as e:
                print(f"Event handler error: {e}")
                break
    
    # Start async handlers
    msg_task = asyncio.create_task(message_handler())
    event_task = asyncio.create_task(event_handler())
    
    # Send some test messages
    for i in range(5):
        msg = pyrsolace.Msg(
            topic="test/topic/async",
            data=f"Async message {i}".encode()
        )
        client.send_msg(msg)
        await asyncio.sleep(1)
    
    # Send async request (true async, no blocking!)
    try:
        request_msg = pyrsolace.Msg(
            topic="test/request", 
            data=b"Hello async world!", 
            corr_id="req123"
        )
        
        response = await client.send_request_async(request_msg)
        print(f"Async response: {response.data}")
    except Exception as e:
        print(f"Async request failed: {e}")
    
    # Cleanup
    await asyncio.sleep(2)
    msg_task.cancel()
    event_task.cancel()
    client.disconnect()

if __name__ == "__main__":
    asyncio.run(main())

Sync Example (Enhanced with GIL Release)

import pyrsolace
import threading
import time

def message_handler(receiver, name):
    """Handle messages synchronously with proper GIL release."""
    while True:
        try:
            # This properly releases GIL, allowing other threads to run
            msg = receiver.recv()
            print(f"{name} received: {msg.topic} - {msg.data}")
        except Exception as e:
            print(f"{name} handler error: {e}")
            break

def main():
    client = pyrsolace.Client()
    
    # Connect
    connected = client.connect(
        host="tcp://localhost:55555",
        vpn="default",
        username="admin", 
        password="admin"
    )
    
    if not connected:
        print("Failed to connect")
        return
    
    # Subscribe
    client.subscribe("test/topic/*")
    
    # Get receivers
    msg_receiver = client.get_msg_receiver()
    event_receiver = client.get_event_receiver()
    
    # Start background threads (GIL is properly released)
    msg_thread = threading.Thread(
        target=message_handler, 
        args=(msg_receiver, "Messages")
    )
    event_thread = threading.Thread(
        target=message_handler, 
        args=(event_receiver, "Events")
    )
    
    msg_thread.start()
    event_thread.start()
    
    # Send messages
    for i in range(5):
        msg = pyrsolace.Msg(
            topic="test/topic/sync",
            data=f"Sync message {i}".encode()
        )
        client.send_msg(msg)
        time.sleep(1)
    
    client.disconnect()

if __name__ == "__main__":
    main()

Callback-based Example

import pyrsolace
import time

def on_message(msg):
    """Message callback function."""
    print(f"Callback received: {msg.topic} - {msg.data}")

def on_event(event):
    """Event callback function."""
    print(f"Event: {event.session_event} - {event.info}")

def main():
    client = pyrsolace.Client()
    
    # Set callbacks
    client.set_msg_callback(on_message)
    client.set_event_callback(on_event)
    
    # Connect and subscribe
    client.connect(
        host="tcp://localhost:55555",
        vpn="default",
        username="admin",
        password="admin"
    )
    
    client.subscribe("test/topic/*")
    
    # Send messages
    for i in range(5):
        msg = pyrsolace.Msg(
            topic="test/topic/callback",
            data=f"Callback message {i}".encode()
        )
        client.send_msg(msg)
        time.sleep(1)
    
    client.disconnect()

if __name__ == "__main__":
    main()

🔄 Sync vs Async

Pattern Best For Usage GIL Behavior
Callbacks Simple event handling client.set_msg_callback(fn) Released during callback
Sync Receivers Threading, blocking I/O receiver.recv() Released during recv
Async Receivers High concurrency await async_receiver.recv() N/A (async)

Migration from Sync to Async

# Before: Sync only
receiver = client.get_msg_receiver()
msg = receiver.recv()  # Blocks thread (but releases GIL)

# After: True async
async_receiver = client.get_async_msg_receiver()
msg = await async_receiver.recv()  # Non-blocking, async

# Mixed: Use both in same application
sync_receiver = client.get_msg_receiver()     # For background threads
async_receiver = client.get_async_msg_receiver()  # For async tasks

📋 API Reference

Client Class

class Client:
    def connect(self, host: str, vpn: str, username: str, password: str, ...) -> bool
    def disconnect(self) -> None
    def subscribe(self, topic: str) -> ReturnCode
    def subscribe_ext(self, topic: str, flag: SubscribeFlag) -> ReturnCode
    
    # Message sending
    def send_msg(self, msg: Msg) -> ReturnCode
    def send_reply(self, rx_msg: Msg, reply_msg: Msg) -> ReturnCode
    
    # Sync receivers (with GIL release)
    def get_msg_receiver(self) -> MsgReceiver
    def get_request_receiver(self) -> MsgReceiver
    def get_p2p_receiver(self) -> MsgReceiver
    def get_event_receiver(self) -> EventReceiver
    
    # Async receivers (NEW!)
    def get_async_msg_receiver(self) -> AsyncMsgReceiver
    def get_async_request_receiver(self) -> AsyncMsgReceiver
    def get_async_p2p_receiver(self) -> AsyncMsgReceiver
    def get_async_event_receiver(self) -> AsyncEventReceiver
    
    # Request/Reply
    def send_request(self, msg: Msg, timeout: int) -> MsgReceiver
    async def send_request_async(self, msg: Msg) -> Msg  # NEW!
    
    # Callbacks
    def set_msg_callback(self, callback: Callable[[Msg], None]) -> None
    def set_event_callback(self, callback: Callable[[Event], None]) -> None

Message Class

class Msg:
    def __init__(self, topic: str = None, data: bytes = None, ...) -> None
    
    # Properties
    topic: str
    data: bytes
    corr_id: str
    reply_topic: str
    delivery_mode: DeliveryMode
    
    # Methods
    def set_user_prop(self, key: str, value: str) -> None
    def get_user_prop(self, key: str) -> str
    def dump(self) -> str

Receiver Classes

class MsgReceiver:
    def recv(self) -> Msg  # Releases GIL

class AsyncMsgReceiver:
    async def recv(self) -> Msg  # True async

class EventReceiver:
    def recv(self) -> Event  # Releases GIL

class AsyncEventReceiver:
    async def recv(self) -> Event  # True async

🛠️ Development

Building from Source

# Clone repository
git clone https://github.com/Yvictor/rsolace.git
cd rsolace/pyrsolace

# Using uv (recommended)
uv build
uv pip install -e .

# Using maturin
pip install maturin
maturin develop --release

Running Tests

# Run tests
uv run pytest tests/

# Run specific tests
uv run pytest tests/test_msg.py -v

🔧 Configuration

Connection Parameters

client.connect(
    host="tcp://broker:55555",          # Broker URL
    vpn="vpn_name",                     # VPN name
    username="user",                    # Username
    password="pass",                    # Password
    client_name="my_client",            # Client identifier
    compression_level=5,                # 1-9 (higher = more compression)
    connect_timeout_ms=30000,           # Connection timeout
    connect_retries=3,                  # Retry attempts
    reconnect_retries=10,               # Auto-reconnect attempts
    keep_alive_ms=3000,                 # Keep-alive interval
    reapply_subscriptions=True,         # Restore subs on reconnect
    generate_sender_id=True,            # Add sender ID to messages
    generate_timestamps=True,           # Add timestamps
)

Message Properties

msg = pyrsolace.Msg(
    topic="my/topic",
    data=b"payload",
    corr_id="request-123",
    reply_topic="reply/topic",
    delivery_mode=pyrsolace.DeliveryMode.Persistent
)

# User properties
msg.set_user_prop("priority", "high")
msg.set_user_prop("version", "1.0")

🎯 Advanced Examples

Async Producer-Consumer Pattern

import asyncio
from asyncio import Queue

async def producer(client, queue):
    """Produce messages to queue."""
    for i in range(100):
        msg = pyrsolace.Msg(
            topic=f"data/stream/{i % 10}",
            data=f"Data packet {i}".encode()
        )
        await queue.put(msg)
        await asyncio.sleep(0.1)

async def consumer(client, queue):
    """Consume messages from queue."""
    while True:
        msg = await queue.get()
        client.send_msg(msg)
        queue.task_done()

async def message_processor(client):
    """Process incoming messages."""
    receiver = client.get_async_msg_receiver()
    while True:
        msg = await receiver.recv()
        # Process message asynchronously
        await process_message(msg)

async def main():
    client = pyrsolace.Client()
    client.connect(...)
    
    queue = Queue(maxsize=100)
    
    # Start producer, consumer, and processor
    await asyncio.gather(
        producer(client, queue),
        consumer(client, queue),
        message_processor(client)
    )

Request/Reply Service

async def request_handler(client):
    """Handle incoming requests asynchronously."""
    receiver = client.get_async_request_receiver()
    
    while True:
        request = await receiver.recv()
        
        # Process request
        response_data = await process_request(request.data)
        
        # Send reply
        reply = pyrsolace.Msg(
            topic=request.reply_topic,
            data=response_data,
            corr_id=request.corr_id
        )
        client.send_reply(request, reply)

🚀 Performance Tips

Async Best Practices

  1. Use Semaphores: Limit concurrent operations
semaphore = asyncio.Semaphore(10)
async with semaphore:
    await process_message(msg)
  1. Batch Operations: Group related operations
messages = []
async for msg in message_stream():
    messages.append(msg)
    if len(messages) >= 100:
        await process_batch(messages)
        messages.clear()
  1. Graceful Shutdown: Cancel tasks properly
try:
    await main_task
except asyncio.CancelledError:
    await cleanup()

📚 Documentation

  • Main Project: See root README for complete documentation
  • Rust Library: Check rsolace for Rust-specific features
  • Type Hints: Complete API in pyrsolace.pyi
  • Examples: More examples in tests/ directory

🤝 Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Add tests for new functionality
  4. Run tests: uv run pytest
  5. Submit a pull request

📄 License

GPL-3.0-only License - see LICENSE for details.


Powered by rsolace ⚡ - High-performance Rust Solace bindings

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pyrsolace-0.3.13-cp37-abi3-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.7+Windows x86-64

pyrsolace-0.3.13-cp37-abi3-win32.whl (1.7 MB view details)

Uploaded CPython 3.7+Windows x86

pyrsolace-0.3.13-cp37-abi3-manylinux_2_34_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.34+ ARM64

pyrsolace-0.3.13-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ x86-64

pyrsolace-0.3.13-cp37-abi3-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.7+macOS 11.0+ ARM64

pyrsolace-0.3.13-cp37-abi3-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7+macOS 10.12+ x86-64

File details

Details for the file pyrsolace-0.3.13-cp37-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for pyrsolace-0.3.13-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4fabc62f47e53280d2bc0badc01b50c643e5b021b8c5f5c754524d833881bfc2
MD5 48abd617ca984e9644d47981dedf3c19
BLAKE2b-256 0f113215bfb78f5cf3f5f12cc657d96a7b5025452019c61e6bcd0808ab2a9885

See more details on using hashes here.

File details

Details for the file pyrsolace-0.3.13-cp37-abi3-win32.whl.

File metadata

  • Download URL: pyrsolace-0.3.13-cp37-abi3-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for pyrsolace-0.3.13-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 0da574745353f428eaca29b17ad04bc289164ae49565f86d3a8ae69961b41eec
MD5 320deece8f9c08de7affba0154d4c692
BLAKE2b-256 6a528d80955cf7da13ac3740e84f1614ac470f09e5b211e2fd2dfeb489a10904

See more details on using hashes here.

File details

Details for the file pyrsolace-0.3.13-cp37-abi3-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for pyrsolace-0.3.13-cp37-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c79634ab283293e998aa473fe1cb9d94927dc2e3dbadbab9ad90b62e80b4dcaf
MD5 294f0055323c81812d40241d84df8093
BLAKE2b-256 03942c2f36a67b61db7b9f571d9fe91a2b8f38fd20184eb4e38b33fd30b6de63

See more details on using hashes here.

File details

Details for the file pyrsolace-0.3.13-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrsolace-0.3.13-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfa7ffbecfe51f6b35c002e8c4e386382a8a3600fc4cac1b44b9475b8832ee1d
MD5 e01450be25be6699b488d4317568b7fe
BLAKE2b-256 0baed62f2408e1c1cf3684ad48bed71b63c14b53bf3f41a28b8ac3a4e9a5c138

See more details on using hashes here.

File details

Details for the file pyrsolace-0.3.13-cp37-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrsolace-0.3.13-cp37-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f6be0795c732578004f2bcd22e841019ee4d7ef2a2be4ee3cf4bccef331ba3a
MD5 03a51e39d8e7104e64387a9c8f38fcfa
BLAKE2b-256 0b389c150862ac0cbe8d856ce2da9b6161b584acb6bb2772addb311f811c3690

See more details on using hashes here.

File details

Details for the file pyrsolace-0.3.13-cp37-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyrsolace-0.3.13-cp37-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97a624e5defa7671885632a3fc8422c79cbbabb5c8521f9cfb73662ab703975c
MD5 e6998df694fd71522478f1decec39627
BLAKE2b-256 69b92331cbe06228eaef210479eae6f4d7a272757032a087a3bd6ba91323484e

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