Skip to content

Commit e6bbb7a

Browse files
author
MarkBaker
committed
Experiment to replace the large "unstructured" array of Excel function signature definitions with a structured collection of Value Objects to see what affect it has on memory usage and speed.
This isn't a perfect implementation yet: but it's enough to take a look at the memory usage and speed.
1 parent 8885c4e commit e6bbb7a

File tree

511 files changed

+17319
-2540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

511 files changed

+17319
-2540
lines changed

.phpcs.xml.dist

+4
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@
1919
<rule ref="PSR12">
2020
<exclude name="PSR2.Methods.MethodDeclaration.Underscore"/>
2121
</rule>
22+
23+
<rule ref="Squiz.Classes.ValidClassName.NotCamelCaps">
24+
<exclude-pattern>*/src/PhpSpreadsheet/Calculation/Engine/Functions/*</exclude-pattern>
25+
</rule>
2226
</ruleset>

bin/generate-locales

+1-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ use PhpOffice\PhpSpreadsheetInfra\LocaleGenerator;
77
require_once 'vendor/autoload.php';
88

99
try {
10-
$phpSpreadsheetFunctionsProperty = (new ReflectionClass(Calculation::class))
11-
->getProperty('phpSpreadsheetFunctions');
12-
$phpSpreadsheetFunctionsProperty->setAccessible(true);
13-
$phpSpreadsheetFunctions = $phpSpreadsheetFunctionsProperty->getValue();
10+
$phpSpreadsheetFunctions = Calculation::getInstance()->getFunctions();
1411

1512
$localeGenerator = new LocaleGenerator(
1613
realpath(__DIR__ . '/../src/PhpSpreadsheet/Calculation/locale/'),

infra/LocaleGenerator.php

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace PhpOffice\PhpSpreadsheetInfra;
44

55
use Exception;
6+
use PhpOffice\PhpSpreadsheet\Calculation\Engine\ExcelFunctions;
67
use PhpOffice\PhpSpreadsheet\Cell\Cell;
78
use PhpOffice\PhpSpreadsheet\IOFactory;
89
use PhpOffice\PhpSpreadsheet\Spreadsheet;
@@ -37,6 +38,9 @@ class LocaleGenerator
3738
*/
3839
protected $translationBaseFolder;
3940

41+
/**
42+
* @var ExcelFunctions
43+
*/
4044
protected $phpSpreadsheetFunctions;
4145

4246
/**
@@ -67,7 +71,7 @@ class LocaleGenerator
6771
public function __construct(
6872
string $translationBaseFolder,
6973
string $translationSpreadsheetName,
70-
array $phpSpreadsheetFunctions,
74+
ExcelFunctions $phpSpreadsheetFunctions,
7175
bool $verbose = false
7276
) {
7377
$this->translationBaseFolder = $translationBaseFolder;
@@ -146,7 +150,7 @@ protected function buildFunctionsFileForLocale($column, $locale): void
146150
$translationValue = $translationCell->getValue();
147151
if ($this->isFunctionCategoryEntry($translationCell)) {
148152
$this->writeFileSectionHeader($functionFile, "{$translationValue} ({$functionName})");
149-
} elseif (!array_key_exists($functionName, $this->phpSpreadsheetFunctions)) {
153+
} elseif (!$this->phpSpreadsheetFunctions->isRecognisedExcelFunction($functionName)) {
150154
$this->log("Function {$functionName} is not defined in PhpSpreadsheet");
151155
} elseif (!empty($translationValue)) {
152156
$functionTranslation = "{$functionName} = {$translationValue}" . self::EOL;

phpstan-baseline.neon

-5
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,6 @@ parameters:
215215
count: 1
216216
path: src/PhpSpreadsheet/Calculation/Calculation.php
217217

218-
-
219-
message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$phpSpreadsheetFunctions has no type specified\\.$#"
220-
count: 1
221-
path: src/PhpSpreadsheet/Calculation/Calculation.php
222-
223218
-
224219
message: "#^Property PhpOffice\\\\PhpSpreadsheet\\\\Calculation\\\\Calculation\\:\\:\\$returnArrayAsType has no type specified\\.$#"
225220
count: 1

0 commit comments

Comments
 (0)