Planet eZ publish
For many of my projects (both hobby and commercial) I need to support many different PHP configurations. Not only just different PHP versions, but also debug builds, ZTS builds and 32-bit builds. In order to be able to test and build extensions against all those different PHP configurations I have adopted a simple method that I'm sharing with you here.
The major part of it is that I use a different installation prefix for every configuration of PHP that I make. Right now, ls /usr/local/php shows:
5.1dev 5.3.2 5.3.8dev 5.3dev-32bit 5.3dev-zts 5.4dev trunk 5.2dev 5.3.7 5.3dev 5.3dev-nodebug 5.4.0beta1 5.4dev-zts
There are two types of PHP installs that I make: "dev" versions from SVN branches, and "release" versions build from SVN tags. From the list above you see I have the SVN versions of 5.1, 5.2, 5.3.8, 5.3 (in various forms) and 5.4 (both normal, and ZTS).
I have a script to compile PHP which whatever combination I want: version, debug (default) or non-debug, normal (default) or ZTS; and 64-bit (default) or 32-bit. The configure options are nicely hardcoded :-)
The scripts accept arguments in a specific order:
version ["debug"|"nodebug" [, "no-zts"|"zts" [, ""|"32bit" ] ] ]
For a simple 5.3dev build I run:
./build 5.3dev
This compiles PHP 5.3 from SVN, in debug mode, without ZTS and for the 64-bit architecture. Something more exotic variants could be:
./build 5.3.8 debug zts ./build 5.4dev nodebug no-zts 32bit
Each invocation of the script will configure and build PHP, and then install into /usr/local/php/{{variant}}.
The script also has a hard coded location where the PHP sources are. In my case, that's a sparse checkout into /home/derick/dev/php/php-src.
With the help of a small .bashrc snippet:
function pe () {
version=$1
shift
if [ "$#" == "0" ]; then
export PATH=/usr/local/php/${version}/bin:/usr/local/bin:/usr/bin:/bin
else
PATH=/usr/local/php/${version}/bin:$PATH $@
fi
}
I can now easily switch between PHP versions by typing on the shell:
pe 5.3dev
or:
pe 5.4dev-zts
And each version will have a totally separated environment for me to install PEAR packages and PECL extensions in, and do my own extension development. Of course, each separated environment also comes with its own php.ini file (in /usr/local/php/{{variant}}/lib/php.ini).
This set-up makes my life a whole lot easier, and I hope it is useful for you as well. Thanks for listening!
A while ago, Fabien asked me to have a look at porting one of Twig's slowest methods, TwigTemplate::getAttribute(), into a PHP extension. It is a complex method that does a lot of different checks and look-ups. Fabien's benchmarks showed that this method was responsible for quite a large amount of time. On top of that, it didn't seem that it could be optimised any further as PHP code itself. Seeing that it was very likely that this method would be a lot faster when written in C, SensioLabs decided to sponser me for the development of a port of this method into a PHP extension.
Over the next few months I've worked on re-implementing just this method as a C-function in twig-ext: twig_template_get_attributes(). From initial benchmarks it looks like this function as implemented in the extension gives about a 15% speed increase while rendering templates. Twig's compiled templates directly contain a call to this function (as opposed to marshal it through the original TwigTemplate::getAttribute() method) for additional performance. This probably means that you'll have to remove your compiled templates cache while upgrading.
The extension at http://github.com/derickr/twig-ext has now been merged, via http://github.com/derickr/Twig, into http://github.com/fabpot/Twig. The plan is that this new improvement is going to be part of Twig 1.4.
If you are also interested in having some of your PHP code ported into a PHP extension in C, please feel free to contact me.
I've been creating modules views to handle special users login but there is a better way to do that, you can just create a custom login handler.
In this blog post I will show how to override kernel classes. It is a very known concept, but wasn't in my tip list yet, so, if you don't like the way some kernel classes works you can just create a kernel override, and doing that you'll avoid kernel hacks, which is not recommended.
Added a new template operator to display comments
A template operator for testing for empty strings would be nice. I can't believe it's not there-- am I missing it somewhere? (If I find it, I'll update this blog entry).
Recently the Share team held two surveys, both related to e-mail notifications on this community portal. We have closed the surveys and would like to share the results with you in this post.
Initially announced at the eZ Day in Paris, eZ Publish's PHP API still is in developer preview, waiting for more love !
Initially launched last week, our 2 weeks translation sprint is half-way. Good progress done but we need more than French translations !
The second part of my series on 'Leading a professional, vendor-backed open-source Community' made us busy covering the ideas of Meritocracy and Social Economy, important pillars, i believe. This finalized the short presentation of the basics in managing an open-source Community. By no means the list of principles is exhaustive : i merely picked my daily drivers. On the agenda today : the specific, practical aspects of this discipline when a single vendor is backing the community.
Mug & good tunes can help savouring this small write-up.
