Completed
Push — master ( 2cf8eb...09dcac )
by Дмитрий
04:07
created

Compiler   A

Complexity

Total Complexity 30

Size/Duplication

Total Lines 190
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 5

Test Coverage

Coverage 77.14%

Importance

Changes 2
Bugs 0 Features 1
Metric Value
dl 0
loc 190
ccs 54
cts 70
cp 0.7714
rs 10
c 2
b 0
f 1
wmc 30
lcom 1
cbo 5

10 Methods

Rating   Name   Duplication   Size   Complexity  
A addClass() 0 4 1
A addTrait() 0 4 1
A addFunction() 0 4 1
A getFunctionNS() 0 10 4
C compile() 0 68 14
A getTrait() 0 8 2
A getFunction() 0 10 3
A getClass() 0 8 2
A getFunctions() 0 4 1
A getClasses() 0 4 1
1
<?php
2
/**
3
 * @author Patsura Dmitry https://github.com/ovr <[email protected]>
4
 */
5
6
namespace PHPSA;
7
8
use PHPSA\Definition\ClassDefinition;
9
use PHPSA\Definition\FunctionDefinition;
10
use PHPSA\Definition\RuntimeClassDefinition;
11
use PHPSA\Definition\TraitDefinition;
12
use ReflectionClass;
13
14
/**
15
 * Compiler component
16
 */
17
class Compiler
18
{
19
    /**
20
     * @var ClassDefinition[]
21
     */
22
    protected $classes = [];
23
24
    /**
25
     * @var TraitDefinition[]
26
     */
27
    protected $traits = [];
28
29
    /**
30
     * @var FunctionDefinition[]
31
     */
32
    protected $functions = [];
33
34
    /**
35
     * @param ClassDefinition $class
36
     */
37 52
    public function addClass(ClassDefinition $class)
38
    {
39 52
        $this->classes[implode('\\', [$class->getNamespace(), $class->getName()])] = $class;
40 52
    }
41
42
    /**
43
     * @param TraitDefinition $class
44
     */
45 1
    public function addTrait(TraitDefinition $class)
46
    {
47 1
        $this->traits[implode('\\', [$class->getNamespace(), $class->getName()])] = $class;
48 1
    }
49
50
    /**
51
     * @param FunctionDefinition $function
52
     */
53 6
    public function addFunction(FunctionDefinition $function)
54
    {
55 6
        $this->functions[] = $function;
56 6
    }
57
58
    /**
59
     * @param Context $context
60
     */
61 52
    public function compile(Context $context)
0 ignored issues
show
Complexity introduced by
This operation has 320 execution paths which exceeds the configured maximum of 200.

A high number of execution paths generally suggests many nested conditional statements and make the code less readible. This can usually be fixed by splitting the method into several smaller methods.

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

Loading history...
62
    {
63 52
        $context->scopePointer = null;
64
65
        /**
66
         * @todo Implement class map...
67
         */
68 52
        foreach ($this->classes as $class) {
69 52
            $extends = $class->getExtendsClass();
70 52
            if ($extends) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $extends of type string|null is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
71 2
                if (isset($this->classes[$extends])) {
72
                    $class->setExtendsClassDefinition($this->classes[$extends]);
73
                } else {
74 2
                    if (class_exists($extends, true)) {
75 2
                        $class->setExtendsClassDefinition(
76 2
                            new RuntimeClassDefinition(
77 2
                                new ReflectionClass(
78
                                    $extends
79 2
                                )
80 2
                            )
81 2
                        );
82 2
                    }
83
                }
84 2
            }
85 52
        }
86
87 52
        foreach ($this->functions as $function) {
88
            /**
89
             * @todo Configuration
90
             *
91
             * Ignore functions compiling from vendor
92
             */
93 6
            $checkVendor = strpos($function->getFilepath(), './vendor');
94 6
            if ($checkVendor !== false && $checkVendor < 3) {
95
                continue;
96
            }
97
98 6
            $function->compile($context);
99 52
        }
100
101 52
        foreach ($this->traits as $trait) {
102
            /**
103
             * @todo Configuration
104
             *
105
             * Ignore traits compiling from vendor
106
             */
107 1
            $checkVendor = strpos($trait->getFilepath(), './vendor');
108 1
            if ($checkVendor !== false && $checkVendor < 3) {
109
                continue;
110
            }
111
112 1
            $trait->compile($context);
113 52
        }
114
115 52
        foreach ($this->classes as $class) {
116
            /**
117
             * @todo Configuration
118
             *
119
             * Ignore Classes compiling from vendor
120
             */
121 52
            $checkVendor = strpos($class->getFilepath(), './vendor');
122 52
            if ($checkVendor !== false && $checkVendor < 3) {
123
                continue;
124
            }
125
126 52
            $class->compile($context);
127 52
        }
128 52
    }
129
130
    /**
131
     * Try to find function with $namespace from pre-compiled function(s)
132
     *
133
     * @param string $name
134
     * @param string|null $namespace
135
     * @return bool|FunctionDefinition
136
     */
137 13
    public function getFunctionNS($name, $namespace = null)
138
    {
139 13
        foreach ($this->functions as $function) {
140 2
            if ($function->getName() == $name && $function->getNamespace() == $namespace) {
141
                return $function;
142
            }
143 13
        }
144
145 13
        return false;
146
    }
147
148
    /**
149
     * @param string $name
150
     * @return ClassDefinition|null
151
     */
152 6
    public function getClass($name)
153
    {
154 6
        if (isset($this->classes[$name])) {
155
            return $this->classes[$name];
156
        }
157
158 6
        return null;
159
    }
160
161
    /**
162
     * @param string $name
163
     * @return TraitDefinition|null
164
     */
165
    public function getTrait($name)
166
    {
167
        if (isset($this->traits[$name])) {
168
            return $this->traits[$name];
169
        }
170
171
        return null;
172
    }
173
174
    /**
175
     * Try to find function from pre-compiled function(s)
176
     *
177
     * @param string $name
178
     * @return bool|FunctionDefinition
179
     */
180 1
    public function getFunction($name)
181
    {
182 1
        foreach ($this->functions as $function) {
183 1
            if ($function->getName() == $name) {
184
                return $function;
185
            }
186 1
        }
187
188 1
        return false;
189
    }
190
191
    /**
192
     * @return FunctionDefinition[]
193
     */
194
    public function getFunctions()
195
    {
196
        return $this->functions;
197
    }
198
199
    /**
200
     * @return ClassDefinition[]
201
     */
202
    public function getClasses()
203
    {
204
        return $this->classes;
205
    }
206
}
207