@@ -932,59 +932,59 @@ public Task AddInitScriptAsync(string script, string scriptPath)
932
932
} ) ;
933
933
934
934
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
935
- public Task RouteAsync ( string url , Func < IRoute , Task > handler , PageRouteOptions options = null )
936
- => RouteAsync ( new Regex ( Context . CombineUrlWithBase ( url ) . GlobToRegex ( ) ) , null , handler , options ) ;
935
+ public Task RouteAsync ( string globMatch , Func < IRoute , Task > handler , PageRouteOptions options = null )
936
+ => RouteAsync ( globMatch , null , null , handler , options ) ;
937
937
938
938
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
939
- public Task RouteAsync ( string url , Action < IRoute > handler , PageRouteOptions options = null )
940
- => RouteAsync ( new Regex ( Context . CombineUrlWithBase ( url ) . GlobToRegex ( ) ) , null , handler , options ) ;
939
+ public Task RouteAsync ( string globMatch , Action < IRoute > handler , PageRouteOptions options = null )
940
+ => RouteAsync ( globMatch , null , null , handler , options ) ;
941
941
942
942
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
943
- public Task RouteAsync ( Regex url , Action < IRoute > handler , PageRouteOptions options = null )
944
- => RouteAsync ( url , null , handler , options ) ;
943
+ public Task RouteAsync ( Regex reMatch , Action < IRoute > handler , PageRouteOptions options = null )
944
+ => RouteAsync ( null , reMatch , null , handler , options ) ;
945
945
946
946
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
947
- public Task RouteAsync ( Regex url , Func < IRoute , Task > handler , PageRouteOptions options = null )
948
- => RouteAsync ( url , null , handler , options ) ;
947
+ public Task RouteAsync ( Regex reMatch , Func < IRoute , Task > handler , PageRouteOptions options = null )
948
+ => RouteAsync ( null , reMatch , null , handler , options ) ;
949
949
950
950
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
951
- public Task RouteAsync ( Func < string , bool > url , Action < IRoute > handler , PageRouteOptions options = null )
952
- => RouteAsync ( null , url , handler , options ) ;
951
+ public Task RouteAsync ( Func < string , bool > funcMatch , Action < IRoute > handler , PageRouteOptions options = null )
952
+ => RouteAsync ( null , null , funcMatch , handler , options ) ;
953
953
954
954
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
955
- public Task RouteAsync ( Func < string , bool > url , Func < IRoute , Task > handler , PageRouteOptions options = null )
956
- => RouteAsync ( null , url , handler , options ) ;
955
+ public Task RouteAsync ( Func < string , bool > funcMatch , Func < IRoute , Task > handler , PageRouteOptions options = null )
956
+ => RouteAsync ( null , null , funcMatch , handler , options ) ;
957
957
958
958
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
959
959
public async Task UnrouteAllAsync ( PageUnrouteAllOptions options = default )
960
960
{
961
- await UnrouteInternalAsync ( _routes , new ( ) , options ? . Behavior ) . ConfigureAwait ( false ) ;
961
+ await UnrouteInternalAsync ( _routes , [ ] , options ? . Behavior ) . ConfigureAwait ( false ) ;
962
962
DisposeHarRouters ( ) ;
963
963
}
964
964
965
965
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
966
- public Task UnrouteAsync ( string urlString , Action < IRoute > handler )
967
- => UnrouteAsync ( new Regex ( Context . CombineUrlWithBase ( urlString ) . GlobToRegex ( ) ) , null , handler ) ;
966
+ public Task UnrouteAsync ( string globMatch , Action < IRoute > handler )
967
+ => UnrouteAsync ( globMatch , null , null , handler ) ;
968
968
969
969
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
970
- public Task UnrouteAsync ( string urlString , Func < IRoute , Task > handler )
971
- => UnrouteAsync ( new Regex ( Context . CombineUrlWithBase ( urlString ) . GlobToRegex ( ) ) , null , handler ) ;
970
+ public Task UnrouteAsync ( string globMatch , Func < IRoute , Task > handler )
971
+ => UnrouteAsync ( globMatch , null , null , handler ) ;
972
972
973
973
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
974
- public Task UnrouteAsync ( Regex urlString , Action < IRoute > handler )
975
- => UnrouteAsync ( urlString , null , handler ) ;
974
+ public Task UnrouteAsync ( Regex reMatch , Action < IRoute > handler )
975
+ => UnrouteAsync ( null , reMatch , null , handler ) ;
976
976
977
977
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
978
- public Task UnrouteAsync ( Regex urlString , Func < IRoute , Task > handler )
979
- => UnrouteAsync ( urlString , null , handler ) ;
978
+ public Task UnrouteAsync ( Regex reMatch , Func < IRoute , Task > handler )
979
+ => UnrouteAsync ( null , reMatch , null , handler ) ;
980
980
981
981
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
982
- public Task UnrouteAsync ( Func < string , bool > urlFunc , Action < IRoute > handler )
983
- => UnrouteAsync ( null , urlFunc , handler ) ;
982
+ public Task UnrouteAsync ( Func < string , bool > funcMatch , Action < IRoute > handler )
983
+ => UnrouteAsync ( null , null , funcMatch , handler ) ;
984
984
985
985
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
986
- public Task UnrouteAsync ( Func < string , bool > urlFunc , Func < IRoute , Task > handler )
987
- => UnrouteAsync ( null , urlFunc , handler ) ;
986
+ public Task UnrouteAsync ( Func < string , bool > funcMatch , Func < IRoute , Task > handler )
987
+ => UnrouteAsync ( null , null , funcMatch , handler ) ;
988
988
989
989
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
990
990
public Task WaitForLoadStateAsync ( LoadState ? state = default , PageWaitForLoadStateOptions options = default )
@@ -1235,11 +1235,16 @@ internal void OnFrameNavigated(Frame frame)
1235
1235
1236
1236
internal void FirePageError ( string error ) => PageError ? . Invoke ( this , error ) ;
1237
1237
1238
- private Task RouteAsync ( Regex urlRegex , Func < string , bool > urlFunc , Delegate handler , PageRouteOptions options )
1238
+ private Task RouteAsync ( string globMatch , Regex reMatch , Func < string , bool > funcMatch , Delegate handler , PageRouteOptions options )
1239
1239
=> RouteAsync ( new ( )
1240
1240
{
1241
- Regex = urlRegex ,
1242
- Function = urlFunc ,
1241
+ urlMatcher = new URLMatch ( )
1242
+ {
1243
+ glob = globMatch ,
1244
+ re = reMatch ,
1245
+ func = funcMatch ,
1246
+ baseURL = Context . Options . BaseURL ,
1247
+ } ,
1243
1248
Handler = handler ,
1244
1249
Times = options ? . Times ,
1245
1250
} ) ;
@@ -1250,23 +1255,22 @@ private Task RouteAsync(RouteHandler setting)
1250
1255
return UpdateInterceptionAsync ( ) ;
1251
1256
}
1252
1257
1253
- private Task UnrouteAsync ( Regex urlRegex , Func < string , bool > urlFunc , Delegate handler = null )
1254
- => UnrouteAsync ( new ( )
1255
- {
1256
- Function = urlFunc ,
1257
- Regex = urlRegex ,
1258
- Handler = handler ,
1259
- } ) ;
1260
-
1261
- private Task UnrouteAsync ( RouteHandler setting )
1258
+ private async Task UnrouteAsync ( string globMatch , Regex reMatch , Func < string , bool > funcMatch , Delegate handler )
1262
1259
{
1263
- var newRoutes = new List < RouteHandler > ( ) ;
1264
- newRoutes . AddRange ( _routes . Where ( r =>
1265
- ( setting . Regex != null && ! ( r . Regex == setting . Regex || ( r . Regex . ToString ( ) == setting . Regex . ToString ( ) && r . Regex . Options == setting . Regex . Options ) ) ) ||
1266
- ( setting . Function != null && r . Function != setting . Function ) ||
1267
- ( setting . Handler != null && r . Handler != setting . Handler ) ) ) ;
1268
- _routes = newRoutes ;
1269
- return UpdateInterceptionAsync ( ) ;
1260
+ var removed = new List < RouteHandler > ( ) ;
1261
+ var remaining = new List < RouteHandler > ( ) ;
1262
+ foreach ( var routeHandler in _routes )
1263
+ {
1264
+ if ( routeHandler . urlMatcher . Equals ( globMatch , reMatch , funcMatch , Context . Options . BaseURL ) && ( handler == null || routeHandler . Handler == handler ) )
1265
+ {
1266
+ removed . Add ( routeHandler ) ;
1267
+ }
1268
+ else
1269
+ {
1270
+ remaining . Add ( routeHandler ) ;
1271
+ }
1272
+ }
1273
+ await UnrouteInternalAsync ( removed , remaining , UnrouteBehavior . Default ) . ConfigureAwait ( false ) ;
1270
1274
}
1271
1275
1272
1276
private async Task UnrouteInternalAsync ( List < RouteHandler > removed , List < RouteHandler > remaining , UnrouteBehavior ? behavior )
@@ -1277,7 +1281,7 @@ private async Task UnrouteInternalAsync(List<RouteHandler> removed, List<RouteHa
1277
1281
{
1278
1282
return ;
1279
1283
}
1280
- var tasks = removed . Select ( routeHandler => routeHandler . StopAsync ( ( UnrouteBehavior ) behavior ) ) ;
1284
+ var tasks = removed . Select ( routeHandler => routeHandler . StopAsync ( behavior . Value ) ) ;
1281
1285
await Task . WhenAll ( tasks ) . ConfigureAwait ( false ) ;
1282
1286
}
1283
1287
@@ -1317,17 +1321,14 @@ private void Channel_BindingCall(object sender, BindingCall bindingCall)
1317
1321
private async Task OnRouteAsync ( Route route )
1318
1322
{
1319
1323
route . _context = Context ;
1320
- var routeHandlers = _routes . ToArray ( ) ;
1321
- foreach ( var routeHandler in routeHandlers )
1324
+ foreach ( var routeHandler in _routes . ToArray ( ) )
1322
1325
{
1323
1326
// If the page was closed we stall all requests right away.
1324
1327
if ( CloseWasCalled || Context . CloseWasCalled )
1325
1328
{
1326
1329
return ;
1327
1330
}
1328
- var matches = ( routeHandler . Regex ? . IsMatch ( route . Request . Url ) == true ) ||
1329
- ( routeHandler . Function ? . Invoke ( route . Request . Url ) == true ) ;
1330
- if ( ! matches )
1331
+ if ( ! routeHandler . Matches ( route . Request . Url ) )
1331
1332
{
1332
1333
continue ;
1333
1334
}
@@ -1578,7 +1579,7 @@ public async Task RemoveLocatorHandlerAsync(ILocator locator)
1578
1579
[ "uid" ] = uid ,
1579
1580
} ) . ConfigureAwait ( false ) ;
1580
1581
}
1581
- catch ( System . Exception )
1582
+ catch ( Exception )
1582
1583
{
1583
1584
// Ignore
1584
1585
}
@@ -1602,12 +1603,12 @@ private Task RouteWebSocketAsync(string globMatch, Regex urlRegex, Func<string,
1602
1603
{
1603
1604
_webSocketRoutes . Insert ( 0 , new WebSocketRouteHandler ( )
1604
1605
{
1605
- URL = new URLMatch ( )
1606
+ urlMatcher = new URLMatch ( )
1606
1607
{
1607
- BaseURL = Context . Options . BaseURL ,
1608
- globMatch = globMatch ,
1609
- reMatch = urlRegex ,
1610
- funcMatch = urlFunc ,
1608
+ baseURL = Context . Options . BaseURL ,
1609
+ glob = globMatch ,
1610
+ re = urlRegex ,
1611
+ func = urlFunc ,
1611
1612
} ,
1612
1613
Handler = handler ,
1613
1614
} ) ;
0 commit comments