Rename src/jolt -> stdlib (the runtime-loaded layer; jolt-core stays the seed-baked layer) and update the loader / emit-image / doc paths. Drop dead code: the spike/ experiments, the duplicate clojuredocs-export.edn (json moves to tools/), the Janet-era jolt.http binding, and the orphaned persistent_vector.clj whose ns/path didn't even match. Strip porting residue from comments and docstrings across host/chez, jolt-core, stdlib, tests, and docs: internal issue ids, "Phase N" markers, and the "vs Janet" historical exposition, leaving present-tense descriptions and the real JVM-Clojure semantic contrasts. Same pass over the corpus suite labels. The seed is unchanged (docstrings/comments aren't emitted), so the self-host fixpoint and corpus are untouched. Port tools/spec_coverage.py off the dead janet probe to bin/joltc and regenerate coverage.md; drop the dead :host/janet rule from certify.clj and regenerate the conformance profile. Add docs/host-interop.md (the JVM shims and how to register your own host class from a library) and a writing-style note in CLAUDE.md. Stabilize the four racy concurrency corpus cases (future-cancel and agent send/send-off): give the future a sleeping body and the agent a slow action, so cancel reliably catches an in-flight future and deref reliably reads the pre-update snapshot. They certify deterministically now, so drop their :flaky allowlist entries and the orphaned legend.
98 lines
3.2 KiB
Clojure
98 lines
3.2 KiB
Clojure
; Copyright (c) Rich Hickey. All rights reserved.
|
|
; The use and distribution terms for this software are covered by the
|
|
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
|
|
; which can be found in the file epl-v10.html at the root of this distribution.
|
|
|
|
;; Ported from clojure.data (Stuart Halloway). The reference dispatches via the
|
|
;; EqualityPartition/Diff protocols extended over host types; Jolt uses a plain
|
|
;; equality-partition fn over its own predicates instead — same behaviour, no
|
|
;; host-type protocol plumbing.
|
|
(ns clojure.data
|
|
"Non-core data functions."
|
|
(:require [clojure.set :as set]))
|
|
|
|
(declare diff)
|
|
|
|
(defn- atom-diff [a b]
|
|
(if (= a b) [nil nil a] [a b nil]))
|
|
|
|
;; Convert an associative-by-numeric-index collection into an equivalent vector,
|
|
;; with nil for any missing keys.
|
|
(defn- vectorize [m]
|
|
(when (seq m)
|
|
(reduce
|
|
(fn [result [k v]] (assoc result k v))
|
|
(vec (repeat (apply max (keys m)) nil))
|
|
m)))
|
|
|
|
(defn- diff-associative-key
|
|
"Diff associative things a and b, comparing only the key k."
|
|
[a b k]
|
|
(let [va (get a k)
|
|
vb (get b k)
|
|
[a* b* ab] (diff va vb)
|
|
in-a (contains? a k)
|
|
in-b (contains? b k)
|
|
same (and in-a in-b
|
|
(or (not (nil? ab))
|
|
(and (nil? va) (nil? vb))))]
|
|
[(when (and in-a (or (not (nil? a*)) (not same))) {k a*})
|
|
(when (and in-b (or (not (nil? b*)) (not same))) {k b*})
|
|
(when same {k ab})]))
|
|
|
|
(defn- diff-associative
|
|
"Diff associative things a and b, comparing only keys in ks."
|
|
[a b ks]
|
|
(reduce
|
|
;; mapv (vector result) rather than the reference's (doall (map …)): the diff
|
|
;; triples are destructured positionally and a list with a nil middle element
|
|
;; mis-binds under jolt destructuring, whereas a vector indexes cleanly.
|
|
(fn [diff1 diff2] (mapv merge diff1 diff2))
|
|
[nil nil nil]
|
|
(mapv (partial diff-associative-key a b) ks)))
|
|
|
|
(defn- diff-sequential [a b]
|
|
(vec (mapv vectorize (diff-associative
|
|
(if (vector? a) a (vec a))
|
|
(if (vector? b) b (vec b))
|
|
(range (max (count a) (count b)))))))
|
|
|
|
(defn- diff-set [a b]
|
|
[(not-empty (set/difference a b))
|
|
(not-empty (set/difference b a))
|
|
(not-empty (set/intersection a b))])
|
|
|
|
(defn- equality-partition [x]
|
|
(cond
|
|
(nil? x) :atom
|
|
(map? x) :map
|
|
(set? x) :set
|
|
(sequential? x) :sequential
|
|
:else :atom))
|
|
|
|
(defn- diff-similar [a b]
|
|
((case (equality-partition a)
|
|
:atom atom-diff
|
|
:set diff-set
|
|
:sequential diff-sequential
|
|
:map (fn [a b] (diff-associative a b (set/union (keys a) (keys b)))))
|
|
a b))
|
|
|
|
(defn diff
|
|
"Recursively compares a and b, returning a tuple of
|
|
[things-only-in-a things-only-in-b things-in-both].
|
|
Comparison rules:
|
|
|
|
* For equal a and b, return [nil nil a].
|
|
* Maps are subdiffed where keys match and values differ.
|
|
* Sets are never subdiffed.
|
|
* All sequential things are treated as associative collections
|
|
by their indexes, with results returned as vectors.
|
|
* Everything else (including strings!) is treated as
|
|
an atom and compared for equality."
|
|
[a b]
|
|
(if (= a b)
|
|
[nil nil a]
|
|
(if (= (equality-partition a) (equality-partition b))
|
|
(diff-similar a b)
|
|
(atom-diff a b))))
|