Skip to main content

No project description provided

Project description

PyPI CI

Basilisp nREPL Server with Support for Cooperative Multitasking

Basilisp is a Python-based Lisp implementation that offers broad compatibility with Clojure. Refer to documentation for more details.

Overview

An nREPL server is a networked REPL for Clojure that facilitates remote code evaluation, code completion, and debugging within Clojure-enabled editors like Emacs (via CIDER) and VS Code (via Calva), among others.

This package provides an nREPL server implementation for Basilisp Clojure, evolved from the basilisp.contrib.nrepl-server namespace in Basilisp, addressing issues that arise from serving nREPL request in parallel with the main event loop.

Serving an nREPL client connection on a parallel thread in Python may conflict with the Global Interpreter Lock (GIL) and single-threaded libraries, potentially causing errors or crashes.

To mitigate this, the library includes an asynchronous mode where client requests are queued, allowing the main application to process them at a designated time within its main event loop. This is in addition to the synchronous multi-threaded mode, where client requests are handled immediately upon arrival.

Installation

To install basilisp-nrepl-async, run:

pip install basilisp-nrepl-async

Usage

See API.md.

Synchronous mode

To start in synchronous mode, call server-start! with the optional :host, :port and :nrepl-port-file keys. The server will block and handle client requests as they arrive.

(require '[basilisp-nrepl-async.nrepl-server :as nr])

(def server-async (nr/server-start! {:port 9999}))
; nREPL server started on port 9999 on host 127.0.0.1 - nrepl://127.0.0.1:9999

Asynchronous mode

To start the nREPL server on a random port bound to the local interface in asynchronous mode, call server-start! with the async? option set to true. Periodically invoke the returned work-fn within your program's main loop to handle client requests. Use the shutdown-fn to stop the server.

(require '[basilisp-nrepl-async.nrepl-server :as nr])
(import time)

;; Start the nREPL server on a separate thread to handle client
;; requests asynchronously
(def server-async (nr/server-start! {:async? true}))
; nREPL server started on port 55144 on host 127.0.0.1 - nrepl://127.0.0.1:55144

;; Process client requests on this thread
(let [{:keys [host port shutdown-fn work-fn]} server-async]
  (loop [] ;; suppose this is the main event loop

    (work-fn) ;; Execute any pending nREPL client work

    ;; simulate some work
    (time/sleep 0.5)

    (recur)))

The server will create an .nrepl-port file in the current working directory with the port number, which nREPL-enabled Clojure editors can use to connect.

You can also pass additional options to the server-start! function, such as :host, :port and :nrepl-port-file, to explicitly configure the server's listening interface, port, and the file where the port number is written (typically <your-basilisp-lib>/.nrepl-port for integration with your editor).

Development and Testing

To run the test suite, use the following command:

basilsp test

License

This project is licensed under the Eclipse Public License 2.0. See the LICENSE file for details.

Acknowledgments

This library is a spin-off of basilisp-blender's basilisp-blender.nrepl-server namespace.

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

basilisp_nrepl_async-0.1.1.tar.gz (16.8 kB view details)

Uploaded Source

Built Distribution

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

basilisp_nrepl_async-0.1.1-py3-none-any.whl (16.8 kB view details)

Uploaded Python 3

File details

Details for the file basilisp_nrepl_async-0.1.1.tar.gz.

File metadata

  • Download URL: basilisp_nrepl_async-0.1.1.tar.gz
  • Upload date:
  • Size: 16.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for basilisp_nrepl_async-0.1.1.tar.gz
Algorithm Hash digest
SHA256 40057b49c63f8e8abd11c145923da73fa2b44282d14ed2d48b35b2c51e767102
MD5 20fd7508df1959b957275ba5cfc2d130
BLAKE2b-256 c6c1a55928b6de3787867da0a24d5c1880da3599f126686aacd72de45a9ff3a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for basilisp_nrepl_async-0.1.1.tar.gz:

Publisher: release.yaml on ikappaki/basilisp-nrepl-async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file basilisp_nrepl_async-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for basilisp_nrepl_async-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ddc62f77bbaa4f5a051a434a792fd2ac3225d85b2876ae8c90df8a884a52690c
MD5 ee803e45975fe24add2b67556dc5c7a2
BLAKE2b-256 7ac87c13c9d11400db797c7fbdfd0e8e0fb5abffde99ff4e72515f41fa8d679c

See more details on using hashes here.

Provenance

The following attestation bundles were made for basilisp_nrepl_async-0.1.1-py3-none-any.whl:

Publisher: release.yaml on ikappaki/basilisp-nrepl-async

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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