-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpsr_cache.c
103 lines (82 loc) · 3.52 KB
/
psr_cache.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "php_ini.h"
#include "ext/standard/info.h"
#include "ext/spl/spl_exceptions.h"
#include "zend_API.h"
#include "zend_interfaces.h"
#include "php_psr.h"
#include "psr_cache.h"
#include "psr_private.h"
/* {{{ CacheException ------------------------------------------------------- */
PHP_PSR_API zend_class_entry * PsrCacheCacheException_ce_ptr;
#define PsrCacheCacheException_methods NULL
static zend_always_inline void php_psr_register_CacheException(INIT_FUNC_ARGS)
{
PHP_PSR_REGISTER_INTERFACE(Cache, CacheException);
}
/* }}} ---------------------------------------------------------------------- */
/* {{{ CacheItemInterface --------------------------------------------------- */
PHP_PSR_API zend_class_entry * PsrCacheCacheItemInterface_ce_ptr;
static zend_function_entry PsrCacheCacheItemInterface_methods[] = {
PHP_PSR_ABSTRACT_ME(Cache, CacheItemInterface, getKey)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemInterface, get)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemInterface, isHit)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemInterface, set)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemInterface, expiresAt)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemInterface, expiresAfter)
PHP_FE_END
};
static zend_always_inline void php_psr_register_CacheItemInterface(INIT_FUNC_ARGS)
{
PHP_PSR_REGISTER_INTERFACE(Cache, CacheItemInterface);
}
/* }}} ---------------------------------------------------------------------- */
/* {{{ CacheItemPoolInterface ----------------------------------------------- */
PHP_PSR_API zend_class_entry * PsrCacheCacheItemPoolInterface_ce_ptr;
static zend_function_entry PsrCacheCacheItemPoolInterface_methods[] = {
PHP_PSR_ABSTRACT_ME(Cache, CacheItemPoolInterface, getItem)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemPoolInterface, getItems)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemPoolInterface, hasItem)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemPoolInterface, clear)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemPoolInterface, deleteItem)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemPoolInterface, deleteItems)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemPoolInterface, save)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemPoolInterface, saveDeferred)
PHP_PSR_ABSTRACT_ME(Cache, CacheItemPoolInterface, commit)
PHP_FE_END
};
static zend_always_inline void php_psr_register_CacheItemPoolInterface(INIT_FUNC_ARGS)
{
PHP_PSR_REGISTER_INTERFACE(Cache, CacheItemPoolInterface);
}
/* }}} ---------------------------------------------------------------------- */
/* {{{ InvalidArgumentException --------------------------------------------- */
PHP_PSR_API zend_class_entry * PsrCacheInvalidArgumentException_ce_ptr;
#define PsrCacheInvalidArgumentException_methods NULL
static zend_always_inline void php_psr_register_InvalidArgumentException(INIT_FUNC_ARGS)
{
PHP_PSR_REGISTER_INTERFACE(Cache, InvalidArgumentException);
zend_class_implements(PsrCacheInvalidArgumentException_ce_ptr, 1, PsrCacheCacheException_ce_ptr);
}
/* }}} ---------------------------------------------------------------------- */
/* {{{ PHP_MINIT_FUNCTION */
PHP_MINIT_FUNCTION(psr_cache)
{
php_psr_register_CacheException(INIT_FUNC_ARGS_PASSTHRU);
php_psr_register_CacheItemInterface(INIT_FUNC_ARGS_PASSTHRU);
php_psr_register_CacheItemPoolInterface(INIT_FUNC_ARGS_PASSTHRU);
php_psr_register_InvalidArgumentException(INIT_FUNC_ARGS_PASSTHRU);
return SUCCESS;
}
/* }}} */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: fdm=marker
* vim: et sw=4 ts=4
*/