[Tex/LaTex] protocol message diagram

tikz-pgf

I would like to draw a signalling protocol message exchange, like the picture below.

enter image description here

I tried to draw the diagram with the package pgf-umlsd and 90% are able to realize the scheme. this is the code:

\documentclass{article}
\usepackage[margin=12mm]{geometry}
\usepackage{hyperref}
\usepackage[underline=true]{pgf-umlsd}
\usepackage{listings}
\usepackage{color}
\definecolor{listinggray}{gray}{0.92}
\lstset{ %
   language=[LaTeX]TeX,
   breaklines=true,
   frame=single,
   basicstyle=\footnotesize\ttfamily,
   backgroundcolor=\color{listinggray},
   keywordstyle=\color{blue}
}

\begin{document}

\begin{sequencediagram}
\newinst{ue}{UE}
\newinst[3]{nodeb}{Node B}
\newinst[3]{rnc}{RNC}
\mess{ue}{RRC Connection Request}{rnc}
\mess{rnc}{Radio Link Setup Request}{nodeb}
\mess{nodeb}{Radio Link Setup Response}{rnc}
\mess{rnc}{Establish Request}{nodeb}
\mess{nodeb}{Establish Confirm}{rnc}
\mess{rnc}{RRC Connection Setup}{ue}
\mess{nodeb}{Synchronization Indication}{rnc}
\mess{ue}{RRC Connection Setup Complete}{rnc}
\end{sequencediagram}

\end{document}

using the package I am not able to enter the rectangle labeled "L1 synchronization" between the messages "RRC Connection Setup" and "Synchronization Indication".

Can you suggest a more customizable alternative to the diagram shown?

Best Answer

You can complete your diagram without leaving pgf-umlsd:

Diagram

To do so, you only need to know some things about pgf-umlsd:

  • Macro \postlevel increases a "unit of time" the timing of the next message, so it serves to leave a gap between "RRC Connection Setup" and "Synchronizacion indication", to insert your rectangle.

  • pgf-umlsd defines a pair of named nodes for each message, which you can use later to draw things relative to those nodes. They are called (<message label> from) and (<message label> to), where <message label> is the text written above the message.

You can use those named nodes to specify the corners of the shaded rectangle. I used calc library to do so.

So, in your case, to draw the rectangle at the desired point, you have to find which messages are near the corners of the rectangle. We find that the top left corner is near the ending of message "RRC Connection Setup", and the bottom right corner is near the starting of message "Synchronization Indication", so the corners of the rectangle are:

(RRC Connection Setup to) rectangle (Synchronization Indication from)

But those would produce a rectangle too close to the messages, so we have displace a bit the y coordinate to separate it from each message. I used the following expression to separate it 0.3 units of each:

($(RRC Connection Setup to)+(0,-.3)$) rectangle ($(Synchronization Indication from) +(0,.3)$)

If you want the rectangle spanning other columns, you have to find which message endings are nearby to the desired rectangle corners. For example, for having the rectangle from "Node B" to "RNC", yo may use:

 ($(RR Connection Setup from)+(0,-.3)$) rectangle ($(Synchronization Indication from) +(0,.5)$)

and so on

\documentclass{article}
\usepackage[margin=12mm]{geometry}
\usepackage{hyperref}
\usepackage[underline=true]{pgf-umlsd}
\usetikzlibrary{calc}
\begin{document}

\begin{sequencediagram}
\newinst{ue}{UE}
\newinst[3]{nodeb}{Node B}
\newinst[3]{rnc}{RNC}
\mess{ue}{RRC Connection Request}{rnc}
\mess{rnc}{Radio Link Setup Request}{nodeb}
\mess{nodeb}{Radio Link Setup Response}{rnc}
\mess{rnc}{Establish Request}{nodeb}
\mess{nodeb}{Establish Confirm}{rnc}
\mess{rnc}{RRC Connection Setup}{ue}
\postlevel
\mess{nodeb}{Synchronization Indication}{rnc}
\filldraw[fill=black!30] ($(RRC Connection Setup to)+(0,-.3)$) rectangle ($(Synchronization Indication from) +(0,.3)$)
  node[midway] {L1 Synchronization};
\mess{ue}{RRC Connection Setup Complete}{rnc}
\end{sequencediagram}

\end{document}
Related Question