Completed
Push — master ( b3e72f...7bead7 )
by Cees-Jan
10:16
created

WorkerChild::handlePaginateCall()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 16
rs 9.7333
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php declare(strict_types=1);
2
3
namespace WyriHaximus\React\Cake\Orm;
4
5
use Cake\Cache\Cache;
6
use Cake\Core\Configure;
7
use Cake\Datasource\ConnectionManager;
8
use Cake\Datasource\Paginator;
9
use Cake\ORM\Query;
10
use Cake\ORM\TableRegistry;
11
use React\EventLoop\LoopInterface;
12
use React\Promise\Deferred;
13
use WyriHaximus\React\ChildProcess\Messenger\ChildInterface;
14
use WyriHaximus\React\ChildProcess\Messenger\Messages\Payload;
15
use WyriHaximus\React\ChildProcess\Messenger\Messenger;
16
17
final class WorkerChild implements ChildInterface
18
{
19
    private $messenger;
20
    private $loop;
21
22
    /**
23
     * WorkerChild constructor.
24
     */
25
    public function __construct(Messenger $messenger, LoopInterface $loop)
26
    {
27
        $this->messenger = $messenger;
28
        $this->loop = $loop;
29
30 View Code Duplication
        $this->messenger->registerRpc('table.call', function (Payload $payload) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
31
            $deferred = new Deferred();
32
            $this->loop->futureTick(function () use ($payload, $deferred) {
33
                $this->handleTableCall($payload, $deferred);
34
            });
35
36
            return $deferred->promise();
37
        });
38
39 View Code Duplication
        $this->messenger->registerRpc('paginate', function (Payload $payload) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
40
            $deferred = new Deferred();
41
            $this->loop->futureTick(function () use ($payload, $deferred) {
42
                $this->handlePaginateCall($payload, $deferred);
43
            });
44
45
            return $deferred->promise();
46
        });
47
    }
48
49
    /**
50
     * @inheritDoc
51
     */
52
    public static function create(Messenger $messenger, LoopInterface $loop)
53
    {
54
        require dirname(dirname(dirname(dirname(__DIR__)))) . '/config/paths.php';
55
        require CORE_PATH . 'config' . DS . 'bootstrap.php';
56
        Configure::config('default', new Configure\Engine\PhpConfig());
57
        Configure::load('app', 'default', false);
58
        Cache::setConfig(Configure::consume('Cache'));
0 ignored issues
show
Bug introduced by
It seems like \Cake\Core\Configure::consume('Cache') targeting Cake\Core\Configure::consume() can also be of type null; however, Cake\Core\StaticConfigTrait::setConfig() does only seem to accept string|array, maybe add an additional type check?

This check looks at variables that are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
59
        ConnectionManager::setConfig(Configure::consume('Datasources'));
0 ignored issues
show
Bug introduced by
It seems like \Cake\Core\Configure::consume('Datasources') targeting Cake\Core\Configure::consume() can also be of type null; however, Cake\Datasource\ConnectionManager::setConfig() does only seem to accept string|array, maybe add an additional type check?

This check looks at variables that are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
60
61
        return new self($messenger, $loop);
62
    }
63
64
    /**
65
     * @param Payload  $payload
66
     * @param Deferred $deferred
67
     */
68
    protected function handleTableCall(Payload $payload, Deferred $deferred)
69
    {
70
        $result = call_user_func_array([
71
            TableRegistry::get(
0 ignored issues
show
Deprecated Code introduced by
The method Cake\ORM\TableRegistry::get() has been deprecated with message: 3.6.0 Use \Cake\ORM\Locator\TableLocator::get() instead.

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
72
                $payload['table']/*,
0 ignored issues
show
Unused Code Comprehensibility introduced by
68% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
73
                [
74
                    'className' => $payload['className'],
75
                    'table' => $payload['table'],
76
                ]*/
77
            ),
78
            $payload['function'],
79
        ], unserialize($payload['arguments']));
80
81
        if (!($result instanceof Query)) {
82
            $deferred->resolve([
83
                'result' => serialize($result),
84
            ]);
85
86
            return;
87
        }
88
89
        foreach ($result->all() as $row) {
90
            $deferred->notify([
0 ignored issues
show
Deprecated Code introduced by
The method React\Promise\Deferred::notify() has been deprecated with message: 2.6.0 Progress support is deprecated and should not be used anymore.

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
91
                'row' => $row,
92
            ]);
93
        }
94
95
        $deferred->resolve();
96
    }
97
98
    /**
99
     * @param Payload  $payload
100
     * @param Deferred $deferred
101
     */
102
    protected function handlePaginateCall(Payload $payload, Deferred $deferred)
103
    {
104
        $object = TableRegistry::get(
0 ignored issues
show
Deprecated Code introduced by
The method Cake\ORM\TableRegistry::get() has been deprecated with message: 3.6.0 Use \Cake\ORM\Locator\TableLocator::get() instead.

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
105
            $payload['table']/*,
0 ignored issues
show
Unused Code Comprehensibility introduced by
68% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
106
                [
107
                    'className' => $payload['className'],
108
                    'table' => $payload['table'],
109
                ]*/
110
        );
111
        $paginator = new Paginator();
112
113
        return $deferred->resolve([
114
            'items' => $paginator->paginate($object, $payload['params'], $payload['settings'])->toArray(),
115
            'pagingParams' => $paginator->getPagingParams(),
116
        ]);
117
    }
118
}
119