1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
|
<?php declare(strict_types = 0);
/*
** Zabbix
** Copyright (C) 2001-2023 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/**
* Class for converting template screens to template dashboards.
*/
class CTemplateScreenConverter extends CConverter {
/**
* Reference display width for widget position and size calculations.
*/
private const DISPLAY_WIDTH = 1920;
/**
* Widget row height on dashboard.
*/
private const WIDGET_ROW_HEIGHT = 70;
/**
* Average height of screen legend.
*/
private const SCREEN_LEGEND_HEIGHT = 215;
/**
* Legacy screen resource types.
*/
private const SCREEN_RESOURCE_TYPE_GRAPH = 0;
private const SCREEN_RESOURCE_TYPE_SIMPLE_GRAPH = 1;
private const SCREEN_RESOURCE_TYPE_PLAIN_TEXT = 3;
private const SCREEN_RESOURCE_TYPE_CLOCK = 7;
private const SCREEN_RESOURCE_TYPE_URL = 11;
private const SCREEN_RESOURCE_TYPE_LLD_SIMPLE_GRAPH = 19;
private const SCREEN_RESOURCE_TYPE_LLD_GRAPH = 20;
/**
* Convert template screen definition to template dashboard definition.
*
* @param array $screen
*
* @return array
*/
public function convert($screen): array {
$widgets = [];
$screen_items = array_key_exists('screen_items', $screen)
? self::getValidScreenItems($screen['screen_items'])
: [];
if ($screen_items) {
$screen_items = self::normalizePositions($screen_items);
[$dimensions_x, $dimensions_y] = self::getDashboardDimensions($screen_items);
$grid_x = [0];
foreach ($dimensions_x as $index => $size) {
$grid_x[$index + 1] = ($index == 0) ? $size : $grid_x[$index] + $size;
}
$grid_y = [0];
foreach ($dimensions_y as $index => $size) {
$grid_y[$index + 1] = ($index == 0) ? $size : $grid_y[$index] + $size;
}
foreach ($screen_items as $item) {
$widget_pos = [
'x' => $grid_x[$item['x']],
'y' => $grid_y[$item['y']],
'width' => $grid_x[$item['x'] + $item['colspan']] - $grid_x[$item['x']],
'height' => $grid_y[$item['y'] + $item['rowspan']] - $grid_y[$item['y']]
];
// Skip screen items not fitting on dashboard.
if (($widget_pos['x'] + $widget_pos['width'] > DASHBOARD_MAX_COLUMNS)
|| ($widget_pos['y'] + $widget_pos['height'] > DASHBOARD_MAX_ROWS)) {
continue;
}
$widget = self::makeWidget($item);
$widget += [
'x' => (string) $widget_pos['x'],
'y' => (string) $widget_pos['y'],
'width' => (string) $widget_pos['width'],
'height' => (string) $widget_pos['height']
];
$widgets[] = $widget;
}
}
$dashboard = [
'name' => $screen['name']
];
if ($widgets) {
$dashboard['widgets'] = $widgets;
}
return $dashboard;
}
/**
* Filter screen items by valid resourcetype.
*
* @static
*
* @param array $screen_items
*
* @return array valid screen items
*/
private static function getValidScreenItems(array $screen_items): array {
return array_filter($screen_items, function(array $screen_item): bool {
return in_array($screen_item['resourcetype'], [self::SCREEN_RESOURCE_TYPE_CLOCK,
self::SCREEN_RESOURCE_TYPE_GRAPH, self::SCREEN_RESOURCE_TYPE_SIMPLE_GRAPH,
self::SCREEN_RESOURCE_TYPE_LLD_GRAPH, self::SCREEN_RESOURCE_TYPE_LLD_SIMPLE_GRAPH,
self::SCREEN_RESOURCE_TYPE_PLAIN_TEXT, self::SCREEN_RESOURCE_TYPE_URL
]);
});
}
/**
* Remove empty rows and columns and simplify rowspan and colspan usage in the screen items.
*
* @static
*
* @param array $screen_items
*
* @return array Optimized screen items.
*/
private static function normalizePositions(array $screen_items): array {
$used_x = [];
$used_y = [];
$keep_x = [];
$keep_y = [];
foreach ($screen_items as $screen_item) {
$used_x += array_fill((int) $screen_item['x'], (int) $screen_item['colspan'], true);
$used_y += array_fill((int) $screen_item['y'], (int) $screen_item['rowspan'], true);
$keep_x[$screen_item['x']] = true;
$keep_x[$screen_item['x'] + $screen_item['colspan']] = true;
$keep_y[$screen_item['y']] = true;
$keep_y[$screen_item['y'] + $screen_item['rowspan']] = true;
}
for ($x = max(array_keys($keep_x)); $x >= 0; $x--) {
if (array_key_exists($x, $keep_x) && array_key_exists($x, $used_x)) {
continue;
}
foreach ($screen_items as &$screen_item) {
if ($x < $screen_item['x']) {
$screen_item['x']--;
}
if ($x > $screen_item['x'] && $x < $screen_item['x'] + $screen_item['colspan']) {
$screen_item['colspan']--;
}
}
unset($screen_item);
}
for ($y = max(array_keys($keep_y)); $y >= 0; $y--) {
if (array_key_exists($y, $keep_y) && array_key_exists($y, $used_y)) {
continue;
}
foreach ($screen_items as &$screen_item) {
if ($y < $screen_item['y']) {
$screen_item['y']--;
}
if ($y > $screen_item['y'] && $y < $screen_item['y'] + $screen_item['rowspan']) {
$screen_item['rowspan']--;
}
}
unset($screen_item);
}
return $screen_items;
}
/**
* Get final dashboard dimensions for screen table rows and columns.
*
* @static
*
* @param array $screen_items
*
* @return array Dashboard dimensions
*/
private static function getDashboardDimensions(array $screen_items): array {
$items_x_preferred = [];
$items_y_preferred = [];
$items_x_min = [];
$items_y_min = [];
foreach ($screen_items as $key => $screen_item) {
$preferred_size = self::getPreferredWidgetSize($screen_item);
$min_size = self::getMinWidgetSize((int) $screen_item['resourcetype']);
$items_x_preferred[$key] = [
'position' => (int) $screen_item['x'],
'span' => (int) $screen_item['colspan'],
'size' => max($preferred_size['width'], $min_size['width'])
];
$items_y_preferred[$key] = [
'position' => (int) $screen_item['y'],
'span' => (int) $screen_item['rowspan'],
'size' => max($preferred_size['height'], $min_size['height'])
];
$items_x_min[$key] = [
'position' => (int) $screen_item['x'],
'span' => (int) $screen_item['colspan'],
'size' => $min_size['width']
];
$items_y_min[$key] = [
'position' => (int) $screen_item['y'],
'span' => (int) $screen_item['rowspan'],
'size' => $min_size['height']
];
}
$dimensions_x_preferred = self::getAxisDimensions($items_x_preferred);
$dimensions_x_min = self::getAxisDimensions($items_x_min);
$dimensions_x = self::adjustAxisDimensions($dimensions_x_preferred, $dimensions_x_min, DASHBOARD_MAX_COLUMNS);
$dimensions_y_preferred = self::getAxisDimensions($items_y_preferred);
$dimensions_y_min = self::getAxisDimensions($items_y_min);
if (array_sum($dimensions_y_preferred) > DASHBOARD_MAX_ROWS) {
$dimensions_y = self::adjustAxisDimensions($dimensions_y_preferred, $dimensions_y_min, DASHBOARD_MAX_ROWS);
}
else {
$dimensions_y = $dimensions_y_preferred;
}
return [$dimensions_x, $dimensions_y];
}
/**
* Get axis dimensions based on prepared items.
*
* @static
*
* @param array $items Prepared items.
* @param int $items[]['position'] Item starting position.
* @param int $items[]['span'] Item cell span.
* @param int $items[]['size'] Item inner size.
*
* @return array
*/
private static function getAxisDimensions(array $items): array {
$blocks = [];
foreach ($items as $key => $item) {
$blocks[$key] = array_fill($item['position'], $item['span'], true);
}
$dimensions = [];
while ($blocks) {
uasort($blocks,
function(array $block_a, array $block_b) use ($dimensions): int {
$block_a_unsized_count = count(array_diff_key($block_a, $dimensions));
$block_b_unsized_count = count(array_diff_key($block_b, $dimensions));
return ($block_a_unsized_count <=> $block_b_unsized_count);
}
);
$key = array_keys($blocks)[0];
$block = $blocks[$key];
$block_dimensions = array_intersect_key($dimensions, $block);
$block_dimensions_sum = array_sum($block_dimensions);
$block_unsized = array_diff_key($block, $dimensions);
$block_unsized_count = count($block_unsized);
$size_overflow = $items[$key]['size'] - $block_dimensions_sum;
if ($block_unsized_count > 0) {
foreach (array_keys($block_unsized) as $index) {
$dimensions[$index] = max(1, round($size_overflow / $block_unsized_count));
$size_overflow -= $dimensions[$index];
$block_unsized_count--;
}
}
elseif ($size_overflow > 0) {
foreach (array_keys($block) as $index) {
$factor = ($size_overflow + $block_dimensions_sum) / $block_dimensions_sum;
$new_dimension = round($dimensions[$index] * $factor);
$block_dimensions_sum -= $dimensions[$index];
$size_overflow -= $new_dimension - $dimensions[$index];
$dimensions[$index] = $new_dimension;
}
}
unset($blocks[$key]);
}
ksort($dimensions, SORT_NUMERIC);
return $dimensions;
}
/**
* Adjust axis dimensions to the target summary size whether possible.
*
* @static
*
* @param array $dimensions Preferred axis dimensions.
* @param array $dimensions_min Minimal axis dimensions.
* @param int $target Target summary size.
*
* @return array
*/
private static function adjustAxisDimensions(array $dimensions, array $dimensions_min, int $target): array {
$dimensions_sum = array_sum($dimensions);
while ($dimensions_sum != $target) {
$potential_index = null;
$potential_value = null;
foreach ($dimensions as $index => $size) {
$value = $size / $dimensions_min[$index];
if ($potential_index === null
|| ($dimensions_sum > $target && $value > $potential_value)
|| ($dimensions_sum < $target && $value < $potential_value)) {
$potential_index = $index;
$potential_value = $value;
}
}
// Further shrinking not possible?
if ($dimensions_sum > $target && $dimensions[$potential_index] == $dimensions_min[$potential_index]) {
break;
}
if ($dimensions_sum > $target) {
$dimensions[$potential_index]--;
$dimensions_sum--;
}
else {
$dimensions[$potential_index]++;
$dimensions_sum++;
}
}
return $dimensions;
}
/**
* Get preferred widget size on dashboard for given screen item type and size.
*
* @static
*
* @param array $screen_item
*
* @return array
*/
private static function getPreferredWidgetSize(array $screen_item): array {
$width = $screen_item['width'];
$height = $screen_item['height'];
// Convert graph inner height to outer height.
if (in_array($screen_item['resourcetype'], [self::SCREEN_RESOURCE_TYPE_GRAPH,
self::SCREEN_RESOURCE_TYPE_SIMPLE_GRAPH, self::SCREEN_RESOURCE_TYPE_LLD_GRAPH,
self::SCREEN_RESOURCE_TYPE_LLD_SIMPLE_GRAPH])) {
// Transform graph screen item with height of at least 100px to occupy minimum 5 grid rows.
$height += self::SCREEN_LEGEND_HEIGHT;
}
if ($screen_item['resourcetype'] == self::SCREEN_RESOURCE_TYPE_PLAIN_TEXT) {
// Constants are synchronised with the same algorithm in DB upgrade patch converter.
$show_lines = min($screen_item['elements'], 25);
$rows = 2 + $show_lines / 2.5;
}
else {
$rows = $height / self::WIDGET_ROW_HEIGHT;
}
return self::limitWidgetSize([
'width' => round($width / self::DISPLAY_WIDTH * DASHBOARD_MAX_COLUMNS),
'height' => round($rows)
]);
}
/**
* Get minimal widget size on dashboard for given screen item type.
*
* @static
*
* @param int $resourcetype
*
* @return array
*/
private static function getMinWidgetSize(int $resourcetype): array {
switch ($resourcetype) {
case self::SCREEN_RESOURCE_TYPE_CLOCK:
return [
'width' => 1,
'height' => 2
];
case self::SCREEN_RESOURCE_TYPE_GRAPH:
case self::SCREEN_RESOURCE_TYPE_SIMPLE_GRAPH:
case self::SCREEN_RESOURCE_TYPE_LLD_GRAPH:
case self::SCREEN_RESOURCE_TYPE_LLD_SIMPLE_GRAPH:
return [
'width' => 4,
'height' => 4
];
case self::SCREEN_RESOURCE_TYPE_PLAIN_TEXT:
case self::SCREEN_RESOURCE_TYPE_URL:
return [
'width' => 4,
'height' => 2
];
}
}
/**
* Limit widget size not to exceed the size of dashboard.
*
* @static
*
* @param array $size
* @param int $size['width']
* @param int $size['height']
*
* @return array
*/
private static function limitWidgetSize(array $size): array {
return [
'width' => min(DASHBOARD_MAX_COLUMNS, max(1, $size['width'])),
'height' => min(DASHBOARD_WIDGET_MAX_ROWS, max(DASHBOARD_WIDGET_MIN_ROWS, $size['height']))
];
}
/**
* Make widget definition based on screen item.
*
* @static
*
* @param array $screen_item
*
* @return array Full widget definition except the positional data.
*/
private static function makeWidget(array $screen_item): array {
$widget = [
'name' => '',
'hide_header' => CXmlConstantName::NO
];
switch ($screen_item['resourcetype']) {
case self::SCREEN_RESOURCE_TYPE_CLOCK:
$widget['type'] = CXmlConstantName::DASHBOARD_WIDGET_TYPE_CLOCK;
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'time_type',
'value' => $screen_item['style']
];
if ($screen_item['style'] == TIME_TYPE_HOST) {
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_ITEM,
'name' => 'itemid',
'value' => $screen_item['resource']
];
}
break;
case self::SCREEN_RESOURCE_TYPE_GRAPH:
$widget['type'] = CXmlConstantName::DASHBOARD_WIDGET_TYPE_GRAPH_CLASSIC;
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'source_type',
'value' => (string) ZBX_WIDGET_FIELD_RESOURCE_GRAPH
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_GRAPH,
'name' => 'graphid',
'value' => $screen_item['resource']
];
break;
case self::SCREEN_RESOURCE_TYPE_SIMPLE_GRAPH:
$widget['type'] = CXmlConstantName::DASHBOARD_WIDGET_TYPE_GRAPH_CLASSIC;
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'source_type',
'value' => (string) ZBX_WIDGET_FIELD_RESOURCE_SIMPLE_GRAPH
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_ITEM,
'name' => 'itemid',
'value' => $screen_item['resource']
];
break;
case self::SCREEN_RESOURCE_TYPE_LLD_GRAPH:
$widget['type'] = CXmlConstantName::DASHBOARD_WIDGET_TYPE_GRAPH_PROTOTYPE;
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'source_type',
'value' => (string) ZBX_WIDGET_FIELD_RESOURCE_GRAPH_PROTOTYPE
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_GRAPH_PROTOTYPE,
'name' => 'graphid',
'value' => $screen_item['resource']
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'columns',
'value' => '1'
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'rows',
'value' => '1'
];
break;
case self::SCREEN_RESOURCE_TYPE_LLD_SIMPLE_GRAPH:
$widget['type'] = CXmlConstantName::DASHBOARD_WIDGET_TYPE_GRAPH_PROTOTYPE;
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'source_type',
'value' => (string) ZBX_WIDGET_FIELD_RESOURCE_SIMPLE_GRAPH_PROTOTYPE
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_ITEM_PROTOTYPE,
'name' => 'itemid',
'value' => $screen_item['resource']
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'columns',
'value' => '1'
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'rows',
'value' => '1'
];
break;
case self::SCREEN_RESOURCE_TYPE_PLAIN_TEXT:
$widget['type'] = CXmlConstantName::DASHBOARD_WIDGET_TYPE_PLAIN_TEXT;
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_ITEM,
'name' => 'itemids',
'value' => $screen_item['resource']
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'show_as_html',
'value' => $screen_item['style']
];
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_INTEGER,
'name' => 'show_lines',
'value' => $screen_item['elements']
];
break;
case self::SCREEN_RESOURCE_TYPE_URL:
$widget['type'] = CXmlConstantName::DASHBOARD_WIDGET_TYPE_URL;
$widget['fields'][] = [
'type' => CXmlConstantName::DASHBOARD_WIDGET_FIELD_TYPE_STRING,
'name' => 'url',
'value' => $screen_item['url']
];
break;
}
return $widget;
}
}
|