Skip to content

Commit c87f189

Browse files
committed
init
0 parents  commit c87f189

14 files changed

+599
-0
lines changed

.gitignore

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
.deps
2+
*.lo
3+
*.la
4+
.libs
5+
acinclude.m4
6+
aclocal.m4
7+
autom4te.cache
8+
build
9+
config.guess
10+
config.h
11+
config.h.in
12+
config.log
13+
config.nice
14+
config.status
15+
config.sub
16+
configure
17+
configure.in
18+
include
19+
install-sh
20+
libtool
21+
ltmain.sh
22+
Makefile
23+
Makefile.fragments
24+
Makefile.global
25+
Makefile.objects
26+
missing
27+
mkinstalldirs
28+
modules
29+
run-tests.php
30+
tests/*/*.diff
31+
tests/*/*.out
32+
tests/*/*.php
33+
tests/*/*.exp
34+
tests/*/*.log
35+
tests/*/*.sh

.gitmodules

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "sophia"]
2+
path = sophia
3+
url = [email protected]:pmwkaa/sophia.git
4+
branch = v2.2

CREDITS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sophia

EXPERIMENTAL

Whitespace-only changes.

config.m4

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
dnl $Id$
2+
dnl config.m4 for extension sophia
3+
4+
dnl Comments in this file start with the string 'dnl'.
5+
dnl Remove where necessary. This file will not work
6+
dnl without editing.
7+
8+
dnl If your extension references something external, use with:
9+
10+
dnl PHP_ARG_WITH(sophia, for sophia support,
11+
dnl Make sure that the comment is aligned:
12+
dnl [ --with-sophia Include sophia support])
13+
14+
dnl Otherwise use enable:
15+
16+
PHP_ARG_ENABLE(sophia, whether to enable sophia support,
17+
dnl Make sure that the comment is aligned:
18+
[ --enable-sophia Enable sophia support])
19+
20+
if test "$PHP_SOPHIA" != "no"; then
21+
dnl Write more examples of tests here...
22+
23+
dnl # --with-sophia -> check with-path
24+
dnl SEARCH_PATH="/usr/local /usr" # you might want to change this
25+
dnl SEARCH_FOR="/include/sophia.h" # you most likely want to change this
26+
dnl if test -r $PHP_SOPHIA/$SEARCH_FOR; then # path given as parameter
27+
dnl SOPHIA_DIR=$PHP_SOPHIA
28+
dnl else # search default path list
29+
dnl AC_MSG_CHECKING([for sophia files in default path])
30+
dnl for i in $SEARCH_PATH ; do
31+
dnl if test -r $i/$SEARCH_FOR; then
32+
dnl SOPHIA_DIR=$i
33+
dnl AC_MSG_RESULT(found in $i)
34+
dnl fi
35+
dnl done
36+
dnl fi
37+
dnl
38+
dnl if test -z "$SOPHIA_DIR"; then
39+
dnl AC_MSG_RESULT([not found])
40+
dnl AC_MSG_ERROR([Please reinstall the sophia distribution])
41+
dnl fi
42+
43+
dnl # --with-sophia -> add include path
44+
dnl PHP_ADD_INCLUDE($SOPHIA_DIR/include)
45+
for include in $(echo sophia/sophia/*/); do
46+
PHP_ADD_INCLUDE($include)
47+
done
48+
49+
dnl # --with-sophia -> check for lib and symbol presence
50+
dnl LIBNAME=sophia # you may want to change this
51+
dnl LIBSYMBOL=sophia # you most likely want to change this
52+
53+
dnl PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,
54+
dnl [
55+
dnl PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $SOPHIA_DIR/$PHP_LIBDIR, SOPHIA_SHARED_LIBADD)
56+
dnl AC_DEFINE(HAVE_SOPHIALIB,1,[ ])
57+
dnl ],[
58+
dnl AC_MSG_ERROR([wrong sophia lib version or lib not found])
59+
dnl ],[
60+
dnl -L$SOPHIA_DIR/$PHP_LIBDIR -lm
61+
dnl ])
62+
dnl
63+
dnl PHP_SUBST(SOPHIA_SHARED_LIBADD)
64+
65+
PHP_NEW_EXTENSION(sophia, $(echo sophia/sophia/*/*.c) sophia.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
66+
fi

config.w32

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// $Id$
2+
// vim:ft=javascript
3+
4+
// If your extension references something external, use ARG_WITH
5+
// ARG_WITH("sophia", "for sophia support", "no");
6+
7+
// Otherwise, use ARG_ENABLE
8+
// ARG_ENABLE("sophia", "enable sophia support", "no");
9+
10+
if (PHP_SOPHIA != "no") {
11+
EXTENSION("sophia", "sophia.c", PHP_EXTNAME_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
12+
}
13+

examples/delete.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
var_dump($link = sp_open('/tmp/storage', 'test'));
4+
5+
var_dump(sp_set('name', 'suxiaolin', $link));
6+
7+
var_dump(sp_delete('name', $link));
8+
9+
var_dump(sp_get('name', $link));

examples/set.php

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
var_dump($link = sp_open('/tmp/storage', 'test'));
4+
5+
var_dump(sp_set('name', 'suxiaolin', $link));
6+
7+
var_dump(sp_get('name', $link));

examples/transaction.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
var_dump($link = sp_open('/tmp/storage', 'test'));
4+
5+
var_dump($transaction = sp_begin());
6+
7+
var_dump(sp_set('name', 'xiaolin', $link));
8+
var_dump(sp_get('name', $link));
9+
var_dump(sp_delete('name', $link));
10+
11+
var_dump(sp_commit($transaction));

php_sophia.h

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
/*
2+
+----------------------------------------------------------------------+
3+
| PHP Version 7 |
4+
+----------------------------------------------------------------------+
5+
| Copyright (c) 1997-2016 The PHP Group |
6+
+----------------------------------------------------------------------+
7+
| This source file is subject to version 3.01 of the PHP license, |
8+
| that is bundled with this package in the file LICENSE, and is |
9+
| available through the world-wide-web at the following url: |
10+
| http://www.php.net/license/3_01.txt |
11+
| If you did not receive a copy of the PHP license and are unable to |
12+
| obtain it through the world-wide-web, please send a note to |
13+
| [email protected] so we can mail you a copy immediately. |
14+
+----------------------------------------------------------------------+
15+
| Author: |
16+
+----------------------------------------------------------------------+
17+
*/
18+
19+
/* $Id$ */
20+
21+
#ifndef PHP_SOPHIA_H
22+
#define PHP_SOPHIA_H
23+
24+
extern zend_module_entry sophia_module_entry;
25+
#define phpext_sophia_ptr &sophia_module_entry
26+
27+
#define PHP_SOPHIA_VERSION "0.1.0" /* Replace with version number for your extension */
28+
29+
#ifdef PHP_WIN32
30+
# define PHP_SOPHIA_API __declspec(dllexport)
31+
#elif defined(__GNUC__) && __GNUC__ >= 4
32+
# define PHP_SOPHIA_API __attribute__ ((visibility("default")))
33+
#else
34+
# define PHP_SOPHIA_API
35+
#endif
36+
37+
#ifdef ZTS
38+
#include "TSRM.h"
39+
#endif
40+
41+
/*
42+
Declare any global variables you may need between the BEGIN
43+
and END macros here:
44+
45+
ZEND_BEGIN_MODULE_GLOBALS(sophia)
46+
zend_long global_value;
47+
char *global_string;
48+
ZEND_END_MODULE_GLOBALS(sophia)
49+
*/
50+
51+
/* Always refer to the globals in your function as SOPHIA_G(variable).
52+
You are encouraged to rename these macros something shorter, see
53+
examples in any other php module directory.
54+
*/
55+
#define SOPHIA_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(sophia, v)
56+
57+
#if defined(ZTS) && defined(COMPILE_DL_SOPHIA)
58+
ZEND_TSRMLS_CACHE_EXTERN()
59+
#endif
60+
61+
static int le_sophia_env;
62+
static int le_sophia_db;
63+
static int le_sophia_transaction;
64+
65+
#endif /* PHP_SOPHIA_H */
66+
67+
68+
/*
69+
* Local variables:
70+
* tab-width: 4
71+
* c-basic-offset: 4
72+
* End:
73+
* vim600: noet sw=4 ts=4 fdm=marker
74+
* vim<600: noet sw=4 ts=4
75+
*/

sophia

Submodule sophia added at eca1348

0 commit comments

Comments
 (0)