-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFsContext.php
205 lines (168 loc) · 5.18 KB
/
FsContext.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
declare(strict_types=1);
namespace Enqueue\Fs;
use Interop\Queue\Consumer;
use Interop\Queue\Context;
use Interop\Queue\Destination;
use Interop\Queue\Exception\InvalidDestinationException;
use Interop\Queue\Exception\SubscriptionConsumerNotSupportedException;
use Interop\Queue\Message;
use Interop\Queue\Producer;
use Interop\Queue\Queue;
use Interop\Queue\SubscriptionConsumer;
use Interop\Queue\Topic;
use Makasim\File\TempFile;
use Symfony\Component\Filesystem\Filesystem;
class FsContext implements Context
{
/**
* @var string
*/
private $storeDir;
/**
* @var int
*/
private $preFetchCount;
/**
* @var int
*/
private $chmod;
/**
* @var int
*/
private $pollingInterval;
/**
* @var Lock
*/
private $lock;
public function __construct(string $storeDir, int $preFetchCount, int $chmod, int $pollingInterval)
{
$fs = new Filesystem();
$fs->mkdir($storeDir);
$this->storeDir = $storeDir;
$this->preFetchCount = $preFetchCount;
$this->chmod = $chmod;
$this->pollingInterval = $pollingInterval;
$this->lock = new LegacyFilesystemLock();
}
/**
* @return FsMessage
*/
public function createMessage(string $body = '', array $properties = [], array $headers = []): Message
{
return new FsMessage($body, $properties, $headers);
}
/**
* @return FsDestination
*/
public function createTopic(string $topicName): Topic
{
return $this->createQueue($topicName);
}
/**
* @return FsDestination
*/
public function createQueue(string $queueName): Queue
{
return new FsDestination(new \SplFileInfo($this->getStoreDir().'/'.$queueName));
}
public function declareDestination(FsDestination $destination): void
{
// InvalidDestinationException::assertDestinationInstanceOf($destination, FsDestination::class);
set_error_handler(function ($severity, $message, $file, $line) {
throw new \ErrorException($message, 0, $severity, $file, $line);
});
try {
if (false == file_exists((string) $destination->getFileInfo())) {
touch((string) $destination->getFileInfo());
chmod((string) $destination->getFileInfo(), $this->chmod);
}
} finally {
restore_error_handler();
}
}
public function workWithFile(FsDestination $destination, string $mode, callable $callback)
{
$this->declareDestination($destination);
set_error_handler(function ($severity, $message, $file, $line) {
throw new \ErrorException($message, 0, $severity, $file, $line);
}, \E_ALL & ~\E_USER_DEPRECATED);
try {
$file = fopen((string) $destination->getFileInfo(), $mode);
$this->lock->lock($destination);
return call_user_func($callback, $destination, $file);
} finally {
if (isset($file)) {
fclose($file);
}
$this->lock->release($destination);
restore_error_handler();
}
}
/**
* @return FsDestination
*/
public function createTemporaryQueue(): Queue
{
return new FsDestination(
new TempFile($this->getStoreDir().'/'.uniqid('tmp-q-', true))
);
}
/**
* @return FsProducer
*/
public function createProducer(): Producer
{
return new FsProducer($this);
}
/**
* @param FsDestination $destination
*
* @return FsConsumer
*/
public function createConsumer(Destination $destination): Consumer
{
InvalidDestinationException::assertDestinationInstanceOf($destination, FsDestination::class);
$consumer = new FsConsumer($this, $destination, $this->preFetchCount);
if ($this->pollingInterval) {
$consumer->setPollingInterval($this->pollingInterval);
}
return $consumer;
}
public function close(): void
{
$this->lock->releaseAll();
}
public function createSubscriptionConsumer(): SubscriptionConsumer
{
throw SubscriptionConsumerNotSupportedException::providerDoestNotSupportIt();
}
/**
* @param FsDestination $queue
*/
public function purgeQueue(Queue $queue): void
{
InvalidDestinationException::assertDestinationInstanceOf($queue, FsDestination::class);
$this->workWithFile($queue, 'c', function (FsDestination $destination, $file) {
ftruncate($file, 0);
});
}
public function getPreFetchCount(): int
{
return $this->preFetchCount;
}
public function setPreFetchCount(int $preFetchCount): void
{
$this->preFetchCount = $preFetchCount;
}
private function getStoreDir(): string
{
if (false == is_dir($this->storeDir)) {
throw new \LogicException(sprintf('The directory %s does not exist', $this->storeDir));
}
if (false == is_writable($this->storeDir)) {
throw new \LogicException(sprintf('The directory %s is not writable', $this->storeDir));
}
return $this->storeDir;
}
}