aboutsummaryrefslogtreecommitdiffstats
path: root/docs/part-1/debug-overview.md
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2019-05-22 12:05:07 -0700
committerScott Rifenbark <srifenbark@gmail.com>2019-05-23 17:21:26 -0700
commitc1ff7ba48e89d6ad15bd88fe7ad1af23e7ff931a (patch)
tree8c3310a30ef9d33d4194fc3a7138853bdd65c85d /docs/part-1/debug-overview.md
parent94f5c257b3e633ae74ddfe55d2a21c88f9a9f11f (diff)
XDS Debug with IDE re-write for "guppy"
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Change-Id: I15d693cf118d18743e0ba7916750c91b8cf9a170
Diffstat (limited to 'docs/part-1/debug-overview.md')
0 files changed, 0 insertions, 0 deletions
umber.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/usr/bin/mscgen -Tpng

msc {
       hscale="1.5";

       u [label = "touch/pointer event" ],
       l [label = "launcher app" ],
       s [label = "runtime/shell-client"],
       a [label = "applaunchd" ],
       g [label = "gRPC-proxy" ],
       c [label = "compositor" ],
       d [label = "libsystemd"];

       |||;

       --- [label = "initial phase - subscribe for signal/status events, assume app_id already started" ];

       s >> a [label = "subscribe for applaunchd GetStatusEvents"];

       --- [label = "handling of application switching" ];

       u => l [label = "tapShortCut(appid)" ];
       l => a [label = "StartApplication(appid)"];
       a => d [label = "start application's systemd unit"];
       d => a [label = "return status from starting systemd unit"];
       a => s [label = "StartResponse(status = TRUE)"];
       a => s [label = "StatusResponse(app_id, 'started')"];
       s => c [label = "activate_app(app_id)"];
}