-
Notifications
You must be signed in to change notification settings - Fork 2
/
06_reactive.html
446 lines (391 loc) · 15.9 KB
/
06_reactive.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Programowanie reaktywne - wykład 6</title>
<meta name="description" content="Programowanie reaktywne">
<meta name="author" content="Maciej Małecki">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>reveal.js</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/white.css" id="theme">
<link rel="stylesheet" href="css/custom.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Projekt i implementacja systemów webowych</h2>
<p>Programowanie asychroniczne i reaktywne</p>
<p>mgr inż. Maciej Małecki</p>
</section>
<section>
<h3>Asynchroniczność</h3>
<p>Sytuacja, w której program komputerowy musi reagować na zdarzenia
niezależnie od własnego przebiegu.</p>
<div class="fragment rounded bcol0">
<p><strong>Przykłady:</strong></p>
<ul>
<li>obsługa sygnałów systemu operacyjnego Unix,</li>
<li>obsługa zdarzeń systemu operacyjnego Windows,</li>
<li>obsługa przerwań przez procesor.</li>
</ul>
</div>
</section>
<section>
<section>
<p class="bcol0 rounded">JavaScript jest językiem jednowątkowym.</p>
<p class="fragment">Jak obsłużyć zdarzenia typu "kliknięcie przycisku" albo komunikację sieciową?</p>
</section>
<section>
<h3>Model wykonawczy JavaScript</h3>
<img src="img/JavaScript-runtime-engine.png" alt="JS Runtime Engine" class="rounded backlight">
</section>
<section>
<h3>Callback hell</h3>
<img src="img/Callback-Hell.png" alt="" style="height: 380px;" class="rounded backlight white">
</section>
</section>
<section>
<h3>"Promise"</h3>
<section>
<p>ECMAScript 6: tworzenie</p>
<pre class="javascript"><code class="hljs" data-trim data-line-numbers>
const p = new Promise((resolve, reject) => {
if (/* condition */) {
resolve(/* value */); // fulfilled successfully
} else {
reject(/* reason */); // error, rejected
}
});
</code></pre>
<p>"konsumpcja"</p>
<pre class="javascript"><code class="hljs" data-trim data-line-numbers>
p.then(
(val) => console.log("fulfilled:", val),
(err) => console.log("rejected: ", err));
</code></pre>
</section>
<section>
<p>Obiekt `Promise` pozwala także łączyć wywołania asynchroniczne w łańcuchy:</p>
<pre class="javascript"><code class="hljs" data-trim data-line-numbers>
p.then((val) => someOtherAsyncFunction(val))
.then((val) => someOtherAsyncFunction2(val))
.then((val) => console.log('fulfilled:' + val));
</code></pre>
</section>
</section>
<section>
<h3>async / await</h3>
<pre class="javascript"><code class="hljs" data-trim data-line-numbers="|2-8|10-14|16-21">
async function showAvatar() {
// read our JSON
let response = await fetch('/article/promise-chaining/user.json');
let user = await response.json();
// read github user
let githubResponse = await fetch(`https://api.github.com/users/${user.name}`);
let githubUser = await githubResponse.json();
// show the avatar
let img = document.createElement('img');
img.src = githubUser.avatar_url;
img.className = "promise-avatar-example";
document.body.append(img);
// wait 3 seconds
await new Promise((resolve, reject) => setTimeout(resolve, 3000));
img.remove();
return githubUser;
}
</code></pre>
</section>
<section>
<h3>Programowanie reaktywne</h3>
<p>Programowanie reaktywne to technika programowania
oparta o <em>asynchroniczne</em>
<em>strumienie danych</em>.</p>
<div class="fragment" data-fragment-index="1">
<img src="img/AsyncDataStream1.png" alt="Async Data Stream" class="backlight">
</div>
<p class="fragment" data-fragment-index="1">Strumień danych emituje: wartości, błędy oraz
sygnał <em>completed</em>.
</p>
</section>
<section>
<section>
<h3>Po co?</h3>
<p>Typowy przypadek użycia w aplikacji biznesowej.</p>
<div>
<img src="img/Typical-business-use-case.png" alt="Typical business use case" class="backlight">
</div>
<p class="fragment">Komunikacja sieciowa!</p>
</section>
<section>
<p>Ile czasu potrzeba na komunikację sieciową?</p>
<img src="img/latency-numbers.png" alt="Latency numbers" class="backlight white">
</section>
<section>
<p class="rounded bcol0">
W klasycznym programowaniu (synchronicznym) wątek oczekujący na odpowiedź np z serwera baz danych nasłuchuje (bezużytecznie) na porcie TCP/IP.
</p>
<p class="fragment"><em>I co z tego? <span class="fragment">Przecież system jest wielowątkowy, inny wątek może być
wykonywany w tym czasie?</span></em></p>
</section>
<section>
<h3>Przełączenie kontekstu dla wątku:</h3>
<ul>
<li>Rejestry procesora</li>
<li>Rejestr wskaźnika stosu</li>
<li>Licznik rozkazów</li>
<li>Logika <em>schedulera</em></li>
<li>A co z pamięcią podręczną procesora?</li>
</ul>
</section>
<section>
<p>Ile czasu oszczędzamy dzięki pamięci podręcznej procesora?</p>
<img src="img/latency-numbers.png" alt="Latency numbers" class="backlight white">
</section>
<section>
<p>Przykład: reaktywny serwer HTTP dla Javy (Ratpack)</p>
<img src="img/Reactive%20HTTP.png" alt="Reactive HTTP" class="backlight">
<p class="more-text">Więcej: <a href="https://ratpack.io">https://ratpack.io</a></p>
</section>
</section>
<section>
<div class="r-hstack">
<img src="img/Rx_Logo_S.png" alt="RXS">
<h1>ReactiveX</h1>
</div>
</section>
<section>
<h3>ReactiveX</h3>
<p>Biblioteka / API pozwalająca zastosować wzorzec programowania reaktywnego w różnych językach
programowania.</p>
<p class="fragment rounded bcol0">
Java, JavaScript, C#, Scala, Closure, C++, Lua, Ruby, Python, Go, Groovy, JRuby, Kotlin, Swift, PHP, Elixir, Dart
</p>
<p class="fragment">Wykorzystuje koncepcję <em>Observables</em> jako implementacji strumieni danych.</p>
</section>
<section>
<section>
<h3>Biblioteka RxJS</h3>
<p>
<strong>RxJS</strong> implementacja ReactiveX dla JavaScript/Typescript.
</p>
<p class=fragment">
Biblioteka RxJS jest wykorzystywana przez Angular.
</p>
<pre class="fragment javascript"><code class="hljs" data-trim data-line-numbers="|4-9|10-16">
@Injectable()
export class UserService {
constructor(private http: HttpClient) {}
getAllUsers(): Observable<Array<User>> {
return this.http.get<User[]>('services/rest/users');
}
findUser(id: number): Observable<User> {
return this.http.get<User>(`services/rest/users/${id}`);
}
saveUser(user: User) {
return this.http.post<User>('services/rest/users', user);
}
deleteUser(user:User): Observable<HttpResponse<any>> {
return this.http.delete(`services/rest/users/${user.id}`,
{observe: 'response'});
}
}
</code></pre>
</section>
<section>
<h3>Observable</h3>
<img src="img/Observable-push-pull.png" alt="" class="backlight white">
<ul>
<li>pull - odbiorca decyduje, kiedy odczyta wartość</li>
<li>push - nadawca decyduje, kiedy odbiorca otrzyma wartość</li>
</ul>
</section>
<section>
<h3>Operatory</h3>
<p>Funkcje tworzące lub przekształcające Observable</p>
<a href="http://reactivex.io/documentation/operators.html">http://reactivex.io/documentation/operators.html</a>
</section>
<section>
<h2>Tworzenie Observables</h2>
<div>
<code>import {fromEvent} from 'rxjs/operators';</code>
</div>
<h3>Przykłady</h3>
<div>
<ul>
<li><code>fromEvent(button,'click')</code>
<li><code>fromArray([1,2,3])</code></li>
<li><code>fromPromise(promise)</code></li>
<li><code>of(1,2,3)</code> - <a href="https://next.plnkr.co/edit/84Ymta716OUF3Cae?preview">Plunker</a></li>
<li><code>timer(200/*ms*/, 100/*ms*/)</code> - <a
href="https://next.plnkr.co/edit/dj7q7eTNrKxAAQo0?preview">Plunker</a></li>
</ul>
</div>
</section>
<section>
<p>Subskrybowanie</p>
<pre class="javascript"><code class="hljs" data-trim data-line-numbers>
const source = timer(200, 100).pipe(timeInterval(), take(3));
const subscription = source.subscribe(
(x) => console.log('Next: ' + x),
(err) => console.log('Error: ' + err),
() => console.log('Completed'));
// => Next: 200
// => Next: 100
// => Next: 100
// => Completed
</code></pre>
<a href="https://next.plnkr.co/edit/KPXxiDVeguC2aOj2?preview">Plunker</a>
</section>
<section>
<h3>Transformacje</h3>
<p>Każdy operator przekształcający tworzy nową instancję <em>Observable</em>.</p>
<div class="most-text">
<ul>
<li><code>map<T,R>(project: (value:T, index:number) => R, thisArg?: any)</code></li>
<li><code>pluck<T,R>(...properties: string[])</code></li>
<li><code>filter<T>(predicate: (value:T,i:number)=>boolean,thisArg?:any)</code></li>
<li><code>throttle(windowDuration)</code></li>
<li><code>skip(count)</code></li>
<li><code>take(count)</code></li>
<li><code>takeUntil(notifier: Observable)</code></li>
<li><code>buffer(bufferClosingSelector:Observable)</code></li>
<li><code>merge(source2)</code></li>
</ul>
</div>
</section>
<section>
<p>Przykład: takeUntil</p>
<pre class="javascript"><code class="hljs" data-trim data-line-numbers>
private unsubscribe = new Subject();
...
public ngOnDestroy() {
this.unsubscribe.next();
this.unsubscribe.complete();
}
...
public findObjects() {
this.httpClient.get<Data>().pipe(
takeUntil(this.unsubscribe)).subscribe(...);
}</code></pre>
</section>
<section>
<p>Przykład: merge</p>
<img src="img/rxjs-merge.png" alt="" style="height: 350px;" class="backlight">
</section>
<section>
<p>Przykład: merge</p>
<pre class="javascript"><code class="hljs" data-trim data-line-numbers>
const source2 = timer(300, 2000).pipe(take(10), map(i=>'item ' + i));
const source1 = timer(1000, 550)
.pipe(
take(10),
timeInterval(),
pluck('interval'),
map(t=>'interval ' + t),
merge(source2));
source1.subscribe(x=>console.log(x));
</code></pre>
<a href="https://next.plnkr.co/edit/c2TBkTaSoTMy69Hs?preview">Plunker</a>
</section>
<section>
<p>Przykład: Throttle</p>
<pre class="javascript"><code class="hljs" data-trim data-line-numbers="|1-11|13-21">
const times = [
{ value: 0, time: 100 },
{ value: 1, time: 600 },
{ value: 2, time: 400 },
{ value: 3, time: 900 },
{ value: 4, time: 200 }
];
const source = from(times)
.pipe(flatMap(item => of(item.value).pipe(delay(item.time))),
throttleTime(200));
const subscription = source.subscribe(
x => console.log('Next: %s', x),
err => console.log(err),
() => console.log('Completed'));
// => Next: 0
// => Next: 2
// => Next: 3
// => Completed
</code></pre>
<a href="https://next.plnkr.co/edit/2KmfQse68Rji4RGv?preview">Plunker</a>
</section>
<section>
<h3>Przykład: buffer</h3>
<img src="img/rxjs-buffer1.png" alt="" style="height: 350px;" class="backlight">
</section>
<section>
<h3>Przykład</h3>
<ol>
<li>Dla przycisku chcemy reagować za każdym razem, gdy wykonano "dwuklik".</li>
<li>Uogólniając, chcemy reagować także na potrójne, poczwórne (itp) kliknięcia.</li>
<li>Chcemy wiedzieć, ile było kliknięć w każdej "paczce".</li>
</ol>
</section>
<section>
<pre class="javascript"><code class="hljs" data-trim data-line-numbers>
const clickStream = this.obs.asObservable();
const dly = 500;
const multiClickStream = clickStream.pipe(
buffer(clickStream.pipe(debounceTime(dly))),
map(list => list.length),
filter(x => x >= 2)
);
multiClickStream.subscribe((numclicks) => this.text = ''+numclicks+'x click');
multiClickStream
.pipe(delay(1000))
.subscribe(() => this.text = '');
</code></pre>
<a href="https://next.plnkr.co/edit/AnqDiwF9Ldh2FBhm?preview">Plunker</a>
</section>
</section>
<section>
<h3>Bibliografia</h3>
<div class="most-text">
<ul>
<li><a href="https://developer.mozilla.org/pl/docs/Web/JavaScript/Reference/Global_Objects/Promise">https://developer.mozilla.org/pl/docs/Web/JavaScript/Reference/Global_Objects/Promise</a>
</li>
<li><a href="https://github.com/Reactive-Extensions/RxJS">https://github.com/Reactive-Extensions/RxJS</a>
</li>
<li><a href="https://gist.github.com/staltz/868e7e9bc2a7b8c1f754">The introduction to Reactive
Programming you've been missing</a></li>
<li><a href="https://rxmarbles.com/">https://rxmarbles.com/</a></li>
<li><a href="https://rxjs-dev.firebaseapp.com/guide/overview">https://rxjs-dev.firebaseapp.com/guide/overview</a></li>
</ul>
</div>
</section>
</div>
<div
id="cgLogo"
style="background: url(img/cg-logo.svg); position: absolute; bottom: 20px; left: 20px; width: 170px; height: 38px;">
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<!-- <script src="plugin/chalkboard/plugin.js"></script> -->
<script src="plugin/zoom/zoom.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
width: 1200,
hash: true,
navigationMode: 'linear',
slideNumber: 'c/t',
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes, RevealZoom]
});
</script>
</body>
</html>