This file is indexed.

/usr/lib/xpbsmon/system.tk is in torque-client-x11 2.4.16+dfsg-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
#         OpenPBS (Portable Batch System) v2.3 Software License
# 
# Copyright (c) 1999-2000 Veridian Information Solutions, Inc.
# All rights reserved.
# 
# ---------------------------------------------------------------------------
# For a license to use or redistribute the OpenPBS software under conditions
# other than those described below, or to purchase support for this software,
# please contact Veridian Systems, PBS Products Department ("Licensor") at:
# 
#    www.OpenPBS.org  +1 650 967-4675                  sales@OpenPBS.org
#                        877 902-4PBS (US toll-free)
# ---------------------------------------------------------------------------
# 
# This license covers use of the OpenPBS v2.3 software (the "Software") at
# your site or location, and, for certain users, redistribution of the
# Software to other sites and locations.  Use and redistribution of
# OpenPBS v2.3 in source and binary forms, with or without modification,
# are permitted provided that all of the following conditions are met.
# After December 31, 2001, only conditions 3-6 must be met:
# 
# 1. Commercial and/or non-commercial use of the Software is permitted
#    provided a current software registration is on file at www.OpenPBS.org.
#    If use of this software contributes to a publication, product, or
#    service, proper attribution must be given; see www.OpenPBS.org/credit.html
# 
# 2. Redistribution in any form is only permitted for non-commercial,
#    non-profit purposes.  There can be no charge for the Software or any
#    software incorporating the Software.  Further, there can be no
#    expectation of revenue generated as a consequence of redistributing
#    the Software.
# 
# 3. Any Redistribution of source code must retain the above copyright notice
#    and the acknowledgment contained in paragraph 6, this list of conditions
#    and the disclaimer contained in paragraph 7.
# 
# 4. Any Redistribution in binary form must reproduce the above copyright
#    notice and the acknowledgment contained in paragraph 6, this list of
#    conditions and the disclaimer contained in paragraph 7 in the
#    documentation and/or other materials provided with the distribution.
# 
# 5. Redistributions in any form must be accompanied by information on how to
#    obtain complete source code for the OpenPBS software and any
#    modifications and/or additions to the OpenPBS software.  The source code
#    must either be included in the distribution or be available for no more
#    than the cost of distribution plus a nominal fee, and all modifications
#    and additions to the Software must be freely redistributable by any party
#    (including Licensor) without restriction.
# 
# 6. All advertising materials mentioning features or use of the Software must
#    display the following acknowledgment:
# 
#     "This product includes software developed by NASA Ames Research Center,
#     Lawrence Livermore National Laboratory, and Veridian Information
#     Solutions, Inc.
#     Visit www.OpenPBS.org for OpenPBS software support,
#     products, and information."
# 
# 7. DISCLAIMER OF WARRANTY
# 
# THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ANY EXPRESS
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT
# ARE EXPRESSLY DISCLAIMED.
# 
# IN NO EVENT SHALL VERIDIAN CORPORATION, ITS AFFILIATED COMPANIES, OR THE
# U.S. GOVERNMENT OR ANY OF ITS AGENCIES BE LIABLE FOR ANY DIRECT OR INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# 
# This license will be governed by the laws of the Commonwealth of Virginia,
# without reference to its choice of law rules.

proc systemAddWidth {systemf incr} {
        global canvas

        if {[string compare $systemf ""] == 0 || ![regexp {[0-9]+} $incr]} {
                return
        }

        set newCanvWidth [expr [systemCanvasWidthGet $systemf] + $incr]
        set newDispWidth [expr [systemDisplayWidthGet $systemf] + $incr]
        if {$newDispWidth < $canvas(systemMaxWidth)} {
                systemCanvasWidthPut $systemf $newCanvWidth
                systemDisplayWidthPut $systemf $newDispWidth
        }
        systemScrollRegionWidthPut $systemf \
                [expr [systemScrollRegionWidthGet $systemf] + $incr]
}

proc systemRefreshPut {systemframe flag} {
        set array [string trimleft $systemframe .]
	global $array

	set ${array}(refresh) $flag
}

proc systemRefreshGet {systemframe} {
        set array [string trimleft $systemframe .]
	global $array

	if {![info exists ${array}(refresh)]} {
		return 0
	}
	return [set ${array}(refresh)]
}

proc systemNamePut {systemframe name} {
        set array [string trimleft $systemframe .]
	global $array

	set ${array}(name) $name
}

proc systemNameGet {systemframe} {
        set array [string trimleft $systemframe .]
	global $array

	if {![info exists ${array}(name)]} {
		return ""
	}
	return [set ${array}(name)]
}

proc systemNodeFramePut {systemframe nodename frame frametype}  {
        set array [string trimleft $systemframe .]
        global $array
	if {[string compare $frametype ICON] == 0} {
		set frametype FULL
	}

        set ${array}(nodeframe,$nodename,$frametype) $frame
}

proc systemNodeFrameGet {systemframe nodename frametype} {
        set array [string trimleft $systemframe .]
        global $array

        if {![info exists ${array}(nodeframe,$nodename,$frametype)]} {
                return ""
        }
        return [set ${array}(nodeframe,$nodename,$frametype)]
}

proc systemNodeFrameUnset {systemframe nodename frametype} {
        set array [string trimleft $systemframe .]
        global $array

        if {[info exists ${array}(nodeframe,$nodename,$frametype)]} {
                unset ${array}(nodeframe,$nodename,$frametype)
        }
}

proc systemNodeStatusPut {systemframe nodename stat} {

	if { [string compare $systemframe ""] != 0 } {
        	set array [string trimleft $systemframe .]
        	global $array

        	set ${array}(nodestat,$nodename) $stat
	}
}

proc systemNodeStatusGet {systemframe nodename} {
	if { [string compare $systemframe ""] == 0 } {
		return ""
	}

        set array [string trimleft $systemframe .]
        global $array

        if {![info exists ${array}(nodestat,$nodename)]} {
                return ""
        }
        return [set ${array}(nodestat,$nodename)]
}

proc systemNodeStatusUnset {systemframe nodename} {
	if { [string compare $systemframe ""] != 0 } {

        	set array [string trimleft $systemframe .]
        	global $array

        	if {[info exists ${array}(nodestat,$nodename)]} {
                	unset ${array}(nodestat,$nodename)
        	}
	}
}

proc systemNodeNamesGet {systemframe} {
	if { [string compare $systemframe ""] == 0 } {
		return ""
	}

        set array [string trimleft $systemframe .]
        global $array

        set nodeslist ""
        foreach n [array names $array] {
                set nl [split $n ,]
                set f1 [lindex $nl 0]
                set f2 [lrange $nl 1 end]
                if {[string compare $f1 "nodestat"] == 0} {
                        lappend  nodeslist [join $f2 ,]
                }
        }
        return $nodeslist
}

proc systemNodeInfoPut {systemframe nodename info} {

	if { [string compare $systemframe ""] != 0 } {
        	set array [string trimleft $systemframe .]
        	global $array

        	set ${array}(nodeinfo,$nodename) $info
	}
}

proc systemNodeInfoAppend {systemframe nodename info} {

	if { [string compare $systemframe ""] != 0 } {
        	set array [string trimleft $systemframe .]
        	global $array

        	lappend ${array}(nodeinfo,$nodename) $info
	}
}

proc systemNodeInfoGet {systemframe nodename} {
	if { [string compare $systemframe ""] == 0 } {
		return ""
	}

        set array [string trimleft $systemframe .]
        global $array

        if {![info exists ${array}(nodeinfo,$nodename)]} {
                return ""
        }
        return [set ${array}(nodeinfo,$nodename)]
}

proc systemNodeInfoUnset {systemframe nodename} {
	if { [string compare $systemframe ""] != 0 } {

        	set array [string trimleft $systemframe .]
        	global $array

        	if {[info exists ${array}(nodeinfo,$nodename)]} {
                	unset ${array}(nodeinfo,$nodename)
        	}
	}
}

proc systemNodeInfo2Put {systemframe nodename info} {

	if { [string compare $systemframe ""] != 0 } {
        	set array [string trimleft $systemframe .]
        	global $array

        	set ${array}(nodeinfo2,$nodename) $info
	}
}

proc systemNodeInfo2Append {systemframe nodename info} {

	if { [string compare $systemframe ""] != 0 } {
        	set array [string trimleft $systemframe .]
        	global $array

        	lappend ${array}(nodeinfo2,$nodename) $info
	}
}

proc systemNodeInfo2Get {systemframe nodename} {
	if { [string compare $systemframe ""] == 0 } {
		return ""
	}

        set array [string trimleft $systemframe .]
        global $array

        if {![info exists ${array}(nodeinfo2,$nodename)]} {
                return ""
        }
        return [set ${array}(nodeinfo2,$nodename)]
}

proc systemNodeInfo2Unset {systemframe nodename} {
	if { [string compare $systemframe ""] != 0 } {

        	set array [string trimleft $systemframe .]
        	global $array

        	if {[info exists ${array}(nodeinfo2,$nodename)]} {
                	unset ${array}(nodeinfo2,$nodename)
        	}
	}
}

proc systemNodeTypePut {systemframe hostname type} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(nodetype,$hostname) $type
}

proc systemNodeTypeGet {systemframe hostname} {
        set array [string trimleft $systemframe .]
        global $array

        if {![info exists ${array}(nodetype,$hostname)]} {
                return ""
        }
        return [set ${array}(nodetype,$hostname)]
}

proc systemClusterFramePut {systemframe name frame}  {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(clusterframe,$name) $frame
}

proc systemClusterFrameGet {systemframe name} {
        set array [string trimleft $systemframe .]
        global $array

        if {![info exists ${array}(clusterframe,$name)]} {
                return ""
        }
        return [set ${array}(clusterframe,$name)]
}

proc systemClusterFrameUnset {systemframe name} {
        set array [string trimleft $systemframe .]
        global $array

        if {[info exists ${array}(clusterframe,$name)]} {
                unset ${array}(clusterframe,$name)
        }
}

proc systemClusterNamesGet {systemframe} {
	if { [string compare $systemframe ""] == 0 } {
		return ""
	}

        set array [string trimleft $systemframe .]
        global $array

        set clustlist ""
        foreach n [array names $array] {
                set nl [split $n ,]
                set f1 [lindex $nl 0]
                set f2 [lrange $nl 1 end]
                if {[string compare $f1 "clusterframe"] == 0} {
                        lappend  clustlist [join $f2 ,]
                }
        }
        return $clustlist
}

proc systemCanvasPut {systemframe frame} {
        set array [string trimleft $systemframe .]
	global $array

	set ${array}(canvas) $frame
}

proc systemCanvasGet {systemframe} {
        set array [string trimleft $systemframe .]
	global $array

	if {![info exists ${array}(canvas)]} {
		return ""
	}
	return [set ${array}(canvas)]
}

proc systemDisplayWidthPut {systemframe width} {
        set array [string trimleft $systemframe .]
	global $array

	set ${array}(displayWidth) $width
}

proc systemDisplayWidthGet {systemframe} {
        set array [string trimleft $systemframe .]
	global $array

	if {![info exists ${array}(displayWidth)]} {
		return ""
	}
	return [set ${array}(displayWidth)]
}

proc systemDisplayHeightPut {systemframe height} {
        set array [string trimleft $systemframe .]
	global $array

	set ${array}(displayHeight) $height
}

proc systemDisplayHeightGet {systemframe} {
        set array [string trimleft $systemframe .]
	global $array

	if {![info exists ${array}(displayHeight)]} {
		return ""
	}
	return [set ${array}(displayHeight)]
}

proc systemScrollRegionWidthPut {systemframe width} {
        set array [string trimleft $systemframe .]
	global $array

	set ${array}(scrollRegionWidth) $width
}

proc systemScrollRegionWidthGet {systemframe} {
        set array [string trimleft $systemframe .]
	global $array

	if {![info exists ${array}(scrollRegionWidth)]} {
		return ""
	}
	return [set ${array}(scrollRegionWidth)]
}

proc systemScrollRegionHeightPut {systemframe height} {
        set array [string trimleft $systemframe .]
	global $array

	set ${array}(scrollRegionHeight) $height
}

proc systemScrollRegionHeightGet {systemframe} {
        set array [string trimleft $systemframe .]
	global $array

	if {![info exists ${array}(scrollRegionHeight)]} {
		return ""
	}
	return [set ${array}(scrollRegionHeight)]
}
proc systemXscrollPut {systemframe xscroll} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(Xscroll) $xscroll
}

proc systemXscrollGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(Xscroll)]} {
		return ""
	}
        return [set ${array}(Xscroll)]
}

proc systemYscrollPut {systemframe yscroll} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(Yscroll) $yscroll
}

proc systemYscrollGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(Yscroll)]} {
		return ""
	}
        return [set ${array}(Yscroll)]
}

proc systemCanvasFrameWidthPut {systemframe width} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(canvasFrameWidth) $width
}

proc systemCanvasFrameWidthGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(canvasFrameWidth)]} {
		return ""
	}
        return [set ${array}(canvasFrameWidth)]
}

proc systemCanvasFrameHeightPut {systemframe height} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(canvasFrameHeight) $height
}

proc systemCanvasFrameHeightGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(canvasFrameHeight)]} {
		return ""
	}
        return [set ${array}(canvasFrameHeight)]
}

proc systemScrollWidthPut {systemframe width} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(scrollWidth) $width
}

proc systemScrollWidthGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(scrollWidth)]} {
		return ""
	}
        return [set ${array}(scrollWidth)]
}

proc systemScrollHeightPut {systemframe height} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(scrollHeight) $height
}

proc systemScrollHeightGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(scrollHeight)]} {
		return ""
	}
        return [set ${array}(scrollHeight)]
}

proc systemLabelHeightPut {systemframe height} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(labelHeight) $height
}

proc systemLabelHeightGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(labelHeight)]} {
		return ""
	}
        return [set ${array}(labelHeight)]
}

proc systemLabelWidthPut {systemframe width} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(labelWidth) $width
}

proc systemLabelWidthGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(labelWidth)]} {
		return ""
	}
        return [set ${array}(labelWidth)]
}

proc systemFooterHeightPut {systemframe height} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(footerHeight) $height
}

proc systemFooterHeightGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(footerHeight)]} {
		return ""
	}
        return [set ${array}(footerHeight)]
}
proc systemFooterWidthPut {systemframe width} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(footerWidth) $width
}

proc systemFooterWidthGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(footerWidth)]} {
		return ""
	}
	return [set ${array}(footerWidth)]
}

proc systemCanvasHeightPut {systemframe height} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(canvasHeight) $height
}

proc systemCanvasHeightGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(canvasHeight)]} {
		return ""
	}
	return [set ${array}(canvasHeight)]
}

proc systemCanvasWidthPut {systemframe width} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(canvasWidth) $width
}

proc systemCanvasWidthGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(canvasWidth)]} {
		return ""
	}
	return [set ${array}(canvasWidth)]
}

proc systemServerNamesPut {systemframe serverl} {
        set array [string trimleft $systemframe .]
        global $array

        set ${array}(servers) $serverl
}

proc systemServerNamesGet {systemframe} {
        set array [string trimleft $systemframe .]
        global $array

	if {![info exists ${array}(servers)]} {
		return ""
	}
	return [set ${array}(servers)]
}

proc systemPrint systemframe {

	puts "Refresh Flag: [systemRefreshGet $systemframe]"
	puts "Name: [systemNameGet $systemframe]"
	puts "Canvas: [systemCanvasGet $systemframe]"
	puts "Display Width: [systemDisplayWidthGet $systemframe]"
 	puts "Display Height: [systemDisplayHeightGet $systemframe]"
 	puts "Scroll Region Width: [systemScrollRegionWidthGet $systemframe]"
	puts "Scroll Region Height: [systemScrollRegionHeightGet $systemframe]"
	puts "Canvas Frame Width: [systemCanvasFrameWidthGet $systemframe]"
	puts "Canvas Frame Height: [systemCanvasFrameHeightGet $systemframe]"
	puts "Canvas Width: [systemCanvasWidthGet $systemframe]"
	puts "Canvas Height: [systemCanvasHeightGet $systemframe]"
	puts "Scroll Width: [systemScrollWidthGet $systemframe]"
	puts "Scroll Height: [systemScrollHeightGet $systemframe]"
	puts "Label Width: [systemLabelWidthGet $systemframe]"
	puts "Label Height: [systemLabelHeightGet $systemframe]"
	puts "Footer Width: [systemFooterWidthGet $systemframe]"  
	puts "Footer Height: [systemFooterHeightGet $systemframe]"
	puts "X scroll:	[systemXscrollGet $systemframe]"
	puts "Y scroll: [systemYscrollGet $systemframe]"

	foreach n [systemNodeNamesGet $systemframe] {
		puts "systemNodeFrameGet( $systemframe $n FULL ): \
			[systemNodeFrameGet $systemframe $n FULL ]"
		puts "systemNodeStatusGet( $systemframe $n ): \
			[systemNodeStatusGet $systemframe $n]"
		puts "systemNodeInfoGet( $systemframe $n ): \
			[systemNodeInfoGet $systemframe $n]"
		puts "systemNodeTypeGet( $systemframe $n ): \
			[systemNodeTypeGet $systemframe $n]"
	}

	foreach c [systemClusterNamesGet $systemframe] {
		puts "systemClusterFrameGet( $systemframe $c ): \
			[systemClusterFrameGet $systemframe $c]"
		
	}

	puts "Server Names: [systemServerNamesGet $systemframe]"
}



proc systemNodesCreate {frame systemName} {
	global canvas sysnodes sysview

	systemNamePut $frame $systemName

	frame $frame -class Big

	frame $frame.l -class BigLabel

	frame $frame.m -borderwidth 0

	frame $frame.m.c -class BigCanvas

	frame $frame.m.y -borderwidth 0

	frame $frame.m.x -borderwidth 0
	frame $frame.s -class BigLabel

	label $frame.l.label 	-text $systemName -justify center
	set labelWidth [expr \
                     2*$canvas(bigBd) + 2*$canvas(bigLabelBd) + \
        	     $canvas(bigLabelFontWidth)*[string length $systemName]]
	systemLabelWidthPut $frame $labelWidth

        set labelHeight [expr $canvas(bigBd) + 2*$canvas(bigLabelBd) \
                                + $canvas(bigLabelFontHeight)]
	systemLabelHeightPut $frame $labelHeight

	canvas $frame.m.c.canvas -confine 1 -width $canvas(systemMaxWidth) \
		-height $canvas(systemMaxHeight)

	systemCanvasPut $frame $frame.m.c.canvas
        set canvasFrameWidth [expr $canvas(bigBd) + \
                                   2*$canvas(bigCanvasBd)]
	systemCanvasFrameWidthPut $frame $canvasFrameWidth

        set canvasFrameHeight [expr 2*$canvas(bigCanvasBd)]
	systemCanvasFrameHeightPut $frame $canvasFrameHeight
	systemRefreshPut $frame 0
 

	set x1 0
	set y1 0
	set totwidth 0
	set totheight 0
	set pw 0
	set ph 0
	set maxWidth 0
	set prevCluster ""
	set rowClusters ""

	set i 0
	set j 0

	set serverl [serverNamesSorted $systemName \
			[serverNamesGet $systemName] nodeslist $frame]

	set servers ""
	foreach a $serverl {
		set clusterLabel [lindex $sysnodes($systemName,$a) 0]
		set nlist [lrange $sysnodes($systemName,$a) 1 end]

		if {[string compare $nodeslist($a) ""] == 0} {
			continue
		}
		lappend servers $a

		clusterSystemFramePut $frame.m.c.$i $frame
		systemClusterFramePut $frame $a $frame.m.c.$i
		set  pos [clusterCreate $frame.m.c.$i $a $clusterLabel \
				$nodeslist($a) "" $sysview($systemName)]
		set numNodes [llength $nodeslist($a)]

		set w [expr [lindex $pos 0] + 2*$canvas(medBd)]
		set h [lindex $pos 1]

		if { $i == 0 } {
			set rowClusters $frame.m.c.$i
			incr totwidth $w
		} elseif { [expr $j % $canvas(systemNumBoxesPerRow)] == 0 || \
			   [expr $totwidth + $w] > $canvas(systemMaxWidth) } {
			set rowOffset [expr \
				      ($canvas(systemMaxWidth) - $totwidth) / 2]
			if {$rowOffset > 0} {
				foreach fr $rowClusters {
					clusterOffsetWidthPut $fr $rowOffset
				}
			}
			set rowClusters $frame.m.c.$i
			set x1 0
			incr y1 $ph

			incr totheight $ph

			if {$totwidth > $maxWidth} {
				set maxWidth $totwidth
			}
			set totwidth $w
			set j 0
			set ph 0
		} else {
			lappend rowClusters $frame.m.c.$i
			incr x1 $pw
			incr totwidth $w

                        if {[string compare $prevCluster ""] != 0} {
                                clusterNextPut $prevCluster $frame.m.c.$i
                        }
		}

		pack forget $frame.m.c.$i
		$frame.m.c.canvas create window $x1 $y1 -window $frame.m.c.$i \
		 -anchor nw -width  $w -height $h -tags $frame.m.c.$i
	
		clusterXposPut $frame.m.c.$i $x1
		clusterYposPut $frame.m.c.$i $y1
		# save current width
		set pw $w
		if {$h > $ph} {
			set ph $h
		}
		set prevCluster $frame.m.c.$i
		incr i
		incr j
	}
	systemServerNamesPut $frame $servers

	if {[string compare $rowClusters ""] != 0} {
		set rowOffset [expr ($canvas(systemMaxWidth) - $totwidth) / 2]
		if {$rowOffset > 0} {
			foreach fr $rowClusters {
				clusterOffsetWidthPut $fr $rowOffset
			}
		}
	}
	if {$maxWidth >  $totwidth } {
		set totwidth $maxWidth
	}
	incr totheight $ph
	systemScrollRegionWidthPut $frame $totwidth
	systemScrollRegionHeightPut $frame $totheight
        set scrollRegionWidth $totwidth
        set scrollRegionHeight $totheight
	
	scrollbar $frame.m.x.xscroll -orient horizontal \
		-width $canvas(bigLabelFontHeight) \
		-background $canvas(bigScrollBg) \
		-borderwidth $canvas(bigScrollBd) \
		-relief $canvas(bigScrollRelief) \
		-command [list $frame.m.c.canvas xview]
	systemXscrollPut $frame $frame.m.x.xscroll

        set scrollHeight [expr \
                2*[lindex [$frame.m.x.xscroll configure -borderwidth] end] \
                + [lindex [$frame.m.x.xscroll configure -width] end]]
	$frame.m.x configure -height $scrollHeight

	scrollbar $frame.m.y.yscroll -orient vertical \
				-width $canvas(bigLabelFontHeight) \
				-background $canvas(bigScrollBg) \
				-borderwidth $canvas(bigScrollBd) \
				-relief $canvas(bigScrollRelief) \
				-command [list $frame.m.c.canvas yview]
	systemYscrollPut $frame $frame.m.y.yscroll
        set scrollWidth [expr \
                $canvas(bigBd) + \
                2*[lindex [$frame.m.y.yscroll configure -borderwidth] end]  \
                + [lindex [$frame.m.y.yscroll configure -width] end]]
	$frame.m.y configure -width $scrollWidth

	colorBarCreate $frame.s

        set footerWidth [expr 2*$canvas(bigBd) + 2*$canvas(bigLabelBd)]
	systemFooterWidthPut $frame $footerWidth

        set footerHeight [expr 2*$canvas(bigLabelBd) + \
                               $canvas(bigBd) + \
                               2*$canvas(smallLabelFontHeight)]
	systemFooterHeightPut $frame $footerHeight


        set retwidth [expr $canvasFrameWidth + $totwidth + $scrollWidth]
        if {$labelWidth > $retwidth && $labelWidth > $footerWidth} {
                set retwidth $labelWidth
        } elseif {$footerWidth > $retwidth && $footerWidth > $labelWidth} {
                set retwidth $footerWidth
        }
        systemDisplayWidthPut $frame $retwidth
	set canvWidth $totwidth
        systemCanvasWidthPut $frame $canvWidth
	systemScrollWidthPut $frame $scrollWidth

        if { $retwidth  >  $canvas(systemMaxWidth) } {
                set canvWidth  [expr $canvas(systemMaxWidth) - \
                                     $canvasFrameWidth - $scrollWidth]

                if {$canvWidth > 0} {
        		systemCanvasWidthPut $frame $canvWidth
                        systemDisplayWidthPut $frame $canvas(systemMaxWidth)
                        set retwidth $canvas(systemMaxWidth)
                }               
        }

        set retheight [expr $labelHeight + $canvasFrameHeight + $totheight + \
                                                $scrollHeight + $footerHeight]

        systemDisplayHeightPut $frame $retheight
	set canvHeight $totheight
	systemCanvasHeightPut $frame $canvHeight
	systemScrollHeightPut $frame $scrollHeight

        if { $retheight >  $canvas(systemMaxHeight) } {
                set canvHeight [expr    $canvas(systemMaxHeight) - \
                                        $labelHeight - $canvasFrameHeight - \
                                        $scrollHeight - $footerHeight]
                if {$canvHeight > 0} {
			systemCanvasHeightPut $frame $canvHeight
                        systemDisplayHeightPut $frame $canvas(systemMaxHeight)
                        set retheight $canvas(systemMaxHeight)

                }
        }

	set canvWidth [systemCanvasWidthGet $frame]
	set canvHeight [systemCanvasHeightGet $frame]
        $frame.m.c.canvas  configure \
		-width  $canvWidth  \
		-height $canvHeight \
		-xscrollcommand [list $frame.m.x.xscroll set] \
		-yscrollcommand [list $frame.m.y.yscroll set] \
                -scrollregion [list 0 0 $scrollRegionWidth $scrollRegionHeight]

	if {$canvWidth > 0 && $scrollRegionWidth > $canvWidth} {
		pack $frame.m.x.xscroll -side bottom -fill x -padx 0 -pady 0 \
							      -ipadx 0 -ipady 0
        }
	if {$canvHeight > 0 && $scrollRegionHeight > $canvHeight} {
		pack $frame.m.y.yscroll -side right -fill y -padx 0 -pady 0 \
						   -ipadx 0 -ipady 0 -anchor nw
        }
	pack $frame.l.label -fill both -expand true -padx 0 -pady 0 -ipadx 0 \
					-ipady 0
	pack $frame.m.c.canvas -expand true -fill both -padx 0 -pady 0 \
					-ipadx 0 -ipady 0
	pack $frame.m.x -side bottom -fill x -padx 0 -pady 0 -ipadx 0 -ipady 0
	pack $frame.m.y -side right -fill y -padx 0 -pady 0 -ipadx 0 -ipady 0
	pack $frame.m.c -expand true -fill both -padx 0 -pady 0 -ipadx 0 \
								      -ipady 0 

	pack $frame.l $frame.m $frame.s -side top -anchor nw -fill both \
				-expand true -padx 0 -pady 0 -ipadx 0 -ipady 0
	pack $frame -anchor c -expand true -fill both -padx 0 -pady 0 -ipadx 0 -ipady 0

	systemAdjustNodesDistances $frame

}
proc systemNodesReCreate {frame } {

	global canvas sysnodes

	set systemName [systemNameGet $frame]
	$frame.l.label 	configure -text $systemName
	set labelWidth [expr \
                     2*$canvas(bigBd) + 2*$canvas(bigLabelBd) + \
        	     $canvas(bigLabelFontWidth)*[string length $systemName]]
	systemLabelWidthPut $frame $labelWidth

        set labelHeight [expr $canvas(bigBd) + 2*$canvas(bigLabelBd) \
                                + $canvas(bigLabelFontHeight)]
	systemLabelHeightPut $frame $labelHeight

        set canvasFrameWidth [expr $canvas(bigBd) + 2*$canvas(bigCanvasBd)]
	systemCanvasFrameWidthPut $frame $canvasFrameWidth

        set canvasFrameHeight [expr 2*$canvas(bigCanvasBd)]
	systemCanvasFrameHeightPut $frame $canvasFrameHeight
 

	set x1 0
	set y1 0
	set totwidth 0
	set totheight 0
	set pw 0
	set ph 0
	set maxWidth 0
	set prevCluster ""
	set rowClusters ""

	set i 0
	set j 0

	foreach a [systemServerNamesGet $frame] {
		set clusterLabel [lindex $sysnodes($systemName,$a) 0]

		clusterNamePut $frame.m.c.$i $a
		clusterLabelTextPut $frame.m.c.$i $clusterLabel

		$frame.m.c.canvas delete $frame.m.c.$i

		systemClusterFramePut $frame $a $frame.m.c.$i
		set  pos [clusterReCreate $frame.m.c.$i]

		set w [expr [lindex $pos 0] + 2*$canvas(medBd)]
		set h [lindex $pos 1]


		if { $i == 0 } {
			set rowClusters $frame.m.c.$i
			incr totwidth $w
		} elseif { [expr $j % $canvas(systemNumBoxesPerRow)] == 0 || \
			   [expr $totwidth + $w] > $canvas(systemMaxWidth) } {
			set rowOffset [expr \
				      ($canvas(systemMaxWidth) - $totwidth) / 2]
			if {$rowOffset > 0} {
				foreach fr $rowClusters {
					clusterOffsetWidthPut $fr $rowOffset
				}
			}
			set rowClusters $frame.m.c.$i
			set x1 0
			incr y1 $ph

			incr totheight $ph

			if {$totwidth > $maxWidth} {
				set maxWidth $totwidth
			}
			set totwidth $w
			set j 0
			set ph 0
		} else {
			lappend rowClusters $frame.m.c.$i

			incr x1 $pw
			incr totwidth $w

                        if {[string compare $prevCluster ""] != 0} {
                                clusterNextPut $prevCluster $frame.m.c.$i
                        }
		}

		pack forget $frame.m.c.$i
		$frame.m.c.canvas create window $x1 $y1 -window $frame.m.c.$i \
		 -anchor nw -width  $w -height $h -tags $frame.m.c.$i
	
		clusterXposPut $frame.m.c.$i $x1
		clusterYposPut $frame.m.c.$i $y1
		# save current width
		set pw $w
		if {$h > $ph} {
			set ph $h
		}
		set prevCluster $frame.m.c.$i
		incr i
		incr j
	}
	if {[string compare $rowClusters ""] != 0} {
		set rowOffset [expr ($canvas(systemMaxWidth) - $totwidth) / 2]
		if {$rowOffset > 0} {
			foreach fr $rowClusters {
				clusterOffsetWidthPut $fr $rowOffset
			}
		}
	}

	if {$maxWidth > $totwidth} {
		set totwidth $maxWidth
	}
	incr totheight $ph
	systemScrollRegionWidthPut $frame $totwidth
	systemScrollRegionHeightPut $frame $totheight
        set scrollRegionWidth $totwidth
        set scrollRegionHeight $totheight
	
	$frame.m.x.xscroll configure -orient horizontal \
				-width $canvas(bigLabelFontHeight) \
				-command [list $frame.m.c.canvas xview]

        set scrollHeight [expr \
                2*[lindex [$frame.m.x.xscroll configure -borderwidth] end] \
                + [lindex [$frame.m.x.xscroll configure -width] end]]


	$frame.m.y.yscroll configure -orient vertical \
				-width $canvas(bigLabelFontHeight) \
				-command [list $frame.m.c.canvas yview]
        set scrollWidth [expr \
                $canvas(bigBd) + \
                2*[lindex [$frame.m.y.yscroll configure -borderwidth] end]  \
                + [lindex [$frame.m.y.yscroll configure -width] end]]

        set footerWidth [expr 2*$canvas(bigBd) + 2*$canvas(bigLabelBd)]
        set footerHeight [expr 2*$canvas(bigLabelBd) + \
                               $canvas(bigBd) + \
                               2*$canvas(smallLabelFontHeight)]
	systemFooterHeightPut $frame $footerHeight


        set retwidth [expr $canvasFrameWidth + $totwidth + $scrollWidth]
	
        if {$labelWidth > $retwidth && $labelWidth > $footerWidth} {
                set retwidth $labelWidth
        } elseif {$footerWidth > $retwidth && $footerWidth > $labelWidth} {
                set retwidth $footerWidth
        }
        systemDisplayWidthPut $frame $retwidth
	set canvWidth $totwidth
        systemCanvasWidthPut $frame $canvWidth
	systemScrollWidthPut $frame $scrollWidth

        if { $retwidth  >  $canvas(systemMaxWidth) } {
                set canvWidth  [expr $canvas(systemMaxWidth) - \
                                     $canvasFrameWidth - $scrollWidth]
                if {$canvWidth > 0} {
        		systemCanvasWidthPut $frame $canvWidth
                        systemDisplayWidthPut $frame $canvas(systemMaxWidth)
                        set retwidth $canvas(systemMaxWidth)
                }               
        }

        set retheight [expr $labelHeight + $canvasFrameHeight + $totheight + \
                                                $scrollHeight + $footerHeight]

        systemDisplayHeightPut $frame $retheight
	set canvHeight $totheight
	systemCanvasHeightPut $frame $canvHeight
	systemScrollHeightPut $frame $scrollHeight

        if { $retheight >  $canvas(systemMaxHeight) } {
                set canvHeight [expr    $canvas(systemMaxHeight) - \
                                        $labelHeight - $canvasFrameHeight - \
                                        $scrollHeight - $footerHeight]
                if {$canvHeight > 0} {
			systemCanvasHeightPut $frame $canvHeight
                        systemDisplayHeightPut $frame $canvas(systemMaxHeight)
                        set retheight $canvas(systemMaxHeight)

                }
        }

	set canvWidth [systemCanvasWidthGet $frame]
	set canvHeight [systemCanvasHeightGet $frame]
        $frame.m.c.canvas configure -width $canvWidth -height $canvHeight \
		-xscrollcommand [list $frame.m.x.xscroll set] \
		-yscrollcommand [list $frame.m.y.yscroll set] \
                -scrollregion [list 0 0 $scrollRegionWidth $scrollRegionHeight]

	catch {pack forget $frame.m.x.xscroll}
	if {$canvWidth > 0 && $scrollRegionWidth > $canvWidth} {
		pack $frame.m.x.xscroll -side bottom -fill x -padx 0 -pady 0 \
							      -ipadx 0 -ipady 0
        }
	catch {pack forget $frame.m.y.yscroll}
	if {$canvHeight > 0 && $scrollRegionHeight > $canvHeight} {
		pack $frame.m.y.yscroll -side right -fill y -padx 0 -pady 0 \
						   -ipadx 0 -ipady 0 -anchor nw
        }
	pack $frame -anchor c -expand true -fill both -padx 0 -pady 0 -ipadx 0 -ipady 0
	systemAdjustNodesDistances $frame
}

proc systemRepack {systemframe} {
	global canvas

	if {[string compare $systemframe ""] == 0} {
		return
	}

	set canv [systemCanvasGet $systemframe]

	set xscroll [systemXscrollGet $systemframe]

	set yscroll [systemYscrollGet $systemframe]

        set labelWidth [systemLabelWidthGet $systemframe]
	set footerWidth [systemFooterWidthGet $systemframe]
	set canvasFrameWidth [systemCanvasFrameWidthGet $systemframe]
	set scrollWidth [systemScrollWidthGet $systemframe]

	set labelHeight [systemLabelHeightGet $systemframe]
	set canvasFrameHeight [systemCanvasFrameHeightGet $systemframe]
	set scrollHeight [systemScrollHeightGet $systemframe]
	set footerHeight [systemFooterHeightGet $systemframe]

	set scrollRegionWidth [systemScrollRegionWidthGet $systemframe] 
	set scrollRegionHeight [systemScrollRegionHeightGet $systemframe]

	set canvWidth [systemCanvasWidthGet $systemframe]
	set canvHeight [systemCanvasHeightGet $systemframe]

	set dispWidth  [systemDisplayWidthGet  $systemframe]
	set dispHeight [systemDisplayHeightGet $systemframe]


        set retwidth [expr $canvasFrameWidth + $canvWidth + $scrollWidth]
	set footerWidth [expr $retwidth + 1]
        if {$labelWidth > $retwidth && $labelWidth > $footerWidth} {
                set retwidth $labelWidth
        } elseif {$footerWidth > $retwidth && $footerWidth > $labelWidth} {
                set retwidth $footerWidth
        }

        systemDisplayWidthPut $systemframe $retwidth
        if { $retwidth  >  $canvas(systemMaxWidth) } {
                set canvWidth  [expr $canvas(systemMaxWidth) - \
                                     $canvasFrameWidth - $scrollWidth]
                if {$canvWidth > 0} {
			systemCanvasWidthPut $systemframe $canvWidth
                        systemDisplayWidthPut $systemframe \
						        $canvas(systemMaxWidth)
                        set retwidth $canvas(systemMaxWidth)
                }               
        }

        set retheight [expr $labelHeight + $canvasFrameHeight + $canvHeight + \
                                                $scrollHeight + $footerHeight]

        systemDisplayHeightPut $systemframe $retheight
        if { $retheight >  $canvas(systemMaxHeight) } {
                set canvHeight [expr    $canvas(systemMaxHeight) - \
                                        $labelHeight - $canvasFrameHeight - \
                                        $scrollHeight - $footerHeight]
                if {$canvHeight > 0} {
			systemCanvasHeightPut $systemframe $canvHeight
                        systemDisplayHeightPut $systemframe \
							$canvas(systemMaxHeight)
                        set retheight $canvas(systemMaxHeight)

                }
        }

        set canvWidth [systemCanvasWidthGet $systemframe]
        set canvHeight [systemCanvasHeightGet $systemframe]

	$canv configure -width $canvWidth -height $canvHeight \
		-scrollregion [list 0 0 $scrollRegionWidth $scrollRegionHeight]

	if {$canvWidth > 0 && $scrollRegionWidth > $canvWidth} {
		catch {pack $xscroll -side bottom -fill x -padx 0 -pady 0 \
				-ipadx 0 -ipady 0}
        } else {
		catch {pack forget $xscroll}
	}

	if {$canvHeight > 0 && $scrollRegionHeight > $canvHeight} {
		pack $yscroll -side right -fill y -padx 0 -pady 0 -ipadx 0 \
							     -ipady 0 -anchor nw
        } else {
		catch {pack forget $yscroll}
	}
}

proc systemDelete {sysframe} {

	if {![winfo exists $sysframe]} {
		return
	}

	set sysname [systemNameGet $sysframe]

	foreach n [systemNodeNamesGet $sysframe] {
		set nframe [systemNodeFrameGet $sysframe $n FULL]
		nodeDelete $nframe
	}

	foreach c [systemClusterNamesGet $sysframe] {
		set cframe [systemClusterFrameGet $sysframe $c]
		clusterDelete $cframe
	}

        set array [string trimleft $sysframe .]
	global $array

	unset $array

	destroy $sysframe
}

proc systemRefreshDisplay {sysframe} {
	global canvas

	systemRefreshPut $sysframe 0
	foreach nn [systemNodeNamesGet $sysframe] {
		set nf [systemNodeFrameGet $sysframe $nn FULL]
		if [nodeRefreshGet $nf] {
			update idletasks
			clusterRefreshPut [nodeClusterFrameGet $nf] 1
			systemRefreshPut $sysframe 1
			nodeRefreshPut $nf 0
		}
	}

	foreach cn [systemClusterNamesGet $sysframe] {
		set cf [systemClusterFrameGet $sysframe $cn]
		if [clusterRefreshGet $cf] {
			update idletasks
			systemRefreshPut $sysframe 1
			clusterRefreshPut $cf 0
		}
	}

	if [systemRefreshGet $sysframe] {
		systemNodesReCreate $sysframe
		update idletasks
	}
}

proc systemDisplayClusterStatus {sysframe cname} {
	global canvas

	set cf [systemClusterFrameGet $sysframe $cname]

	set usepool [clusterUsePoolGet $cf]
	set availpool [clusterAvailPoolGet $cf]
	set totpool [clusterTotPoolGet $cf]

	set statusLine ""
	if {$totpool > 1} {
		set statusLine \
	     "Nodes:: $statusLine Total:$totpool Used:$usepool Avail:$availpool"
	}

	set offpool [clusterOfflinePoolGet $cf]
	if {$offpool != 0} {
		set statusLine "$statusLine Offl:$offpool"
	}

	set dwnpool [clusterDownPoolGet $cf]
	if {$dwnpool != 0} {
		set statusLine "$statusLine Down:$dwnpool"
	}

	set rsvpool [clusterReservedPoolGet $cf]
	if {$rsvpool != 0} {
		set statusLine "$statusLine Rsvd:$rsvpool"
	}
	set unkpool [clusterUnkPoolGet $cf]
	if {$unkpool != 0} {
		set statusLine "$statusLine Unk:$unkpool"
	}

	set cpu_assn [clusterCpusAssnGet $cf]
	if {$cpu_assn != 0} {
		set statusLine "$statusLine CpusAssn:$cpu_assn"

		set cpu_max [clusterCpusMaxGet $cf]
		if {$cpu_max != 0} {
			set statusLine "$statusLine/$cpu_max"
		}
	}
	set vprocs_assn [clusterVprocsAssnGet $cf]
	if {$vprocs_assn != 0} {
		set statusLine "$statusLine VPROCsUsed:$vprocs_assn"
	}

	set sbar [clusterStatusBarGet $cf]

        $sbar configure -text $statusLine
	set statusLineWidth \
	   	[expr [string length $statusLine] * $canvas(medLabelFontWidth)]

	if {$statusLineWidth > [clusterDisplayWidthGet $cf]} {
		clusterRefreshPut $cf 1
	}
	clusterFooterHeaderPut $cf $statusLine
}


# BUG: if a node was in the OFFLINE, and then on the next iteration
#	becomes FREE (no job on it), its color never gets updated to OFFLINE . 
proc systemPopulateNodesWithInfo {sysframe {create 0}} {
	global sysnodes canvas sysinfo

	if {[string compare $sysframe ""] == 0} {
		return
	}

	if {$sysinfo(LCK) || $sysinfo(PREFLCK)} {
	    InfoBox_sendmsg "systemPopulateNodesWithInfo: intentionally not updating since either another one is running, or pref dialog active." 1
	    return	
	}

	set sysinfo(LCK) 1

	set systemName [systemNameGet $sysframe]
	busy_cursor
	InfoBox_flush 1
	InfoBox_sendmsg "populatesNodesWithInfo: updating" 0

	update idletasks
        unsetNodeColorInUseMapping
	foreach n [systemNodeNamesGet $sysframe] {
		systemNodeInfoUnset $sysframe $n
		systemNodeInfo2Unset $sysframe $n
	}

	set serverl [serverNamesSorted $systemName \
			[serverNamesGet $systemName] nodeslist $sysframe]

	foreach server_name $serverl {
		if {[string compare $nodeslist($server_name) ""] != 0} {
			systemGetJobsInfo $sysframe $server_name
		}
	}

	set donehosts ""
	foreach n [systemNodeNamesGet $sysframe] {

		InfoBox_sendmsg "." 0 1

		set fullnodeFrame [systemNodeFrameGet $sysframe $n FULL]
		set mirrornodeFrame [systemNodeFrameGet $sysframe $n MIRROR]

		set nodejob [systemNodeInfoGet $sysframe $n]
		set nodestat [systemNodeStatusGet $sysframe $n]
		set nodetype [systemNodeTypeGet $sysframe $n]
		set nodeinfo2 [systemNodeInfo2Get $sysframe $n]

		switch -exact -- $nodetype {
                  NOMOM {
                        if {[string compare $nodejob ""] == 0 && \
                            ([string compare $nodestat INUSE-EXCLUSIVE] == 0 \
			     || [string compare $nodestat INUSE-SHARED] == 0)} {
                                nodeUpdateStat $sysframe $n FREE
                        }
			systemNodeInfoPut $sysframe $n \
					[concat $nodeinfo2 $nodejob]
                  }
		  NOMOM_SNODE {
			systemNodeInfoPut $sysframe $n \
					[concat $nodeinfo2 $nodejob]
		  }
		  MOM	{
			if {[string compare $nodejob ""] == 0 && \
		    	    ([string compare $nodestat INUSE-EXCLUSIVE] == 0 \
			     || [string compare $nodestat INUSE-SHARED] == 0)} {
				nodeUpdateStat $sysframe $n NOINFO
			}

			catch {openrm $n} fd
			InfoBox_sendmsg "systemPopulateNodesWithInfo: openrm($n): $fd" end
			if {$fd < 0} {
				nodeUpdateStat $sysframe $n DOWN
			} else {
				set status [TSgetStatus $fd $sysframe $n 1]
				switch -exact -- $status {
				  FREE {
				      set qlist [sendTSQueries $fd \
								$systemName $n]
				      set qexpr [recvResponses $fd \
							$systemName $n $qlist]

				      set qexpr [concat $qexpr $nodejob]
				      systemNodeInfoPut $sysframe $n $qexpr
				      systemUpdateInUse $sysframe $n $nodejob
				  }
				  NOINFO {
				      systemUpdateInUse $sysframe $n $nodejob
				  }
			        }

				catch {closerm $fd}
				InfoBox_sendmsg "systemPopulateNodesWithInfo: closerm($n)" end
			}
		  }
		  MOM_SNODE {
			set qexpr ""	
			catch {openrm $n} fd
			InfoBox_sendmsg "systemPopulateNodesWithInfo: openrm($n): $fd" end
			if {$fd >= 0} {
				set status [TSgetStatus $fd $sysframe $n 0]
				if {[string compare $status FREE] == 0} {
					set qlist [sendTSQueries $fd \
								$systemName $n]
					set qexpr [recvResponses $fd \
							$systemName $n $qlist]

			        }

				catch {closerm $fd}
				InfoBox_sendmsg "systemPopulateNodesWithInfo: closerm($n)" end
			}
			set qexpr [concat $nodeinfo2 $qexpr $nodejob]
			systemNodeInfoPut $sysframe $n $qexpr
		  }
		}
		set nodeinfo [systemNodeInfoGet $sysframe $n]

		if { [string compare $nodeinfo ""] != 0 } {
			nodeDisplayInfo $fullnodeFrame $nodeinfo $create
			nodeDisplayInfo $mirrornodeFrame $nodeinfo $create
		} else {
			nodeRemLines $fullnodeFrame 0
			nodeRemLines $mirrornodeFrame 0
		      	nodeColorIt $fullnodeFrame $n
		      	nodeColorIt $mirrornodeFrame $n
		}
	}

	foreach f [systemClusterNamesGet $sysframe] {
		systemDisplayClusterStatus $sysframe $f
	}

	systemRefreshDisplay $sysframe
	colorBarUpdate
	InfoBox_sendmsg "done." 0 1 5
	remove_busy_cursor

	set sysinfo(LCK) 0

}

proc systemUpdateInUse {sysframe n jobslist} {

	set len [lindex [lindex [lindex $jobslist 0] 1] 3]

	if {[string compare $len ""] == 0} {
		set len 0
	}
	if {$len == 1} {
		nodeUpdateStat $sysframe $n INUSE-EXCLUSIVE
	} elseif {$len > 1} {
		nodeUpdateStat $sysframe $n INUSE-SHARED
	}

}

proc systemGetJobsInfo {sysframe server_name} {

	if {[string compare $sysframe ""] == 0 || \
	    [string compare $server_name ""] == 0} {
		return
	}

	foreach nname [systemNodeNamesGet $sysframe] {
		set name [split $nname ,]
		set superhost [lindex $name 0]
		set fullhost  [lindex $name 1]
		
		if {[string compare $fullhost ""] == 0} {
			set node $superhost
		} else {
			set node $fullhost
		}
		set chophost  [lindex [split $node .] 0]
		set nodeMatch($node) $nname
		set nodeMatch($chophost) $nname
	}


	catch {unset jobs}
	catch {unset vp_used}
	set cpus_assn 0
	catch {pbsconnect $server_name} fd
	InfoBox_sendmsg "systemGetJobsInfo: pbsconnect($server_name): $fd" end
	set cframe [systemClusterFrameGet $sysframe $server_name]
	if { $fd >= 0 } {
		catch {pbsstatserv} sinfo
		set attribl [lindex $sinfo 1]

		foreach a $attribl {
			set res [lindex $a 0]
			set val [lindex $a 1]
			if {[string compare $res "resources_max.ncpus"] == 0} {
			      if {[string compare $cframe ""] != 0} {
			      	clusterCpusMaxPut $cframe $val
			      }
			} elseif {[string compare $res \
				   "resources_assigned.nodect"] == 0} {
				clusterVprocsAssnPut $cframe $val
			}
		}

		catch {pbsstatjob} jinfo
		InfoBox_sendmsg "systemGetJobsInfo: pbsstatjob($server_name): " end

		foreach j $jinfo {
			set jobid [lindex $j 0]
			set attribl [lindex $j 1]

			set user ""
			set state ""
			set hostlist {}
			set nodeslist {}
			set ncpus 0
			foreach a $attribl {
				set res [lindex $a 0]
				set val [lindex $a 1]

				if { [string compare $res "Job_Owner"] == 0 } {
					set user [lindex [split $val @] 0]
				} elseif {[string compare $res \
							   "job_state"] == 0} {
					set state $val
				} elseif {[string compare $res \
							   "exec_host"] == 0} {
					set hostlist [split $val +]
				} elseif {[string compare $res \
					  "resources_used.nodes"] == 0} {
					set nodeslist [split $val +]
				} elseif {[string compare $res \
					  "Resource_List.ncpus"] == 0} {
					set ncpus $val
				} elseif {[string compare $state ""] != 0 && \
					      [string compare $state R] != 0} {
					break
				}

			}
			if {[string compare $state R] == 0} {
				incr cpus_assn $ncpus
				if {[string compare $nodeslist ""] != 0} {
					set hlist $nodeslist
				} else {
					set hlist $hostlist
				}
				catch {unset ujobinfo}
				foreach h1 $hlist {
					set h1_list [split $h1 /]
					set h [lindex $h1_list 0] 
					set p [lindex $h1_list 1]

					if {[string compare $p ""] != 0} {
					    if {![info exists ujobinfo($h)]} {
						set ujobinfo($h) " on vprocs $p"
						set vp_used($h,$p) 1
					    } else {
						append ujobinfo($h) ":$p"
					    }
					} else {
					    set ujobinfo($h) ""
					}
				}

				foreach h [array names ujobinfo] {

					if [info exists nodeMatch($h)] {
					  if {$ncpus != 0} {
				     	    lappend jobs($nodeMatch($h)@$user) \
					     "$jobid$ujobinfo($h) (cpus=$ncpus)"
					   } else {
				     	    lappend jobs($nodeMatch($h)@$user) \
							"$jobid$ujobinfo($h)"
					  }
					}
				}
			}
		}

		catch {pbsdisconnect}
		InfoBox_sendmsg "pbsdisconnect($server_name)" end
	}

	foreach j [array names jobs] {
		set jinfo [split $j @]
		set nodename [lindex $jinfo 0]
		set user [lindex $jinfo 1]
		set numj [llength $jobs($j)]
		lappend nodejobs($nodename) "$user [join $jobs($j) ,]"
		if {![info exists njobs($nodename)]} {
			set njobs($nodename) $numj
		} else {
			incr njobs($nodename) $numj
		}
			
		if {![info exists nusers($nodename)]} {
			set nusers($nodename) 1
		} else {
			incr nusers($nodename)
		}
	}

	
	foreach n [array names nodejobs] {
		set header "Jobs: "
		if {$nusers($n) <= 1} {
			lappend header " $nusers($n) " "USER: "
		} else {
			lappend header " $nusers($n) " "USERs: "
		}

		if {$njobs($n) <= 1} {
			lappend header " $njobs($n) " "JID: "
		} else {
			lappend header " $njobs($n) " "JIDs: "
		}

		systemNodeInfoAppend $sysframe $n \
					[list $nodejobs($n) $header NODEJOB]

		set nodetype [systemNodeTypeGet $sysframe $n]

		systemUpdateInUse $sysframe $n [systemNodeInfoGet $sysframe $n]
	}

	if [info exists cframe] {
		clusterCpusAssnPut $cframe $cpus_assn
	}

	if {[info exists vp_used]} {
		set accum 0
		foreach pro [array names vp_used] {
			incr accum $vp_used($pro)
		}
		clusterVprocsAssnPut $cframe $accum
	}
}

proc systemAdjustNodesDistances {sysframe} {
        global canvas

        foreach n [systemNodeNamesGet $sysframe] {
                set nframe [systemNodeFrameGet $sysframe $n FULL]

                set ccanv [clusterCanvasGet [nodeClusterFrameGet $nframe]]

                set offset [nodeOffsetWidthGet $nframe]
                if { [string compare $offset ""] != 0 && $offset != 0 } {
                        $ccanv move $nframe $offset 0
                        nodeXposPut $nframe [expr [nodeXposGet $nframe] + \
                                                                        $offset]
                        nodeOffsetWidthPut $nframe 0
                }

        }

        foreach c [systemClusterNamesGet $sysframe] {
                set cframe [systemClusterFrameGet $sysframe $c]

                set systemc [systemCanvasGet [clusterSystemFrameGet $cframe]]
                set offset [clusterOffsetWidthGet $cframe]
                if { [string compare $offset ""] != 0 && $offset != 0 } {
                        $systemc move $cframe $offset 0
                        clusterXposPut $cframe [expr [clusterXposGet $cframe] \
                                                     + $offset]
                        clusterOffsetWidthPut $cframe 0
                }
        }
}