Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
A la découverte de Symfony/Workflow - AFUP 2018
Search
Grégoire Pineau
May 28, 2018
Programming
1
140
A la découverte de Symfony/Workflow - AFUP 2018
Grégoire Pineau
May 28, 2018
Tweet
Share
More Decks by Grégoire Pineau
See All by Grégoire Pineau
MCP - Symfony Live Paris - 2025
lyrixx
1
60
Castor - Le Task Runner PHP qui simplifie votre Workflow
lyrixx
2
680
Vos logs méritent mieux que la config par défaut
lyrixx
5
1.8k
Castor - Symfony Live 2024 - Paris
lyrixx
2
540
GitHub Actions - Automatisation de vos workflows
lyrixx
1
600
Doctrine, objet typé, et colonne JSON
lyrixx
6
4.6k
(Re) Découvrir les outils UNIX
lyrixx
5
2.2k
Symfony: Comment valider dynamiquement de la donnée
lyrixx
3
430
Symfony Lock & Semaphore
lyrixx
3
1.3k
Other Decks in Programming
See All in Programming
The Evolution of Enterprise Java with Jakarta EE 11 and Beyond
ivargrimstad
1
830
セキュリティマネジャー廃止とクラウドネイティブ型サンドボックス活用
kazumura
1
190
Datadog RUM 本番導入までの道
shinter61
1
310
プロダクト開発でも使おう 関数のオーバーロード
yoiwamoto
0
160
今ならAmazon ECSのサービス間通信をどう選ぶか / Selection of ECS Interservice Communication 2025
tkikuc
11
2.8k
なぜ「共通化」を考え、失敗を繰り返すのか
rinchoku
1
340
Beyond Portability: Live Migration for Evolving WebAssembly Workloads
chikuwait
0
380
Select API from Kotlin Coroutine
jmatsu
1
180
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
140
既存デザインを変更せずにタップ領域を広げる方法
tahia910
1
240
無関心の谷
kanayannet
0
180
生成AIコーディングとの向き合い方、AIと共創するという考え方 / How to deal with generative AI coding and the concept of co-creating with AI
seike460
PRO
1
320
Featured
See All Featured
4 Signs Your Business is Dying
shpigford
184
22k
How STYLIGHT went responsive
nonsquared
100
5.6k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
107
19k
Scaling GitHub
holman
459
140k
For a Future-Friendly Web
brad_frost
179
9.8k
The Cost Of JavaScript in 2023
addyosmani
51
8.4k
A better future with KSS
kneath
239
17k
The Cult of Friendly URLs
andyhume
79
6.4k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.8k
VelocityConf: Rendering Performance Case Studies
addyosmani
330
24k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
130
19k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
Transcript
Symfony/workflow PHP Tour 2018 - Montpellier 1
2
Grégoire Pineau / @lyrixx DevOps @JoliCode Core Contributeur @symfony 3
Quand ? 4
Contexte 5 La publication d’un article sur un site de
presse ne se fait pas en un clin d’oeil. L’article transite par différents acteurs, qui produisent, relisent, valident. Il y a un workflow précis.
Garantir la qualité Chacune des étapes est nécessaire et garantit
la qualité de l’article (véracité du propos, sourcing, soin de l’écriture et de la formulation…) Ce circuit de production et de publication est une analogie efficace de ce que l’on peut retrouver dans le code 6
7 Pourquoi ?
8
9 Hello Workflow ! • Sépare la logique business du
modèle • Rend le code plus : ◦ Réutilisable ◦ Maintenable ◦ Lisible
Hello Workflow ! Le composant a pour but de garantir
que l’article passe bien par toutes les étapes de validation. 10
Symfony/workflow 11
12 machine à État
États / Transitions 13 état a état b Transition T1
Graphe orienté 14 A B C D E T1 T2
T3 T4 T5
Définition 15
16 Un simple graphe
17 Définition
GraphViz Dumper 18
19 Graphviz Dumper
La classe workflow 20
La méthode Workflow :: can() 21
22 La méthode Workflow :: can()
La méthode Workflow :: apply() 23
24 La méthode Workflow :: apply()
Workflow :: getEnabledTransitions() 25
26 Workflow :: getEnabledTransitions()
Twig 27
Twig 28
Les events ? 29
Les events On a mis l’Event Dispatcher dans le Workflow
! Un event à chaque : • Sortie de place • Passage dans une transition • Arrivée dans une place • Activation d’une transition 30
31
Plus un autre : le Guard Event 32
Un réseau de Pétri 33
What ? “Un réseau de Petri est une machine à
état sous stéroïde” - Quelqu’un, un jour “Une machine à état est un subset des réseaux de Petri” - Carl Adam Petri, 1962 34
Places / Transitions 35 Transition T1 place A place B
Plusieurs Entrées Sorties 36 Transition place place place place
Tokens ! 37
38 Le chat de Schrödinger
Quelques exemples de workflow 39
Tout droit 40
En Boucle 41
Ou 42
Et / Tâches en parallèle 43
WHAT ? 44
Appliqué à un Article 45
Modélisation du flow d’un article 46
Le MArking 47
Le marking 48 Il représente “l’état” d’un objet dans le
workflow. C’est-à-dire toutes les places où il y a des tokens.
Marking / Avant 49
Marking / Après 50
Demo ? 51
Le marking Store 52
Le marking store 53 Le marking store est l’interface entre
le Composant Workflow et un POPO. Il convertit le marking en quelque chose de compréhensible par le POPO et vice versa.
Deux implémentations 54 • Single State Marking Store scalar column
in DB • Multiple State Marking Store “array” column in DB
Les metadata 55
Les métadonnées 56
Et dans Symfony ? 57
La définition - En YAML 58
La définition - En YAML - Places 59
La définition - En YAML - Transitions 60
La définition - En YAML - Le reste 61
Ça ressemble à quoi ? 62
Une vue 63
Un contrôleur 64
Et notre guard ? 65
Merci Questions ? 66