2020/05/06

PlantUMLでシーケンス図作成

背景


システムの詳細設計でシーケンス図を作成する必要があり、Gitで差分管理が可能なクラス図作成ツールを調査した。

記事の目的


PlantUMLでシーケンス図を作成する

シーケンス図


シーケンス図について記載する。

シーケンス図とは

シーケンス図は、クラスやオブジェクト間のやりとりを時間軸に沿って表現したものである。

シーケンス図の描き方

  • ライフライン(Lifeline)
    1. @startuml
    2. participant Participant
    3. actor Actor
    4. database Database
    5. collections Collections
    6. @enduml
    使用するオブジェクトやクラスを表す。利用者(Actor)、オブジェクトやクラス(Participant)、データベース(Database)、集合(Collections)がある。
  • 実行仕様(ExecutionSpecification)
    1. @startuml
    2. participant Participant
    3. Participant -> Participant: Activate
    4. activate Participant
    5. Participant -> Participant: Deactivate
    6. deactivate Participant
    7. @enduml
    生成されているライフラインが実行状態であることを表す。
  • 停止(Stop)
    1. @startuml
    2. participant Participant
    3. activate Participant
    4. Participant -> Participant: Destroy
    5. destroy Participant
    6. @enduml
    生成されたライフライン自体の消滅を表す。
  • メッセージ(Message)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. activate c
    5. c -> s : Synchronous message
    6. activate s
    7. s --> c: Reply message
    8. c ->> s: Asynchronous message
    9. [o-> s: Found message
    10. c ->o] : Lost message
    11. @enduml
    データやトリガーの通信を表す。
    • 同期(Synchronous)メッセージ
    • 送り先のライフラインの実行に同期されるメッセージを表す。
    • 非同期(Asynchronous)メッセージ
    • 送り先のライフラインの実行に同期されないメッセージを表す。
    • 応答(Reply)メッセージ
    • 送り先のライフラインから送り手への戻り値を表す。
    • ファウンド(Found)メッセージ
    • 図解上にない送り手から送られた、もしくは送り手がダイアグラム上にないことを表す。
    • ロスト(Lost)メッセージ
    • 意図された受け手に送られていない、もしくは受け手がダイアグラム上にないことを表す。
  • 参照(Reference)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. activate c
    5. c -> s : Connect
    6. activate s
    7. c -> s : Login
    8. ref over s
    9. Check id and password
    10. sequence
    11. end ref
    12. s --> c: Result
    13. @enduml
    別で定義されてるシーケンス図を参照することを表す。
  • 条件分岐(Alternative)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. activate c
    5. c -> s : Connect
    6. activate s
    7. c -> s : Login
    8. s -> s : Check ID and password
    9. alt ID and password are matched
    10. s --> c: Send token
    11. else not matched
    12. s --> c: Disconnect
    13. else ID is not exist
    14. s --> c: Disconnect
    15. end
    16. @enduml
    条件による処理の分岐を表す。
  • 条件判断(Option)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. activate c
    5. c -> s : Connect
    6. activate s
    7. c -> s : Login
    8. s -> s : Check ID and password
    9. opt ID and password are matched
    10. s --> c: Send an authorized token
    11. end
    12. @enduml
    条件を満たす場合に処理を実行することを表す。
  • 並列処理(Parallel)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. database "Login record DB" as db
    5. activate c
    6. c -> s : Connect
    7. activate s
    8. c -> s : Login
    9. s -> s : Check ID and password
    10. opt ID and password are matched
    11. par
    12. s -> s : Create an authorized token
    13. s --> c: Send an authorized token
    14. else
    15. s -> db: Send login time
    16. activate db
    17. db -> db: Record login time
    18. deactivate db
    19. end
    20. end
    21. @enduml
    複数の処理を並列で実行することを表す。
  • 反復処理(Loop)
    1. @startuml
    2. collections Client as c
    3. participant Server as s
    4. activate c
    5. activate s
    6. opt Time is 00:00
    7. loop Number of connected clients
    8. s -> c : Check client status
    9. c --> s: Send status
    10. end
    11. end
    12. @enduml
    処理を反復実行することを表す。
  • 中断(Break)
    1. @startuml
    2. collections Client as c
    3. participant Server as s
    4. activate c
    5. activate s
    6. opt Time is 00:00
    7. loop Number of connected clients
    8. s -> c : Check client status
    9. c --> s: Send status
    10. break Client status is illegal
    11. loop Number of connected clients
    12. s -> c : Disconnect
    13. end
    14. end
    15. end
    16. end
    17. @enduml
    反復処理中に特定の条件を満たした場合、(決められた処理を行い)反復処理を中止することを表す。
  • クリティカルセッション(Critical)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. database "Login record DB" as db
    5. activate c
    6. c -> s : Connect
    7. activate s
    8. c -> s : Login
    9. s -> s : Check ID and password
    10. opt ID and password are matched
    11. par
    12. s -> s : Create an authorized token
    13. s --> c: Send an authorized token
    14. s -> db: Send an authorized token
    15. critical
    16. activate db
    17. db -> db: Record an authorized token
    18. deactivate db
    19. end
    20. else
    21. s -> db: Send login time
    22. critical
    23. activate db
    24. db -> db: Record login time
    25. deactivate db
    26. end
    27. end
    28. end
    29. @enduml
    並列処理中に、排他制御された処理を表す。
  • アサート(Assert)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. database "Deposit record DB" as db
    5. activate c
    6. activate s
    7. c -> s : Send transfer information
    8. group assert
    9. s -> db: Update deposit amount
    10. note right : Deposit amount = Transfer amount + Previous deposit amount
    11. activate db
    12. db -> db: Record deposit amount
    13. deactivate db
    14. end
    15. @enduml
    処理結果の妥当性を保証しなければならないことを表す。
  • 不正なシーケンス(Negative)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. database "Deposit record DB" as db
    5. activate c
    6. activate s
    7. c -> s : Send transfer information
    8. alt Deposit amount = Transfer amount + Previous deposit amount
    9. s -> db: Update deposit amount
    10. activate db
    11. db ->db: Record deposit amount
    12. s --> c: Send accept msg
    13. deactivate db
    14. else Deposit amount != Transfer amount + Previous deposit amount
    15. group neg
    16. s -->c : Send error msg
    17. end
    18. end
    19. @enduml
    処理が通常起こりえない処理である(異常系である)ことを表す。
  • 無効(Ignore)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. activate c
    5. c -> s : Connect
    6. activate s
    7. group ignore {Send client status}
    8. c -> s : Login(Send id, password)
    9. c -> s : Send client status
    10. end
    11. s -> s : Check ID and password
    12. alt ID and password are matched
    13. s --> c: Send token
    14. else not matched
    15. s --> c: Disconnect
    16. end
    17. @enduml
    必須ではない処理を{}内に記載する。
  • 有効(Consider)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. activate c
    5. c -> s : Connect
    6. activate s
    7. group consider {Login(Send id, password)}
    8. c -> s : Login(Send id, password)
    9. c -> s : Send client status
    10. end
    11. s -> s : Check ID and password
    12. alt ID and password are matched
    13. s --> c: Send token
    14. else not matched
    15. s --> c: Disconnect
    16. end
    17. @enduml
    必須な処理を{}内に記載する。
  • セクション(Section)
    1. @startuml
    2. participant Client as c
    3. participant Server as s
    4. activate c
    5. == Make connection ==
    6. c -> s : Connect
    7. activate s
    8. == Login ==
    9. c -> s : Login
    10. ref over s
    11. Check id and password
    12. sequence
    13. end ref
    14. s --> c: Result
    15. @enduml
    セクションで区切ると、処理をまとめて整理できる。
  • オブジェクト生成(Create)
    1. @startuml
    2. participant parent as p
    3. activate p
    4. p -> p: Initial process
    5. create participant child as c
    6. p -> c: New
    7. @enduml
    オブジェクト(インスタンス)を生成していることを表す。

まとめ


  • PlantUMLでシーケンス図を作成する方法を調査、記載した

参考文献



変更履歴


  1. 2020/05/06: 新規作成

0 件のコメント:

コメントを投稿

MQTTの導入

背景 IoTデバイスの接続環境構築のため、MQTT(mosquitto)の導入を行った。 記事の目的 MQTT(mosquitto)をUbuntuに導入する mosquitto ここではmosquittoについて記載する。 MQTT MQTT(Message Qu...