mindplay/timber
Composer 安装命令:
composer require mindplay/timber
包简介
Timber is a request router with regular expression support, high performance, and a developer-friendly, human-readable API
README 文档
README
Timber is a router library with regular expression support, high performance, and a developer-friendly, human-readable API.
Installation
Install the latest version with composer require mindplay/timber
Introduction
This package provides a minimal router facility: a place to register path patterns, and a means of resolving these to controller names.
Usage
In the examples below, we assume that handlers (attached using get(), post(), etc.)
are controller class-names - in your application, they might be component IDs for a DI
container, file-names, or whatever else you like.
Basic usage of the router looks like this:
use mindplay\timber\Router; use mindplay\timber\Result; use mindplay\timber\Error; require __DIR__ . '/vendor/autoload.php'; $router = new Router(); // Defining route for one HTTP method $router->route('news')->get(ListNews::class); // Defining route for several HTTP methods $router->route('/')->get(ShowHomePage::class)->post(PostComments::class); // Defining a route with regular expression param $news_route = $router->route('news/<id:^[0-9]+$>')->get(ShowNews::class); // Defining another route with symbolic param $router->route('users/<username:slug>')->get(ShowUser::class); // Defining static route that conflicts with previous route, but static routes have high priority $router->route('news/all')->get(ShowAllNews::class); // Defining a wildcard route, matching e.g. "categories/foo", "categories/foo/bar", etc.: $router->route('categories/<path:*>')->get(ShowCategory::class); // Resolve HTTP method and URL: $method = 'GET'; $url = '/news/1'; $result = $router->resolve($method, $url); if ($result instanceof Error) { header("HTTP/1.1 {$result->status} ${result->message}"); // ...error response here... return; } else { // ...dispatch $result->handler with $result->params... }
If you're building a set of routes under the same parent route, you can continue building from a parent route - for example:
$admin = $router->route('admin')->get(AdminMenu::class); $admin->route('users')->get(AdminUserList::class); $admin->route('groups')->get(AdminGroupList::class);
This example will route /admin to AdminMenu, and /admin/users to AdminUserList, etc.
This also feature enables modular reuse of route definitions - for example:
$build_comment_routes = function (Route $parent) { $parent->route('comments')->get(ShowComments::class); $parent->route('comments/new')->get(ShowCommentForm::class)->post(PostComment::class); } $build_comment_routes($router->route('articles/<article_id:int>')); $build_comment_routes($router->route('products/<product_id:int>'));
This example creates two identical sets of routes for displaying and posting comments for two different parent routes.
Optimization
You can save and restore the defined routes:
use mindplay\timber\Router; require __DIR__ . '/vendor/autoload.php'; $router = new Router(); $router->route('/')->get(ShowHomePage::class); $router->route('/news')->get(ShowNews::class); $routes = $router->getRoutes(); $anotherRouter = new Router(); $anotherRouter->setRoutes($routes); $method = 'GET'; $url = '/news'; $result = $anotherRouter->resolve($method, $url);
The point is, you can serialize/unserialize the routes that have been built, and store them in a cache somewhere, to avoid the initialization overhead. For most projects, this would be considered a micro-optimization - the overhead of building an extremely high number of routes (hundreds or thousands) may make this worthwhile in a very large modular project.
Hacking
To run the test-suite, navigate to the project root folder and type:
php test/test.php
Design Notes
During the development of this library, a design problem was identified, which required us to make a trade-off. This library did at one point have URL creation as a feature, but after carefully weighing the pros and cons, it was decided to forego this feature, in favor of simpler implementation and support for caching.
Use-cases for three different approaches were explored and evaluated - our whiteboard summarizes the pros and cons as we saw them, and the approach without URL creation was unanimously our favorite, as it leads to the greatest simplicity, both in the library and in the use-case, and supports caching.
The first trade-off is that we don't get to use closures (which can't be serialized) and thereby do not
get any direct static coupling between the route and controller/action/params - we do get static coupling
to the controller class-name, by using the ::class constant.
The other trade-off is that we can't have a URL creation feature within the router itself, as this leads to either complexity (with the addition of a named route registry as per case 1) or prevents caching (as per case 2 - after some discussion, we decided URL creation provides only a small benefit, guaranteeing that URL creation is consistent with defined patterns; but also, we value the freedom to fully customize URL creation on a case-by-case basis using simpler code (as per case 3) and as such the absence of URL creation can actually be seen as a benefit.
Acknowledgements
Timber started as a fork of TreeRoute by Vadim Baryshev, the API and feature-set quickly grew into something else entirely. What does carry over from the original fork, is great performance.
mindplay/timber 适用场景与选型建议
mindplay/timber 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 52.58k 次下载、GitHub Stars 达 6, 最近一次更新时间为 2015 年 07 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「routing」 「router」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mindplay/timber 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mindplay/timber 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mindplay/timber 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Write down your routing mapping at one place
Flight routing is a simple, fast PHP router that is easy to get integrated with other routers.
Router
PMVC App Action Router
Database alias router extension for Nette Framework
Client for Google Directions API to add interpolated points to a route consisting of given coordinates.
统计信息
- 总下载量: 52.58k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 30
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-07-27