Event driven RPC between a Swift backend and a Clojurescript front end. Influenced by the Xi-editor.
Note: API is subject to change as I experiment using reax within my own application.
Here are some resources to help familiarise yourself with Native Modules for React Native, and the Xi-editor architecture:
Following Xi's design decisions:
- Separation into front-end and back-end modules
- Native UI
- Asynchronous operations
- Functional core, imperative shell
- Programming in data
The front end renders a UI derived from the events (facts) it has received. The front end should never block, and is modelled to be eventually consistent.
- This design plays to Clojure's strengths greatly, where data comes first!
- This design makes the limiting "single-threaded event loop" model of the JS runtime a bit easier to accept.
- This architecture leverages a reasonably expressive back end language (Swift) for its "imperative shell"
This project assumes you have a React Native project targetting ios
and a tool for building Clojurescript assets (eg shadow-cljs).
Your project needs to be able to support native modules. If you are using Expo, you will need to eject to ExpoKit.
Please check this example project for reference.
Reax ships with no transitive dependencies. The front end optionally depends on integrant, though you can use any library for managing app state.
Add this dependency to your projects deps.edn
file:
wavejumper/reax {:mvn/version "1.2.0"}
Add this dependency to your projects ios/Podfile
file:
pod 'RNReax', :git => 'https://github.com/wavejumper/RNReax', :tag => '1.2.0'
A Reax event looks like this:
["setFrequency" {:frequency 400}]
A Reax event can be dispatched from either Clojurescript or Swift, and are considered asynchronous.
Generally a dispatch event will originate from the front end (eg via user interaction) and the Reax Swift module will asynchronously perform the operation.
It is up to the end-user to define the semantics of the operation (eg if the event is idempotent). Reax simply provides the glue.
During transport, events are represented as JSON (conveniently, thanks to the codable protocols in Swift, and js/JSON
in JS). Ideally, a transit-json codable impl would be nicer for richer types.
The Swift type system defines the schema of available events and valid arguments an event has:
Anything Decodable
is a valid event id, so long as it also implements the ReaxRouter
protocol. An event id is generally represented as an enum encoded as a string.
enum SynthRouter: String, Codable, ReaxRouter {
typealias Context = SynthContext
typealias Result = SynthResult
case setFrequency
case startSynth
case stopSynth
func routeEvent() -> ((_ ctx: Context, _ from: Data) -> Either<Result, ReaxError>) {
switch self {
case .setFrequency:
return eventHandler(SetFrequncyHandler.self)
case .stopSynth:
return eventHandler(StopSynthHandler.self)
case .startSynth:
return eventHandler(StartSynthHandler.self)
}
}
}
In this example setFrequency
maps to the SetFrequencyHandler
(defined below).
eventHandler
is a helper fn that returns a closure that decodes, and invokes the event handler. This fn also neatly handles any deserialization errors.
The router is succinct for most use cases. The router should only care about matching event id's to event handlers.
Event handlers are represented with the ReaxHandler
protocol. Similar to event ids, anything that implements the Decodable
protocol is a valid handler. A handler is generally represented as a struct.
struct SetFrequncyHandler: Codable, ReaxHandler {
typealias Context = SynthContext
typealias Result = SynthResult
var frequency: Double
func invoke(ctx: Context) -> Either<Result, ReaxError> {
ctx.oscillator.frequency = frequency
return Either.left(ctx.status())
}
}
These are two typealias
arguments both ReaxRouter
and ReaxHandler
must provide to allow for customised context and results.
The Context
typealias allows the end user to define required components (eg, a database pool or some custom state) that will get passed to the handler's invoke
method.
Context
can be any data structure implementing the ReaxContext
protocol. They are generally structs.
struct SynthContext: ReaxContext {
var oscillator: AKOscillator
func state() -> ReaxContextState {
return ReaxContextState.started
}
}
The Result
typealias is the value the Reax module sends to the front end. It can be represented as anything Encodable
, and is generally a struct, or enum.
struct SynthResult: Codable {
var started: Bool
}
In the case of handling errors, the ReaxError
enum is returned to the user.
Finally, the ReaxEventEmitter
class is what the front end interacts with. This class is a subclass of RCTEventEmitter
.
A skeloton Reax class looks like this:
@objc(Synth)
class Synth: ReaxEventEmitter {
var ctx = SynthContext(oscillator: AKOscillator())
// This shouldn't have to be provided by impls, seems like there is an odd bug
// with debug builds of React Native...
override func supportedEvents() -> [String]! {
return [self.errorType(), self.resultType()]
}
@objc
func start() {
AudioKit.output = self.ctx.oscillator
try! AudioKit.start()
}
@objc
func stop() {
try! AudioKit.stop()
}
@objc(dispatch:args:)
func dispatch(id: NSString, args: NSString) {
self.invoke(SynthRouter.self, ctx: self.ctx, id: id as String, args: args as String)
}
}
This method gets called when the front end sends an event to the module.
The ReaxEventEmitter
class contains one useful method, channelFactory
for constructing 'channels' out of the modules concrete Result
type.
This can be used for dispatching results to the front end asynchronously, eg some event triggered by Key-Value Observing
A <ModuleName.m>
file will also have to be created, exposing the module to the front end:
#import "React/RCTBridgeModule.h"
#import "React/RCTEventEmitter.h"
@interface RCT_EXTERN_MODULE(Synth, RCTEventEmitter)
RCT_EXTERN_METHOD(start)
RCT_EXTERN_METHOD(stop)
RCT_EXTERN_METHOD(dispatch:(NSString *)id args:(NSString *)args)
@end
All ReaxEventEmitter
classes have to implement start
and stop
methods, which will be invoked from the front end when the user initializes the Reax module.
These two methods are how you manage the lifecycle of stateful Reax modules, eg setting up Context
.
This pattern means that both configuration and lifecycle management should come from a centralized location: your front-end (eg, via integrant).
If you need more custom dependency injection, you can always implement the RCTBridgeDelegate protocol
The reax.integrant
namespace provides integrant integration via the :reax/module
key.
Within your integrant config, you can define a Reax module like so:
(ns example
(:require [integrant.core :as ig]
[example.link :as link]
[reax.integrant])) ;; <-- require for :reax/module key
(defmethod ig/init-key :app/db [_ init-value]
(atom init-value))
(defn synth-result-handler
[db event]
(assoc db :synth/state event))
(defn synth-error-handler
[db event]
(js/console.warn "Synth error" (pr-str event))
db)
(defn wrap-db [db handler]
(fn [event]
(swap! db handler event)))
(defmethod ig/init-key :app/db-handler [_ {:keys [db handler]}]
(wrap-db db handler))
(defn config []
{;; The atom housing our application state.
:app/db {} ;; <--- initial app state
;; The result handler for our synth
[:app/db-handler :synth/result-handler] {:db (ig/ref :app/db)
:handler synth-result-handler}
;; The error handler for our synth
[:app/db-handler :synth/error-handler] {:db (ig/ref :app/db)
:handler synth-error-handler}
;; A reax module for our synth
[:reax/module :reax/synth] {:class-name "Synth" ;; <-- the objc class of our reax module
:result-handler (ig/ref :synth/result-handler)
:error-handler (ig/ref :synth/error-handler)}})
:reax/module
accepts three keys:
:class-name
: the name of the Reax objc class:result-handler
: a function that handles all Reax results:error-handler
: a function that handles all Reax errors
This is how you send events to your Reax module:
(require '[reax.core :as reax])
(reax/dispatch module "setFrequency" {:frequency 400})
All serialization will be taken care of!
- All Reax modules are singletons, because all Native Modules are singletons.
For neater dependency injection, it would be nice if the start
method had a way to pass in generic args to the component...
There is nothing in this codebase that ties it to just Clojurescript. Look to the :npm-module target in shadow-cljs and offer NPM package.
They would be good :)
If there is an easy way to template/automatically define the boilerplate-y <ModuleName.m>
RCT_EXTERN_MODULE
code that would be nice.
The result type was added as a way to avoid having the invoke
operation return meaningless voids everywhere.
To better represent the async nature of Reax, and if all mutations are generally something side-effectful, perhaps something like bow effects would be a good idea for richer types.
The ReaxError
enum isn't really extensible, and without higher kinded types, I'm not really sure of the best way to allow for better extensibility.
JSON transport makes for a convenient, and type safe API thanks to codable. RCTConvert allows for helper functions all accept a JSON value as input and map it to a native Objective-C type or class.
Investigate this as an alternative for performance reasons.