@@ -87,7 +87,7 @@ object StaticDsl {
87
87
val / = literal(" /" )
88
88
}
89
89
90
- abstract class RouteCommon [R [X ] <: RouteCommon [R , X ], A ] {
90
+ trait RouteCommon [R [X ] <: RouteCommon [R , X ], A ] {
91
91
92
92
def parseThen (f : Option [A ] => Option [A ]): R [A ]
93
93
@@ -159,7 +159,7 @@ object StaticDsl {
159
159
// val g = p.matcher("").groupCount
160
160
// if (g != matchGroups)
161
161
// sys.error(s"Error in regex: /${p.pattern}/. Expected $matchGroups match groups but detected $g.")
162
- new Route (p, m => parse(i => m.group(i + 1 )), a => Path (build(a)))
162
+ Route .forPattern (p, m => parse(i => m.group(i + 1 )), a => Path (build(a)))
163
163
}
164
164
}
165
165
@@ -192,30 +192,28 @@ object StaticDsl {
192
192
}
193
193
194
194
/**
195
- * A complete route .
195
+ * A `Route` translates a `Path` into an instance of model `A` and vice versa .
196
196
*/
197
- final class Route [A ](pattern : Pattern ,
198
- parseFn : Matcher => Option [A ],
199
- buildFn : A => Path ) extends RouteCommon [Route , A ] with RouterMacros .ForRoute [A ] {
200
- override def toString =
201
- s " Route( $pattern) "
202
-
197
+ case class Route [A ](parse : Path => Option [A ], pathFor : A => Path ) extends RouteCommon [Route , A ] {
203
198
override def parseThen (f : Option [A ] => Option [A ]): Route [A ] =
204
- new Route (pattern, f compose parseFn, buildFn )
199
+ Route (f compose parse, pathFor )
205
200
206
201
override def pmap [B ](b : A => Option [B ])(a : B => A ): Route [B ] =
207
- new Route (pattern, parseFn(_) flatMap b, buildFn compose a)
208
-
209
- def parse (path : Path ): Option [A ] = {
210
- val m = pattern.matcher(path.value)
211
- if (m.matches)
212
- parseFn(m)
213
- else
214
- None
215
- }
202
+ Route (parse(_) flatMap b, pathFor compose a)
203
+ }
216
204
217
- def pathFor (a : A ): Path =
218
- buildFn(a)
205
+ object Route {
206
+ def forPattern [A ](pattern : Pattern , parseFn : Matcher => Option [A ], buildFn : A => Path ): Route [A ] =
207
+ new Route (
208
+ p => {
209
+ val m = pattern.matcher(p.value)
210
+ if (m.matches)
211
+ parseFn(m)
212
+ else
213
+ None
214
+ },
215
+ buildFn
216
+ )
219
217
}
220
218
221
219
// ===================================================================================================================
0 commit comments