spacejam / seaslug

scraps of a potential language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

before reading further, it is recommended that you understand how awesome sea slugs are.

seaslug

A terse interpreted functional linear typed actor language for building low-defect performant stateful distributed systems.

module(my_http3_counter).
behavior(h3).

state(counter: u64).

# expected handler cases for http 3.0
on(state, data, connection, stream_id, body) ->
  state.counter += 1,
  h3.respond(state.counter),
  state;
on(state, _, _, _, _) ->
  state.
some additional buzzwords for your enjoyment

contracts, actors, software transactional memory, io_uring, interpreters and futamura projections, structure-aware fuzzing, reduced order model checking, discrete event simulation.

read and write less code. test and specify more code.

very much in the pre-prototype research stage.

seaslug does not aim to excel at
  • building your own data structures (write this in Rust and use + test it from seaslug)
  • intensive numerical processing (write this in Rust and use + test it from seaslug)
motivation

I hope to create systems that can be forgotten in the way that an if-conditional can be forgotten, or the way that SQLite can be forgotten. When things match our expectations, we do not need to burden our active minds with their complexity. I hope to be part of communities that are not fixated on the problems of a programming language itself, but by the fascinating complexity of reality which the programmer is enabled by a language to be at play with.

Engineers (myself included) are constantly running into the same traps over and over again. A huge number of problems boil down to the simple fact that we write a lot of code that is never actually executed while we are developing it.

I've talked about this again and again, but there are two particularly interesting excerpts from the paper Simple Testing Can Prevent Most Critical Failures: An Analysis of Production Failures in Distributed Data-intensive Systems that I feel a language should assist a programmer in addressing:

almost all (92%) of the catastrophic system failures
are the result of incorrect handling of non-fatal errors
explicitly signaled in software.

That is, we tend to write error handling code that is broken.

in 58% of the catastrophic failures, the underlying
faults could easily have been detected through simple
testing of error handling code.

That is, if the error handling code had been tested in even a rudimentary way, the problems that caused the system failure would likely have been detected.

Most of our problems are the kinds of problems that require some sort of fault injection if we want to find them before reality fault injects them without our consent while they are running in production. While it is possible in many cases to avoid a growing body of defects through interesting type systems, the effort required to thoroughly specify correctness properties of many systems is made more difficult by the challenging process required to determine what the correct specification of the program actually is.

I would like to have a language that is lightweight to initially write, but that allows rich specifications to be incorporated over time as the programmer learns through the built-in model checking functionality to bolt things down more and more through an interactive process.

influences
  • Erlang is among the most elegant programming languages for building reliable distributed systems in popular use today. It has a variety of features that strongly contribute to a feeling of lightness while writing programs. Over time, the Erlang community has engineered some incredibly powerful testing tools such as PULSE, Conquerror, CutEr, and several high-quality property testing frameworks that have seen tremendous success in creating robust distributed systems.
  • Ada SPARK combines a built-in verification toolchain with rich contract specification capabilities and the ability to disable various language features that tend to increase the costs of verification. Ada and SPARK have seen great success in the safety-critical domain due to several features that ultimately make the software understandable by humans and the tools we have available for assisting us in the understanding process.
  • The P language is a language with first-class state-machine support, which in many ways feels like what would happen if TLA+ were to become an actual programming language.
  • The Dafny language is a language that leans into the amazing capabilities of z3 to prove a powerful set of constraints at compile-time.
  • The Bologna Optimal Higher-order Machine (BOHM) The BOHM is an implementation of a lazy term reduction strategy sketched out in the book "The Optimal Implementation of Functional Programming Languages" by Andrea Asperti and Stefano Guerrini that discusses interesting applications of linear logic to computation.
  • Celf's nondeterminism and interesting applications of linear logic.
  • Constraint Handling Rules's verification opportunities
  • Prolog's declarative debugging, tables, proof capabilities
  • Total Functional Programming's restrictions on recursion and looping
  • ivy
prospective features

This project is still very much in the prospective research phase where I'm trying to understand which of these features may not compose well with the others. That said, here are some of the bits of functionality that I am interested in:

  • erlang's terseness, behaviors, focus on immutable message passing, explicit supervisor hierarchies, pattern matching, binary parsing capabilities
  • built-in fault injection, fuzzing, model checking (with built-in linearizability-aware history validator), network simulation, concurrent interleaving exploration, ALICE-like filesystem action verification
  • typed actors running pure state transformation functions using inputs provided by a high performance IO engine
  • immutable messaging for unidirectional communication
  • optimistic STM for modifying shared state in a safe way
  • escape hatch: easy calling of Rust functions similar to Erlang NIFs and ports
  • the ability to reason about termination (in some contexts), value ranges or other invariants at compile-time inspired by Dafny
  • a runtime built from the beginning to take advantage of io_uring/IOCP, and generally paying attention to modern scheduling research
    • the runtime tracks system resource utilization and saturation
    • the default server behavior aims to maximize utilization while minimizing saturation, prioritizing writes before reads before accepts for sockets to keep in-flight work at an appropriate level for avoiding adverse saturation.
    • infers contention causality encountered in the optimistic state layer and learns to step in as a traffic director when a pessimistic approach becomes necessary to avoid contention and wasted effort that leads to system saturation, letting users avoid thinking about contention.
  • leans into linear logic to enforce error handling in well-specified hierarchies, similar to Erlang supervisors
  • interpreter-first, but the interpreter itself aims to compile quickly so you can produce static optimized native binaries (something something Futamura something...)
  • built-in first-class fault injection, fuzzing, network simulation, model-based testing, and concurrent interleaving exploration
  • rich built-in data structures, first-class json support, first-class binary parsing support
seaslug is written in Rust and takes advantage of things like
  • io_uring
  • simdjson
  • sled
  • software transactional memory
  • http3
resources I'm studying while experimenting with this

About

scraps of a potential language


Languages

Language:Rust 100.0%