Completed
Push — master ( f932c1...98fbad )
by Gaetano
09:59
created
Core/Matcher/ContentVersionMatcher.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use eZ\Publish\API\Repository\Repository;
6 6
 use eZ\Publish\API\Repository\Values\Content\Content;
7 7
 use \eZ\Publish\API\Repository\Values\Content\VersionInfo;
8
-use eZ\Publish\Core\Base\Exceptions\NotFoundException;
9 8
 use Kaliop\eZMigrationBundle\API\MatcherInterface;
10 9
 use Kaliop\eZMigrationBundle\API\Collection\VersionInfoCollection;
11 10
 
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         $versions = array();
46 46
 
47 47
         $contentCollection = $this->contentMatcher->match($contentConditions, $sort, $offset, $limit);
48
-        foreach($contentCollection as $content) {
48
+        foreach ($contentCollection as $content) {
49 49
             $versions = array_merge($versions, $this->matchContentVersions($versionConditions, $content));
50 50
         }
51 51
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     {
152 152
         $versions = array();
153 153
         foreach ($this->findAllContentVersions($content) as $versionKey => $versionInfo) {
154
-            foreach($values as $acceptedStatus) {
154
+            foreach ($values as $acceptedStatus) {
155 155
                 if ($versionInfo->status == self::STATUS_MAP[$acceptedStatus]) {
156 156
                     $versions[$versionKey] = $versionInfo;
157 157
                     break;
@@ -173,15 +173,15 @@  discard block
 block discarded – undo
173 173
         $contentVersionsCount = count($contentVersions);
174 174
         $i = 0;
175 175
         foreach ($contentVersions as $versionKey => $versionInfo) {
176
-            foreach($values as $acceptedVersionNo) {
177
-                if ($acceptedVersionNo > 0 ) {
176
+            foreach ($values as $acceptedVersionNo) {
177
+                if ($acceptedVersionNo > 0) {
178 178
                     if ($acceptedVersionNo == $versionInfo->versionNo) {
179 179
                         $versions[$versionKey] = $versionInfo;
180 180
                         break;
181 181
                     }
182 182
                 } else {
183 183
                     // negative $acceptedVersionNo means 'leave the last X versions', eg: -1 = leave the last version
184
-                    if ($i < $contentVersionsCount + $acceptedVersionNo)  {
184
+                    if ($i < $contentVersionsCount + $acceptedVersionNo) {
185 185
                         $versions[$versionKey] = $versionInfo;
186 186
                         break;
187 187
 
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
         $contentVersions = $this->repository->getContentService()->loadVersions($content->contentInfo);
203 203
         // different eZ kernels apparently sort versions in different order...
204 204
         $sortedVersions = array();
205
-        foreach($contentVersions as $versionInfo) {
205
+        foreach ($contentVersions as $versionInfo) {
206 206
             $sortedVersions[$content->contentInfo->id . '/' . $versionInfo->versionNo] = $versionInfo;
207 207
         }
208 208
         ksort($sortedVersions);
Please login to merge, or discard this patch.
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -110,6 +110,9 @@  discard block
 block discarded – undo
110 110
         }
111 111
     }
112 112
 
113
+    /**
114
+     * @param Content $content
115
+     */
113 116
     protected function matchAnd($conditionsArray, $content = null)
114 117
     {
115 118
         /// @todo introduce proper re-validation of all child conditions
@@ -133,6 +136,9 @@  discard block
 block discarded – undo
133 136
         return $results;
134 137
     }
135 138
 
139
+    /**
140
+     * @param Content $content
141
+     */
136 142
     protected function matchOr($conditionsArray, $content = null)
137 143
     {
138 144
         /// @todo introduce proper re-validation of all child conditions
Please login to merge, or discard this patch.
Command/MigrateCommand.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -219,9 +219,9 @@  discard block
 block discarded – undo
219 219
         $this->writeln("Executed $executed migrations, failed $failed, skipped $skipped");
220 220
         if ($input->getOption('separate-process')) {
221 221
             // in case of using subprocesses, we can not measure max memory used
222
-            $this->writeln("Time taken: ".sprintf('%.2f', $time)." secs");
222
+            $this->writeln("Time taken: " . sprintf('%.2f', $time) . " secs");
223 223
         } else {
224
-            $this->writeln("Time taken: ".sprintf('%.2f', $time)." secs, memory: ".sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)). ' MB');
224
+            $this->writeln("Time taken: " . sprintf('%.2f', $time) . " secs, memory: " . sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)) . ' MB');
225 225
         }
226 226
     }
227 227
 
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
             $builderArgs[] = '--no-debug';
370 370
         }
371 371
         if ($input->getOption('siteaccess')) {
372
-            $builderArgs[]='--siteaccess='.$input->getOption('siteaccess');
372
+            $builderArgs[] = '--siteaccess=' . $input->getOption('siteaccess');
373 373
         }
374 374
         // 'optional' options
375 375
         // note: options 'clear-cache', 'ignore-failures', 'no-interaction', 'path' and 'separate-process' we never propagate
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -193,6 +193,9 @@
 block discarded – undo
193 193
         );
194 194
     }
195 195
 
196
+    /**
197
+     * @param ProcessBuilder $builder
198
+     */
196 199
     protected function executeMigrationInSeparateProcess($migrationDefinition, $migrationService, $builder, $builderArgs, $feedback = true)
197 200
     {
198 201
         $process = $builder
Please login to merge, or discard this patch.
Command/MassMigrateCommand.php 3 patches
Doc Comments   +13 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,6 +88,12 @@  discard block
 block discarded – undo
88 88
         }
89 89
     }
90 90
 
91
+    /**
92
+     * @param InputInterface $input
93
+     * @param OutputInterface $output
94
+     * @param MigrationDefinition[] $toExecute
95
+     * @param double $start
96
+     */
91 97
     protected function executeAsParent($input, $output, $toExecute, $start)
92 98
     {
93 99
         $paths = $this->groupMigrationsByPath($toExecute);
@@ -157,6 +163,12 @@  discard block
 block discarded – undo
157 163
         return $failed;
158 164
     }
159 165
 
166
+    /**
167
+     * @param InputInterface $input
168
+     * @param OutputInterface $output
169
+     * @param MigrationDefinition[] $toExecute
170
+     * @param \Kaliop\eZMigrationBundle\Core\MigrationService $migrationService
171
+     */
160 172
     protected function executeAsChild($input, $output, $toExecute, $force, $migrationService)
161 173
     {
162 174
         // @todo disable signal slots that are harmful during migrations, if any
@@ -260,7 +272,7 @@  discard block
 block discarded – undo
260 272
 
261 273
     /**
262 274
      * @param string $paths
263
-     * @param $migrationService
275
+     * @param \Kaliop\eZMigrationBundle\Core\MigrationService $migrationService
264 276
      * @param bool $force
265 277
      * @param bool $isChild when not in child mode, do not waste time parsing migrations
266 278
      * @return MigrationDefinition[] parsed or unparsed, depending on
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 use Symfony\Component\Process\ProcessBuilder;
13 13
 use Symfony\Component\Process\PhpExecutableFinder;
14 14
 use Kaliop\eZMigrationBundle\Core\Helper\ProcessManager;
15
-use Symfony\Component\Console\Question\ConfirmationQuestion;
16 15
 
17 16
 class MassMigrateCommand extends MigrateCommand
18 17
 {
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
         $processes = array();
114 114
         /** @var MigrationDefinition $migrationDefinition */
115
-        foreach($paths as $path => $count) {
115
+        foreach ($paths as $path => $count) {
116 116
             $this->writeln("<info>Queueing processing of: $path ($count migrations)</info>", OutputInterface::VERBOSITY_VERBOSE);
117 117
 
118 118
             $process = $builder
@@ -149,10 +149,10 @@  discard block
 block discarded – undo
149 149
 
150 150
         $time = microtime(true) - $start;
151 151
 
152
-        $this->writeln('<info>'.$this->migrationsDone[0].' migrations executed, '.$this->migrationsDone[1].' failed, '.$this->migrationsDone[2].' skipped</info>');
152
+        $this->writeln('<info>' . $this->migrationsDone[0] . ' migrations executed, ' . $this->migrationsDone[1] . ' failed, ' . $this->migrationsDone[2] . ' skipped</info>');
153 153
 
154 154
         // since we use subprocesses, we can not measure max memory used
155
-        $this->writeln("Time taken: ".sprintf('%.2f', $time)." secs");
155
+        $this->writeln("Time taken: " . sprintf('%.2f', $time) . " secs");
156 156
 
157 157
         return $failed;
158 158
     }
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         foreach ($toExecute as  $name => $migrationDefinition) {
180 180
             // let's skip migrations that we know are invalid - user was warned and he decided to proceed anyway
181 181
             if ($migrationDefinition->status == MigrationDefinition::STATUS_INVALID) {
182
-                $this->writeln("<comment>Skipping migration (invalid definition?) Path: ".$migrationDefinition->path."</comment>", self::VERBOSITY_CHILD);
182
+                $this->writeln("<comment>Skipping migration (invalid definition?) Path: " . $migrationDefinition->path . "</comment>", self::VERBOSITY_CHILD);
183 183
                 $skipped++;
184 184
                 continue;
185 185
             }
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
                     $this->executeMigrationInProcess($migrationDefinition, $force, $migrationService, $input);
211 211
 
212 212
                     $executed++;
213
-                } catch(\Exception $e) {
213
+                } catch (\Exception $e) {
214 214
                     $failed++;
215 215
                     if ($input->getOption('ignore-failures')) {
216 216
                         $this->writeln("<error>Migration failed! Path: " . $migrationDefinition->path . ", Reason: " . $e->getMessage() . "</error>", self::VERBOSITY_CHILD);
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
         //return $failed;
236 236
     }
237 237
 
238
-    public function onSubProcessOutput($type, $buffer, $process=null)
238
+    public function onSubProcessOutput($type, $buffer, $process = null)
239 239
     {
240 240
         $lines = explode("\n", trim($buffer));
241 241
 
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 
254 254
             // we tag the output from the different processes
255 255
             if (trim($line) !== '') {
256
-                echo '[' . ($process ? $process->getPid() : ''). '] ' . trim($line) . "\n";
256
+                echo '[' . ($process ? $process->getPid() : '') . '] ' . trim($line) . "\n";
257 257
             }
258 258
         }
259 259
     }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 
282 282
         // filter away all migrations except 'to do' ones
283 283
         $toExecute = array();
284
-        foreach($migrationDefinitions as $name => $migrationDefinition) {
284
+        foreach ($migrationDefinitions as $name => $migrationDefinition) {
285 285
             if (!isset($migrations[$name]) || (($migration = $migrations[$name]) && in_array($migration->status, $allowedStatuses))) {
286 286
                 $toExecute[$name] = $isChild ? $migrationService->parseMigrationDefinition($migrationDefinition) : $migrationDefinition;
287 287
             }
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
     {
324 324
         $output->writeln('Found ' . count($toExecute) . ' migrations in ' . count($paths) . ' directories');
325 325
         $output->writeln('In the same directories, migrations previously executed: ' . $this->migrationsAlreadyDone[Migration::STATUS_DONE] .
326
-            ', failed: ' . $this->migrationsAlreadyDone[Migration::STATUS_FAILED] . ', skipped: '. $this->migrationsAlreadyDone[Migration::STATUS_SKIPPED]);
326
+            ', failed: ' . $this->migrationsAlreadyDone[Migration::STATUS_FAILED] . ', skipped: ' . $this->migrationsAlreadyDone[Migration::STATUS_SKIPPED]);
327 327
         if ($this->migrationsAlreadyDone[Migration::STATUS_STARTED]) {
328 328
             $output->writeln('<info>In the same directories, migrations currently executing: ' . $this->migrationsAlreadyDone[Migration::STATUS_STARTED] . '</info>');
329 329
         }
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
     protected function groupMigrationsByPath($toExecute)
337 337
     {
338 338
         $paths = array();
339
-        foreach($toExecute as $name => $migrationDefinition) {
339
+        foreach ($toExecute as $name => $migrationDefinition) {
340 340
             $path = dirname($migrationDefinition->path);
341 341
             if (!isset($paths[$path])) {
342 342
                 $paths[$path] = 1;
Please login to merge, or discard this patch.