hyperf/docs/zh-cn/annotation.md

329 lines
11 KiB
Markdown
Raw Normal View History

2019-03-20 14:30:37 +08:00
# 注解
2019-03-20 11:50:05 +08:00
2019-03-20 16:21:02 +08:00
注解是 Hyperf 非常强大的一项功能,可以通过注解的形式减少很多的配置,以及实现很多非常方便的功能。
2019-03-20 14:30:37 +08:00
## 概念
2022-06-25 20:16:32 +08:00
### 什么是注解?
2019-03-20 11:50:05 +08:00
2022-06-25 20:16:32 +08:00
注解功能提供了代码中的声明部分都可以添加结构化、机器可读的元数据的能力, 注解的目标可以是类、方法、函数、参数、属性、类常量。 通过 反射 API 可在运行时获取注解所定义的元数据。 因此注解可以成为直接嵌入代码的配置式语言。
2019-03-20 11:50:05 +08:00
2022-06-25 20:16:32 +08:00
通过注解的使用,在应用中实现功能、使用功能可以相互解耦。 某种程度上讲它可以和接口interface与其实现implementation相比较。 但接口与实现是代码相关的,注解则与声明额外信息和配置相关。 接口可以通过类来实现,而注解也可以声明到方法、函数、参数、属性、类常量中。 因此它们比接口更灵活。
2019-03-20 11:50:05 +08:00
2022-06-25 20:16:32 +08:00
注解使用的一个简单例子将接口interface的可选方法改用注解实现。 我们假设接口 ActionHandler 代表了应用的一个操作: 部分 action handler 的实现需要 setup部分不需要。 我们可以使用注解,而不用要求所有类必须实现 ActionHandler 接口并实现 setUp() 方法。 因此带来一个好处——可以多次使用注解。
2019-03-20 11:50:05 +08:00
2019-03-20 14:30:37 +08:00
### 注解是如何发挥作用的?
2019-03-20 11:50:05 +08:00
我们有说到注解只是元数据的定义,需配合应用程序才能发挥作用,在 Hyperf 里,注解内的数据会被收集到 `Hyperf\Di\Annotation\AnnotationCollector` 类供应用程序使用,当然根据您的实际情况,也可以收集到您自定义的类去,随后在这些注解本身希望发挥作用的地方对已收集的注解元数据进行读取和利用,以达到期望的功能实现。
2019-03-20 14:30:37 +08:00
2019-03-22 20:18:28 +08:00
### 忽略某些注解
在一些情况下我们可能希望忽略某些 注解,比如我们在接入一些自动生成文档的工具时,有不少工具都是通过注解的形式去定义文档的相关结构内容的,而这些注解可能并不符合 Hyperf 的使用方式,我们可以通过在 `config/autoload/annotations.php` 内将相关注解设置为忽略。
```php
2022-06-25 20:16:32 +08:00
use JetBrains\PhpStorm\ArrayShape;
2019-03-22 20:18:28 +08:00
return [
'scan' => [
// ignore_annotations 数组内的注解都会被注解扫描器忽略
'ignore_annotations' => [
2022-06-25 20:16:32 +08:00
ArrayShape::class,
2019-03-22 20:18:28 +08:00
],
],
];
```
2019-03-20 14:30:37 +08:00
## 使用注解
2019-11-12 19:46:54 +08:00
注解一共有 3 种应用对象,分别是 `类`、`类方法` 和 `类属性`
2019-03-21 12:16:46 +08:00
2019-03-20 14:30:37 +08:00
### 使用类注解
2022-06-25 20:16:32 +08:00
类注解定义是在 `class` 关键词上方的注释块内,比如常用的 `Controller``AutoController` 就是类注解的使用典范,下面的代码示例则为一个正确使用类注解的示例,表明 `ClassAnnotation` 注解应用于 `Foo` 类。
```php
<?php
#[ClassAnnotation]
class Foo {}
```
2019-03-20 14:30:37 +08:00
### 使用类方法注解
2022-06-25 20:16:32 +08:00
类方法注解定义是在方法上方的注释块内,比如常用的 `RequestMapping` 就是类方法注解的使用典范,下面的代码示例则为一个正确使用类方法注解的示例,表明 `MethodAnnotation` 注解应用于 `Foo::bar()` 方法。
```php
<?php
class Foo
{
#[MethodAnnotation]
public function bar()
{
// some code
}
}
```
2019-03-21 12:16:46 +08:00
### 使用类属性注解
2022-06-25 20:16:32 +08:00
类属性注解定义是在属性上方的注释块内,比如常用的 `Value``Inject` 就是类属性注解的使用典范,下面的代码示例则为一个正确使用类属性注解的示例,表明 `PropertyAnnotation` 注解应用于 `Foo` 类的 `$bar` 属性。
```php
<?php
class Foo
{
#[PropertyAnnotation]
private $bar;
}
```
### 注释型注解参数传递
2019-03-21 12:16:46 +08:00
2022-06-25 20:16:32 +08:00
- 传递主要的单个参数 `#[DemoAnnotation('value')]`
- 传递字符串参数 `#[DemoAnnotation(key1: 'value1', key2: 'value2')]`
- 传递数组参数 `#[DemoAnnotation(key: ['value1', 'value2'])]`
2019-03-20 14:30:37 +08:00
## 自定义注解
2019-03-21 17:30:11 +08:00
### 创建一个注解类
2019-03-21 12:16:46 +08:00
2022-06-25 20:16:32 +08:00
在任意地方创建注解类,如下代码示例:
```php
<?php
namespace App\Annotation;
use Hyperf\Di\Annotation\AbstractAnnotation;
#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD)]
class Bar extends AbstractAnnotation
{
// some code
}
#[Attribute(Attribute::TARGET_CLASS)]
class Foo extends AbstractAnnotation
{
// some code
}
```
2019-03-21 12:16:46 +08:00
我们注意一下在上面的示例代码中,注解类都继承了 `Hyperf\Di\Annotation\AbstractAnnotation` 抽象类,对于注解类来说,这个不是必须的,但对于 Hyperf 的注解类来说,继承 `Hyperf\Di\Annotation\AnnotationInterface` 接口类是必须的,那么抽象类在这里的作用是提供极简的定义方式,该抽象类已经为您实现了`注解参数自动分配到类属性`、`根据注解使用位置自动按照规则收集到 AnnotationCollector` 这样非常便捷的功能。
2019-03-21 17:30:11 +08:00
### 自定义注解收集器
2019-03-21 12:16:46 +08:00
注解的收集时具体的执行流程也是在注解类内实现的,相关的方法由 `Hyperf\Di\Annotation\AnnotationInterface` 约束着,该接口类要求了下面 3 个方法的实现,您可以根据自己的需求实现对应的逻辑:
- `public function collectClass(string $className): void;` 当注解定义在类时被扫描时会触发该方法
- `public function collectMethod(string $className, ?string $target): void;` 当注解定义在类方法时被扫描时会触发该方法
2019-03-21 14:52:34 +08:00
- `public function collectProperty(string $className, ?string $target): void` 当注解定义在类属性时被扫描时会触发该方法
因为框架实现了注解收集器缓存功能,所以需要您将自定义收集器配置到 `annotations.scan.collectors` 中,这样框架才能自动缓存收集好的注解,在下次启动时进行复用。
如果没有配置对应的收集器,就会导致自定义注解只有在首次启动 `server` 时生效,而再次启动时不会生效。
```php
<?php
return [
// 注意在 config/autoload 文件下的配置文件则无 annotations 这一层
'annotations' => [
'scan' => [
'collectors' => [
CustomCollector::class,
],
],
],
];
```
2019-03-21 17:30:11 +08:00
### 利用注解数据
2019-03-21 14:52:34 +08:00
2019-07-04 17:49:53 +08:00
在没有自定义注解收集方法时,默认会将注解的元数据统一收集在 `Hyperf\Di\Annotation\AnnotationCollector` 类内,通过该类的静态方法可以方便的获取对应的元数据用于逻辑判断或实现。
### ClassMap 功能
框架提供了 `class_map` 配置,可以方便用户直接替换需要加载的类。
比如以下我们实现一个可以自动复制协程上下文的功能:
首先,我们实现一个用于复制上下文的 `Coroutine` 类。其中 `create()` 方法,可以将父类的上下文复制到子类当中。
为了避免命名冲突,约定使用 `class_map` 做为文件夹名,后跟要替换的命名空间的文件夹及文件。
如: `class_map/Hyperf/Utils/Coroutine.php`
```php
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://doc.hyperf.io
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace App\Kernel\Context;
use Hyperf\Context\Context;
use Hyperf\Contract\StdoutLoggerInterface;
use Hyperf\ExceptionHandler\Formatter\FormatterInterface;
use Hyperf\Utils;
use Psr\Container\ContainerInterface;
2020-09-01 09:56:35 +08:00
use Psr\Http\Message\ServerRequestInterface;
use Swoole\Coroutine as SwooleCoroutine;
class Coroutine
{
protected StdoutLoggerInterface $logger;
protected ?FormatterInterface $formatter = null;
public function __construct(ContainerInterface $container)
{
$this->container = $container;
$this->logger = $container->get(StdoutLoggerInterface::class);
if ($container->has(FormatterInterface::class)) {
$this->formatter = $container->get(FormatterInterface::class);
}
}
/**
* @return int Returns the coroutine ID of the coroutine just created.
* Returns -1 when coroutine create failed.
*/
public function create(callable $callable): int
{
$id = Utils\Coroutine::id();
$result = SwooleCoroutine::create(function () use ($callable, $id) {
try {
2020-09-01 09:56:35 +08:00
// 按需复制,禁止复制 Socket不然会导致 Socket 跨协程调用从而报错。
Context::copy($id, [
2020-09-01 09:56:35 +08:00
ServerRequestInterface::class,
]);
call($callable);
} catch (Throwable $throwable) {
if ($this->formatter) {
$this->logger->warning($this->formatter->format($throwable));
} else {
$this->logger->warning((string) $throwable);
}
}
});
return is_int($result) ? $result : -1;
}
}
```
然后,我们实现一个跟 `Hyperf\Coroutine\Coroutine` 一模一样的对象。其中 `create()` 方法替换成我们上述实现的方法。
`class_map/Hyperf/Coroutine/Coroutine.php`
```php
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://doc.hyperf.io
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace Hyperf\Coroutine;
2020-09-01 09:56:35 +08:00
use App\Kernel\Context\Coroutine as Co;
use Swoole\Coroutine as SwooleCoroutine;
use Hyperf\Context\ApplicationContext;
/**
* @method static void defer(callable $callable)
*/
class Coroutine
{
public static function __callStatic($name, $arguments)
{
if (! method_exists(SwooleCoroutine::class, $name)) {
throw new \BadMethodCallException(sprintf('Call to undefined method %s.', $name));
}
return SwooleCoroutine::$name(...$arguments);
}
/**
* Returns the current coroutine ID.
* Returns -1 when running in non-coroutine context.
*/
public static function id(): int
{
return SwooleCoroutine::getCid();
}
/**
* Returns the parent coroutine ID.
* Returns -1 when running in the top level coroutine.
* Returns null when running in non-coroutine context.
*
* @see https://github.com/swoole/swoole-src/pull/2669/files#diff-3bdf726b0ac53be7e274b60d59e6ec80R940
*/
public static function parentId(?int $coroutineId = null): ?int
{
if ($coroutineId) {
$cid = SwooleCoroutine::getPcid($coroutineId);
} else {
$cid = SwooleCoroutine::getPcid();
}
if ($cid === false) {
return null;
}
return $cid;
}
/**
* @return int Returns the coroutine ID of the coroutine just created.
* Returns -1 when coroutine create failed.
*/
public static function create(callable $callable): int
{
2020-09-01 09:56:35 +08:00
return ApplicationContext::getContainer()->get(Co::class)->create($callable);
}
public static function inCoroutine(): bool
{
return Coroutine::id() > 0;
}
}
```
然后配置一下 `class_map`,如下:
```php
<?php
declare(strict_types=1);
use Hyperf\Coroutine\Coroutine;
return [
'scan' => [
'paths' => [
BASE_PATH . '/app',
],
'ignore_annotations' => [
'mixin',
],
'class_map' => [
// 需要映射的类名 => 类所在的文件地址
Coroutine::class => BASE_PATH . '/class_map/Hyperf/Utils/Coroutine.php',
],
],
];
```
这样 `co()``parallel()` 等方法,就可以自动拿到父协程,上下文中的数据,比如 `Request`