Table of Contents

PHP RFC: Replacing current json extension with jsond

Introduction

The current Json Parser in the json extension does not have a free license which is a problem for many Linux distros. This has been referenced at Bug #63520. That results in not packaging json extension in the many Linux distributions.

The extension code is very old and without a maintainer which makes it difficult for further improvements. There also are some implementation decisions that makes the performance worse than it should be (see benchmarks).

Proposal

The proposal is to replace the current json extension with code that is based on the PECL jsond extension (it's not exactly the same code as there are some modifications for PHP 7).

Backward Incompatible Changes

The first part (top level) is caused by different handling of integer and double because it's not handled by JSON_Parser. This is clearly a bug.

The second part is happening for all numbers. However it's not valid by the RFC 7159 as it says in https://tools.ietf.org/html/rfc7159#section-6 :

number = [ minus ] int [ frac ] [ exp ]
decimal-point = %x2E       ; .
digit1-9 = %x31-39         ; 1-9
e = %x65 / %x45            ; e E
exp = e [ minus / plus ] 1*DIGIT
frac = decimal-point 1*DIGIT
int = zero / ( digit1-9 *DIGIT )
minus = %x2D               ; -
plus = %x2B                ; +
zero = %x30                ; 0

Please note the definition of frac that specifies that at least one digit after decimal point is required.

Proposed PHP Version(s)

PHP 7

RFC Impact

To SAPIs

No impact

To Existing Extensions

In addition to the backward incompatible changes for float number format the following internal changes have been done:

To Opcache

No impact

New Constants

None

Open Issues

None

Future Scope

Vote

50%+1 majority. The vote is a straight Yes/No vote.

Should jsond based extension replace the current json extension in PHP 7?
Real name Yes No
ab (ab)  
aharvey (aharvey)  
ajf (ajf)  
brianlmoon (brianlmoon)  
bukka (bukka)  
bwoebi (bwoebi)  
crodas (crodas)  
derick (derick)  
dmitry (dmitry)  
galvao (galvao)  
hywan (hywan)  
irker (irker)  
jedibc (jedibc)  
jgmdev (jgmdev)  
kalle (kalle)  
krakjoe (krakjoe)  
laruence (laruence)  
leigh (leigh)  
malukenho (malukenho)  
mbeccati (mbeccati)  
mike (mike)  
mj (mj)  
nikic (nikic)  
pajoye (pajoye)  
rasmus (rasmus)  
reeze (reeze)  
remi (remi)  
salathe (salathe)  
stas (stas)  
tyrael (tyrael)  
yohgaki (yohgaki)  
yunosh (yunosh)  
Final result: 32 0
This poll has been closed.

The vote started on 2015-01-26 at 17:00 UTC and ended on 2015-02-01 at 17:00 UTC.

Patches and Tests

Pull request for master branch: https://github.com/php/php-src/pull/993

The summary of the benchmarks is at https://github.com/bukka/php-jsond-bench/blob/master/reports/0001/summary.md. There also is a link for runs (measured data).

Implementation

After the project is implemented, this section will contain

  1. Merged to the master branch and will be released in PHP 7

References

There is an old RFC for free json parser that proposed jsonc as a replacement for json. There were some concerns about the compatibility and performance https://www.mail-archive.com/internals@lists.php.net/msg66658.html .

Executed code showing the current non-conformant number parsing: http://3v4l.org/2D72Q