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
なぜ適用するか、移行して理解するClean Architecture 〜構造を超えて設計を継承する〜 / Why Apply, Migrate and Understand Clean Architecture - Inherit Design Beyond Structure
seike460
PRO
1
260
AWS CDKの推しポイント 〜CloudFormationと比較してみた〜
akihisaikeda
3
290
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
41
28k
Spring gRPC で始める gRPC 入門 / Introduction to gRPC with Spring gRPC
mackey0225
2
520
Go Modules: From Basics to Beyond / Go Modulesの基本とその先へ
kuro_kurorrr
0
120
Is Xcode slowly dying out in 2025?
uetyo
1
180
XSLTで作るBrainfuck処理系
makki_d
0
210
deno-redisの紹介とJSRパッケージの運用について (toranoana.deno #21)
uki00a
0
130
Benchmark
sysong
0
230
TypeScript LSP の今までとこれから
quramy
1
510
Passkeys for Java Developers
ynojima
3
880
Enterprise Web App. Development (2): Version Control Tool Training Ver. 5.1
knakagawa
1
120
Featured
See All Featured
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
4
200
Designing Experiences People Love
moore
142
24k
How to train your dragon (web standard)
notwaldorf
92
6.1k
Producing Creativity
orderedlist
PRO
346
40k
The Straight Up "How To Draw Better" Workshop
denniskardys
233
140k
The Pragmatic Product Professional
lauravandoore
35
6.7k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.8k
Typedesign – Prime Four
hannesfritz
42
2.7k
Code Reviewing Like a Champion
maltzj
524
40k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
8
660
Build your cross-platform service in a week with App Engine
jlugia
231
18k
What’s in a name? Adding method to the madness
productmarketing
PRO
22
3.5k
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