|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +namespace Lamoda\Metric\Adapters\Redis; |
| 6 | + |
| 7 | +use Lamoda\Metric\Common\MetricSourceInterface; |
| 8 | +use Lamoda\Metric\Storage\MetricStorageInterface; |
| 9 | +use Lamoda\Metric\Storage\MutableMetricInterface; |
| 10 | + |
| 11 | +abstract class AbstractRedisStorage implements \IteratorAggregate, MetricStorageInterface |
| 12 | +{ |
| 13 | + /** @var RedisConnectionInterface */ |
| 14 | + private $redisConnection; |
| 15 | + |
| 16 | + public function __construct(RedisConnectionInterface $redisConnection) |
| 17 | + { |
| 18 | + $this->redisConnection = $redisConnection; |
| 19 | + } |
| 20 | + |
| 21 | + /** {@inheritdoc} */ |
| 22 | + final public function getIterator(): \Traversable |
| 23 | + { |
| 24 | + return $this->getMetrics(); |
| 25 | + } |
| 26 | + |
| 27 | + /** {@inheritdoc} */ |
| 28 | + final public function receive(MetricSourceInterface $source): void |
| 29 | + { |
| 30 | + $metrics = []; |
| 31 | + foreach ($source->getMetrics() as $metric) { |
| 32 | + $metrics[] = new MetricDto( |
| 33 | + $metric->getName(), |
| 34 | + $metric->resolve(), |
| 35 | + $metric->getTags() |
| 36 | + ); |
| 37 | + } |
| 38 | + $this->redisConnection->setMetrics($metrics); |
| 39 | + } |
| 40 | + |
| 41 | + /** {@inheritdoc} */ |
| 42 | + final public function getMetrics(): \Traversable |
| 43 | + { |
| 44 | + $metricsData = $this->redisConnection->getAllMetrics(); |
| 45 | + foreach ($metricsData as $metricDto) { |
| 46 | + yield new MetricWrapper( |
| 47 | + $this->redisConnection, |
| 48 | + $this->doCreateMetric($metricDto->name, $metricDto->value, $metricDto->tags) |
| 49 | + ); |
| 50 | + } |
| 51 | + } |
| 52 | + |
| 53 | + /** {@inheritdoc} */ |
| 54 | + final public function findMetric(string $name, array $tags = []): ?MutableMetricInterface |
| 55 | + { |
| 56 | + $value = $this->redisConnection->getMetricValue($name, $tags); |
| 57 | + if ($value === null) { |
| 58 | + return null; |
| 59 | + } |
| 60 | + |
| 61 | + return new MetricWrapper( |
| 62 | + $this->redisConnection, |
| 63 | + $this->doCreateMetric($name, $value, $tags) |
| 64 | + ); |
| 65 | + } |
| 66 | + |
| 67 | + /** {@inheritdoc} */ |
| 68 | + final public function createMetric(string $name, float $value, array $tags = []): MutableMetricInterface |
| 69 | + { |
| 70 | + $metric = new MetricWrapper( |
| 71 | + $this->redisConnection, |
| 72 | + $this->doCreateMetric($name, 0, $tags) |
| 73 | + ); |
| 74 | + $metric->setValue($value); |
| 75 | + |
| 76 | + return $metric; |
| 77 | + } |
| 78 | + |
| 79 | + abstract protected function doCreateMetric(string $name, float $value, array $tags = []): MutableMetricInterface; |
| 80 | + |
| 81 | + /** {@inheritdoc} */ |
| 82 | + final public function setMetricValue(string $name, float $value, array $tags = []): void |
| 83 | + { |
| 84 | + $this->redisConnection->setMetrics([new MetricDto($name, $value, $tags)]); |
| 85 | + } |
| 86 | + |
| 87 | + /** {@inheritdoc} */ |
| 88 | + final public function adjustMetricValue(string $name, float $value, array $tags = []): float |
| 89 | + { |
| 90 | + return $this->redisConnection->adjustMetric($name, $value, $tags); |
| 91 | + } |
| 92 | +} |
0 commit comments