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
|
@require: option
@require: class-slydifi/theme/akasaka
@require: code-printer/code-design
@require: code-printer/code-printer
@require: code-printer/code-syntax
@require: code-printer/code-theme
@require: figbox/figbox
let-block +code-block-php source =
'<
+code-printer?:(
CodePrinter.make-config CodeSyntax.php CodeTheme.iceberg-light
|> CodePrinter.set-number-fun CodeDesign.number-fun-null
)(source);
>
let big-textbox ?:size-opt it =
let size = Option.from 32pt size-opt in
FigBox.textbox?:(set-font-size size) it
open FigBox
in
document '<
+set-config(|
SlydifiThemeAkasaka.default-config with
color-emph = Color.black;
|);
+make-title(|
title = {
|PHPStanの力で
|Algebraic Data Typesを
|実現する
|};
author = {|nsfisis (いまむら)|};
date = {|第160回PHP勉強会@東京|};
|);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+frame{自己紹介}<
+fig-center(vconcat [
gap 75pt;
hconcat [
big-textbox{nsfisis (いまむら)};
gap 20pt;
include-image 50pt `assets/me.jpeg`;
];
gap 20pt;
big-textbox{\@ デジタルサーカス株式会社};
]);
>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+frame{ADTとは}<
+fig-center(vconcat [
gap 75pt;
big-textbox?:(48pt){Algebraic Data Type};
gap 20pt;
big-textbox?:(48pt){代数的データ型};
]);
>
+frame{ADTとは}<
+fig-center(vconcat [
gap 75pt;
big-textbox?:(48pt){すごい enum 型};
]);
>
+frame{ADTの例}<
+code-block-php(`// 注: これは架空の文法です
enum JsonValue {
case Null;
case Boolean(bool);
case Number(int|float);
case String(string);
case Array(array);
case Object(array);
}
`);
>
+frame{ADTの例(今回扱うもの)}<
+code-block-php(`// 注: これは架空の文法です
enum OptionalInt {
case None;
case Some(int);
}
`);
>
+frame{実現したいもの}<
+code-block-php(`// OptionalInt を返す関数
function f() { /* 略 */ }
$x = f();
if (/* $x が値を持っているかどうか判定する */) {
echo /* $x が内部に持っている int の値を「安全に」取り出す */;
}
`);
>
+frame{どうやって実現するか?}<
+fig-center(vconcat [
gap 40pt;
big-textbox{Array shape 編};
gap 20pt;
big-textbox{Object shape 編};
gap 20pt;
big-textbox{Type assertion 編};
gap 20pt;
big-textbox{PHPStan 魔改造編};
]);
>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+section{|Array shape 編|}<
+frame{Array shape}<
+code-block-php(`$none = [
'has_value' => false,
];
$some = [
'has_value' => true,
'value' => 42,
];`);
>
+frame{Array shape}<
+code-block-php(`/** @var array{has_value: false} $none */
$none = [
'has_value' => false,
];
/** @var array{has_value: true, value: int} $some */
$some = [
'has_value' => true,
'value' => 42,
];`);
>
+frame{Array shape}<
+code-block-php(`/** @return (array{has_value: false}
|array{has_value: true, value: int}) */
function f(): array { /* 略 */ }`);
>
+frame{Array shape}<
+code-block-php(`/** @return (array{has_value: false}
|array{has_value: true, value: int}) */
function f(): array { /* 略 */ }
$x = f();
if ($x['has_value']) {
// PHPStan は、$x['value'] が int であることを認識できる
echo $x['value'];
}
`);
>
>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+section{|Object shape 編|}<
+frame{Object shape}<
+code-block-php(`/** @var object{has_value: false} $none */
$none = (object)[
'has_value' => false,
];
/** @var object{has_value: true, value: int} $some */
$some = (object)[
'has_value' => true,
'value' => 42,
];`);
>
+frame{Object shape}<
+code-block-php(`/** @return (object{has_value: false}
|object{has_value: true, value: int}) */
function f(): stdClass { /* 略 */; }
$x = f();
if ($x->has_value) {
// 型が絞りこまれない!
echo $x->value;
}
`);
>
>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+section{|Type assertion 編|}<
+frame{Type assertion}<
+code-block-php(`/** @phpstan-assert-if-true int $a */
/** @phpstan-assert-if-false !int $a */
function check_is_int(mixed $a): bool {
return is_int($a);
}
$a = hogehoge();
if (check_is_int($a)) {
PHPStan\dumpType($a);
// => int
}
`);
>
+frame{Type assertion}<
+code-block-php(`abstract class OptionalInt {
/**
* @phpstan-assert-if-true OptionalIntSome $this
* @phpstan-assert-if-false OptionalIntNone $this
*/
public function hasValue(): bool {
return $this instanceof OptionalIntSome;
}
}
class OptionalIntNone extends OptionalInt {}
class OptionalIntSome extends OptionalInt {
public function __construct(public int $value) {}
}
`);
>
+frame{Type assertion}<
+code-block-php(`$x = f();
if ($x->hasValue()) {
echo $x->value;
}
`);
>
+frame{Type assertion}<
+code-block-php(`abstract class OptionalInt {
/**
* @phpstan-assert-if-true OptionalIntSome $this
* @phpstan-assert-if-false OptionalIntNone $this
*/
public function hasValue(): bool {
return $this instanceof OptionalIntSome;
}
}
class OptionalIntNone extends OptionalInt {}
class OptionalIntSome extends OptionalInt {
public function __construct(public int $value) {}
}
`);
>
>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+frame{ここまでのまとめ}<
+fig-center(vconcat [
gap 40pt;
big-textbox{Array shape ではうまく動く};
gap 20pt;
big-textbox{Object shape では動かない};
gap 20pt;
big-textbox{Type assertion では動くが課題アリ};
gap 40pt;
big-textbox{Object shape でも型を絞り込みたい!};
]);
>
+section{|PHPStan 魔改造編|}<
+frame{PHPStan 魔改造}<
+code-block-php(`if ($x['has_value']) {
// $x['has_value'] の型が truthy に確定したことで、
// $x に HasOffsetValueType('has_value', truthy)
// という型が付く
echo $x['value'];
}
`);
>
+frame{PHPStan 魔改造}<
+code-block-php(`if ($x['has_value']) {
// $x['has_value'] の型が truthy に確定したことで、
// $x に HasOffsetValueType('has_value', truthy)
// という型が付く
echo $x['value'];
}
`);
+p{}
+code-block-php(`// (array{has_value: false}
// |array{has_value: true, value: int})
// と
// HasOffsetValueType('has_value', truthy)
// とを合成する
`#);
>
+frame{PHPStan 魔改造}<
+fig-center(vconcat [
gap 75pt;
big-textbox?:(24pt){HasOffsetValueType を付ける};
gap 20pt;
big-textbox?:(24pt){HasOffsetValueType と array shape を合成する};
]);
>
+frame{PHPStan 魔改造}<
+fig-center(vconcat [
gap 75pt;
big-textbox?:(24pt){HasPropertyValueType を付ける};
gap 20pt;
big-textbox?:(24pt){HasPropertyValueType と object shape を合成する};
]);
>
>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+frame{まとめ}<
+fig-center(vconcat [
gap 75pt;
big-textbox?:(24pt){PHPStan と array shape を使った ADT もどき};
gap 20pt;
big-textbox?:(24pt){Object shape での型の絞り込みは未実装};
gap 20pt;
big-textbox?:(24pt){現在鋭意実装中};
]);
>
+frame{宣伝}<
+fig-center(vconcat [
gap 75pt;
big-textbox{3/7-9: PHPerKaigi 2024};
gap 20pt;
big-textbox{3/15-16: Ya8 2024};
gap 20pt;
big-textbox{4/13: PHPカンファレンス小田原 2024};
]);
>
>
|