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
31
Castor - Le Task Runner PHP qui simplifie votre Workflow
lyrixx
2
620
Vos logs méritent mieux que la config par défaut
lyrixx
5
1.7k
Castor - Symfony Live 2024 - Paris
lyrixx
2
510
GitHub Actions - Automatisation de vos workflows
lyrixx
1
580
Doctrine, objet typé, et colonne JSON
lyrixx
6
4.5k
(Re) Découvrir les outils UNIX
lyrixx
5
2.2k
Symfony: Comment valider dynamiquement de la donnée
lyrixx
3
410
Symfony Lock & Semaphore
lyrixx
3
1.2k
Other Decks in Programming
See All in Programming
Do Dumb Things
mitsuhiko
0
440
Deoptimization: How YJIT Speeds Up Ruby by Slowing Down / RubyKaigi 2025
k0kubun
0
850
API for docs
soutaro
2
1.3k
Empowering Developers with HTML-Aware ERB Tooling @ RubyKaigi 2025, Matsuyama, Ehime
marcoroth
2
730
Fiber Scheduler vs. General-Purpose Parallel Client
hayaokimura
1
100
ウォンテッドリーの「ココロオドル」モバイル開発 / Wantedly's "kokoro odoru" mobile development
kubode
1
140
大LLM時代にこの先生きのこるには-ITエンジニア編
fumiyakume
7
3k
SwiftUI API Design Lessons
niw
1
290
Thank you <💅>, What's the Next?
ahoxa
1
440
「”誤った使い方をすることが困難”な設計」で良いコードの基礎を固めよう / phpcon-odawara-2025
taniguhey
0
160
Rollupのビルド時間高速化によるプレビュー表示速度改善とバンドラとASTを駆使したプロダクト開発の難しさ
plaidtech
PRO
1
170
Enterprise Web App. Development (1): Build Tool Training Ver. 5
knakagawa
1
120
Featured
See All Featured
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
52
2.4k
Making Projects Easy
brettharned
116
6.1k
GraphQLの誤解/rethinking-graphql
sonatard
71
10k
Practical Orchestrator
shlominoach
186
11k
Testing 201, or: Great Expectations
jmmastey
42
7.5k
The Language of Interfaces
destraynor
157
25k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
45
9.5k
The Pragmatic Product Professional
lauravandoore
33
6.5k
Being A Developer After 40
akosma
91
590k
Making the Leap to Tech Lead
cromwellryan
133
9.2k
Visualization
eitanlees
146
16k
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