benestar/asparagus
Composer 安装命令:
composer require benestar/asparagus
包简介
SPARQL abstraction layer for PHP
README 文档
README
[]
(http://travis-ci.org/Benestar/asparagus)
[
]
(https://scrutinizer-ci.com/g/Benestar/asparagus/?branch=master)
[
]
(https://scrutinizer-ci.com/g/Benestar/asparagus/?branch=master)
[
]
(https://packagist.org/packages/benestar/asparagus)
[
]
(https://packagist.org/packages/benestar/asparagus)
[]
(https://packagist.org/packages/benestar/asparagus)
[
]
(//packagist.org/packages/benestar/asparagus)
Asparagus is a SPARQL abstraction layer for PHP. It's design is inspired by the DBAL query builder.
Installation
You can use Composer to download and install this package as well as its dependencies. Alternatively you can simply clone the git repository and take care of loading yourself.
Composer
To add this package as a local, per-project dependency to your project, simply add a
dependency on benestar/asparagus to your project's composer.json file.
Here is a minimal example of a composer.json file that just defines a dependency on
Asparagus 0.3:
{ "require": { "benestar/asparagus": "~0.4" } }
Manual
Get the Asparagus code, either via git, or some other means. Also get all dependencies. You can find a list of the dependencies in the "require" section of the composer.json file. The "autoload" section of this file specifies how to load the resources provide by this library.
Usage
Most of the methods in QueryBuilder return the builder instance so you can build a query
by calling the methods one by one. Currently, the QueryBuilder supports to manage prefixes,
select variables, add basic triple conditions and group them by subject and predicate, and
full support for all query modifiers SPARQL provides.
The QueryBuilder instance can be passed to a QueryExecuter or the SPARQL can be obtained
as is using getSPARQL or formatted using format.
Basic functionality
In the following example, a simple SPARQL query is generated asking for all persons who have a name and an email address stored in the database.
use Asparagus\QueryBuilder; $prefixes = array( 'test' => 'http://www.example.com/test#' ); $queryBuilder = new QueryBuilder( $prefixes ); $queryBuilder->select( '?name', '?email' ) ->where( '?person', 'test:name', '?name' ) ->also( 'test:email', '?email' ) ->limit( 10 ); echo $queryBuilder->format();
The generated query looks like:
PREFIX test: <http://www.example.com/test#> SELECT ?name ?email WHERE { ?person test:name ?name ; test:email ?email . } LIMIT 10
Optionals and filters
The following snippet creates a more complex query using optional values and filters. Only persons who do not have their email address deposited in the database are shown.
use Asparagus\QueryBuilder; $prefixes = array( 'test' => 'http://www.example.com/test#' ); $queryBuilder = new QueryBuilder( $prefixes ); $queryBuilder->select( '?name' ) ->where( '?person', 'test:name', '?name' ) ->optional( '?person', 'test:email', '?email' ) ->filter( '!BOUND (?email)' ); echo $queryBuilder->format();
The generated query looks like:
PREFIX test: <http://www.example.com/test#> SELECT ?name WHERE { ?person test:name ?name . OPTIONAL { ?person test:email ?email . } FILTER (!BOUND (?email)) }
Unions
More complex queries can be built by using subgraphs or subqueries. To create a new subgrapho or
subquery, you can call QueryBuilder::newSubgraph or QueryBuilder::newSubquery. GraphBuilder
supports all graph functions also supported by QueryBuilder and it will return itself as well.
If alternative conditions should be matched, you can use QueryBuilder::union to specify several
graph patterns which are all allowed.
The next query returns titles and authors of books recorded using Dublin Core properties from version 1.0 or version 1.1.
use Asparagus\QueryBuilder; $prefixes = array( 'dc10' => 'http://purl.org/dc/elements/1.0/', 'dc11' => 'http://purl.org/dc/elements/1.1/' ); $queryBuilder = new QueryBuilder( $prefixes ); $queryBuilder->select( '?title', '?author' ) ->union( $queryBuilder->newSubgraph() ->where( '?book', 'dc10:title', '?title' ) ->also( 'dc10:creator', '?author' ), $queryBuilder->newSubgraph() ->where( '?book', 'dc11:title', '?title' ) ->also( 'dc11:creator', '?author' ) ); echo $queryBuilder->format();
The generated query looks like:
PREFIX dc10: <http://purl.org/dc/elements/1.0/> PREFIX dc11: <http://purl.org/dc/elements/1.1/> SELECT ?title ?author WHERE { { ?book dc10:title ?title ; dc10:creator ?author . } UNION { ?book dc11:title ?title ; dc11:creator ?author . } }
Tests
This library comes with a set up PHPUnit tests that cover all non-trivial code. You can run these tests using the PHPUnit configuration file found in the root directory. The tests can also be run via TravisCI, as a TravisCI configuration file is also provided in the root directory.
Release notes
0.4.2 (2016-01-21)
- Fixed incompatible changes in
QueryExecuter
0.4.1 (2016-01-21)
- Fixed return value of
QueryExecuter::execute
0.4 (2015-10-01)
- Added
QueryBuilder::describe QueryBuilder::select,QueryBuilder::selectDistinctandQueryBuilder::selectReducednow throwRuntimeException
0.3.1 (2015-09-06)
- Added support for native values in selects
0.3 (2015-06-22)
- Renamed previously package-private
QueryConditionBuildertoGraphBuilder - Removed
QueryBuilder::hasSubquery - Added
QueryBuilder::getSelects - Added
QueryBuilder::selectDistinctandQueryBuilder::selectReduced - Added
QueryBuilder::optional - Added
QueryBuilder::filter,QueryBuilder::filterExistsandQueryBuilder::filterNotExists - Added
QueryBuilder::union - Added
QueryBuilder::newSubgraph QueryBuilder::selectandQueryBuilder::groupBynow require functions to be wrapped by bracketsQueryBuilder::groupBynow accepts multiple argumentsQueryBuilder::whereandQueryBuilder::alsonow support property paths in predicates
0.2.1 (2015-06-19)
- Fixed README.md to use prefixed variables in
QueryBuilder::select
0.2 (2015-06-18)
- Renamed
QueryBuilder::plustoQueryBuilder::also QueryBuilder::select,QueryBuilder::groupByandQueryBuilder::orderBynow expect prefixed variables instead of just the variable name- Removed
QueryBuilder::prefixas prefixes should be defined in the constructor - Added more validation for variables and prefixes.
QueryBuilder::getSPARQLwill throw aRangeExceptionif the validation fails.- Selected variables that don't occur in the conditions are detected
- Prefixes which haven't been declared are detected
- Variable names and IRIs now have to mach the correct format
- A list of supported functions has been added and a check to find bracket mismatches
0.1 (2015-06-17)
Initial release with these features:
- A
QueryBuilderwith basic functionality to generate SPARQL queries - A
QueryFormatterto make SPARQL queries human-readable - A
QueryExecuterwhich sends queries to a SPARQL endpoint and parses the result
License
Asparagus is licensed under the GNU General Public License Version 2. A copy of the license can be found in the LICENSE file.
benestar/asparagus 适用场景与选型建议
benestar/asparagus 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 57.46k 次下载、GitHub Stars 达 14, 最近一次更新时间为 2015 年 06 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Abstraction Layer」 「sparql」 「asparagus」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 benestar/asparagus 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 benestar/asparagus 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 benestar/asparagus 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.
ADOdb is a PHP database abstraction layer library
Slimmed down concise interfaces and query builder for database queries and transactions which can be layered / decorated.
ARC2 RDF library for PHP
RDF in-memory quad store implementation using PDO and SQLite.
统计信息
- 总下载量: 57.46k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 15
- 点击次数: 2
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: GNU
- 更新时间: 2015-06-15