@@ -73,7 +73,7 @@ config_data! {
73
73
/// Warm up caches on project load.
74
74
cachePriming_enable: bool = true ,
75
75
/// How many worker threads to handle priming caches. The default `0` means to pick automatically.
76
- cachePriming_numThreads: ParallelCachePrimingNumThreads = 0u8 ,
76
+ cachePriming_numThreads: NumThreads = NumThreads :: Physical ,
77
77
78
78
/// Pass `--all-targets` to cargo invocation.
79
79
cargo_allTargets: bool = true ,
@@ -583,7 +583,7 @@ config_data! {
583
583
notifications_unindexedProject: bool = false ,
584
584
585
585
/// How many worker threads in the main loop. The default `null` means to pick automatically.
586
- numThreads: Option <usize > = None ,
586
+ numThreads: Option <NumThreads > = None ,
587
587
588
588
/// Expand attribute macros. Requires `#rust-analyzer.procMacro.enable#` to be set.
589
589
procMacro_attributes_enable: bool = true ,
@@ -968,8 +968,6 @@ macro_rules! try_or_def {
968
968
} ;
969
969
}
970
970
971
- type ParallelCachePrimingNumThreads = u8 ;
972
-
973
971
#[ derive( Debug , Clone , Eq , PartialEq ) ]
974
972
pub enum LinkedProject {
975
973
ProjectManifest ( ProjectManifest ) ,
@@ -2095,15 +2093,22 @@ impl Config {
2095
2093
}
2096
2094
}
2097
2095
2098
- pub fn prime_caches_num_threads ( & self ) -> u8 {
2099
- match * self . cachePriming_numThreads ( ) {
2100
- 0 => num_cpus:: get_physical ( ) . try_into ( ) . unwrap_or ( u8:: MAX ) ,
2101
- n => n,
2096
+ pub fn prime_caches_num_threads ( & self ) -> usize {
2097
+ match self . cachePriming_numThreads ( ) {
2098
+ NumThreads :: Concrete ( 0 ) | NumThreads :: Physical => num_cpus:: get_physical ( ) ,
2099
+ & NumThreads :: Concrete ( n) => n,
2100
+ NumThreads :: Logical => num_cpus:: get ( ) ,
2102
2101
}
2103
2102
}
2104
2103
2105
2104
pub fn main_loop_num_threads ( & self ) -> usize {
2106
- self . numThreads ( ) . unwrap_or ( num_cpus:: get_physical ( ) )
2105
+ match self . numThreads ( ) {
2106
+ Some ( NumThreads :: Concrete ( 0 ) ) | None | Some ( NumThreads :: Physical ) => {
2107
+ num_cpus:: get_physical ( )
2108
+ }
2109
+ & Some ( NumThreads :: Concrete ( n) ) => n,
2110
+ Some ( NumThreads :: Logical ) => num_cpus:: get ( ) ,
2111
+ }
2107
2112
}
2108
2113
2109
2114
pub fn typing_autoclose_angle ( & self ) -> bool {
@@ -2198,51 +2203,6 @@ macro_rules! create_bool_or_string_serde {
2198
2203
create_bool_or_string_serde ! ( true_or_always<true , "always" >) ;
2199
2204
create_bool_or_string_serde ! ( false_or_never<false , "never" >) ;
2200
2205
2201
- macro_rules! named_unit_variant {
2202
- ( $variant: ident) => {
2203
- pub ( super ) mod $variant {
2204
- pub ( in super :: super ) fn deserialize<' de, D >( deserializer: D ) -> Result <( ) , D :: Error >
2205
- where
2206
- D : serde:: Deserializer <' de>,
2207
- {
2208
- struct V ;
2209
- impl <' de> serde:: de:: Visitor <' de> for V {
2210
- type Value = ( ) ;
2211
- fn expecting( & self , f: & mut std:: fmt:: Formatter <' _>) -> std:: fmt:: Result {
2212
- f. write_str( concat!( "\" " , stringify!( $variant) , "\" " ) )
2213
- }
2214
- fn visit_str<E : serde:: de:: Error >( self , value: & str ) -> Result <Self :: Value , E > {
2215
- if value == stringify!( $variant) {
2216
- Ok ( ( ) )
2217
- } else {
2218
- Err ( E :: invalid_value( serde:: de:: Unexpected :: Str ( value) , & self ) )
2219
- }
2220
- }
2221
- }
2222
- deserializer. deserialize_str( V )
2223
- }
2224
- pub ( in super :: super ) fn serialize<S >( serializer: S ) -> Result <S :: Ok , S :: Error >
2225
- where
2226
- S : serde:: Serializer ,
2227
- {
2228
- serializer. serialize_str( stringify!( $variant) )
2229
- }
2230
- }
2231
- } ;
2232
- }
2233
-
2234
- mod unit_v {
2235
- named_unit_variant ! ( all) ;
2236
- named_unit_variant ! ( skip_trivial) ;
2237
- named_unit_variant ! ( mutable) ;
2238
- named_unit_variant ! ( reborrow) ;
2239
- named_unit_variant ! ( fieldless) ;
2240
- named_unit_variant ! ( with_block) ;
2241
- named_unit_variant ! ( decimal) ;
2242
- named_unit_variant ! ( hexadecimal) ;
2243
- named_unit_variant ! ( both) ;
2244
- }
2245
-
2246
2206
#[ derive( Serialize , Deserialize , Debug , Clone , Copy , PartialEq ) ]
2247
2207
#[ serde( rename_all = "snake_case" ) ]
2248
2208
#[ derive( Default ) ]
@@ -2357,10 +2317,10 @@ pub(crate) enum CallableCompletionDef {
2357
2317
}
2358
2318
2359
2319
#[ derive( Serialize , Deserialize , Debug , Clone ) ]
2360
- #[ serde( untagged ) ]
2320
+ #[ serde( rename_all = "snake_case" ) ]
2361
2321
enum CargoFeaturesDef {
2362
- #[ serde( with = "unit_v::all" ) ]
2363
2322
All ,
2323
+ #[ serde( untagged) ]
2364
2324
Selected ( Vec < String > ) ,
2365
2325
}
2366
2326
@@ -2382,25 +2342,27 @@ enum InvocationLocation {
2382
2342
}
2383
2343
2384
2344
#[ derive( Serialize , Deserialize , Debug , Clone ) ]
2385
- #[ serde( untagged ) ]
2345
+ #[ serde( rename_all = "snake_case" ) ]
2386
2346
enum LifetimeElisionDef {
2347
+ SkipTrivial ,
2387
2348
#[ serde( with = "true_or_always" ) ]
2349
+ #[ serde( untagged) ]
2388
2350
Always ,
2389
2351
#[ serde( with = "false_or_never" ) ]
2352
+ #[ serde( untagged) ]
2390
2353
Never ,
2391
- #[ serde( with = "unit_v::skip_trivial" ) ]
2392
- SkipTrivial ,
2393
2354
}
2394
2355
2395
2356
#[ derive( Serialize , Deserialize , Debug , Clone ) ]
2396
- #[ serde( untagged ) ]
2357
+ #[ serde( rename_all = "snake_case" ) ]
2397
2358
enum ClosureReturnTypeHintsDef {
2359
+ WithBlock ,
2398
2360
#[ serde( with = "true_or_always" ) ]
2361
+ #[ serde( untagged) ]
2399
2362
Always ,
2400
2363
#[ serde( with = "false_or_never" ) ]
2364
+ #[ serde( untagged) ]
2401
2365
Never ,
2402
- #[ serde( with = "unit_v::with_block" ) ]
2403
- WithBlock ,
2404
2366
}
2405
2367
2406
2368
#[ derive( Serialize , Deserialize , Debug , Clone ) ]
@@ -2413,36 +2375,39 @@ enum ClosureStyle {
2413
2375
}
2414
2376
2415
2377
#[ derive( Serialize , Deserialize , Debug , Clone ) ]
2416
- #[ serde( untagged ) ]
2378
+ #[ serde( rename_all = "snake_case" ) ]
2417
2379
enum ReborrowHintsDef {
2380
+ Mutable ,
2418
2381
#[ serde( with = "true_or_always" ) ]
2382
+ #[ serde( untagged) ]
2419
2383
Always ,
2420
2384
#[ serde( with = "false_or_never" ) ]
2385
+ #[ serde( untagged) ]
2421
2386
Never ,
2422
- #[ serde( with = "unit_v::mutable" ) ]
2423
- Mutable ,
2424
2387
}
2425
2388
2426
2389
#[ derive( Serialize , Deserialize , Debug , Clone ) ]
2427
- #[ serde( untagged ) ]
2390
+ #[ serde( rename_all = "snake_case" ) ]
2428
2391
enum AdjustmentHintsDef {
2392
+ Reborrow ,
2429
2393
#[ serde( with = "true_or_always" ) ]
2394
+ #[ serde( untagged) ]
2430
2395
Always ,
2431
2396
#[ serde( with = "false_or_never" ) ]
2397
+ #[ serde( untagged) ]
2432
2398
Never ,
2433
- #[ serde( with = "unit_v::reborrow" ) ]
2434
- Reborrow ,
2435
2399
}
2436
2400
2437
2401
#[ derive( Serialize , Deserialize , Debug , Clone ) ]
2438
- #[ serde( untagged ) ]
2402
+ #[ serde( rename_all = "snake_case" ) ]
2439
2403
enum DiscriminantHintsDef {
2404
+ Fieldless ,
2440
2405
#[ serde( with = "true_or_always" ) ]
2406
+ #[ serde( untagged) ]
2441
2407
Always ,
2442
2408
#[ serde( with = "false_or_never" ) ]
2409
+ #[ serde( untagged) ]
2443
2410
Never ,
2444
- #[ serde( with = "unit_v::fieldless" ) ]
2445
- Fieldless ,
2446
2411
}
2447
2412
2448
2413
#[ derive( Serialize , Deserialize , Debug , Clone ) ]
@@ -2466,9 +2431,11 @@ enum FilesWatcherDef {
2466
2431
#[ serde( rename_all = "snake_case" ) ]
2467
2432
enum ImportPrefixDef {
2468
2433
Plain ,
2469
- #[ serde( alias = "self" ) ]
2434
+ #[ serde( rename = "self" ) ]
2435
+ #[ serde( alias = "by_self" ) ]
2470
2436
BySelf ,
2471
- #[ serde( alias = "crate" ) ]
2437
+ #[ serde( rename = "crate" ) ]
2438
+ #[ serde( alias = "by_crate" ) ]
2472
2439
ByCrate ,
2473
2440
}
2474
2441
@@ -2495,13 +2462,9 @@ enum WorkspaceSymbolSearchKindDef {
2495
2462
2496
2463
#[ derive( Serialize , Deserialize , Debug , Copy , Clone , PartialEq ) ]
2497
2464
#[ serde( rename_all = "snake_case" ) ]
2498
- #[ serde( untagged) ]
2499
2465
enum MemoryLayoutHoverRenderKindDef {
2500
- #[ serde( with = "unit_v::decimal" ) ]
2501
2466
Decimal ,
2502
- #[ serde( with = "unit_v::hexadecimal" ) ]
2503
2467
Hexadecimal ,
2504
- #[ serde( with = "unit_v::both" ) ]
2505
2468
Both ,
2506
2469
}
2507
2470
@@ -2524,6 +2487,15 @@ pub enum TargetDirectory {
2524
2487
Directory ( Utf8PathBuf ) ,
2525
2488
}
2526
2489
2490
+ #[ derive( Serialize , Deserialize , Debug , Clone , PartialEq ) ]
2491
+ #[ serde( rename_all = "snake_case" ) ]
2492
+ pub enum NumThreads {
2493
+ Physical ,
2494
+ Logical ,
2495
+ #[ serde( untagged) ]
2496
+ Concrete ( usize ) ,
2497
+ }
2498
+
2527
2499
macro_rules! _default_val {
2528
2500
( @verbatim: $s: literal, $ty: ty) => { {
2529
2501
let default_: $ty = serde_json:: from_str( & $s) . unwrap( ) ;
@@ -2776,6 +2748,10 @@ impl FullConfigInput {
2776
2748
ClientConfigInput :: schema_fields ( & mut fields) ;
2777
2749
fields. sort_by_key ( |& ( x, ..) | x) ;
2778
2750
fields
2751
+ . iter ( )
2752
+ . tuple_windows ( )
2753
+ . for_each ( |( a, b) | assert ! ( a. 0 != b. 0 , "{a:?} duplicate field" ) ) ;
2754
+ fields
2779
2755
}
2780
2756
2781
2757
fn json_schema ( ) -> serde_json:: Value {
@@ -3034,11 +3010,6 @@ fn field_props(field: &str, ty: &str, doc: &[&str], default: &str) -> serde_json
3034
3010
"Search for all symbols kinds."
3035
3011
] ,
3036
3012
} ,
3037
- "ParallelCachePrimingNumThreads" => set ! {
3038
- "type" : "number" ,
3039
- "minimum" : 0 ,
3040
- "maximum" : 255
3041
- } ,
3042
3013
"LifetimeElisionDef" => set ! {
3043
3014
"type" : "string" ,
3044
3015
"enum" : [
@@ -3260,7 +3231,44 @@ fn field_props(field: &str, ty: &str, doc: &[&str], default: &str) -> serde_json
3260
3231
} ,
3261
3232
] ,
3262
3233
} ,
3263
- _ => panic ! ( "missing entry for {ty}: {default}" ) ,
3234
+ "NumThreads" => set ! {
3235
+ "anyOf" : [
3236
+ {
3237
+ "type" : "number" ,
3238
+ "minimum" : 0 ,
3239
+ "maximum" : 255
3240
+ } ,
3241
+ {
3242
+ "type" : "string" ,
3243
+ "enum" : [ "physical" , "logical" , ] ,
3244
+ "enumDescriptions" : [
3245
+ "Use the number of physical cores" ,
3246
+ "Use the number of logical cores" ,
3247
+ ] ,
3248
+ } ,
3249
+ ] ,
3250
+ } ,
3251
+ "Option<NumThreads>" => set ! {
3252
+ "anyOf" : [
3253
+ {
3254
+ "type" : "null"
3255
+ } ,
3256
+ {
3257
+ "type" : "number" ,
3258
+ "minimum" : 0 ,
3259
+ "maximum" : 255
3260
+ } ,
3261
+ {
3262
+ "type" : "string" ,
3263
+ "enum" : [ "physical" , "logical" , ] ,
3264
+ "enumDescriptions" : [
3265
+ "Use the number of physical cores" ,
3266
+ "Use the number of logical cores" ,
3267
+ ] ,
3268
+ } ,
3269
+ ] ,
3270
+ } ,
3271
+ _ => panic ! ( "missing entry for {ty}: {default} (field {field})" ) ,
3264
3272
}
3265
3273
3266
3274
map. into ( )
@@ -3341,7 +3349,7 @@ mod tests {
3341
3349
. trim_start_matches ( '[' )
3342
3350
. trim_end_matches ( ']' )
3343
3351
. replace ( " " , " " )
3344
- . replace ( '\n' , "\n " )
3352
+ . replace ( '\n' , "\n " )
3345
3353
. trim_start_matches ( '\n' )
3346
3354
. trim_end ( )
3347
3355
. to_owned ( ) ;
0 commit comments