mirror of
https://github.com/metosin/reitit.git
synced 2025-12-21 18:11:12 +00:00
Extract lookup struct-generating code
This commit is contained in:
parent
c81dad4f94
commit
35656c3da6
1 changed files with 52 additions and 24 deletions
|
|
@ -165,14 +165,13 @@
|
|||
:compile (fn [[_ {:keys [handler]}] _] handler)
|
||||
:conflicts (partial throw-on-conflicts! path-conflicts-str)})
|
||||
|
||||
(defn linear-router
|
||||
"Creates a linear-router from resolved routes and optional
|
||||
expanded options. See [[router]] for available options"
|
||||
([compiled-routes]
|
||||
(linear-router compiled-routes {}))
|
||||
([compiled-routes opts]
|
||||
(let [names (find-names compiled-routes opts)
|
||||
[pl nl] (reduce
|
||||
(defn- linear-router-lookup-structs
|
||||
"Returns a 2-item vec of lookup structures.
|
||||
|
||||
The first is a vec of Routes.
|
||||
The second is a map of route names to lookup fns."
|
||||
[compiled-routes]
|
||||
(reduce
|
||||
(fn [[pl nl] [p {:keys [name] :as data} result]]
|
||||
(let [{:keys [path-params] :as route} (impl/create [p data result])
|
||||
f #(if-let [path (impl/path-for route %)]
|
||||
|
|
@ -180,7 +179,17 @@
|
|||
(->PartialMatch p data result % path-params))]
|
||||
[(conj pl route)
|
||||
(if name (assoc nl name f) nl)]))
|
||||
[[] {}] compiled-routes)
|
||||
[[] {}]
|
||||
compiled-routes))
|
||||
|
||||
(defn linear-router
|
||||
"Creates a linear-router from resolved routes and optional
|
||||
expanded options. See [[router]] for available options"
|
||||
([compiled-routes]
|
||||
(linear-router compiled-routes {}))
|
||||
([compiled-routes opts]
|
||||
(let [names (find-names compiled-routes opts)
|
||||
[pl nl] (linear-router-lookup-structs compiled-routes)
|
||||
lookup (impl/fast-map nl)
|
||||
routes (uncompile-routes compiled-routes)]
|
||||
^{:type ::router}
|
||||
|
|
@ -209,6 +218,21 @@
|
|||
(if-let [match (impl/fast-get lookup name)]
|
||||
(match (impl/path-params path-params))))))))
|
||||
|
||||
(defn- lookup-router-lookup-structs
|
||||
"Returns a 2-item vec of lookup structures.
|
||||
|
||||
The first is a map of paths to Matches.
|
||||
The second is a map of route names to Matches."
|
||||
[compiled-routes]
|
||||
(reduce
|
||||
(fn [[pl nl] [p {:keys [name] :as data} result]]
|
||||
[(assoc pl p (->Match p data result {} p))
|
||||
(if name
|
||||
(assoc nl name #(->Match p data result % p))
|
||||
nl)])
|
||||
[{} {}]
|
||||
compiled-routes))
|
||||
|
||||
(defn lookup-router
|
||||
"Creates a lookup-router from resolved routes and optional
|
||||
expanded options. See [[router]] for available options"
|
||||
|
|
@ -222,12 +246,7 @@
|
|||
{:wilds wilds
|
||||
:routes compiled-routes})))
|
||||
(let [names (find-names compiled-routes opts)
|
||||
[pl nl] (reduce
|
||||
(fn [[pl nl] [p {:keys [name] :as data} result]]
|
||||
[(assoc pl p (->Match p data result {} p))
|
||||
(if name
|
||||
(assoc nl name #(->Match p data result % p))
|
||||
nl)]) [{} {}] compiled-routes)
|
||||
[pl nl] (lookup-router-lookup-structs compiled-routes)
|
||||
data (impl/fast-map pl)
|
||||
lookup (impl/fast-map nl)
|
||||
routes (uncompile-routes compiled-routes)]
|
||||
|
|
@ -252,14 +271,13 @@
|
|||
(if-let [match (impl/fast-get lookup name)]
|
||||
(match (impl/path-params path-params))))))))
|
||||
|
||||
(defn segment-router
|
||||
"Creates a special prefix-tree style segment router from resolved routes and optional
|
||||
expanded options. See [[router]] for available options"
|
||||
([compiled-routes]
|
||||
(segment-router compiled-routes {}))
|
||||
([compiled-routes opts]
|
||||
(let [names (find-names compiled-routes opts)
|
||||
[pl nl] (reduce
|
||||
(defn- segment-router-lookup-structs
|
||||
"Returns a 2-item vec of lookup structures.
|
||||
|
||||
The first is a prefix-tree of segments and associated Matches.
|
||||
The second is a map of route names to Matches or PartialMatches."
|
||||
[compiled-routes]
|
||||
(reduce
|
||||
(fn [[pl nl] [p {:keys [name] :as data} result]]
|
||||
(let [{:keys [path-params] :as route} (impl/create [p data result])
|
||||
f #(if-let [path (impl/path-for route %)]
|
||||
|
|
@ -267,7 +285,17 @@
|
|||
(->PartialMatch p data result % path-params))]
|
||||
[(segment/insert pl p (->Match p data result nil nil))
|
||||
(if name (assoc nl name f) nl)]))
|
||||
[nil {}] compiled-routes)
|
||||
[nil {}]
|
||||
compiled-routes))
|
||||
|
||||
(defn segment-router
|
||||
"Creates a special prefix-tree style segment router from resolved routes and optional
|
||||
expanded options. See [[router]] for available options"
|
||||
([compiled-routes]
|
||||
(segment-router compiled-routes {}))
|
||||
([compiled-routes opts]
|
||||
(let [names (find-names compiled-routes opts)
|
||||
[pl nl] (segment-router-lookup-structs compiled-routes)
|
||||
lookup (impl/fast-map nl)
|
||||
routes (uncompile-routes compiled-routes)]
|
||||
^{:type ::router}
|
||||
|
|
|
|||
Loading…
Reference in a new issue