Skip to main content

Process-isolated networked Lua VMs managed from Python (extracted from BioXen)

Project description

pylua_bioxen_vm_lib

A Python library for orchestrating networked Lua virtual machines through subprocess management and socket communication.

Overview

pylua_bioxen_vm_lib provides a unique approach to running multiple Lua interpreters as isolated processes, managed from Python with built-in networking capabilities. Unlike embedded Lua solutions, this library offers true process isolation, fault tolerance, and dynamic scaling of Lua VMs.

Key Features

  • Process-isolated Lua VMs - Each VM runs in its own subprocess for fault tolerance
  • Built-in networking - Socket-based communication using LuaSocket
  • Multiple communication patterns - Server, client, and P2P messaging modes
  • Dynamic VM management - Spawn and terminate VMs as needed
  • Language-agnostic architecture - Could be extended to other interpreters
  • Python orchestration - Full lifecycle management from Python
  • Interactive sessions - Attach/detach to running VMs for real-time interaction

Interactive Terminal Support

pylua_bioxen_vm_lib now supports interactive session management, allowing you to attach to running Lua VMs and interact with them in real-time.

Interactive Session Management

  • Attach/detach to running Lua VMs
  • Send input and receive output in real-time
  • Session lifecycle management
  • Multiple concurrent sessions per VM

Example Usage

from pylua_bioxen_vm_lib import VMManager, InteractiveSession

manager = VMManager()
vm = manager.create_vm("interactive_vm")

# Start an interactive session
session = InteractiveSession(vm)
session.attach()

# Send commands and get responses
session.send_input("x = 42")
session.send_input("print(x)")
output = session.read_output()

# Detach when done
session.detach()

Architecture

Python Process
├── VM Manager
│   ├── Lua Process 1 (subprocess)
│   ├── Lua Process 2 (subprocess)
│   └── Lua Process N (subprocess)
└── Networking Layer
    ├── Socket Server
    ├── Socket Client
    └── P2P Communication

Installation

pip install pylua_bioxen_vm_lib

Prerequisites

  • Python 3.7+
  • Lua interpreter installed on system
  • LuaSocket library (luarocks install luasocket)

Quick Start

from pylua_bioxen_vm_lib import VMManager

# Create a VM manager
manager = VMManager()

# Spawn Lua VMs
vm1 = manager.create_vm("vm1")
vm2 = manager.create_vm("vm2")

# Execute Lua code
result = vm1.execute("return math.sqrt(16)")
print(result)  # 4.0

# Enable networking
vm1.start_server(port=8080)
vm2.connect_to("localhost", 8080)

# Send messages between VMs
vm2.send_message("Hello from VM2!")
message = vm1.receive_message()

# Cleanup
manager.shutdown_all()

Use Cases

  • Distributed computing - Parallel Lua script execution
  • Game servers - Isolated game logic processes
  • Microservices - Lightweight Lua-based services
  • Sandboxed scripting - Safe execution of untrusted Lua code
  • Load balancing - Multiple worker processes
  • Protocol testing - Network protocol simulation

Communication Patterns

Server Mode

vm.start_server(port=8080)
vm.accept_connections()

Client Mode

vm.connect_to("hostname", port)
vm.send_data("message")

P2P Mode

vm1.establish_p2p_with(vm2)
vm1.broadcast("Hello network!")

example usage

from pylua_bioxen_vm_lib import VMManager

with VMManager() as manager:
    # Server VM
    server_vm = manager.create_vm("server", networked=True)
    server_future = manager.start_server_vm("server", port=8080)
    
    # Client VM  
    client_vm = manager.create_vm("client", networked=True)
    client_future = manager.start_client_vm("client", "localhost", 8080, "Hello!")
    
    # P2P VM
    p2p_vm = manager.create_vm("p2p", networked=True)
    p2p_future = manager.start_p2p_vm("p2p", 8081, "localhost", 8080)

Examples

See the examples/ directory for:

  • Basic VM management (basic_usage.py)
  • Distributed computation (distributed_compute.py)
  • P2P messaging (p2p_messaging.py)

Documentation

Development

git clone https://github.com/yourusername/pylua_bioxen_vm_lib.git
cd pylua_bioxen_vm_lib
pip install -e .
python -m pytest tests/

Contributing

Contributions welcome! Please read our contributing guidelines and submit pull requests.

License

MIT License - see LICENSE file for details.

Why pylua_bioxen_vm_lib?

Existing Python-Lua integrations focus on embedding Lua within Python processes. pylua_bioxen_vm_lib takes a different approach by managing separate Lua processes, providing:

  • True isolation - One VM crash doesn't affect others
  • Horizontal scaling - Easy to distribute across cores/machines
  • Network-first design - Built for distributed systems
  • Fault tolerance - Automatic recovery and reconnection
  • Resource management - Independent memory and CPU usage per VM

Perfect for applications requiring robust, scalable Lua script execution with network communication capabilities.

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

pylua_bioxen_vm_lib-0.1.10.tar.gz (49.0 kB view details)

Uploaded Source

Built Distribution

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

pylua_bioxen_vm_lib-0.1.10-py3-none-any.whl (46.6 kB view details)

Uploaded Python 3

File details

Details for the file pylua_bioxen_vm_lib-0.1.10.tar.gz.

File metadata

  • Download URL: pylua_bioxen_vm_lib-0.1.10.tar.gz
  • Upload date:
  • Size: 49.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for pylua_bioxen_vm_lib-0.1.10.tar.gz
Algorithm Hash digest
SHA256 04d1a318f3bbeab022e29b5cd962ca608757b2e63c0ca916e8a100c171b47334
MD5 c27360101bba8644ab590d42b6257375
BLAKE2b-256 5da22a83bcf67eeb43d50efde7c51306d0903a5b640cf248d5444337227b3c45

See more details on using hashes here.

File details

Details for the file pylua_bioxen_vm_lib-0.1.10-py3-none-any.whl.

File metadata

File hashes

Hashes for pylua_bioxen_vm_lib-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 6fd819ea20d864bd9af09ac94c3578efdb46e6285da631cc20c4fc3982a6f62b
MD5 72fb72a7684482626a0c3d6f45485bcc
BLAKE2b-256 9c43a38c5b34faa762501e8dcaefbcd184f0ee62f154d14f8a34de9d1363d74f

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