https://github.com/stopsopa/stopsopa-annotations
Complete annotations parser with flexible cache system
https://github.com/stopsopa/stopsopa-annotations
Last synced: 30 days ago
JSON representation
Complete annotations parser with flexible cache system
- Host: GitHub
- URL: https://github.com/stopsopa/stopsopa-annotations
- Owner: stopsopa
- License: mit
- Created: 2014-11-07T19:48:23.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-09-02T00:13:49.000Z (over 1 year ago)
- Last Synced: 2025-02-06T08:13:08.779Z (3 months ago)
- Language: PHP
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DEPRECATED
Created in 2014 - quite old now and not maintained.C'mon, I was young. Don't judge me ;P
stopsopa/annotations
Standalone, lightweight annotation parser for php with build in cache system based on:
- filesystem
- Memcached
- Apc (Deprecated technology)***
## Instalation
Library is available in composer through packagist.org (https://packagist.org/packages/stopsopa/annotations)
{
"require" : {
"stopsopa/annotations": "dev-master"
}
}## Using:
use Stopsopa\Annotations\AnnotationParser;
use Stopsopa\Annotations\Example\TestClass;// creating main object of parser
$parser = new AnnotationParser();
print_r($parser->getAnnotations(new TestClass()));## Cache
### Filesystem cache
use Stopsopa\Annotations\AnnotationParser;
use Stopsopa\Annotations\Cache\AnnotationFileCache;
use Stopsopa\Annotations\Example\TestClass;// creating main object of parser
$parser = new AnnotationParser();
$cache = new AnnotationFileCache(dirname(__FILE__).'/cachedir');
// $cache->clear(); // you can clear all cache
$parser->setCache($cache);print_r($parser->getAnnotations(new TestClass()));
### Apc cache
use Stopsopa\Annotations\AnnotationParser;
use Stopsopa\Annotations\Cache\AnnotationApcCache;
use Stopsopa\Annotations\Example\TestClass;// creating main object of parser
$parser = new AnnotationParser();
$salt = 'kdjdjdjk'; // project salt
$key = 'stopsopaannotationcache';
$apccache = md5($salt).'-'.$key;
/* @var $data Test */
$cache = apc_fetch($apccache) ?: new AnnotationApcCache($apccache);
// $cache->clear(); // you can clear all cache
$parser->setCache($cache);print_r($parser->getAnnotations(new TestClass()));
### Memcached cache
use Stopsopa\Annotations\AnnotationParser;
use Stopsopa\Annotations\Cache\MemcacheService;
use Stopsopa\Annotations\Cache\AnnotationMemcachedCache;
use Stopsopa\Annotations\Example\TestClass;// creating main object of parser
$parser = new AnnotationParser();
$salt = 'kdjdjdjk'; // project salt
$key = 'stopsopaannotationcache';
$mkey = md5($salt).'-'.$key;
MemcacheService::addServer('localhost', 11211);
$cache = MemcacheService::getInstance()->get($mkey);
if (!$cache)
MemcacheService::getInstance()->set($mkey, $cache = new AnnotationMemcachedCache($mkey));
// $cache->clear(); // you can clear all cache
$parser->setCache($cache);print_r($parser->getAnnotations(new TestClass()));
### License
The MIT License (MIT)
Copyright (c) 2014 Szymon Działowski
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.