UTI: Move constatns to a separate file
[csit.git] / resources / tools / dash / app / pal / report / layout.py
index 081a0fd..164f2d4 100644 (file)
@@ -27,8 +27,9 @@ from yaml import load, FullLoader, YAMLError
 from copy import deepcopy
 from ast import literal_eval
 
+from ..utils.constants import Constants as C
+from ..utils.url_processing import url_decode, url_encode
 from ..data.data import Data
-from ..data.url_processing import url_decode, url_encode
 from .graphs import graph_iterative, table_comparison, get_short_version
 
 
@@ -36,51 +37,6 @@ class Layout:
     """
     """
 
-    # If True, clear all inputs in control panel when button "ADD SELECTED" is
-    # pressed.
-    CLEAR_ALL_INPUTS = False
-
-    STYLE_DISABLED = {"display": "none"}
-    STYLE_ENABLED = {"display": "inherit"}
-
-    CL_ALL_DISABLED = [{
-        "label": "All",
-        "value": "all",
-        "disabled": True
-    }]
-    CL_ALL_ENABLED = [{
-        "label": "All",
-        "value": "all",
-        "disabled": False
-    }]
-
-    PLACEHOLDER = html.Nobr("")
-
-    DRIVERS = ("avf", "af-xdp", "rdma", "dpdk")
-
-    LABELS = {
-        "dpdk": "DPDK",
-        "container_memif": "LXC/DRC Container Memif",
-        "crypto": "IPSec IPv4 Routing",
-        "ip4": "IPv4 Routing",
-        "ip6": "IPv6 Routing",
-        "ip4_tunnels": "IPv4 Tunnels",
-        "l2": "L2 Ethernet Switching",
-        "srv6": "SRv6 Routing",
-        "vm_vhost": "VMs vhost-user",
-        "nfv_density-dcr_memif-chain_ipsec": "CNF Service Chains Routing IPSec",
-        "nfv_density-vm_vhost-chain_dot1qip4vxlan":"VNF Service Chains Tunnels",
-        "nfv_density-vm_vhost-chain": "VNF Service Chains Routing",
-        "nfv_density-dcr_memif-pipeline": "CNF Service Pipelines Routing",
-        "nfv_density-dcr_memif-chain": "CNF Service Chains Routing",
-    }
-
-    URL_STYLE = {
-        "background-color": "#d2ebf5",
-        "border-color": "#bce1f1",
-        "color": "#135d7c"
-    }
-
     def __init__(self, app: Flask, releases: list, html_layout_file: str,
         graph_layout_file: str, data_spec_file: str, tooltip_file: str) -> None:
         """
@@ -125,7 +81,7 @@ class Layout:
                 replace("2n-", "")
             test = lst_test_id[-1]
             nic = suite.split("-")[0]
-            for drv in self.DRIVERS:
+            for drv in C.DRIVERS:
                 if drv in test:
                     driver = drv.replace("-", "_")
                     test = test.replace(f"{drv}-", "")
@@ -234,7 +190,7 @@ class Layout:
         return self._graph_layout
 
     def label(self, key: str) -> str:
-        return self.LABELS.get(key, key)
+        return C.LABELS.get(key, key)
 
     def _show_tooltip(self, id: str, title: str,
             clipboard_id: str=None) -> list:
@@ -359,9 +315,7 @@ class Layout:
                                     dbc.Row(  # Throughput
                                         id="row-graph-tput",
                                         class_name="g-0 p-2",
-                                        children=[
-                                            self.PLACEHOLDER
-                                        ]
+                                        children=[C.PLACEHOLDER, ]
                                     ),
                                     width=6
                                 ),
@@ -369,9 +323,7 @@ class Layout:
                                     dbc.Row(  # Latency
                                         id="row-graph-lat",
                                         class_name="g-0 p-2",
-                                        children=[
-                                            self.PLACEHOLDER
-                                        ]
+                                        children=[C.PLACEHOLDER, ]
                                     ),
                                     width=6
                                 )
@@ -380,16 +332,12 @@ class Layout:
                         dbc.Row(  # Tables
                             id="row-table",
                             class_name="g-0 p-2",
-                            children=[
-                                self.PLACEHOLDER
-                            ]
+                            children=[C.PLACEHOLDER, ]
                         ),
                         dbc.Row(  # Download
                             id="row-btn-download",
                             class_name="g-0 p-2",
-                            children=[
-                                self.PLACEHOLDER
-                            ]
+                            children=[C.PLACEHOLDER, ]
                         )
                     ]
                 )
@@ -548,7 +496,7 @@ class Layout:
                             children=[
                                 dbc.Checklist(
                                     id="cl-ctrl-framesize-all",
-                                    options=self.CL_ALL_DISABLED,
+                                    options=C.CL_ALL_DISABLED,
                                     inline=True,
                                     switch=False
                                 ),
@@ -579,7 +527,7 @@ class Layout:
                             children=[
                                 dbc.Checklist(
                                     id="cl-ctrl-core-all",
-                                    options=self.CL_ALL_DISABLED,
+                                    options=C.CL_ALL_DISABLED,
                                     inline=False,
                                     switch=False
                                 )
@@ -610,7 +558,7 @@ class Layout:
                             children=[
                                 dbc.Checklist(
                                     id="cl-ctrl-testtype-all",
-                                    options=self.CL_ALL_DISABLED,
+                                    options=C.CL_ALL_DISABLED,
                                     inline=True,
                                     switch=False
                                 ),
@@ -628,6 +576,34 @@ class Layout:
                         )
                     ]
                 ),
+                dbc.Row(
+                    id="row-ctrl-normalize",
+                    class_name="gy-1",
+                    children=[
+                        dbc.Label(
+                            children=self._show_tooltip(
+                                "help-normalize", "Normalize"),
+                            class_name="p-0"
+                        ),
+                        dbc.Col(
+                            children=[
+                                dbc.Checklist(
+                                    id="cl-ctrl-normalize",
+                                    options=[{
+                                        "value": "normalize",
+                                        "label": (
+                                            "Normalize results to CPU"
+                                            "frequency 2GHz"
+                                        )
+                                    }],
+                                    value=[],
+                                    inline=True,
+                                    switch=False
+                                ),
+                            ]
+                        )
+                    ]
+                ),
                 dbc.Row(
                     class_name="gy-1 p-0",
                     children=[
@@ -647,7 +623,7 @@ class Layout:
                 dbc.Row(
                     id="row-card-sel-tests",
                     class_name="gy-1",
-                    style=self.STYLE_DISABLED,
+                    style=C.STYLE_DISABLED,
                     children=[
                         dbc.Label(
                             "Selected tests",
@@ -664,7 +640,7 @@ class Layout:
                 ),
                 dbc.Row(
                     id="row-btns-sel-tests",
-                    style=self.STYLE_DISABLED,
+                    style=C.STYLE_DISABLED,
                     children=[
                         dbc.ButtonGroup(
                             class_name="gy-2",
@@ -694,12 +670,6 @@ class Layout:
     class ControlPanel:
         def __init__(self, panel: dict) -> None:
 
-            CL_ALL_DISABLED = [{
-                "label": "All",
-                "value": "all",
-                "disabled": True
-            }]
-
             # Defines also the order of keys
             self._defaults = {
                 "dd-rls-value": str(),
@@ -721,16 +691,17 @@ class Layout:
                 "cl-core-options": list(),
                 "cl-core-value": list(),
                 "cl-core-all-value": list(),
-                "cl-core-all-options": CL_ALL_DISABLED,
+                "cl-core-all-options": C.CL_ALL_DISABLED,
                 "cl-framesize-options": list(),
                 "cl-framesize-value": list(),
                 "cl-framesize-all-value": list(),
-                "cl-framesize-all-options": CL_ALL_DISABLED,
+                "cl-framesize-all-options": C.CL_ALL_DISABLED,
                 "cl-testtype-options": list(),
                 "cl-testtype-value": list(),
                 "cl-testtype-all-value": list(),
-                "cl-testtype-all-options": CL_ALL_DISABLED,
+                "cl-testtype-all-options": C.CL_ALL_DISABLED,
                 "btn-add-disabled": True,
+                "cl-normalize-value": list(),
                 "cl-selected-options": list()
             }
 
@@ -789,10 +760,10 @@ class Layout:
 
             (fig_tput, fig_lat) = figs
 
-            row_fig_tput = self.PLACEHOLDER
-            row_fig_lat = self.PLACEHOLDER
-            row_table = self.PLACEHOLDER
-            row_btn_dwnld = self.PLACEHOLDER
+            row_fig_tput = C.PLACEHOLDER
+            row_fig_lat = C.PLACEHOLDER
+            row_table = C.PLACEHOLDER
+            row_btn_dwnld = C.PLACEHOLDER
 
             if fig_tput:
                 row_fig_tput = [
@@ -824,7 +795,7 @@ class Layout:
                                 class_name="me-1",
                                 children=[
                                     dbc.InputGroupText(
-                                        style=self.URL_STYLE,
+                                        style=C.URL_STYLE,
                                         children=self._show_tooltip(
                                             "help-url", "URL", "input-url")
                                     ),
@@ -832,7 +803,7 @@ class Layout:
                                         id="input-url",
                                         readonly=True,
                                         type="url",
-                                        style=self.URL_STYLE,
+                                        style=C.URL_STYLE,
                                         value=url
                                     )
                                 ]
@@ -898,6 +869,7 @@ class Layout:
             Output("cl-ctrl-testtype-all", "value"),
             Output("cl-ctrl-testtype-all", "options"),
             Output("btn-ctrl-add", "disabled"),
+            Output("cl-ctrl-normalize", "value"),
             Output("cl-selected", "options"),  # User selection
             State("control-panel", "data"),  # Store
             State("selected-tests", "data"),  # Store
@@ -914,6 +886,7 @@ class Layout:
             Input("cl-ctrl-framesize-all", "value"),
             Input("cl-ctrl-testtype", "value"),
             Input("cl-ctrl-testtype-all", "value"),
+            Input("cl-ctrl-normalize", "value"),
             Input("btn-ctrl-add", "n_clicks"),
             Input("btn-sel-remove", "n_clicks"),
             Input("btn-sel-remove-all", "n_clicks"),
@@ -923,8 +896,8 @@ class Layout:
             dd_rls: str, dd_dut: str, dd_dutver: str, dd_phy: str, dd_area: str,
             dd_test: str, cl_core: list, cl_core_all: list, cl_framesize: list,
             cl_framesize_all: list, cl_testtype: list, cl_testtype_all: list,
-            btn_add: int, btn_remove: int, btn_remove_all: int,
-            href: str) -> tuple:
+            cl_normalize: list, btn_add: int, btn_remove: int,
+            btn_remove_all: int, href: str) -> tuple:
             """
             """
 
@@ -943,7 +916,6 @@ class Layout:
                     new_url = str()
                 return new_url
 
-
             ctrl_panel = self.ControlPanel(cp_data)
 
             # Parse the url:
@@ -989,15 +961,15 @@ class Layout:
                     "cl-core-options": list(),
                     "cl-core-value": list(),
                     "cl-core-all-value": list(),
-                    "cl-core-all-options": self.CL_ALL_DISABLED,
+                    "cl-core-all-options": C.CL_ALL_DISABLED,
                     "cl-framesize-options": list(),
                     "cl-framesize-value": list(),
                     "cl-framesize-all-value": list(),
-                    "cl-framesize-all-options": self.CL_ALL_DISABLED,
+                    "cl-framesize-all-options": C.CL_ALL_DISABLED,
                     "cl-testtype-options": list(),
                     "cl-testtype-value": list(),
                     "cl-testtype-all-value": list(),
-                    "cl-testtype-all-options": self.CL_ALL_DISABLED
+                    "cl-testtype-all-options": C.CL_ALL_DISABLED
                 })
             elif trigger_id == "dd-ctrl-dut":
                 try:
@@ -1028,15 +1000,15 @@ class Layout:
                     "cl-core-options": list(),
                     "cl-core-value": list(),
                     "cl-core-all-value": list(),
-                    "cl-core-all-options": self.CL_ALL_DISABLED,
+                    "cl-core-all-options": C.CL_ALL_DISABLED,
                     "cl-framesize-options": list(),
                     "cl-framesize-value": list(),
                     "cl-framesize-all-value": list(),
-                    "cl-framesize-all-options": self.CL_ALL_DISABLED,
+                    "cl-framesize-all-options": C.CL_ALL_DISABLED,
                     "cl-testtype-options": list(),
                     "cl-testtype-value": list(),
                     "cl-testtype-all-value": list(),
-                    "cl-testtype-all-options": self.CL_ALL_DISABLED
+                    "cl-testtype-all-options": C.CL_ALL_DISABLED
                 })
             elif trigger_id == "dd-ctrl-dutver":
                 try:
@@ -1065,15 +1037,15 @@ class Layout:
                     "cl-core-options": list(),
                     "cl-core-value": list(),
                     "cl-core-all-value": list(),
-                    "cl-core-all-options": self.CL_ALL_DISABLED,
+                    "cl-core-all-options": C.CL_ALL_DISABLED,
                     "cl-framesize-options": list(),
                     "cl-framesize-value": list(),
                     "cl-framesize-all-value": list(),
-                    "cl-framesize-all-options": self.CL_ALL_DISABLED,
+                    "cl-framesize-all-options": C.CL_ALL_DISABLED,
                     "cl-testtype-options": list(),
                     "cl-testtype-value": list(),
                     "cl-testtype-all-value": list(),
-                    "cl-testtype-all-options": self.CL_ALL_DISABLED
+                    "cl-testtype-all-options": C.CL_ALL_DISABLED
                 })
             elif trigger_id == "dd-ctrl-phy":
                 try:
@@ -1101,15 +1073,15 @@ class Layout:
                     "cl-core-options": list(),
                     "cl-core-value": list(),
                     "cl-core-all-value": list(),
-                    "cl-core-all-options": self.CL_ALL_DISABLED,
+                    "cl-core-all-options": C.CL_ALL_DISABLED,
                     "cl-framesize-options": list(),
                     "cl-framesize-value": list(),
                     "cl-framesize-all-value": list(),
-                    "cl-framesize-all-options": self.CL_ALL_DISABLED,
+                    "cl-framesize-all-options": C.CL_ALL_DISABLED,
                     "cl-testtype-options": list(),
                     "cl-testtype-value": list(),
                     "cl-testtype-all-value": list(),
-                    "cl-testtype-all-options": self.CL_ALL_DISABLED
+                    "cl-testtype-all-options": C.CL_ALL_DISABLED
                 })
             elif trigger_id == "dd-ctrl-area":
                 try:
@@ -1134,15 +1106,15 @@ class Layout:
                     "cl-core-options": list(),
                     "cl-core-value": list(),
                     "cl-core-all-value": list(),
-                    "cl-core-all-options": self.CL_ALL_DISABLED,
+                    "cl-core-all-options": C.CL_ALL_DISABLED,
                     "cl-framesize-options": list(),
                     "cl-framesize-value": list(),
                     "cl-framesize-all-value": list(),
-                    "cl-framesize-all-options": self.CL_ALL_DISABLED,
+                    "cl-framesize-all-options": C.CL_ALL_DISABLED,
                     "cl-testtype-options": list(),
                     "cl-testtype-value": list(),
                     "cl-testtype-all-value": list(),
-                    "cl-testtype-all-options": self.CL_ALL_DISABLED
+                    "cl-testtype-all-options": C.CL_ALL_DISABLED
                 })
             elif trigger_id == "dd-ctrl-test":
                 rls = ctrl_panel.get("dd-rls-value")
@@ -1158,17 +1130,17 @@ class Layout:
                             for v in sorted(test["core"])],
                         "cl-core-value": list(),
                         "cl-core-all-value": list(),
-                        "cl-core-all-options": self.CL_ALL_ENABLED,
+                        "cl-core-all-options": C.CL_ALL_ENABLED,
                         "cl-framesize-options": [{"label": v, "value": v}
                             for v in sorted(test["frame-size"])],
                         "cl-framesize-value": list(),
                         "cl-framesize-all-value": list(),
-                        "cl-framesize-all-options": self.CL_ALL_ENABLED,
+                        "cl-framesize-all-options": C.CL_ALL_ENABLED,
                         "cl-testtype-options": [{"label": v, "value": v}
                             for v in sorted(test["test-type"])],
                         "cl-testtype-value": list(),
                         "cl-testtype-all-value": list(),
-                        "cl-testtype-all-options": self.CL_ALL_ENABLED,
+                        "cl-testtype-all-options": C.CL_ALL_ENABLED,
                     })
             elif trigger_id == "cl-ctrl-core":
                 val_sel, val_all = self._sync_checklists(
@@ -1275,27 +1247,21 @@ class Layout:
                                         "testtype": ttype.lower()
                                     })
                     store_sel = sorted(store_sel, key=lambda d: d["id"])
-                    row_card_sel_tests = self.STYLE_ENABLED
-                    row_btns_sel_tests = self.STYLE_ENABLED
-                    if self.CLEAR_ALL_INPUTS:
+                    row_card_sel_tests = C.STYLE_ENABLED
+                    row_btns_sel_tests = C.STYLE_ENABLED
+                    if C.CLEAR_ALL_INPUTS:
                         ctrl_panel.set(ctrl_panel.defaults)
                     ctrl_panel.set({
                         "cl-selected-options": self._list_tests(store_sel)
                     })
-                    row_fig_tput, row_fig_lat, row_table, row_btn_dwnld = \
-                        _generate_plotting_area(
-                            graph_iterative(self.data, store_sel, self.layout),
-                            table_comparison(self.data, store_sel),
-                            _gen_new_url(parsed_url, store_sel)
-                        )
             elif trigger_id == "btn-sel-remove-all":
                 _ = btn_remove_all
-                row_fig_tput = self.PLACEHOLDER
-                row_fig_lat = self.PLACEHOLDER
-                row_table = self.PLACEHOLDER
-                row_btn_dwnld = self.PLACEHOLDER
-                row_card_sel_tests = self.STYLE_DISABLED
-                row_btns_sel_tests = self.STYLE_DISABLED
+                row_fig_tput = C.PLACEHOLDER
+                row_fig_lat = C.PLACEHOLDER
+                row_table = C.PLACEHOLDER
+                row_btn_dwnld = C.PLACEHOLDER
+                row_card_sel_tests = C.STYLE_DISABLED
+                row_btns_sel_tests = C.STYLE_DISABLED
                 store_sel = list()
                 ctrl_panel.set({"cl-selected-options": list()})
             elif trigger_id == "btn-sel-remove":
@@ -1306,53 +1272,42 @@ class Layout:
                         if item["id"] not in list_sel:
                             new_store_sel.append(item)
                     store_sel = new_store_sel
+            elif trigger_id == "url":
+                # TODO: Add verification
+                url_params = parsed_url["params"]
+                if url_params:
+                    store_sel = literal_eval(
+                        url_params.get("store_sel", list())[0])
+                    if store_sel:
+                        row_card_sel_tests = C.STYLE_ENABLED
+                        row_btns_sel_tests = C.STYLE_ENABLED
+
+            if trigger_id in ("btn-ctrl-add", "url", "btn-sel-remove",
+                    "cl-ctrl-normalize"):
                 if store_sel:
                     row_fig_tput, row_fig_lat, row_table, row_btn_dwnld = \
                         _generate_plotting_area(
-                            graph_iterative(self.data, store_sel, self.layout),
-                            table_comparison(self.data, store_sel),
+                            graph_iterative(
+                                self.data, store_sel, self.layout,
+                                bool(cl_normalize)
+                            ),
+                            table_comparison(
+                                self.data, store_sel, bool(cl_normalize)
+                            ),
                             _gen_new_url(parsed_url, store_sel)
                         )
                     ctrl_panel.set({
                         "cl-selected-options": self._list_tests(store_sel)
                     })
                 else:
-                    row_fig_tput = self.PLACEHOLDER
-                    row_fig_lat = self.PLACEHOLDER
-                    row_table = self.PLACEHOLDER
-                    row_btn_dwnld = self.PLACEHOLDER
-                    row_card_sel_tests = self.STYLE_DISABLED
-                    row_btns_sel_tests = self.STYLE_DISABLED
+                    row_fig_tput = C.PLACEHOLDER
+                    row_fig_lat = C.PLACEHOLDER
+                    row_table = C.PLACEHOLDER
+                    row_btn_dwnld = C.PLACEHOLDER
+                    row_card_sel_tests = C.STYLE_DISABLED
+                    row_btns_sel_tests = C.STYLE_DISABLED
                     store_sel = list()
                     ctrl_panel.set({"cl-selected-options": list()})
-            elif trigger_id == "url":
-                # TODO: Add verification
-                url_params = parsed_url["params"]
-                if url_params:
-                    store_sel = literal_eval(
-                        url_params.get("store_sel", list())[0])
-                    if store_sel:
-                        row_fig_tput, row_fig_lat, row_table, row_btn_dwnld = \
-                            _generate_plotting_area(
-                                graph_iterative(self.data, store_sel,
-                                    self.layout),
-                                table_comparison(self.data, store_sel),
-                                _gen_new_url(parsed_url, store_sel)
-                            )
-                        row_card_sel_tests = self.STYLE_ENABLED
-                        row_btns_sel_tests = self.STYLE_ENABLED
-                        ctrl_panel.set({
-                            "cl-selected-options": self._list_tests(store_sel)
-                        })
-                    else:
-                        row_fig_tput = self.PLACEHOLDER
-                        row_fig_lat = self.PLACEHOLDER
-                        row_table = self.PLACEHOLDER
-                        row_btn_dwnld = self.PLACEHOLDER
-                        row_card_sel_tests = self.STYLE_DISABLED
-                        row_btns_sel_tests = self.STYLE_DISABLED
-                        store_sel = list()
-                        ctrl_panel.set({"cl-selected-options": list()})
 
             if ctrl_panel.get("cl-core-value") and \
                     ctrl_panel.get("cl-framesize-value") and \
@@ -1360,7 +1315,10 @@ class Layout:
                 disabled = False
             else:
                 disabled = True
-            ctrl_panel.set({"btn-add-disabled": disabled})
+            ctrl_panel.set({
+                "btn-add-disabled": disabled,
+                "cl-normalize-value": cl_normalize
+            })
 
             ret_val = [
                 ctrl_panel.panel, store_sel,