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

Commit 27a5e1c

Browse files
authored
Merge pull request #15 from pinepain/rename_to_ref
Rename extension to ref
2 parents aaaedca + 91eed6f commit 27a5e1c

File tree

122 files changed

+1713
-1568
lines changed

Some content is hidden

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

122 files changed

+1713
-1568
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.deps
22
*.lo
3+
*.loT
34
*.la
45
.libs
56
acinclude.m4

CMakeLists.txt

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
cmake_minimum_required(VERSION 3.1)
2+
project(php_ref)
3+
4+
# NOTE: This CMake file is just for syntax highlighting in CLion
5+
6+
include_directories(/usr/local/include/php)
7+
include_directories(/usr/local/include/php/TSRM)
8+
include_directories(/usr/local/include/php/Zend)
9+
include_directories(/usr/local/include/php/ext)
10+
include_directories(/usr/local/include/php/main)
11+
include_directories(/usr/local/include/php/sapi)
12+
13+
add_definitions(-DCOMPILE_DL_REF)
14+
15+
set(SOURCE_FILES
16+
php_ref.h
17+
ref.c
18+
19+
php_ref_notifier_exception.c
20+
php_ref_notifier_exception.h
21+
22+
php_ref_reference.c
23+
php_ref_reference.h
24+
25+
php_ref_functions.c
26+
php_ref_functions.h
27+
)
28+
29+
add_executable(php_ref ${SOURCE_FILES})

CREDITS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
weak
1+
ref

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2016 Bogdan Padalko <zaq178miami@gmail.com>
3+
Copyright (c) 2016 Bogdan Padalko <pinepain@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

+44-41
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# PHP Weak extension
1+
# PHP Ref extension
22

3-
[![Build Status](https://travis-ci.org/pinepain/php-weak.svg)](https://travis-ci.org/pinepain/php-weak)
4-
[![Windows Build status](https://ci.appveyor.com/api/projects/status/7r07eydi6c3lj36a/branch/master?svg=true)](https://ci.appveyor.com/project/pinepain/php-weak)
5-
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/pinepain/php-weak/master/LICENSE)
3+
[![Build Status](https://travis-ci.org/pinepain/php-ref.svg)](https://travis-ci.org/pinepain/php-ref)
4+
[![Windows Build status](https://ci.appveyor.com/api/projects/status/7r07eydi6c3lj36a/branch/master?svg=true)](https://ci.appveyor.com/project/pinepain/php-ref)
5+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/pinepain/php-ref/master/LICENSE)
66

77
This extension adds [Soft Reference](https://en.wikipedia.org/wiki/Weak_reference) and
88
[Weak References](https://en.wikipedia.org/wiki/Weak_reference) to PHP 7 and may serve as a ground for other
@@ -14,8 +14,8 @@ data structures that require advanced referencing model.
1414
```php
1515
<?php
1616

17-
use Weak\Reference;
18-
use Weak\SoftReference;
17+
use Ref\WeakReference;
18+
use Ref\SoftReference;
1919

2020
$obj = new class {
2121
public function __destruct() {
@@ -32,29 +32,32 @@ $obj = null; // outputs "Object will be destroyed", "Destructor called", "Object
3232

3333
## Docs
3434

35-
This extension adds `Weak` namespace and all entities are created inside it.
35+
This extension adds `Ref` namespace and all entities are created inside it.
3636

3737
There are no INI setting or constants provided by this extension.
3838

39-
Brief docs about classes and [functions](./stubs/weak/functions.php)
40-
may be seen in [stub files](./stubs/weak).
39+
Brief docs about classes and [functions](./stubs/src/functions.php)
40+
may be seen in [stub files](./stubs/src).
4141

4242
Short list if what provided by this extension is:
4343

44-
- `abstract class Weak\AbstractReference` *may not be subclassed directly* [doc](./stubs/weak/AbstractReference.php)
45-
- `class Weak\SoftReference extends AbstractReference` [doc](./stubs/weak/SoftReference.php)
46-
- `class Weak\Reference extends AbstractReference` [doc](./stubs/weak/Reference.php)
47-
- `class Weak\NotifierException extend Exception` [doc](./stubs/weak/NotifierException.php)
48-
- `function Weak\refcounted()`
49-
- `function Weak\refcount()`
50-
- `function Weak\softrefcounted()`
51-
- `function Weak\softrefcount()`
52-
- `function Weak\softrefs()`
53-
- `function Weak\weakrefcounted()`
54-
- `function Weak\weakrefcount()`
55-
- `function Weak\weakrefs()`
56-
- `function Weak\object_handle()`
57-
- `function Weak\is_obj_destructor_called()`
44+
Classes:
45+
- `abstract class Ref\AbstractReference` *may not be subclassed directly* ([doc](./stubs/src/AbstractReference.php))
46+
- `class Ref\SoftReference extends AbstractReference` ([doc](./stubs/srd/SoftReference.php))
47+
- `class Ref\WeakReference extends AbstractReference` ([doc](./stubs/src/Reference.php))
48+
- `class Ref\NotifierException extend Exception` ([doc](./stubs/src/NotifierException.php))
49+
50+
Functions ([doc](./stubs/src/functions.php)):
51+
- `function Ref\refcounted()`
52+
- `function Ref\refcount()`
53+
- `function Ref\softrefcounted()`
54+
- `function Ref\softrefcount()`
55+
- `function Ref\softrefs()`
56+
- `function Ref\weakrefcounted()`
57+
- `function Ref\weakrefcount()`
58+
- `function Ref\weakrefs()`
59+
- `function Ref\object_handle()`
60+
- `function Ref\is_obj_destructor_called()`
5861

5962
### References
6063

@@ -68,13 +71,13 @@ Note: What this extension provides aren't quite actual soft and weak references,
6871

6972
Notifier can be one of `callable`, `array` or `null` types. `null` notifier denotes no notifier set.
7073

71-
Note that notification happens *after* referent object destruction, so at the time of notification `Weak\Referent::get()`
74+
Note that notification happens *after* referent object destruction, so at the time of notification `Ref\Referent::get()`
7275
will return `null` (unless rare case when object refcount get incremented in destructor, e.g. by storing destructing value
7376
somewhere else).
7477

7578
If object destructor or one or more notifiers throw exception, all further notifier callbacks will be called as if
76-
that exception was thrown inside `try-catch` block. In case one or more exceptions were thrown, `Weak\NotifierException`
77-
will be thrown and all thrown exceptions will be available via `Weak\NotifierException::getExceptions()` method.
79+
that exception was thrown inside `try-catch` block. In case one or more exceptions were thrown, `Ref\NotifierException`
80+
will be thrown and all thrown exceptions will be available via `Ref\NotifierException::getExceptions()` method.
7881

7982

8083
### Cloning
@@ -85,7 +88,7 @@ but they will be invoked with different reference objects.
8588
```php
8689
<?php
8790

88-
use Weak\Reference;
91+
use Ref\WeakReference;
8992

9093
$obj = new stdClass();
9194

@@ -100,7 +103,7 @@ To avoid this you may want to change notifier in `__clone()` method:
100103
```php
101104
<?php
102105

103-
class OwnNotifierReference extends Weak\Reference
106+
class OwnNotifierReference extends Ref\WeakReference
104107
{
105108
public function __clone()
106109
{
@@ -127,11 +130,11 @@ fatal error.
127130

128131
## Stub files
129132

130-
If you are also using Composer, it is recommended to add the [php-weak-stub](https://github.com/pinepain/php-weak-stubs)
133+
If you are also using Composer, it is recommended to add the [php-ref-stub](https://github.com/pinepain/php-ref-stubs)
131134
package as a dev-mode requirement. It provides skeleton definitions and annotations to enable support for auto-completion
132135
in your IDE and other code-analysis tools.
133136

134-
composer require --dev pinepain/php-weak-stubs
137+
composer require --dev pinepain/php-ref-stubs
135138

136139

137140
## Extra weak data structures support
@@ -148,8 +151,8 @@ to add it to your project.
148151

149152
### Building from sources
150153

151-
git clone https://github.com/pinepain/php-weak.git
152-
cd php-weak
154+
git clone https://github.com/pinepain/php-ref.git
155+
cd php-ref
153156
phpize && ./configure && make
154157
make test
155158

@@ -160,22 +163,22 @@ To install extension globally run
160163
You will need to copy the extension config to your php dir, here is example for Ubuntu with PHP 7.0 from
161164
[Ondřej Surý's PPA for PHP](https://launchpad.net/~ondrej/+archive/ubuntu/php):
162165

163-
# sudo cp provision/php/weak.ini /etc/php/mods-available/
164-
# sudo phpenmod -v ALL weak
166+
# sudo cp provision/php/ref.ini /etc/php/mods-available/
167+
# sudo phpenmod -v ALL ref
165168
# sudo service php7.0-fpm restart
166169

167-
You may also want to add php-weak extension as a [composer.json dependency](https://getcomposer.org/doc/02-libraries.md#platform-packages):
170+
You may also want to add php-ref extension as a [composer.json dependency](https://getcomposer.org/doc/02-libraries.md#platform-packages):
168171

169172
"require": {
170173
...
171-
"ext-weak": "~0.1.0"
174+
"ext-ref": "~0.1.0"
172175
...
173176
}
174177

175178

176179
## Internals
177180

178-
`Weak\Reference` class is implemented by storing tracked object handlers and then wrapping it original `dtor_obj` handler
181+
`Ref\WeakReference` class is implemented by storing tracked object handlers and then wrapping it original `dtor_obj` handler
179182
with a custom one, which meta-code is:
180183

181184
```php
@@ -194,7 +197,7 @@ foreach($soft_references as $soft_ref_object_handle => $soft_reference) {
194197
}
195198

196199
if ($exceptions) {
197-
throw new Weak\NotifierException('One or more exceptions thrown during notifiers calling', $exceptions);
200+
throw new Ref\NotifierException('One or more exceptions thrown during notifiers calling', $exceptions);
198201
}
199202

200203
if (refcount($object) == 1) {
@@ -217,7 +220,7 @@ if (refcount($object) == 1) {
217220
}
218221

219222
if ($exceptions) {
220-
throw new Weak\NotifierException('One or more exceptions thrown during notifiers calling', $exceptions);
223+
throw new Ref\NotifierException('One or more exceptions thrown during notifiers calling', $exceptions);
221224
}
222225
} else {
223226
// required while internally PHP GC mark object as it dtor was called before calling dtor
@@ -228,7 +231,7 @@ if (refcount($object) == 1) {
228231
## Development and testing
229232

230233
This extension shipped with Vagrant file which provides basic environment for development and testing purposes.
231-
To start it, just type `vagrant up` and then `vagrant ssh` in php-weak directory.
234+
To start it, just type `vagrant up` and then `vagrant ssh` in php-ref directory.
232235

233236
Services available out of the box are:
234237

@@ -270,4 +273,4 @@ between large variety of PHP versions.
270273

271274
## License
272275

273-
[php-weak](https://github.com/pinepain/php-weak) PHP extension is licensed under the [MIT license](http://opensource.org/licenses/MIT).
276+
[php-ref](https://github.com/pinepain/php-ref) PHP extension is licensed under the [MIT license](http://opensource.org/licenses/MIT).

Vagrantfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2323
config.vm.network "private_network", ip: "192.168.33.102"
2424

2525
# NOTE: temporary workaround
26-
#config.vm.hostname = "php-weak.vagrant"
27-
config.vm.provision :shell, inline: "hostnamectl set-hostname php-weak.vagrant"
26+
#config.vm.hostname = "php-ref.vagrant"
27+
config.vm.provision :shell, inline: "hostnamectl set-hostname php-ref.vagrant"
2828

2929
config.ssh.insert_key = false
3030

31-
config.vm.synced_folder ".", "/home/vagrant/php-weak"
31+
config.vm.synced_folder ".", "/home/vagrant/php-ref"
3232

3333
config.vm.provider "virtualbox" do |vb|
3434
# Don't boot with headless mode

appveyor.yml

+23-9
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ matrix:
1515
fast_finish: true
1616

1717
os: Windows Server 2012
18-
clone_folder: c:\projects\php-sdk\php-weak-ci\vc14\x86\php\ext\weak
18+
clone_folder: c:\projects\php-sdk\php-ref-ci\vc14\x86\php\ext\ref
1919

2020
init:
2121
- ps: |
@@ -32,15 +32,15 @@ init:
3232
3333
$env:PHP="$($env:PHP_VERSION.Substring(0, $env:PHP_VERSION.indexOf('.', 2)))"
3434
35-
$env:ARTIFACT_NAME="php_weak-$($env:PHP)-$($env:TS_OR_NTS)-vc14-$($env:PLATFORM).zip"
35+
$env:ARTIFACT_NAME="php_ref-$($env:PHP)-$($env:TS_OR_NTS)-vc14-$($env:PLATFORM).zip"
3636
3737
install:
3838
- cd %PHP_SDK%
3939
- curl -fSL -o php-sdk-binary-tools-20110915.zip 'http://windows.php.net/downloads/php-sdk/php-sdk-binary-tools-20110915.zip'
4040
- 7z.exe x php-sdk-binary-tools-20110915.zip
4141
- call bin\phpsdk_setvars.bat
42-
- call bin\phpsdk_buildtree.bat php-weak-ci
43-
- cd php-weak-ci\vc14\x86
42+
- call bin\phpsdk_buildtree.bat php-ref-ci
43+
- cd php-ref-ci\vc14\x86
4444
- curl -fSL -o 'php-%PHP_VERSION%.tar.gz' 'http://us1.php.net/distributions/php-%PHP_VERSION%.tar.gz'
4545
- ren php php-%PHP_VERSION%
4646
- 7z.exe x php-%PHP_VERSION%.tar.gz -y
@@ -54,19 +54,33 @@ build_script:
5454
- echo Building PHP [%PHP_VERSION%]
5555
- '%PHP_SDK%\bin\phpsdk_setvars'
5656
- buildconf
57-
- configure --disable-all --enable-cli --enable-weak=shared %ENABLE_DISABLE_THREAD_SAFETY%
57+
- configure --disable-all --enable-cli --enable-ref=shared %ENABLE_DISABLE_THREAD_SAFETY%
5858
- nmake
5959

6060
after_build:
6161
- cd %OUTDIR%
6262
- dir
6363
- dir ext
64-
- dir ext\weak
65-
- 7z a %ARTIFACT_NAME% php_weak.dll
64+
- dir ext\ref
65+
- 7z a %ARTIFACT_NAME% php_ref.dll
6666
- appveyor PushArtifact %ARTIFACT_NAME%
6767

6868
test_script:
69-
- cd c:\projects\php-sdk\php-weak-ci\vc14\x86\php-%PHP_VERSION%
69+
- cd c:\projects\php-sdk\php-ref-ci\vc14\x86\php-%PHP_VERSION%
7070
- set NO_INTERACTION=1
7171
- set REPORT_EXIT_STATUS=1
72-
- "%OUTDIR%\\php.exe run-tests.php -p %OUTDIR%\\php.exe ext/weak/tests/ -d extension=php_weak.dll -d extension_dir=%OUTDIR%\\"
72+
- "%OUTDIR%\\php.exe run-tests.php -p %OUTDIR%\\php.exe ext/ref/tests/ -d extension=php_ref.dll -d extension_dir=%OUTDIR%\\"
73+
74+
on_failure:
75+
- cd c:\projects\php-sdk\php-ref-ci\vc14\x86\php-%PHP_VERSION%\ext\ref\tests
76+
- ps: |
77+
$Result = Get-ChildItem .\* -Include *.diff, *.out, *.mem | sort $Name | ForEach-Object {
78+
Write-Output "FILE: $_"
79+
Get-Content $_
80+
Write-Output " "
81+
}
82+
83+
If ($Result.length) {
84+
Write-Output $Result
85+
exit 1
86+
}

config.m4

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
dnl $Id$
2-
dnl config.m4 for extension weak
2+
dnl config.m4 for extension ref
33

4-
PHP_ARG_ENABLE(weak, whether to enable weak support,
4+
PHP_ARG_ENABLE(ref, whether to enable ref support,
55
dnl Make sure that the comment is aligned:
6-
[ --enable-weak Enable weak support])
6+
[ --enable-ref Enable ref support])
77

8-
if test "$PHP_WEAK" != "no"; then
8+
if test "$PHP_REF" != "no"; then
99

1010
if test -z "$TRAVIS" ; then
1111
type git &>/dev/null
@@ -14,23 +14,23 @@ if test "$PHP_WEAK" != "no"; then
1414
git describe --abbrev=0 --tags &>/dev/null
1515

1616
if test $? -eq 0 ; then
17-
AC_DEFINE_UNQUOTED([PHP_WEAK_VERSION], ["`git describe --abbrev=0 --tags`-`git rev-parse --abbrev-ref HEAD`-dev"], [git version])
17+
AC_DEFINE_UNQUOTED([PHP_REF_VERSION], ["`git describe --abbrev=0 --tags`-`git rev-parse --abbrev-ref HEAD`-dev"], [git version])
1818
fi
1919

2020
git rev-parse --short HEAD &>/dev/null
2121

2222
if test $? -eq 0 ; then
23-
AC_DEFINE_UNQUOTED([PHP_WEAK_REVISION], ["`git rev-parse --short HEAD`"], [git revision])
23+
AC_DEFINE_UNQUOTED([PHP_REF_REVISION], ["`git rev-parse --short HEAD`"], [git revision])
2424
fi
2525
else
26-
AC_MSG_NOTICE([git not installed. Cannot obtain php-weak version tag. Install git.])
26+
AC_MSG_NOTICE([git not installed. Cannot obtain php-ref version tag. Install git.])
2727
fi
2828
fi
2929

30-
PHP_NEW_EXTENSION(weak, [ \
31-
weak.c \
32-
php_weak_notifier_exception.c \
33-
php_weak_reference.c \
34-
php_weak_functions.c \
30+
PHP_NEW_EXTENSION(ref, [ \
31+
ref.c \
32+
php_ref_notifier_exception.c \
33+
php_ref_reference.c \
34+
php_ref_functions.c \
3535
], $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
3636
fi

config.w32

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// $Id$
22
// vim:ft=javascript
33

4-
ARG_ENABLE("weak", "enable weak support", "no");
4+
ARG_ENABLE("ref", "enable ref support", "no");
55

6-
if (PHP_WEAK != "no") {
7-
EXTENSION("weak", "weak.c php_weak_notifier_exception.c php_weak_reference.c php_weak_functions.c", PHP_WEAK_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
6+
if (PHP_REF != "no") {
7+
EXTENSION("ref", "ref.c php_ref_notifier_exception.c php_ref_reference.c php_ref_functions.c", PHP_REF_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
88
}

0 commit comments

Comments
 (0)