2
2
3
3
import com .beust .jcommander .Parameter ;
4
4
import com .beust .jcommander .Parameters ;
5
- import fr .chuckame .marlinfw .configurator .InvalidUseException ;
6
5
import fr .chuckame .marlinfw .configurator .change .LineChange ;
7
6
import fr .chuckame .marlinfw .configurator .change .LineChangeFormatter ;
8
7
import fr .chuckame .marlinfw .configurator .change .LineChangeManager ;
9
8
import fr .chuckame .marlinfw .configurator .constant .Constant ;
10
9
import fr .chuckame .marlinfw .configurator .constant .ProfilePropertiesChangeAdapter ;
11
10
import fr .chuckame .marlinfw .configurator .profile .ProfilePropertiesParser ;
11
+ import fr .chuckame .marlinfw .configurator .util .ConsoleHelper ;
12
12
import fr .chuckame .marlinfw .configurator .util .FileHelper ;
13
13
import lombok .RequiredArgsConstructor ;
14
14
import org .springframework .stereotype .Component ;
25
25
import java .util .stream .Collectors ;
26
26
27
27
@ Component
28
- @ Parameters (commandNames = "apply- profile" )
28
+ @ Parameters (commandNames = "apply" , commandDescription = "Apply the given profile to marlin constants files, that will enable, change value or disable constants into marlin configuration files " )
29
29
@ RequiredArgsConstructor
30
- public class ApplyProfileCommand implements Command {
31
- @ Parameter (names = {"--profile" , "-p" }, required = true )
32
- private Path profilePath ;
33
- @ Parameter (names = {"--file" , "--files" , "-f" }, required = true )
30
+ public class ApplyCommand implements Command {
31
+ @ Parameter (required = true , description = "/path1 /path2 ...\t File(s) path(s) where all changes will be applied" )
34
32
private List <Path > filesPath ;
35
- @ Parameter (names = {"--save" , "-s" })
33
+ @ Parameter (names = {"--profile" , "-p" }, required = true , description = "Profile's path containing changes to apply. Format: yaml" )
34
+ private Path profilePath ;
35
+ @ Parameter (names = {"--save" , "-s" }, description = "When is present, will save changes to files. Else, just display changes without saving" )
36
36
private boolean doSave ;
37
- @ Parameter (names = {"--yes" , "-y" })
37
+ @ Parameter (names = {"--yes" , "-y" }, description = "when present, the changes will be saved without prompting the user" )
38
38
private boolean applyWithoutPrompt ;
39
39
40
40
private final ProfilePropertiesChangeAdapter changeAdapter ;
41
41
private final LineChangeManager lineChangeManager ;
42
42
private final LineChangeFormatter lineChangeFormatter ;
43
43
private final ProfilePropertiesParser profilePropertiesParser ;
44
44
private final FileHelper fileHelper ;
45
+ private final ConsoleHelper consoleHelper ;
45
46
46
47
@ Override
47
48
public Mono <Void > run () {
48
49
return profilePropertiesParser .parseFromFile (profilePath )
49
- .map (changeAdapter ::getWantedConstants )
50
+ .map (changeAdapter ::profileToConstants )
50
51
.flatMap (wantedConstants ->
51
52
prepareChanges (filesPath , wantedConstants )
52
53
.flatMap (changes -> printChanges (changes )
@@ -62,7 +63,7 @@ private Mono<Void> printChanges(final Map<Path, List<LineChange>> changes) {
62
63
Flux .fromIterable (fileChanges .getValue ()).filter (LineChange ::isConstant ).map (lineChangeFormatter ::format ),
63
64
Flux .just ("" )
64
65
))
65
- .doOnNext (System . out :: println )
66
+ .doOnNext (consoleHelper :: writeLine )
66
67
.then ()
67
68
;
68
69
}
@@ -71,18 +72,18 @@ private Mono<Void> printUnusedConstants(final Map<Path, List<LineChange>> change
71
72
return lineChangeManager .getUnusedWantedConstants (changes .values ().stream ().flatMap (List ::stream ).collect (Collectors .toList ()), wantedConstants )
72
73
.collectList ()
73
74
.filter (Predicate .not (List ::isEmpty ))
74
- .doOnNext (unusedConstants -> System . out . printf ("Still some unused constants: %s%n" , unusedConstants ))
75
+ .doOnNext (unusedConstants -> consoleHelper . writeLine ( String . format ("Still some unused constants: %s%n" , unusedConstants ) ))
75
76
.then ();
76
77
}
77
78
78
79
private Mono <Void > checkIfUserAgree () {
79
80
if (applyWithoutPrompt ) {
80
81
return Mono .empty ();
81
82
}
82
- return Mono .fromRunnable (() -> System . out . println ("Apply changes ? type 'y' to apply changes, or everything else to cancel" ))
83
+ return Mono .fromRunnable (() -> consoleHelper . writeLine ("Apply changes ? type 'y' to apply changes, or everything else to cancel" ))
83
84
.then (Mono .fromSupplier (() -> new Scanner (System .in ).next ()))
84
85
.filter ("y" ::equals )
85
- .switchIfEmpty (Mono .error (() -> new InvalidUseException ("User refused to apply" )))
86
+ .switchIfEmpty (Mono .error (() -> new ManuallyStoppedException ("User refused to apply" )))
86
87
.then ();
87
88
}
88
89
0 commit comments