123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Nacos;
- use Exception;
- use Hyperf\Codec\Json;
- use Hyperf\Contract\IPReaderInterface;
- use Hyperf\Contract\StdoutLoggerInterface;
- use Hyperf\Coordinator\Constants;
- use Hyperf\Coordinator\CoordinatorManager;
- use Hyperf\Engine\Http\V2\Request;
- use Hyperf\Grpc\Parser;
- use Hyperf\Http2Client\Client;
- use Hyperf\Nacos\Exception\ConnectToServerFailedException;
- use Hyperf\Nacos\Exception\RequestException;
- use Hyperf\Nacos\Protobuf\Any;
- use Hyperf\Nacos\Protobuf\ListenContext;
- use Hyperf\Nacos\Protobuf\ListenHandler\NamingPushRequestHandler;
- use Hyperf\Nacos\Protobuf\ListenHandlerInterface;
- use Hyperf\Nacos\Protobuf\Metadata;
- use Hyperf\Nacos\Protobuf\Payload;
- use Hyperf\Nacos\Protobuf\Request\ConfigBatchListenRequest;
- use Hyperf\Nacos\Protobuf\Request\ConfigQueryRequest;
- use Hyperf\Nacos\Protobuf\Request\ConnectionSetupRequest;
- use Hyperf\Nacos\Protobuf\Request\HealthCheckRequest;
- use Hyperf\Nacos\Protobuf\Request\RequestInterface;
- use Hyperf\Nacos\Protobuf\Request\ServerCheckRequest;
- use Hyperf\Nacos\Protobuf\Response\ConfigChangeBatchListenResponse;
- use Hyperf\Nacos\Protobuf\Response\ConfigChangeNotifyRequest;
- use Hyperf\Nacos\Protobuf\Response\ConfigQueryResponse;
- use Hyperf\Nacos\Protobuf\Response\NotifySubscriberRequest;
- use Hyperf\Nacos\Protobuf\Response\Response;
- use Hyperf\Nacos\Protobuf\ServiceInfo;
- use Hyperf\Nacos\Provider\AccessToken;
- use Hyperf\Support\Network;
- use Psr\Container\ContainerInterface;
- use Psr\Http\Message\ResponseInterface;
- use Psr\Log\LoggerInterface;
- use Throwable;
- use function Hyperf\Coroutine\go;
- class GrpcClient
- {
- use AccessToken;
- protected array $listeners = [];
- protected ?Client $client = null;
- protected ?LoggerInterface $logger = null;
- /**
- * @var array<string, ListenContext>
- */
- protected array $configListenContexts = [];
- /**
- * @var array<string, ?ListenHandlerInterface>
- */
- protected array $configListenHandlers = [];
- /**
- * @var array<string, ServiceInfo>
- */
- protected array $namingListenContexts = [];
- /**
- * @var array<string, ?ListenHandlerInterface>
- */
- protected array $namingListenHandlers = [];
- protected int $streamId;
- public function __construct(
- protected Application $app,
- protected Config $config,
- protected ContainerInterface $container,
- protected string $namespaceId = '',
- protected string $module = 'config',
- ) {
- if ($this->container->has(StdoutLoggerInterface::class)) {
- $this->logger = $this->container->get(StdoutLoggerInterface::class);
- }
- $this->reconnect();
- }
- public function request(RequestInterface $request, ?Client $client = null): Response
- {
- $payload = new Payload([
- 'metadata' => new Metadata($this->getMetadata($request)),
- 'body' => new Any([
- 'value' => Json::encode($request->getValue()),
- ]),
- ]);
- $client ??= $this->client;
- $response = $client->request(
- new Request('/Request/request', 'POST', Parser::serializeMessage($payload), $this->grpcDefaultHeaders())
- );
- return Response::jsonDeSerialize($response->getBody());
- }
- public function write(int $streamId, RequestInterface $request, ?Client $client = null): bool
- {
- $payload = new Payload([
- 'metadata' => new Metadata($this->getMetadata($request)),
- 'body' => new Any([
- 'value' => Json::encode($request->getValue()),
- ]),
- ]);
- $client ??= $this->client;
- return $client->write($streamId, Parser::serializeMessage($payload));
- }
- public function listenConfig(string $group, string $dataId, ListenHandlerInterface $callback, string $md5 = ''): void
- {
- $listenContext = new ListenContext($this->namespaceId, $group, $dataId, $md5);
- $this->configListenContexts[$listenContext->toKeyString()] = $listenContext;
- $this->configListenHandlers[$listenContext->toKeyString()] = $callback;
- }
- public function listenNaming(string $clusters, string $group, string $service, ListenHandlerInterface $callback): void
- {
- $serviceInfo = new ServiceInfo($service, $group, $clusters);
- if ($context = $this->namingListenContexts[$serviceInfo->toKeyString()] ?? null) {
- $callback->handle(new NotifySubscriberRequest(['requestId' => '', 'module' => 'naming', 'serviceInfo' => $context]));
- $this->namingListenHandlers[$serviceInfo->toKeyString()] = $callback;
- return;
- }
- $this->namingListenContexts[$serviceInfo->toKeyString()] = $serviceInfo;
- $this->namingListenHandlers[$serviceInfo->toKeyString()] = $callback;
- }
- public function listen(): void
- {
- $request = new ConfigBatchListenRequest(true, array_values($this->configListenContexts));
- $response = $this->request($request);
- if ($response instanceof ConfigChangeBatchListenResponse) {
- $changedConfigs = $response->changedConfigs;
- foreach ($changedConfigs as $changedConfig) {
- $this->handleConfig($changedConfig->tenant, $changedConfig->group, $changedConfig->dataId);
- }
- }
- }
- protected function reconnect(): void
- {
- $this->client && $this->client->close();
- $this->client = new Client(
- $this->config->getHost() . ':' . ($this->config->getPort() + 1000),
- [
- 'heartbeat' => null,
- ]
- );
- if ($this->logger) {
- $this->client->setLogger($this->logger);
- }
- $this->serverCheck();
- $this->streamId = $this->bindStreamCall();
- $this->healthCheck();
- }
- protected function healthCheck()
- {
- go(function () {
- $client = $this->client;
- $heartbeat = $this->config->getGrpc()['heartbeat'];
- while ($heartbeat > 0 && $client->inLoop()) {
- if (CoordinatorManager::until(Constants::WORKER_EXIT)->yield($heartbeat)) {
- break;
- }
- $res = $this->request(new HealthCheckRequest(), $client);
- if ($res->errorCode !== 0) {
- $this->logger?->error('Health check failed, the result is ' . (string) $res);
- }
- }
- });
- }
- protected function ip(): string
- {
- if ($this->container->has(IPReaderInterface::class)) {
- return $this->container->get(IPReaderInterface::class)->read();
- }
- return Network::ip();
- }
- protected function bindStreamCall(): int
- {
- $id = $this->client->send(new Request('/BiRequestStream/requestBiStream', 'POST', '', $this->grpcDefaultHeaders(), true));
- go(function () use ($id) {
- $client = $this->client;
- while (true) {
- try {
- if (! $client->inLoop()) {
- break;
- }
- $response = $client->recv($id, -1);
- $response = Response::jsonDeSerialize($response->getBody());
- match (true) {
- $response instanceof ConfigChangeNotifyRequest => $this->handleConfig(
- $response->tenant,
- $response->group,
- $response->dataId,
- $response
- ),
- $response instanceof NotifySubscriberRequest => $this->handleNaming($response),
- };
- $this->listen();
- } catch (Throwable $e) {
- ! $this->isWorkerExit() && $this->logger->error((string) $e);
- }
- }
- if (! $this->isWorkerExit()) {
- $this->reconnect();
- $this->listen();
- }
- });
- $request = new ConnectionSetupRequest($this->namespaceId, $this->module);
- $this->write($id, $request);
- return $id;
- }
- protected function handleConfig(string $tenant, string $group, string $dataId, ?ConfigChangeNotifyRequest $request = null): void
- {
- $response = $this->request(new ConfigQueryRequest($tenant, $group, $dataId));
- $key = ListenContext::getKeyString($tenant, $group, $dataId);
- if ($response instanceof ConfigQueryResponse) {
- if (isset($this->configListenContexts[$key])) {
- $this->configListenContexts[$key]->md5 = $response->getMd5();
- $this->configListenHandlers[$key]?->handle($response);
- }
- if ($request && $ack = $this->configListenHandlers[$key]?->ack($request)) {
- $this->write($this->streamId, $ack);
- }
- }
- }
- protected function handleNaming(NotifySubscriberRequest $response): void
- {
- $serviceInfo = $response->serviceInfo;
- $key = $serviceInfo->toKeyString();
- if (! isset($this->namingListenContexts[$key])) {
- $this->namingListenContexts[$key] = $serviceInfo;
- }
- if ($serviceInfo->lastRefTime > $this->namingListenContexts[$key]->lastRefTime) {
- $this->namingListenContexts[$key] = $serviceInfo;
- }
- if ($handler = $this->namingListenHandlers[$key] ?? null) {
- $handler->handle($response);
- $this->write($this->streamId, $handler->ack($response));
- } else {
- $this->write($this->streamId, (new NamingPushRequestHandler(fn () => null))->ack($response));
- }
- }
- /**
- * @deprecated since 3.1, use handleNaming instead.
- */
- protected function hanldeNaming(NotifySubscriberRequest $response)
- {
- $this->handleNaming($response);
- }
- protected function serverCheck(): bool
- {
- $request = new ServerCheckRequest();
- while (true) {
- try {
- $response = $this->request($request);
- if ($response->errorCode !== 0) {
- $this->logger?->error('Nacos check server failed.');
- if (CoordinatorManager::until(Constants::WORKER_EXIT)->yield(5)) {
- break;
- }
- continue;
- }
- return true;
- } catch (Exception $exception) {
- $this->logger?->error((string) $exception);
- if (CoordinatorManager::until(Constants::WORKER_EXIT)->yield(5)) {
- break;
- }
- }
- }
- throw new ConnectToServerFailedException('the nacos server is not ready to work in 30 seconds, connect to server failed');
- }
- private function isWorkerExit(): bool
- {
- return CoordinatorManager::until(Constants::WORKER_EXIT)->isClosing();
- }
- private function getMetadata(RequestInterface $request): array
- {
- if ($token = $this->getAccessToken()) {
- return [
- 'type' => $request->getType(),
- 'clientIp' => $this->ip(),
- 'headers' => [
- 'accessToken' => $token,
- ],
- ];
- }
- return [
- 'type' => $request->getType(),
- 'clientIp' => $this->ip(),
- ];
- }
- private function grpcDefaultHeaders(): array
- {
- return [
- 'content-type' => 'application/grpc+proto',
- 'te' => 'trailers',
- 'user-agent' => 'Nacos-Hyperf-Client:v3.1',
- ];
- }
- private function handleResponse(ResponseInterface $response): array
- {
- $statusCode = $response->getStatusCode();
- $contents = (string) $response->getBody();
- if ($statusCode !== 200) {
- throw new RequestException($contents, $statusCode);
- }
- return Json::decode($contents);
- }
- }
|