Skip to content
This repository was archived by the owner on Jul 24, 2019. It is now read-only.

Commit ad4d302

Browse files
committed
Added igbinary.
1 parent 40780e0 commit ad4d302

Some content is hidden

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

68 files changed

+5713
-54
lines changed

config.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ if test "$PHP_REDIS" != "no"; then
4646
dnl
4747
dnl PHP_SUBST(REDIS_SHARED_LIBADD)
4848

49-
PHP_NEW_EXTENSION(redis, redis.c library.c redis_session.c, $ext_shared)
49+
PHP_NEW_EXTENSION(redis, redis.c library.c redis_session.c igbinary/igbinary.c igbinary/hash_si.c igbinary/hash_function.c, $ext_shared)
5050
fi

igbinary/.gitignore

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
*.swp
2+
*.lo
3+
*.la
4+
.deps
5+
.libs
6+
Makefile
7+
Makefile.fragments
8+
Makefile.global
9+
Makefile.objects
10+
acinclude.m4
11+
aclocal.m4
12+
autom4te.cache
13+
build
14+
config.cache
15+
config.guess
16+
config.h
17+
config.h.in
18+
config.log
19+
config.nice
20+
config.status
21+
config.sub
22+
configure
23+
configure.in
24+
conftest
25+
conftest.c
26+
include
27+
install-sh
28+
libtool
29+
ltmain.sh
30+
missing
31+
mkinstalldirs
32+
modules
33+
scan_makefile_in.awk
34+
*.dsw
35+
*.plg
36+
*.opt
37+
*.ncb
38+
Release
39+
Release_inline
40+
Debug
41+
Release_TS
42+
Release_TSDbg
43+
Release_TS_inline
44+
Debug_TS
45+
run-tests.php
46+
cscope.out
47+
tests/*.out
48+
tests/*.php
49+
tests/*.mem
50+
tests/*.diff
51+
tests/*.log
52+
tests/*.exp
53+
tmp-php.ini

igbinary/COPYING

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2008 Sulake Dynamoid Oy
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
- Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
- Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
- Neither the name of the 'igbinary' nor the names of its contributors may
15+
be used to endorse or promote products derived from this software without
16+
specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28+
THE POSSIBILITY OF SUCH DAMAGE.

igbinary/CREDITS

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
igbinary is produced for IRC-Galleria (http://irc-galleria.net, a finnish community site)
2+
by Sulake Dynamoid Oy and its employees.
3+
4+
- Igbinary
5+
Oleg Grenrus <[email protected]>
6+
7+
- Hash functions
8+
Bob Jenkins <[email protected]>

igbinary/ChangeLog

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2008-06-29 Oleg Grenrus <[email protected]>
2+
* config.m4: fixed CFLAGS
3+
* igbinary.c: do not init object & string hashes if serializing scalars.
4+
unserialize_callback_func support.
5+
igbinary_serialize and igbinary_unserialize for the external use.
6+
* intbinary.h: header for external use
7+
* tests/022.phpt: unserialize_callback_func test
8+
* tests/023.phpt: resource serializes to null test
9+
* tests/002.phpt tests/003.phpt tests/004.phpt tests/005.phpt tests/006.phpt: == -> ===
10+
* tests/015b.phpt: pointed out http://bugs.net/bug.php?id=45406

igbinary/EXPERIMENTAL

Whitespace-only changes.

igbinary/NEWS

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
1.0.1 2008-07-05
2+
========
3+
* unserialize_callback_func support
4+
* slight speedup when serializing scalars
5+
6+
1.0.0 2008-06-25
7+
========
8+
* Public version

igbinary/README

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
igbinary
2+
========
3+
4+
What it is?
5+
-----------
6+
7+
Igbinary is a drop in replacement for the standard php serializer. Instead of
8+
time and space consuming textual representation, igbinary stores php data
9+
structures in a compact binary form. Savings are significant when using
10+
memcached or similar memory based storages for serialized data.
11+
12+
But where does the name "igbinary" come from? There was once a similar project
13+
called fbinary but it has disappeared from the Internet. Its architecture
14+
wasn't very clean either. IG is an abbreviation for a finnish social networking
15+
site IRC-Galleria (http://irc-galleria.net/)
16+
17+
Supports:
18+
- PHP5 (tested with 5.2.4 and 5.2.5)
19+
- Same data types as the standard php serializer:
20+
null, bool, int, float, string, array and objects.
21+
- __autoload & unserialize_callback_func
22+
- __sleep & __wakeup
23+
- Serializable -interface
24+
- Data portability between platforms (32/64bit, endianess)
25+
- Tested on Linux amd64, Mac OSX x86 and NetBSD sparc64
26+
27+
Why to use
28+
----------
29+
30+
Storing complex php data structures like arrays of associative arrays in
31+
serialized form is not very space efficient. Igbinary uses two strategies to
32+
minimize size of the serialized form.
33+
34+
Strings are stored only once by using a hash table. Arrays of associate arrays
35+
with very verbose keys are stored very compactly.
36+
37+
Numerical values are stored in the smallest primitive data type available.
38+
123 = int8_t
39+
1234 = int16_t
40+
123456 = int32_t
41+
... and so on.
42+
43+
How to use
44+
----------
45+
46+
Add the following lines to your php.ini:
47+
48+
# Load igbinary extension
49+
extension=igbinary.so
50+
51+
# Use igbinary as session serializer
52+
session.serialize_handler=igbinary
53+
54+
.. and in your php code replace serialize and unserialize function calls
55+
with igbinary_serialize and igbinary_unserialize.
56+
57+
Installing
58+
----------
59+
60+
Note:
61+
Sometimes you may have to substitute phpize with phpize5.
62+
is such cases you will probably want to add "--with-php-config=.../php-config5" as
63+
an option to configure.
64+
65+
Compiling:
66+
67+
1. phpize
68+
69+
If you use GCC:
70+
2. ./configure CFLAGS="-O2 -g" --enable-igbinary
71+
72+
If you use ICC (Intel C Compiler)
73+
2. ./configure CFLAGS=" -no-prec-div -O3 -xO -unroll2 -g" CC=icc --enable-igbinary
74+
75+
3. make
76+
4. ( make test)
77+
5. make install
78+
6. igbinary.so is installed in the default extensions directory
79+
80+
Bugs & Contributions
81+
--------------------
82+
83+
To report bugs, or to contribute fixes and improvements send email to
84+
85+
86+
Use from other extensions
87+
-------------------------
88+
89+
If you are writing own extension and it is possible to use igbinary.
90+
Igbinary installs own header igbinary.h to the ext/igbinary/igbinary.h.
91+
There are just two straighforward functions: igbinary_serialize and igbinary_unserialize.
92+
Look at the igbinary.h for prototypes and more information.
93+
94+
Use PHP_ADD_EXTENSION_DEP(yourextension, igbinary) in config.m4 if someone wants
95+
compile both of them statically into php.

igbinary/benchmark/album1.php

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
$data = array(
4+
'euro2008' => array(
5+
'title' => 'Euro 2008',
6+
'description' => 'Pictures from UEFA EURO CUP 2008',
7+
'pics' => array(
8+
array('width' => 600, 'height' => '400', 'id' => 1),
9+
array('width' => 600, 'height' => '400', 'id' => 2),
10+
array('width' => 300, 'height' => '200', 'id' => 3),
11+
array('width' => 300, 'height' => '200', 'id' => 4),
12+
)
13+
),
14+
15+
'summer2008' => array(
16+
'title' => 'Summer 2008',
17+
'description' => 'Summer \o/',
18+
'pics' => array(
19+
array('width' => 600, 'height' => '400', 'id' => 5),
20+
array('width' => 600, 'height' => '400', 'id' => 6),
21+
array('width' => 300, 'height' => '200', 'id' => 7),
22+
array('width' => 300, 'height' => '200', 'id' => 8),
23+
)
24+
),
25+
26+
'summer2007' => array(
27+
'title' => 'Summer 2007',
28+
'description' => 'Summer \o/',
29+
'pics' => array(
30+
array('width' => 600, 'height' => '400', 'id' => 9),
31+
array('width' => 600, 'height' => '400', 'id' => 10),
32+
array('width' => 300, 'height' => '200', 'id' => 11),
33+
array('width' => 300, 'height' => '200', 'id' => 12),
34+
array('width' => 300, 'height' => '200', 'id' => 13),
35+
)
36+
)
37+
);
38+
39+
?>

igbinary/benchmark/album2.php

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?php
2+
3+
$data = array(
4+
'euro2008' => array(
5+
'title' => 'Euro 2008',
6+
'description' => 'Pictures from UEFA EURO CUP 2008',
7+
'pics' => array(
8+
array('width' => 600, 'height' => '400', 'id' => 1),
9+
array('width' => 600, 'height' => '400', 'id' => 2),
10+
array('width' => 300, 'height' => '200', 'id' => 3),
11+
array('width' => 300, 'height' => '200', 'id' => 4),
12+
)
13+
),
14+
15+
'summer2008' => array(
16+
'title' => 'Summer 2008',
17+
'description' => 'Summer \o/',
18+
'pics' => array(
19+
array('width' => 600, 'height' => '400', 'id' => 5),
20+
array('width' => 600, 'height' => '400', 'id' => 6),
21+
array('width' => 300, 'height' => '200', 'id' => 7),
22+
array('width' => 300, 'height' => '200', 'id' => 8),
23+
)
24+
),
25+
26+
'summer2007' => array(
27+
'title' => 'Summer 2007',
28+
'description' => 'Summer \o/',
29+
'pics' => array(
30+
array('width' => 600, 'height' => '400', 'id' => 9),
31+
array('width' => 600, 'height' => '400', 'id' => 10),
32+
array('width' => 300, 'height' => '200', 'id' => 11),
33+
array('width' => 300, 'height' => '200', 'id' => 12),
34+
array('width' => 300, 'height' => '200', 'id' => 13),
35+
)
36+
),
37+
38+
'summer2006' => array(
39+
'title' => 'Summer 2006',
40+
'description' => 'Summer \o/',
41+
'pics' => array(
42+
array('width' => 600, 'height' => '400', 'id' => 14),
43+
array('width' => 600, 'height' => '400', 'id' => 15),
44+
array('width' => 300, 'height' => '200', 'id' => 16),
45+
array('width' => 300, 'height' => '200', 'id' => 17),
46+
array('width' => 300, 'height' => '200', 'id' => 18),
47+
array('width' => 300, 'height' => '200', 'id' => 19),
48+
)
49+
),
50+
51+
'summer2005' => array(
52+
'title' => 'Summer 2005',
53+
'description' => 'Summer \o/',
54+
'pics' => array(
55+
array('width' => 600, 'height' => '400', 'id' => 20),
56+
array('width' => 600, 'height' => '400', 'id' => 21),
57+
array('width' => 300, 'height' => '200', 'id' => 22),
58+
array('width' => 300, 'height' => '200', 'id' => 23),
59+
array('width' => 300, 'height' => '200', 'id' => 24),
60+
array('width' => 300, 'height' => '200', 'id' => 25),
61+
)
62+
),
63+
64+
'summer2004' => array(
65+
'title' => 'Summer 2004',
66+
'description' => 'Summer \o/',
67+
'pics' => array(
68+
array('width' => 600, 'height' => '400', 'id' => 26),
69+
array('width' => 600, 'height' => '400', 'id' => 27),
70+
array('width' => 300, 'height' => '200', 'id' => 28),
71+
array('width' => 300, 'height' => '200', 'id' => 29),
72+
array('width' => 300, 'height' => '200', 'id' => 30),
73+
array('width' => 300, 'height' => '200', 'id' => 31),
74+
)
75+
)
76+
);
77+
78+
?>

igbinary/benchmark/matrix.php

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php
2+
$data = array(
3+
1 => array(
4+
2 => array(3, 4, 5, 6),
5+
3 => array(40, 50, 60, 70),
6+
4 => array(500, 600, 700, 800),
7+
2 => array(300000, 400000, 500000, 600000),
8+
3 => array(400, 500, 600, 700),
9+
4 => array(5000, 6000, 7000, 8000),
10+
),
11+
2 => array(
12+
2 => array(3, 4, 5, 6),
13+
3 => array(40, 50, 60, 70),
14+
4 => array(500, 600, 700, 800),
15+
2 => array(300000, 400000, 500000, 600000),
16+
3 => array(400, 500, 600, 700),
17+
4 => array(5000, 6000, 7000, 8000),
18+
),
19+
3 => array(
20+
2 => array(3, 4, 5, 6),
21+
3 => array(40, 50, 60, 70),
22+
4 => array(500, 600, 700, 800),
23+
2 => array(300000, 400000, 500000, 600000),
24+
3 => array(400, 500, 600, 700),
25+
4 => array(5000, 6000, 7000, 8000),
26+
)
27+
);
28+
29+
?>

igbinary/benchmark/scalar.php

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
$data = 42;
3+
?>

igbinary/benchmark/simple.php

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
$data = array('foo' => 'bar', 'bar' => 'foo');
3+
?>

0 commit comments

Comments
 (0)