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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
|
<?php
declare(strict_types=1);
namespace Shirabe\PluginStubGenerator;
use PhpParser\Node\Name;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Interface_;
/**
* Emits the proxy stub files deterministically from the Composer sources and the classifier
* report. Anything the emitter cannot faithfully proxy (by-ref or variadic parameters,
* magic methods, public properties, non-public constants) fails generation instead of
* degrading silently.
*/
final class Generator
{
private const BOILERPLATE = <<<'PHP'
/** @var int */
protected $__rhandle;
/** @var int */
protected $__epoch;
public function __construct(int $rhandle = 0, int $epoch = 0)
{
if (func_num_args() < 2) {
// Constructing the class from plugin code (a common idiom for e.g. `new BufferIO()`)
// is an open question of the plugin design; only proxy instantiation passes a
// Rust handle. Fail with a diagnosable message instead of an ArgumentCountError.
throw new \RuntimeException(
'Shirabe does not support constructing ' . static::class . ' inside the plugin process yet'
);
}
$this->__rhandle = $rhandle;
$this->__epoch = $epoch;
}
public function __destruct()
{
\ShirabeRustObjectRegistry::release($this->__rhandle);
}
public function __shirabeRustHandleDescriptor(): array
{
return [
'__rhandle' => $this->__rhandle,
'__class' => static::class,
'__epoch' => $this->__epoch,
];
}
PHP;
private const PROPERTY_FORWARDERS = <<<'PHP'
/** The real class declares public properties; every access forwards to the entity. */
public function __get($name)
{
return \ShirabeRpcRuntime::callRust($this->__rhandle, '__get', [$name]);
}
public function __set($name, $value): void
{
\ShirabeRpcRuntime::callRust($this->__rhandle, '__set', [$name, $value]);
}
PHP;
private const CLONE_THROW = <<<'PHP'
public function __clone()
{
// Cloning a proxy is an open design question; fail instead of silently sharing
// the Rust-side entity between two stub instances.
throw new \RuntimeException('Shirabe does not support cloning ' . static::class . ' inside the plugin process yet');
}
PHP;
private Project $project;
private NamePrinter $printer;
/** @var list<string> */
private array $errors = [];
/** @var array<string, true> */
private array $targetSet = [];
/**
* Emitted method records per stub class: fqcn => name => fingerprint. A subclass stub
* omits overrides whose parameter list matches the record; the record therefore doubles
* as the divergence detector for omitted overrides.
*
* @var array<string, array<string, list<array{string, bool, string, bool, bool}>>>
*/
private array $surfaces = [];
/** @param list<string> $targets */
public function __construct(
string $composerRoot,
private readonly Report $report,
private readonly array $targets,
) {
$this->project = new Project($composerRoot);
$this->printer = new NamePrinter();
foreach ($targets as $fqcn) {
$this->targetSet[$fqcn] = true;
}
}
/** @return array<string, string> relative stub path => file content */
public function generate(): array
{
$files = [];
foreach ($this->targets as $fqcn) {
$files[str_replace('\\', '/', $fqcn) . '.php'] = $this->emitClass($fqcn);
}
if ($this->errors !== []) {
throw new GenerationError($this->errors);
}
return $files;
}
private function emitClass(string $fqcn): string
{
$file = $this->project->sourceFor($fqcn);
$class = $file->classLike;
if (!$class instanceof Class_) {
$this->errors[] = "$fqcn is not a class";
return '';
}
$category = $this->report->category($fqcn);
if (!in_array($category, ['rust-proxy', 'contract'], true)) {
$this->errors[] = "$fqcn is classified as " . ($category ?? 'nothing')
. '; only rust-proxy and contract classes can become proxy stubs';
}
$parentFqcn = $class->extends === null ? null : $this->resolvedName($class->extends);
$isRoot = $parentFqcn === null;
if ($parentFqcn !== null && !isset($this->targetSet[$parentFqcn])) {
$this->errors[] = "$fqcn extends $parentFqcn, which is not a stub target";
$isRoot = true;
}
if (!$isRoot && !isset($this->surfaces[$parentFqcn])) {
$this->errors[] = "$fqcn must come after its base class $parentFqcn in targets.list";
$isRoot = true;
}
$hasPublicInstanceProperties = false;
$staticProperties = [];
foreach ($class->getProperties() as $property) {
if (!$property->isPublic()) {
continue;
}
if ($property->isStatic()) {
// A public static property reads no instance state; its real declaration is
// materialized so it lives locally in the worker, like static methods.
$staticProperties[] = $file->verbatim($property->getStartLine(), $property->getEndLine());
} else {
// Instance properties are entity state: the stub declares none and lets the
// __get/__set forwarders below carry every access to the Rust side.
$hasPublicInstanceProperties = true;
}
}
$constants = [];
foreach ($class->getConstants() as $constant) {
if (!$constant->isPublic()) {
$this->errors[] = "$fqcn declares a non-public constant; materializing it is not supported";
continue;
}
$constants[] = $file->verbatim($constant->getStartLine(), $constant->getEndLine());
}
$publicStatics = [];
$nonPublicStatics = [];
$ownInstanceMethods = [];
$cloneThrows = false;
foreach ($class->getMethods() as $method) {
$name = $method->name->toString();
if ($name === '__construct') {
continue;
}
if (str_starts_with($name, '__')) {
if ($method->isPublic() && !in_array($name, ['__toString', '__clone'], true)) {
$this->errors[] = "$fqcn::$name: magic methods cannot be proxied";
}
// __toString is an ordinary zero-argument call under a magic name and is
// forwarded below; __clone semantics are an open design question and the
// emitted body throws instead of silently sharing the Rust handle.
if ($method->isPublic() && $name === '__toString') {
$ownInstanceMethods[$name] = $method;
}
if ($method->isPublic() && $name === '__clone') {
$cloneThrows = true;
}
continue;
}
if ($method->isStatic()) {
if ($method->isPublic()) {
$publicStatics[$name] = $method;
} else {
$nonPublicStatics[$name] = $method;
}
} elseif ($method->isPublic()) {
$ownInstanceMethods[$name] = $method;
}
}
$staticMethods = $this->materializeStatics($file, $publicStatics, $nonPublicStatics);
$surface = [];
$emitted = [];
if ($isRoot) {
foreach ($this->interfaceClosure($class) as $interface) {
foreach ($interface->classLike->getMethods() as $method) {
$name = $method->name->toString();
if ($method->isStatic()) {
$this->errors[] = "$fqcn: static interface method $name is not supported";
continue;
}
$emitted[$name] ??= $method;
}
}
// A concrete redeclaration wins over the interface signature (it may widen
// defaults); it keeps the interface's position in the emission order.
foreach ($ownInstanceMethods as $name => $method) {
$emitted[$name] = $method;
}
} else {
$surface = $this->surfaces[$parentFqcn];
// Interfaces the subclass adds contribute the methods whose names are new
// relative to the inherited stub surface.
foreach ($this->interfaceClosure($class) as $interface) {
foreach ($interface->classLike->getMethods() as $method) {
$name = $method->name->toString();
if ($method->isStatic()) {
$this->errors[] = "$fqcn: static interface method $name is not supported";
continue;
}
if (!isset($surface[$name])) {
$emitted[$name] ??= $method;
}
}
}
foreach ($ownInstanceMethods as $name => $method) {
if (isset($surface[$name])) {
$this->checkOmittedOverride($fqcn, $name, $method, $file, $surface[$name]);
unset($emitted[$name]);
} else {
$emitted[$name] = $method;
}
}
}
$methodTexts = [];
foreach ($emitted as $name => $method) {
$methodTexts[] = $this->renderProxyMethod($fqcn, $name, $method, $file);
$surface[$name] = $this->fingerprint($method, $file);
}
$this->surfaces[$fqcn] = $surface;
$decl = ($class->isAbstract() ? 'abstract ' : '') . 'class ' . $class->name?->toString();
if ($class->extends !== null) {
$decl .= ' extends ' . $this->printer->renderName($class->extends, $file);
}
$interfaces = array_map(fn (Name $n): string => $this->printer->renderName($n, $file), $class->implements);
if ($isRoot) {
$interfaces[] = '\ShirabeRustStub';
}
if ($interfaces !== []) {
$decl .= ' implements ' . implode(', ', $interfaces);
}
$members = [];
if ($isRoot) {
$members[] = self::BOILERPLATE;
}
if ($constants !== []) {
$members[] = implode("\n", $constants);
}
if ($staticProperties !== []) {
$members[] = implode("\n", $staticProperties);
}
if ($hasPublicInstanceProperties) {
$members[] = self::PROPERTY_FORWARDERS;
}
if ($cloneThrows) {
$members[] = self::CLONE_THROW;
}
$members = array_merge($members, $staticMethods, $methodTexts);
$body = implode("\n\n", $members);
$header = "// Generated by scripts/plugin-stub-generator; do not edit by hand.\n"
. "// Proxy stub for $fqcn: the public surface forwards to the Rust-side entity over RPC.";
$text = "<?php\n\n$header\n\nnamespace {$file->namespace};\n\n";
$uses = $this->usedImports($file, $decl . "\n" . $body);
if ($uses !== '') {
$text .= $uses . "\n\n";
}
return $text . $decl . "\n{\n" . ($body === '' ? '' : $body . "\n") . "}\n";
}
/**
* Static methods read no instance state; their real implementation is materialized
* verbatim so they run locally in the worker. Non-public static helpers they call
* (through `self::`, `static::` or the class name) are materialized along with them.
*
* @param array<string, ClassMethod> $publicStatics
* @param array<string, ClassMethod> $nonPublicStatics
* @return list<string>
*/
private function materializeStatics(SourceFile $file, array $publicStatics, array $nonPublicStatics): array
{
$texts = [];
foreach ($publicStatics as $name => $method) {
$texts[$name] = $file->verbatim($method->getStartLine(), $method->getEndLine());
}
$scan = array_values($texts);
while ($scan !== []) {
$text = array_shift($scan);
foreach ($nonPublicStatics as $name => $method) {
if (isset($texts[$name])) {
continue;
}
$receiver = '(?:self|static|' . preg_quote($file->classLike->name?->toString() ?? '', '/') . ')';
if (preg_match('/(?<![\w$])' . $receiver . '::' . preg_quote($name, '/') . '\s*\(/', $text) === 1) {
$scan[] = $texts[$name] = $file->verbatim($method->getStartLine(), $method->getEndLine());
}
}
}
return array_values($texts);
}
/** Interfaces implemented by the class, each interface preceding the ones it extends. */
private function interfaceClosure(Class_ $class): array
{
$out = [];
$seen = [];
$visit = function (string $fqcn) use (&$visit, &$out, &$seen): void {
if (isset($seen[$fqcn])) {
return;
}
$seen[$fqcn] = true;
if (interface_exists($fqcn, false) && (new \ReflectionClass($fqcn))->isInternal()) {
// A PHP builtin interface (Countable, Stringable, ...) has no source file to
// read; the class's own public methods already cover its surface.
return;
}
$file = $this->project->sourceFor($fqcn);
if (!$file->classLike instanceof Interface_) {
$this->errors[] = "$fqcn is implemented as an interface but is not one";
return;
}
$out[] = $file;
foreach ($file->classLike->extends as $parent) {
$visit($this->resolvedName($parent));
}
};
foreach ($class->implements as $interface) {
$visit($this->resolvedName($interface));
}
return $out;
}
private function renderProxyMethod(string $fqcn, string $name, ClassMethod $method, SourceFile $target): string
{
$params = [];
$args = [];
foreach ($method->params as $param) {
$paramName = $param->var->name;
if ($param->byRef) {
$this->errors[] = "$fqcn::$name: by-ref parameter \$$paramName cannot be proxied yet";
}
if ($param->variadic) {
$this->errors[] = "$fqcn::$name: variadic parameter \$$paramName cannot be proxied yet";
}
$rendered = '';
if ($param->type !== null) {
$rendered = $this->printer->renderType($param->type, $target) . ' ';
}
$rendered .= '$' . $paramName;
if ($param->default !== null) {
$rendered .= ' = ' . $this->printer->renderExpr($param->default, $target);
}
$params[] = $rendered;
$args[] = '$' . $paramName;
}
$returnType = $this->printer->renderType($method->returnType, $target);
$signature = "public function $name(" . implode(', ', $params) . ')'
. ($returnType === '' ? '' : ": $returnType");
$call = "\\ShirabeRpcRuntime::callRust(\$this->__rhandle, '$name', [" . implode(', ', $args) . '])';
// `self`/`static` returns are fluent interfaces; the local stub itself is returned to
// preserve identity instead of round-tripping the handle.
$body = match ($returnType) {
'void' => " $call;",
'self', 'static' => " $call;\n return \$this;",
default => " return $call;",
};
return " $signature\n {\n$body\n }";
}
/**
* An override that is omitted from a subclass stub must take exactly the parameters the
* inherited stub method declares: same names, arity, defaults and passing modes. Type
* declarations are allowed to differ (overrides may widen them; the forwarding body is
* type-agnostic either way).
*/
private function checkOmittedOverride(
string $fqcn,
string $name,
ClassMethod $method,
SourceFile $file,
array $inherited,
): void {
if ($this->fingerprint($method, $file) !== $inherited) {
$this->errors[] = "$fqcn::$name: override diverges from the inherited stub signature"
. ' (names, arity, defaults or passing modes); it can no longer be omitted';
}
}
/** @return list<array{string, bool, string, bool, bool}> */
private function fingerprint(ClassMethod $method, SourceFile $file): array
{
$fingerprint = [];
foreach ($method->params as $param) {
$fingerprint[] = [
$param->var->name,
$param->default !== null,
$param->default === null ? '' : $this->printer->renderExpr($param->default, $file),
$param->byRef,
$param->variadic,
];
}
return $fingerprint;
}
/** The original file's imports, restricted to names the emitted stub actually uses. */
private function usedImports(SourceFile $file, string $emittedText): string
{
$kept = [];
foreach ($file->aliases as $alias => $fqcn) {
if (preg_match('/(?<![\\\\$\w])' . preg_quote($alias, '/') . '\b/', $emittedText) === 1) {
$kept[] = 'use ' . $fqcn
. (str_ends_with($fqcn, '\\' . $alias) || $fqcn === $alias ? '' : " as $alias") . ';';
}
}
return implode("\n", $kept);
}
private function resolvedName(Name $name): string
{
$resolved = $name->getAttribute('resolvedName');
return $resolved instanceof Name ? $resolved->toString() : $name->toString();
}
}
|