This file is indexed.

/usr/share/system-config-lvm/cylinder_items.py is in system-config-lvm 1.1.18-3.

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
import math
import operator

import pygtk
import gtk, gtk.gdk



class Widget:

    def __init__(self):
        self.left_clickable = False
        self.right_clickable = False
        
        self.objects = {}
        
    def draw(self, dc, gc, (x, y)):
        pass
    
    def click(self, (x, y), leftClick): # local coordinates
        return None # nothing selected
    
    def add_object(self, id, obj):
        self.objects[id] = obj
    
    def get_object(self, id):
        return self.objects[id]
    
class Highlight:

    def __init__(self):
        self.highlighted = False
        self.also_highlight = []
    
    def add_highlightable(self, obj):
        self.also_highlight.append(obj)
    
    def remove_highlightable(self, obj):
        self.also_highlight.remove(obj)
    
    def highlight(self):
        for ch in self.also_highlight:
            ch.highlighted = True
        
    def unhighlight(self):
        for ch in self.also_highlight:
            ch.highlighted = False
    
    

class CylinderItem(Widget):
    
    def __init__(self,
                 selectable=False,
                 width=0,
                 height=0,
                 label_upper='',
                 label_lower=''):
        
        Widget.__init__(self)
        
        self.children = []
        self.ratio = 1 # pixels/width
        self.width = width
        self.height = height
        self.selectable = selectable
        self.selected = False
        
        self.label_upper = label_upper
        self.LU_showAlways = True
        self.LU_showAtSelected = False
        self.LU_showAtHighlighted = False
        
        self.label_lower = label_lower
        self.LL_showAlways = True
        self.LL_showAtSelected = False
        self.LL_showAtHighlighted = False
        
        self.highlighted = False
        
        self.anchors = {}
        
        
    def set_label_upper(self, text, showAlways=True, showAtSelected=False, showAtHighlighted=False):
        self.label_upper = text
        self.LU_showAlways = showAlways
        self.LU_showAtSelected = showAtSelected
        self.LU_showAtHighlighted = showAtHighlighted
        
    def set_label_lower(self, text, showAlways=True, showAtSelected=False, showAtHighlighted=False):
        self.label_lower = text
        self.LL_showAlways = showAlways
        self.LL_showAtSelected = showAtSelected
        self.LL_showAtHighlighted = showAtHighlighted
        
    def get_label_upper(self):
        return self.label_upper
    def get_label_lower(self):
        return self.label_lower
    
    def get_selected(self):
        return self.selected
    def set_selected(self, bool):
        self.selected = bool
        for child in self.children:
            child.set_selected(bool)
        
    def set_height(self, height):
        self.height = height
        for child in self.children:
            child.set_height(height)
    
    def draw(self, dc, gc, (x, y)):
        x = x + self.get_width()
        self.children.reverse()
        for child in self.children:
            x = x - child.get_width()
            child.draw(dc, gc, (x, y))
        self.children.reverse()
        
    def get_labels_upper(self):
        return self.__get_labels(True)
    def get_labels_lower(self):
        return self.__get_labels(False)
    def __get_labels(self, upper):
        labels = []
        if upper:
            if self.label_upper != '':
                if self.LU_showAlways or (self.selected and self.LU_showAtSelected) or (self.highlighted and self.LU_showAtHighlighted):
                    offset = self.get_width() / 2
                    labels.append((self.label_upper, offset))
        else:
            if self.label_lower != '':
                if self.LL_showAlways or (self.selected and self.LL_showAtSelected) or (self.highlighted and self.LL_showAtHighlighted):
                    offset = self.get_width() / 2
                    labels.append((self.label_lower, offset))
        # set offset of childrens' labels
        offset = 0
        for child in self.children:
            ch_labels = child.__get_labels(upper)
            for label in ch_labels:
                labels.append((label[0], label[1] + offset))
            offset = offset + child.get_width()
        return labels
    
    def get_smallest_selectable_width(self):
        maximum = 100000000
        smallest = maximum
        for child in self.children:
            width = child.get_smallest_selectable_width()
            if width == 0:
                continue
            if width < smallest:
                smallest = width
        
        if self.get_width() < smallest and self.selectable:
            smallest = self.get_width()
        if smallest == maximum:
            return 0
        else:
            return smallest
    
    def get_width(self): # returns width adjusted by ratio
        if self.width != 0:
            # end_node
            width = int(self.width * self.ratio)
            if width == 0:
                return 1
            return width
        width = 0
        for child in self.children:
            width = width + child.get_width()
        return width
    
    def get_adjustable_width(self): # get width that is adjustable by ratio
        if self.width != 0:
            # end_node
            adjustable_width = int(self.width * self.ratio)
            return adjustable_width
        adjustable_width = 0
        for child in self.children:
            adjustable_width = adjustable_width + child.get_adjustable_width()
        return adjustable_width
    
    def set_ratio(self, ratio):
        self.ratio = ratio
        for child in self.children:
            child.set_ratio(ratio)
    def get_ratio(self):
        return self.ratio
    
    def click(self, (x, y), leftClick):
        if x > self.get_width():
            return None
        
        if self.selectable and leftClick and self.left_clickable:
            #print 'left clicked'
            return self
        if self.right_clickable and not leftClick:
            #print 'right clicked'
            return self
        
        # propagate click
        offset = 0
        for child in self.children:
            child_width = child.get_width()
            if (x > offset) and (x < offset + child_width):
                return child.click((x - offset, y), leftClick)
            offset = offset + child_width
        return None
    
    def set_anchor(self, id, perc):
        self.anchors[id] = perc
    def get_anchors(self):
        anchors = []
        width = self.get_width()
        if self.selected or self.highlighted:
            for id in self.anchors:
                anchors.append((id, int(width * self.anchors[id])))
        
        # set offset of childrens' anchors
        offset = 0
        for child in self.children:
            for anchor in child.get_anchors():
                anchors.append((anchor[0], anchor[1] + offset))
            offset = offset + child.get_width()
        return anchors
    
    

class Separator(CylinderItem):
    
    def __init__(self, width=1, cyl_gen=None, pattern_id=0):
        CylinderItem.__init__(self, False, width)
        
        self.cyl_gen = cyl_gen
        self.pattern_id = pattern_id
    
    def get_width(self):
        # no ratio adjustment
        return self.width
    
    def get_adjustable_width(self):
        return 0
    
    def get_smallest_selectable_width(self):
        return 0
    
    def draw(self, dc, gc, (x, y)):
        if self.cyl_gen == None:
            return
        cyl_pix = self.cyl_gen.get_pattern(self.pattern_id, dc, self.get_width(), self.height)
        dc.draw_pixbuf(gc, cyl_pix, 0, 0, x, y)
    

class End(CylinderItem):
    
    def __init__(self, cyl_gen):
        CylinderItem.__init__(self)
        self.cyl_gen = cyl_gen
    
    def draw(self, dc, gc, (x, y)):
        self.cyl_gen.draw_end(dc, gc, x, y, self.height)
    
    def get_smallest_selectable_width(self):
        return 0
    

class Subcylinder(CylinderItem, Highlight):
    
    def __init__(self, 
                 cyl_gen=None, 
                 selectedPattern=None, 
                 highlightedPattern=None, 
                 selectable=False, 
                 width=0):
        CylinderItem.__init__(self, selectable, width, 0)
        Highlight.__init__(self)
        
        if selectable:
            self.left_clickable = True
        #self.right_clickable = True
        
        self.cyl_gen = cyl_gen
        
        self.selectedPattern = selectedPattern
        self.highlightedPattern = highlightedPattern
        
    
    def set_patterns(self, selected, highlighted):
        self.selectedPattern = selected
        self.highlightedPattern = highlighted
    
    def set_selected(self, bool):
        CylinderItem.set_selected(self, bool)
        if bool:
            self.highlight()
        else:
            self.unhighlight()
    
    def draw(self, dc, gc, (x, y)):
        # draw children
        CylinderItem.draw(self, dc, gc, (x, y))
        
        if self.cyl_gen == None:
            return
        # draw self
        if self.width != 0:
            cyl_pix = self.cyl_gen.get_cyl(dc, self.get_width(), self.height)
            dc.draw_pixbuf(gc, cyl_pix, 0, 0, x, y)
        # draw highlighted pattern
        if self.highlighted:
            cyl_pix = self.cyl_gen.get_pattern(self.highlightedPattern, dc, self.get_width(), self.height)
            dc.draw_pixbuf(gc, cyl_pix, 0, 0, x, y)
        # draw selection pattern
        if self.selected:
            cyl_pix = self.cyl_gen.get_pattern(self.selectedPattern, dc, self.get_width(), self.height)
            dc.draw_pixbuf(gc, cyl_pix, 0, 0, x, y)
        
    
    def click(self, (x, y), leftClick): # local coordinates
        selection = CylinderItem.click(self, (x, y), leftClick)
        if leftClick:
            # left click handling
            return selection
        else:
            # right click handling
            return selection
    

class SingleCylinder:
    
    def __init__(self,
                 exclusive_selection,
                 name='',
                 label='',
                 smallest_clickable_width=1,
                 width=200, # fullfilled only if smallest_clickable_width is met
                 height=1):
        
        self.cyl = Subcylinder()
        self.cyl_drawn_at = (0, 0)
        
        self.width = width
        self.height = height
        
        self.exclusive_selection = exclusive_selection
        self.selection = []
        
        self.name = name
        self.label = label
        
        self.label_to_cyl_distance = 10
        
        self.smallest_clickable_width = smallest_clickable_width
        self.respect_smallest_selectable_width(True)
        
    
    def respect_smallest_selectable_width(self, bool):
        self.respect_selectable_width = bool
        self.__adjust_width()
    
    def get_smallest_selectable_width(self):
        return self.cyl.get_smallest_selectable_width()
    
    def get_selection(self):
        return self.selection
    
    def click(self, (x, y), leftClick):
        (ellipse_table, x_radius) = get_ellipse_table(self.height/2)
        
        cyl_x = self.cyl_drawn_at[0]
        cyl_y = self.cyl_drawn_at[1]
        if not (y > cyl_y and y < cyl_y + self.height):
            return None
        if not (x > cyl_x and x < cyl_x + self.cyl.get_width() + x_radius):
            return None
        # click is in a rectangle, change to local coordinates
        y = y - cyl_y
        x = x - cyl_x - ellipse_table[y]
        if x < 0:
            return None
        
        selected = self.cyl.click((x, y), leftClick) # local coordinates
        if leftClick:
            if selected in self.selection:
                selected.set_selected(False)
                self.selection.remove(selected)
                return
            
            if self.exclusive_selection:
                # single selection only
                if selected != None:
                    if len(self.selection) != 0:
                        self.selection[0].set_selected(False)
                        self.selection = []
                    selected.set_selected(True)
                    self.selection.append(selected)
            else:
                if selected != None:
                    selected.set_selected(True)
                    self.selection.append(selected)
            
    
    def append_right(self, child):
        self.cyl.children.append(child)
        self.cyl.set_height(self.height)
        
        self.__adjust_width()
    
    def __adjust_width(self):
        self.cyl.set_ratio(1)
        width = self.cyl.get_width()
        if width == 0:
            return
        else:
            self.cyl.set_ratio(float(self.width)/width)
        
        if self.respect_selectable_width:
            smallest = self.cyl.get_smallest_selectable_width()
            if smallest == 0:
                return
            elif smallest < self.smallest_clickable_width:
                self.cyl.set_ratio(1)
                smallest = self.cyl.get_smallest_selectable_width()
                self.cyl.set_ratio(self.smallest_clickable_width/float(smallest))
        
    
    def set_height(self, height):
        self.height = height
        self.cyl.set_height(height)
    def get_height(self):
        return self.height
    
    def set_width(self, width):
        self.width = width
        self.__adjust_width()
    def get_width(self):
        return self.width
    def get_adjusted_width(self):
        return self.cyl.get_width()
    
    def minimum_pixmap_dimension(self, da):
        # cylinder dimension
        cyl_dim = (2 * get_ellipse_table(self.height/2)[1] + self.cyl.get_width(), self.height)
        
        # labels dimensions
        # main
        layout = da.create_pango_layout('')
        layout.set_markup(self.label)
        main_label_dim = layout.get_pixel_size()
        # upper
        upper_label_dim = draw_cyl_labels_upper(da, None, None,
                                                self.cyl.get_labels_upper(),
                                                0, 0,
                                                False)
        # lower
        lower_label_dim = draw_cyl_labels_lower(da, None, None,
                                                self.cyl.get_labels_lower(), 
                                                0, 0, 
                                                self.height, 
                                                False)
        # width
        max_cyl_w = cyl_dim[0]
        ellipse_w = get_ellipse_table(self.height/2)[1]
        if upper_label_dim[0] > max_cyl_w - ellipse_w:
            max_cyl_w = upper_label_dim[0] + ellipse_w
        if lower_label_dim[0] > max_cyl_w - ellipse_w:
            max_cyl_w = lower_label_dim[0] + ellipse_w
        width = main_label_dim[0] + self.label_to_cyl_distance + max_cyl_w
        # height
        height = upper_label_dim[1] + cyl_dim[1] + lower_label_dim[1]
        if main_label_dim[1] > height:
            height = mail_label_dim[1]

        return width, height, upper_label_dim[1]
    
    def draw(self, da, gc, (x, y)):
        dc = da.window
        (w, h) = dc.get_size()
        pixmap = gtk.gdk.Pixmap(dc, w, h) # buffer
        
        # adjust y for upper label height
        upper_label_height = draw_cyl_labels_upper(da, None, None,
                                                   self.cyl.get_labels_upper(),
                                                   0, 0,
                                                   False)[1]
        y = y + upper_label_height
        
        # clear
        front = gc.foreground
        gc.foreground = gc.background
        pixmap.draw_rectangle(gc, True, 0, 0, w, h)
        gc.foreground = front
        
        # draw name
        #layout = da.create_pango_layout(self.name)
        #label_w, label_h = layout.get_pixel_size()
        #pixmap.draw_layout(gc, x, y + (self.height - label_h) / 2, layout)
        
        # draw main label
        layout = da.create_pango_layout('')
        layout.set_markup(self.label)
        label_w, label_h = layout.get_pixel_size()
        pixmap.draw_layout(gc, 
                           x, y + (self.height-label_h)/2, 
                           layout)
        
        # draw cylinder
        x = x + label_w + get_ellipse_table(self.height/2)[1] + self.label_to_cyl_distance
        self.cyl.draw(pixmap, gc, (x, y))
        self.cyl_drawn_at = (x, y)
        
        # draw labels
        draw_cyl_labels_upper(da, pixmap, gc,
                                   self.cyl.get_labels_upper(), 
                                   x, y)
        draw_cyl_labels_lower(da, pixmap, gc,
                                   self.cyl.get_labels_lower(), 
                                   x, y, self.height)
        
        # double buffering
        dc.draw_drawable(gc, pixmap, 0, 0, 0, 0, w, h)
        
def draw_cyl_labels_upper(da, pixmap, gc, labels, x, y, draw=True):
        # sort
        labels_t = labels
        labels = []
        while len(labels_t) != 0:
            largest = labels_t[0]
            for label in labels_t:
                if label[1] > largest[1]:
                    largest = label
            labels_t.remove(largest)
            labels.append(largest)
        
        width_total, height_total = 0, 0 # dimensions of encompasing rectangle
        
        X_boundry = 1000000 # used for offset adjustment
        offset_default = 0
        offset = offset_default
        length = 30
        for label in labels:
            layout = da.create_pango_layout('')
            layout.set_markup(label[0])
            label_w, label_h = layout.get_pixel_size()
            X1 = x + label[1]
            Y1 = y
            X2 = X1 - int(math.cos(math.pi/4) * length)
            Y2 = Y1 - int(math.sin(math.pi/4) * length)
            X3 = X2
            if X2 + label_w + 3 > X_boundry:
                offset = offset + label_h
            else:
                offset = offset_default
            Y3 = Y2 - offset - label_h / 2
            X_boundry = X2
            if draw:
                pixmap.draw_line(gc, X1, Y1, X2, Y2)
                pixmap.draw_line(gc, X2, Y2, X3, Y3)
            X_lay = X2 + 2
            Y_lay = Y3 - label_h/2
            if draw:
                backup = gc.foreground
                gc.foreground = gc.background
                pixmap.draw_rectangle(gc, True, X_lay, Y_lay, label_w, label_h)
                gc.foreground = backup
                pixmap.draw_layout(gc, X_lay, Y_lay, layout)
                
            # calculate dimension of encompasing rectangle
            max_w_tmp = X_lay + label_w - x
            max_h_tmp = y - Y_lay
            if max_w_tmp > width_total:
                width_total= max_w_tmp
            if max_h_tmp > height_total:
                height_total= max_h_tmp
            
        return width_total, height_total
    
def draw_cyl_labels_lower(da, pixmap, gc, labels, x, y, cyl_height, draw=True):
        # sort
        labels_t = labels
        labels = []
        while len(labels_t) != 0:
            largest = labels_t[0]
            for label in labels_t:
                if label[1] > largest[1]:
                    largest = label
            labels_t.remove(largest)
            labels.append(largest)
        
        width_total, height_total = 0, 0 # dimensions of encompasing rectangle
        
        X_boundry = 1000000 # used for offset adjustment
        height = int(cyl_height * 5 / 8)
        X_offset = get_ellipse_table(cyl_height/2)[0][height]
        offset_default = cyl_height - height + 10
        offset = offset_default
        for label in labels:
            layout = da.create_pango_layout('')
            layout.set_markup(label[0])
            label_w, label_h = layout.get_pixel_size()
            X1 = x + label[1] + X_offset
            Y1 = y + height
            X2 = X1
            Y2 = Y1 + label_h
            X3 = X2 + label_w
            if X3 + 3 > X_boundry:
                offset = offset + label_h + 1
            else:
                offset = offset_default
            Y2 = Y2 + offset
            Y3 = Y2
            X_boundry = X1
            if draw:
                pixmap.draw_line(gc, X1, Y1, X2, Y2)
                pixmap.draw_line(gc, X2, Y2, X3, Y3)
            X_lay = X2 + 2
            Y_lay = Y2 - label_h
            if draw:
                back = gc.foreground
                gc.foreground = gc.background
                pixmap.draw_rectangle(gc, True, X_lay, Y_lay, label_w, label_h)
                gc.foreground = back
                pixmap.draw_layout(gc, X_lay, Y_lay, layout)
            
            # calculate dimension of encompasing rectangle
            max_w_tmp = X3 - x
            max_h_tmp = Y3 - (cyl_height + y)
            if max_w_tmp > width_total:
                width_total = max_w_tmp
            if max_h_tmp > height_total:
                height_total = max_h_tmp
            
        return width_total, height_total
    
        

class DoubleCylinder:
    
    def __init__(self,
                 distance, 
                 name='', 
                 label_upper='', 
                 label_lower='', 
                 smallest_clickable_width=1, 
                 width=200, # fullfilled only if smallest_clickable_width is met
                 height=1):
        
        self.cyl_upper = Subcylinder()
        self.cyl_lower = Subcylinder()
        self.cyl_upper_drawn_at = (0, 0)
        self.cyl_lower_drawn_at = (0, 0)
        
        self.label_upper = label_upper
        self.label_lower = label_lower
        
        self.distance = distance
        self.label_to_cyl_distance = 10
        
        self.selection = None
        
        self.name = name
        
        self.width = width
        self.height = height
        self.smallest_clickable_width = smallest_clickable_width
        self.respect_smallest_selectable_width(True)
        
    
    def respect_smallest_selectable_width(self, bool):
        self.respect_selectable_width = bool
        self.__adjust_width()
    
    def get_smallest_selectable_width(self):
        upper = self.cyl_upper.get_smallest_selectable_width()
        lower = self.cyl_lower.get_smallest_selectable_width()
        
        if upper == 0:
            return lower
        elif lower == 0:
            return upper
        smaller = 0
        if upper > lower:
            smaller = lower
        else:
            smaller = upper
        return smaller
    
    def get_selection(self):
        if self.selection == None:
            return []
        return [self.selection]
    
    def click(self, (x, y), leftClick):
        (ellipse_table, x_radius) = get_ellipse_table(self.height/2)
        
        cyl = None
        
        cyl_x = self.cyl_upper_drawn_at[0]
        cyl_y = self.cyl_upper_drawn_at[1]
        if x > cyl_x and x < cyl_x + self.cyl_upper.get_width() + x_radius:
            if y > cyl_y and y < cyl_y + self.height:
                cyl = self.cyl_upper
        if cyl == None:
            cyl_x = self.cyl_lower_drawn_at[0]
            cyl_y = self.cyl_lower_drawn_at[1]
            if x > cyl_x and x < cyl_x + self.cyl_lower.get_width() + x_radius:
                if y > cyl_y and y < cyl_y + self.height:
                    cyl = self.cyl_lower
        
        if cyl == None:
            return None
        
        # click is in a rectangle, change to local coordinates
        y = y - cyl_y
        x = x - cyl_x - ellipse_table[y]
        if x < 0:
            return None
        
        selected = cyl.click((x, y), leftClick) # local coordinates
        if leftClick:
            if selected == self.selection and selected != None:
                selected.set_selected(False)
                self.selection = None
                return
            if selected != None:
                if self.selection != None:
                    self.selection.set_selected(False)
                selected.set_selected(True)
                self.selection = selected
            
    
    def append_right(self, upper, child):
        cyl = None
        if upper:
            cyl = self.cyl_upper
        else:
            cyl = self.cyl_lower
        
        cyl.children.append(child)
        cyl.set_height(self.height)
        
        self.__adjust_width()
    
    def __adjust_width(self):
        self.cyl_upper.set_ratio(1)
        self.cyl_lower.set_ratio(1)
        up_w = self.cyl_upper.get_width()
        lo_w = self.cyl_lower.get_width()
        if up_w == 0 or lo_w == 0:
            return
        up_w_adj = self.cyl_upper.get_adjustable_width()
        lo_w_adj = self.cyl_lower.get_adjustable_width()
        self.cyl_upper.set_ratio(float(self.width-(up_w-up_w_adj))/up_w_adj)
        self.cyl_lower.set_ratio(float(self.width-(lo_w-lo_w_adj))/lo_w_adj)
        
        if self.respect_selectable_width:
            # make sure smallest selectable width is at least self.smallest_clickable_width
            smallest = self.__get_smallest_selectable_width()
            if smallest < self.smallest_clickable_width:
                self.cyl_upper.set_ratio(1)
                self.cyl_lower.set_ratio(1)
                smallest = self.__get_smallest_selectable_width()
                ratio = self.smallest_clickable_width/float(smallest)
                self.cyl_upper.set_ratio(ratio)
                self.cyl_lower.set_ratio(ratio)
    
    def __get_smallest_selectable_width(self):
        smallest_upper = self.cyl_upper.get_smallest_selectable_width()
        smallest_lower = self.cyl_lower.get_smallest_selectable_width()
        if smallest_upper == 0 or smallest_lower == 0:
            if smallest_upper == 0:
                smallest = smallest_lower
            else:
                smallest = smallest_upper
        else:
            if smallest_upper < smallest_lower:
                smallest = smallest_upper
            else:
                smallest = smallest_lower
        return smallest
    
    def set_height(self, height):
        self.height = height
        self.cyl_upper.set_height(height)
        self.cyl_lower.set_height(height)
    def get_height(self):
        return self.height
    
    def set_width(self, width):
        self.width = width
        self.__adjust_width()
    def get_width(self):
        return self.width
    def get_adjusted_width(self):
        return self.cyl_upper.get_width()
    
    def minimum_pixmap_dimension(self, da):
        # cylinder dimension
        cyl_dim = (2 * get_ellipse_table(self.height/2)[1] + self.cyl_upper.get_width(), self.height)
        
        # labels dimensions
        # main
        layout = da.create_pango_layout('')
        layout.set_markup(self.label_upper)
        main_label_dim = layout.get_pixel_size()
        layout = da.create_pango_layout('')
        layout.set_markup(self.label_lower)
        if layout.get_pixel_size()[0] > main_label_dim[0]:
            main_label_dim = layout.get_pixel_size()
        # upper cylinder
        up_cyl_up_label_dim = draw_cyl_labels_upper(da, None, None,
                                                    self.cyl_upper.get_labels_upper(),
                                                    0, 0,
                                                    False)
        up_cyl_low_label_dim = draw_cyl_labels_lower(da, None, None,
                                                     self.cyl_upper.get_labels_lower(), 
                                                     0, 0, 
                                                     self.height, 
                                                     False)
        # lower cylinder
        low_cyl_up_label_dim = draw_cyl_labels_upper(da, None, None,
                                                     self.cyl_lower.get_labels_upper(),
                                                     0, 0,
                                                     False)
        low_cyl_low_label_dim = draw_cyl_labels_lower(da, None, None,
                                                      self.cyl_lower.get_labels_lower(), 
                                                      0, 0, 
                                                      self.height, 
                                                      False)
        
        # width
        max_cyl_w = cyl_dim[0]
        ellipse_w = get_ellipse_table(self.height/2)[1]
        if up_cyl_up_label_dim[0] > max_cyl_w - ellipse_w:
            max_cyl_w = up_cyl_up_label_dim[0] + ellipse_w
        if up_cyl_low_label_dim[0] > max_cyl_w - ellipse_w:
            max_cyl_w = up_cyl_low_label_dim[0] + ellipse_w
        if low_cyl_up_label_dim[0] > max_cyl_w - ellipse_w:
            max_cyl_w = low_cyl_up_label_dim[0] + ellipse_w
        if low_cyl_low_label_dim[0] > max_cyl_w - ellipse_w:
            max_cyl_w = low_cyl_low_label_dim[0] + ellipse_w
        width = main_label_dim[0] + self.label_to_cyl_distance + max_cyl_w
        # height
        distance = self.distance
        auto_distance = up_cyl_low_label_dim[1] + self.label_to_cyl_distance + low_cyl_up_label_dim[1] 
        if auto_distance > distance:
            distance = auto_distance
        height = up_cyl_up_label_dim[1] + 2 * cyl_dim[1] + distance + low_cyl_low_label_dim[1]
        
        return width, height, up_cyl_up_label_dim[1]
    
    def draw(self, da, gc, (x, y)):
        dc = da.window
        (w, h) = dc.get_size()
        pixmap = gtk.gdk.Pixmap(dc, w, h) # buffer
        
        # clear
        front = gc.foreground
        gc.foreground = gc.background
        pixmap.draw_rectangle(gc, True, 0, 0, w, h)
        gc.foreground = front
        
        # labels dimensions
        up_cyl_up_label_dim = draw_cyl_labels_upper(da, None, None,
                                                    self.cyl_upper.get_labels_upper(),
                                                    0, 0,
                                                    False)
        up_cyl_low_label_dim = draw_cyl_labels_lower(da, None, None,
                                                     self.cyl_upper.get_labels_lower(), 
                                                     0, 0, 
                                                     self.height, 
                                                     False)
        low_cyl_up_label_dim = draw_cyl_labels_upper(da, None, None,
                                                     self.cyl_lower.get_labels_upper(),
                                                     0, 0,
                                                     False)
        low_cyl_low_label_dim = draw_cyl_labels_lower(da, None, None,
                                                      self.cyl_lower.get_labels_lower(), 
                                                      0, 0, 
                                                      self.height, 
                                                      False)
        
        # calculate distance
        distance = self.distance
        auto_distance = up_cyl_low_label_dim[1] + self.label_to_cyl_distance + low_cyl_up_label_dim[1] 
        if auto_distance > distance:
            distance = auto_distance
        
        # adjust y for upper label height
        y = y + up_cyl_up_label_dim[1]
        
        # draw name
        #layout = da.create_pango_layout(self.name)
        #label_w, label_h = layout.get_pixel_size()
        #pixmap.draw_layout(gc, x, y + (self.height - label_h) / 2, layout)
        
        # draw upper label
        layout = da.create_pango_layout('')
        layout.set_markup(self.label_upper)
        label_w, label_h = layout.get_pixel_size()
        pixmap.draw_layout(gc, x, y + (self.height-label_h)/2, layout)
        max_label_w = label_w
        # draw lower label
        layout = da.create_pango_layout('')
        layout.set_markup(self.label_lower)
        label_w, label_h = layout.get_pixel_size()
        pixmap.draw_layout(gc,
                           x,
                           y + self.height + distance + (self.height - label_h)/2,
                           layout)
        if label_w > max_label_w:
            max_label_w = label_w
        
        # draw upper cylinder
        x = x + max_label_w + get_ellipse_table(self.height/2)[1] + self.label_to_cyl_distance
        self.cyl_upper.draw(pixmap, gc, (x, y))
        self.cyl_upper_drawn_at = (x, y)
        # draw lower cylinder
        self.cyl_lower.draw(pixmap, gc, (x, y + self.height + distance))
        self.cyl_lower_drawn_at = (x, y + self.height + distance)
        
        # draw mapping lines
        self.draw_mappings(pixmap, gc)
        
        # draw cylinders' labels
        # upper cylinder
        draw_cyl_labels_upper(da, pixmap, gc,
                              self.cyl_upper.get_labels_upper(), 
                              self.cyl_upper_drawn_at[0], 
                              self.cyl_upper_drawn_at[1])
        draw_cyl_labels_lower(da, pixmap, gc,
                              self.cyl_upper.get_labels_lower(), 
                              self.cyl_upper_drawn_at[0], 
                              self.cyl_upper_drawn_at[1],
                              self.height)
        # lower cylinder
        draw_cyl_labels_upper(da, pixmap, gc, 
                              self.cyl_lower.get_labels_upper(), 
                              self.cyl_lower_drawn_at[0], 
                              self.cyl_lower_drawn_at[1])
        draw_cyl_labels_lower(da, pixmap, gc, 
                              self.cyl_lower.get_labels_lower(), 
                              self.cyl_lower_drawn_at[0], 
                              self.cyl_lower_drawn_at[1], 
                              self.height)
        
        # double buffering
        dc.draw_drawable(gc, pixmap, 0, 0, 0, 0, w, h)
        
    
    def draw_mappings(self, dc, gc):
        upper_anchors = self.cyl_upper.get_anchors()
        lower_anchors = self.cyl_lower.get_anchors()
        
        # match them
        anchors = []
        for ancU in self.cyl_upper.get_anchors():
            for ancL in self.cyl_lower.get_anchors():
                if ancU[0] == ancL[0]:
                    anchors.append((ancU[1], ancL[1]))
                    break
        
        # draw lines
        back = gc.line_style
        gc.line_style = gtk.gdk.LINE_ON_OFF_DASH
        for pair in anchors:
            dc.draw_line(gc,
                         self.cyl_upper_drawn_at[0] + pair[0], #x1
                         self.cyl_upper_drawn_at[1] + self.height, #y1
                         self.cyl_lower_drawn_at[0] + pair[1], #x2
                         self.cyl_lower_drawn_at[1]) #y2
        gc.line_style = back
    



class UnselectableSubcylinder(Subcylinder):
    
    def __init__(self, 
                 popup_message=None, 
                 cyl_gen=None, 
                 highlightedPattern=None, 
                 width=0):
        Subcylinder.__init__(self, 
                             cyl_gen, 
                             None, 
                             highlightedPattern, 
                             False, 
                             width)
        
        self.message = popup_message
        
    
    def click(self, (x, y), leftClick): # local coordinates
        if x < self.get_width():
            if leftClick:
                # left click handling
                if self.message != None:
                    dlg = gtk.MessageDialog(None, 0, 
                                            gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, 
                                            self.message)
                    dlg.show_all()
                    rc = dlg.run()
                    dlg.destroy()
            else:
                # right click handling
                pass
        return None
    






class CylinderGenerator:
    
    def __init__(self, pixmap_path, end_color):
        self.pixbuf = gtk.gdk.pixbuf_new_from_file(pixmap_path)
        self.end_color = end_color
        
    
    def get_cyl(self, dc, width, height):
        y_radius = height / 2
        (ellipse_table, x_radius) = get_ellipse_table(y_radius)
        
        pixmap_width = width + x_radius
        scaled_pixbuf = self.pixbuf.scale_simple(pixmap_width, height, gtk.gdk.INTERP_BILINEAR)
        
        gc = dc.new_gc()
        colormap = dc.get_colormap()
        gc.foreground = colormap.alloc_color(0, 0, 0)
        
        pixmap = gtk.gdk.Pixmap(dc, pixmap_width, height)
        pixmap.draw_pixbuf(gc, scaled_pixbuf, 0, 0, 0, 0, -1, -1)
        
        for y in range(0, height):
            x_offset = ellipse_table[y]
            for x in range(0, x_offset):
                pixmap.draw_point(gc, x, y)
            for x in range(width + x_offset, pixmap_width):
                pixmap.draw_point(gc, x, y)
        
                
        # get pixbuf from pixmap in order to add alpha channel
        pixbuf = scaled_pixbuf.get_from_drawable(pixmap, pixmap.get_colormap(), 0, 0, 0, 0, pixmap_width, height)
        
        # add alpha channel
        pixbuf = pixbuf.add_alpha(True, chr(0), chr(0), chr(0))
        
        return pixbuf
    
    def __get_pattern0(self, dc, width, height):
        y_radius = height / 2
        (ellipse_table, x_radius) = get_ellipse_table(y_radius)
        
        pixmap_width = width + x_radius
        scaled_pixbuf = self.pixbuf.scale_simple(pixmap_width, height, gtk.gdk.INTERP_BILINEAR)
        
        gc = dc.new_gc()
        colormap = dc.get_colormap()
        gc.foreground = colormap.alloc_color(0, 0, 0)
        
        pixmap = gtk.gdk.Pixmap(dc, pixmap_width, height)
        pixmap.draw_rectangle(gc, True, 0, 0, pixmap_width, height)
        
        # get pixbuf from pixmap in order to add alpha channel
        pixbuf = scaled_pixbuf.get_from_drawable(pixmap, pixmap.get_colormap(), 0, 0, 0, 0, pixmap_width, height)
        
        # add alpha channel
        pixbuf = pixbuf.add_alpha(True, chr(0), chr(0), chr(0))
        
        return pixbuf
    
    def __get_pattern1(self, dc, width, height):
        y_radius = height / 2
        (ellipse_table, x_radius) = get_ellipse_table(y_radius)
        
        pixmap_width = width + x_radius
        scaled_pixbuf = self.pixbuf.scale_simple(pixmap_width, height, gtk.gdk.INTERP_BILINEAR)
        
        gc = dc.new_gc()
        colormap = dc.get_colormap()
        gc.foreground = colormap.alloc_color(0, 0, 0)
        
        pixmap = gtk.gdk.Pixmap(dc, pixmap_width, height)
        pixmap.draw_rectangle(gc, True, 0, 0, pixmap_width, height)
        
        gc.foreground = gtk.gdk.colormap_get_system().alloc_color("white", 1,1)
        for y in range(0, height, 2):
            x_offset = ellipse_table[y]
            for x in range(x_offset, x_offset + width):
                pixmap.draw_point(gc, x, y)
        
        # get pixbuf from pixmap in order to add alpha channel
        pixbuf = scaled_pixbuf.get_from_drawable(pixmap, pixmap.get_colormap(), 0, 0, 0, 0, pixmap_width, height)
        
        # add alpha channel
        pixbuf = pixbuf.add_alpha(True, chr(0), chr(0), chr(0))
        
        return pixbuf
    
    def __get_pattern2(self, dc, width, height):
        y_radius = height / 2
        (ellipse_table, x_radius) = get_ellipse_table(y_radius)
        
        pixmap_width = width + x_radius
        scaled_pixbuf = self.pixbuf.scale_simple(pixmap_width, height, gtk.gdk.INTERP_BILINEAR)
        
        gc = dc.new_gc()
        colormap = dc.get_colormap()
        gc.foreground = colormap.alloc_color(0, 0, 0)
        
        pixmap = gtk.gdk.Pixmap(dc, pixmap_width, height)
        pixmap.draw_rectangle(gc, True, 0, 0, pixmap_width, height)
        
        gc.foreground = gtk.gdk.colormap_get_system().alloc_color("white", 1,1)
        for y in range(0, height, 5):
            x_offset = ellipse_table[y]
            for x in range(x_offset, x_offset + width):
                pixmap.draw_point(gc, x, y)
        
        # get pixbuf from pixmap in order to add alpha channel
        pixbuf = scaled_pixbuf.get_from_drawable(pixmap, pixmap.get_colormap(), 0, 0, 0, 0, pixmap_width, height)
        
        # add alpha channel
        pixbuf = pixbuf.add_alpha(True, chr(0), chr(0), chr(0))
        
        return pixbuf
    
    def __get_pattern3(self, dc, width, height):
        gc = dc.new_gc()
        colormap = dc.get_colormap()
        gc.foreground = colormap.alloc_color(0, 0, 0)
        
        cyl_pixbuf = self.get_cyl(dc, width, height)
        
        pixmap_width = cyl_pixbuf.get_width()
        pixmap = gtk.gdk.Pixmap(dc, pixmap_width, height)
        pixmap.draw_rectangle(gc, True, 0, 0, pixmap_width, height)
        pixmap.draw_pixbuf(gc, cyl_pixbuf, 0, 0, 0, 0, -1, -1)
        
        for y in range(0, height, 6):
            for x in range(0, pixmap_width):
                pixmap.draw_point(gc, x, y)
                pixmap.draw_point(gc, x, y+1)
                pixmap.draw_point(gc, x, y+2)
        
        # get pixbuf from pixmap in order to add alpha channel
        pixbuf = cyl_pixbuf.get_from_drawable(pixmap, pixmap.get_colormap(), 0, 0, 0, 0, pixmap_width, height)
        
        # add alpha channel
        pixbuf = pixbuf.add_alpha(True, chr(0), chr(0), chr(0))
        
        return pixbuf
    
    def __get_pattern4(self, dc, width, height):
        y_radius = height / 2
        (ellipse_table, x_radius) = get_ellipse_table(y_radius)
        
        pixmap_width = width + x_radius
        scaled_pixbuf = self.pixbuf.scale_simple(pixmap_width, height, gtk.gdk.INTERP_BILINEAR)
        
        gc = dc.new_gc()
        colormap = dc.get_colormap()
        gc.foreground = colormap.alloc_color(0, 0, 0)
        
        pixmap = gtk.gdk.Pixmap(dc, pixmap_width, height)
        pixmap.draw_rectangle(gc, True, 0, 0, pixmap_width, height)
        
        gc.foreground = gtk.gdk.colormap_get_system().alloc_color("white", 1,1)
        for y in range(0, height, 15):
            x_offset = ellipse_table[y]
            for x in range(x_offset, x_offset + width):
                pixmap.draw_point(gc, x, y)
        
        # get pixbuf from pixmap in order to add alpha channel
        pixbuf = scaled_pixbuf.get_from_drawable(pixmap, pixmap.get_colormap(), 0, 0, 0, 0, pixmap_width, height)
        
        # add alpha channel
        pixbuf = pixbuf.add_alpha(True, chr(0), chr(0), chr(0))
        
        return pixbuf
    
    def get_pattern(self, pattern_id, dc, width, height):
        if pattern_id == 0:
            return self.__get_pattern0(dc, width, height)
        elif pattern_id == 1:
            return self.__get_pattern1(dc, width, height)
        elif pattern_id == 2:
            return self.__get_pattern2(dc, width, height)
        elif pattern_id == 3:
            return self.__get_pattern3(dc, width, height)
        elif pattern_id == 4:
            return self.__get_pattern4(dc, width, height)
        else:
            raise 'INVALID PATTERN ID'
    
    def draw_end(self, dc, gc, x, y, height):
        color_backup = gc.foreground
        gc.foreground = self.end_color
        
        ellipse_table, x_radius = get_ellipse_table(height / 2)
        
        #dc.draw_arc(gc, True, x - x_radius, y, 2 * x_radius, height, 5760, 11520)
        #dc.draw_arc(gc, True, x - x_radius, y, 2 * x_radius, height, 17280, 11520)
        
        # draw ellipse by hand
        for Y in range(0, height):
            x_offset = ellipse_table[Y]
            for X in range(x - x_offset, x + x_offset):
                dc.draw_point(gc, X, y + Y)
        
        gc.foreground = color_backup
        
        
        
        
        
# returns (ellipse_table, x_radius)
ellipses_table = {}
def get_ellipse_table(y_radius):
    global ellipses_table
    
    if ellipses_table.has_key(y_radius):
        return ellipses_table[y_radius]
    
    x_radius = y_radius / 2
    
    ellipse_table = {}
    split_point = y_radius - 0.5
    for y in range(y_radius, 0, -1):
        yy = y * y
        val1 = operator.div(yy, float(y_radius * y_radius))
        val2 = operator.sub(1.0, val1)
        x_squared = (float(x_radius * x_radius)) * val2
        x_offset_float = math.sqrt(operator.abs(x_squared))
        x_offset = int(math.ceil(x_offset_float))
        y_offset = operator.abs(y - y_radius)
        ellipse_table[y_offset] = x_offset
        
        
        ellipse_table[int(2*split_point) - y_offset] = x_offset
    
    pair = (ellipse_table, x_radius)
    ellipses_table[y_radius] = pair
    
    return pair