19
19
use ConsoleHelpers \CodeInsight \KnowledgeBase \KnowledgeBaseFactory ;
20
20
use Stecman \Component \Symfony \Console \BashCompletion \CompletionContext ;
21
21
use Symfony \Component \Console \Exception \RuntimeException ;
22
+ use Symfony \Component \Console \Input \ArgvInput ;
22
23
use Symfony \Component \Console \Input \InputArgument ;
23
24
use Symfony \Component \Console \Input \InputInterface ;
24
25
use Symfony \Component \Console \Input \InputOption ;
@@ -124,6 +125,18 @@ public function completeOptionValues($optionName, CompletionContext $context)
124
125
{
125
126
$ ret = parent ::completeOptionValues ($ optionName , $ context );
126
127
128
+ if ( $ optionName === 'source-project-fork ' ) {
129
+ $ input = $ this ->getInputFromCompletionContext ($ context );
130
+
131
+ return $ this ->_knowledgeBaseFactory ->getForks ($ this ->getSourcePath ($ input , true ));
132
+ }
133
+
134
+ if ( $ optionName === 'target-project-fork ' ) {
135
+ $ input = $ this ->getInputFromCompletionContext ($ context );
136
+
137
+ return $ this ->_knowledgeBaseFactory ->getForks ($ this ->getTargetPath ($ input ));
138
+ }
139
+
127
140
if ( $ optionName === 'format ' ) {
128
141
return $ this ->_reporterFactory ->getNames ();
129
142
}
@@ -133,33 +146,18 @@ public function completeOptionValues($optionName, CompletionContext $context)
133
146
134
147
/**
135
148
* {@inheritdoc}
136
- *
137
- * @throws RuntimeException When source project path is missing.
138
149
*/
139
150
protected function execute (InputInterface $ input , OutputInterface $ output )
140
151
{
141
152
// Get reporter upfront so that we can error out early for invalid reporters.
142
153
$ reporter = $ this ->_reporterFactory ->get ($ this ->io ->getOption ('format ' ));
143
154
144
- $ source_path = $ this ->getPath ('source-project-path ' );
145
- $ target_path = $ this ->getPath ('target-project-path ' );
146
-
147
- $ source_fork = $ this ->io ->getOption ('source-project-fork ' );
148
-
149
- if ( !$ source_path ) {
150
- if ( $ source_fork ) {
151
- // Single code base, but comparing with fork.
152
- $ source_path = $ target_path ;
153
- }
154
- else {
155
- // Not using fork, then need to specify project path.
156
- throw new RuntimeException ('Not enough arguments (missing: "source-project-path"). ' );
157
- }
158
- }
155
+ $ source_path = $ this ->getSourcePath ($ input , false );
156
+ $ target_path = $ this ->getTargetPath ($ input );
159
157
160
158
$ source_knowledge_base = $ this ->_knowledgeBaseFactory ->getKnowledgeBase (
161
159
$ source_path ,
162
- $ source_fork ,
160
+ $ this -> io -> getOption ( ' source-project-fork ' ) ,
163
161
$ this ->io
164
162
);
165
163
$ target_knowledge_base = $ this ->_knowledgeBaseFactory ->getKnowledgeBase (
@@ -181,6 +179,44 @@ protected function execute(InputInterface $input, OutputInterface $output)
181
179
$ this ->io ->writeln ($ reporter ->generate ($ bc_breaks ));
182
180
}
183
181
182
+ /**
183
+ * Returns source path.
184
+ *
185
+ * @param InputInterface $input Input.
186
+ * @param boolean $autocomplete Autocomplete.
187
+ *
188
+ * @return string
189
+ * @throws RuntimeException When source project path is missing.
190
+ */
191
+ protected function getSourcePath (InputInterface $ input , $ autocomplete )
192
+ {
193
+ $ source_path = $ this ->getPath ($ input ->getArgument ('source-project-path ' ));
194
+
195
+ if ( $ source_path ) {
196
+ return $ source_path ;
197
+ }
198
+
199
+ // Single code base, but comparing with fork OR autocompleting forks.
200
+ if ( $ autocomplete || $ input ->getOption ('source-project-fork ' ) ) {
201
+ return $ this ->getTargetPath ($ input );
202
+ }
203
+
204
+ // Not using fork, then need to specify project path.
205
+ throw new RuntimeException ('Not enough arguments (missing: "source-project-path"). ' );
206
+ }
207
+
208
+ /**
209
+ * Returns target path.
210
+ *
211
+ * @param InputInterface $input Input.
212
+ *
213
+ * @return string
214
+ */
215
+ protected function getTargetPath (InputInterface $ input )
216
+ {
217
+ return $ this ->getPath ($ input ->getArgument ('target-project-path ' ));
218
+ }
219
+
184
220
/**
185
221
* Finds backward compatibility breaks.
186
222
*
0 commit comments