Tuesday 23 August 2011 7:10:25 am

» Back to Roadmap

Description

eZ 4.4 has to be used with PHP 5.2 at least. With the major version 5.3, namespaces became available in PHP. Unfortunatly we can't use them in eZ Publish.

Whether eZ Core classes use namespaces or not, developpers can't also use them whereas there isn't much to do to make namespaces available.

We only need to add few lines in the file 'kernel/private/classes/ezautoloadgenerator.php'. Using the php function token_get_all provides an array with parsed elements of the file.

For a namespace, PHP use the constant T_NAMESPACE. To ensure that our code is compatible in PHP 5.2, we need to define the constant in that version. To do such thing, we only need to add line 436 the following code :

               $this->setStatArray( self::OUTPUT_PROGRESS_PHASE2, $statArray );
               $this->startProgressOutput( self::OUTPUT_PROGRESS_PHASE2 );

+               $aPhpVersion = explode('.', phpversion());
+               if ($aPhpVersion[1] 3)
+              {
+                       !defined('T_NAMESPACE') && define('T_NAMESPACE', 377);
+               }

               foreach( $fileList as $file )

For each file we set a namespace variable to an empty string :

+                         $sNameSpace = '';
                       $tokens = @token_get_all( file_get_contents( $file ) );

Then we get the namespace in the switch

                                         switch( $token[0] )
                                       {
+                                               case T_NAMESPACE:
+                                                       $sNameSpace = '';
+                                                       for ($i = $key+2; $i count($tokens)-1; $i++)
+                                                       {
+                                                               if (is_array($tokens[$i]) && T_STRING == $tokens[$i][0])
+                                                               {
+                                                                       $sNameSpace .= $tokens[$i][1].'\\';
+                                                               }
+                                                               else if (!is_array($tokens[$i]) && in_array($tokens[$i], array(';', '{')))
+                                                               {
+                                                                       break;
+                                                               }
+                                                       }
+                                                       break;

And finally we add the namespace before the class name, the autoload function will automaticly load the class

-                                                         $className = $tokens[$key+2][1];
+                                                       $className = $sNameSpace.$tokens[$key+2][1];

What do you think about it ?

No reply yet!

You must be logged in to post messages in this topic!

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 18 2025 02:02:07
Script start
Timing: Jan 18 2025 02:02:07
Module start 'layout'
Timing: Jan 18 2025 02:02:07
Module start 'content'
Timing: Jan 18 2025 02:02:07
Module end 'content'
Timing: Jan 18 2025 02:02:07
Script end

Main resources:

Total runtime0.1474 sec
Peak memory usage4,096.0000 KB
Database Queries54

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0061 587.9063152.6250
Module start 'layout' 0.00610.0031 740.531339.4531
Module start 'content' 0.00920.1366 779.9844479.8125
Module end 'content' 0.14570.0017 1,259.796934.3984
Script end 0.1474  1,294.1953 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00332.2154150.0002
Check MTime0.00140.9758150.0001
Mysql Total
Database connection0.00100.674210.0010
Mysqli_queries0.075451.1420540.0014
Looping result0.00060.4305510.0000
Template Total0.089160.420.0445
Template load0.00201.352720.0010
Template processing0.087159.056920.0435
Template load and register function0.00030.177710.0003
states
state_id_array0.017611.915420.0088
state_identifier_array0.00181.233130.0006
Override
Cache load0.00181.1890540.0000
Sytem overhead
Fetch class attribute name0.00110.736010.0011
class_abstraction
Instantiating content class attribute0.00000.006110.0000
General
dbfile0.00312.1005100.0003
String conversion0.00000.006040.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplforum_topic/full.tplextension/community_design/design/suncana/override/templates/forum_topic/full.tplEdit templateOverride template
1content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
8content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1content/datatype/view/ezxmltags/strong.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/strong.tplEdit templateOverride template
9content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
7content/datatype/view/ezxmltags/link.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/link.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 28
 Number of unique templates used: 7

Time used to render debug report: 0.0003 secs