This file is indexed.

/usr/share/avant-window-navigator/applets/bandwidth-monitor/awn-bwm.py is in awn-applet-bandwidth-monitor 0.4.1~bzr1507-0ubuntu7.

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

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
#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
bandwidth-monitor - Network bandwidth monitor.
Copyright (c) 2006-2010 Kyle L. Huff (awn-bwm@curetheitch.com)
url: <http://www.curetheitch.com/projects/awn-bwm/>
Email: awn-bwm@curetheitch.com

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program. If not, see <http://www.gnu.org/licenses/gpl.txt>.
'''

import os
import re
import sys
from time import time

import gtk

import awn
from awn.extras import _, awnlib, __version__

import gobject
import cairo
awn.check_dependencies(globals(), "gtop")

import bwmprefs
import interfaces_dialog

APPLET_NAME = _('Bandwidth Monitor')
APPLET_VERSION = '0.3.9.4'
APPLET_COPYRIGHT = '© 2006-2009 CURE|THE|ITCH'
APPLET_AUTHORS = ['Kyle L. Huff <awn-bwm@curetheitch.com>']
APPLET_DESCRIPTION = _('Network Bandwidth monitor')
APPLET_WEBSITE = 'http://www.curetheitch.com/projects/awn-bwm/'
ICON_DIR = os.path.join(os.path.dirname(__file__), 'images')
APPLET_ICON = os.path.join(ICON_DIR, 'icon.png')
UI_FILE = os.path.join(os.path.dirname(__file__), 'bandwidth-monitor.ui')


class Netstat:

    def __init__(self, parent, unit):
        self.parent = parent
        self.ifaces = {}
        self.ifaces[_('Sum Interface')] = {'collection_time': time(),
            'status': 'V',
            'prbytes': 0,
            'ptbytes': 0,
            'index': 1,
            'address': _('n/a'),
            'subnet': _('n/a'),
            'rx_history': [0, 0],
            'tx_history': [0, 0],
            'rx_bytes': 0,
            'tx_bytes': 0,
            'rx_sum': 0,
            'tx_sum': 0,
            'rxtx_sum': 0,
            'rabytes': 0,
            'tabytes': 0,
            'sum_include': False,
            'multi_include': False,
            'upload_color': '#ff0000',
            'download_color': '#ffff00'}
        self.ifaces[_('Multi Interface')] = {'collection_time': time(),
            'status': 'V',
            'prbytes': 0,
            'ptbytes': 0,
            'index': 1,
            'address': _('n/a'),
            'subnet': _('n/a'),
            'rx_history': [0, 0],
            'tx_history': [0, 0],
            'rx_bytes': 0,
            'tx_bytes': 0,
            'rx_sum': 0,
            'tx_sum': 0,
            'rxtx_sum': 0,
            'rabytes': 0,
            'tabytes': 0,
            'sum_include': False,
            'multi_include': False}
        self.regenerate = False
        self.update_net_stats()
        gobject.timeout_add(800, self.update_net_stats)

    def timeout_add_seconds(self, seconds, callback):
        if hasattr(gobject, 'timeout_add_seconds'):
            return gobject.timeout_add_seconds(seconds, callback)
        else:
            return gobject.timeout_add(seconds * 1000, callback)

    def get_wireless_devices(self):
        wireless_devices = {}
        if os.access('/proc/net/wireless', os.R_OK):
            wireless = open('/proc/net/wireless', 'r').read()
            match = re.findall(r'(\w+): (\d+)\s+(\d+).*?([^\w]\d+).*?([^\w]\d+)',
                wireless, re.DOTALL)
            for wcard in match:
                wireless_devices[wcard[0]] = \
                    {'status': wcard[1],
                    'quality': wcard[2],
                    'strength': wcard[3],
                    'noise': wcard[4]}
        return wireless_devices

    def update_net_stats(self):
        netlist = gtop.netlist()
        devices = {}

        wireless_devices = self.get_wireless_devices()

        # Reset the Sum Interface records to zero
        self.ifaces[_('Sum Interface')]['rx_sum'] = 0
        self.ifaces[_('Sum Interface')]['tx_sum'] = 0
        self.ifaces[_('Sum Interface')]['rx_bytes'] = 0
        self.ifaces[_('Sum Interface')]['tx_bytes'] = 0
        sum_rx_history = 0.0
        sum_tx_history = 0.0
        # Reset the Multi Interface records to zero
        self.ifaces[_('Multi Interface')]['rx_sum'] = 0
        self.ifaces[_('Multi Interface')]['tx_sum'] = 0
        self.ifaces[_('Multi Interface')]['rx_bytes'] = 0
        self.ifaces[_('Multi Interface')]['tx_bytes'] = 0
        multi_rx_history = 0.0
        multi_tx_history = 0.0
        #TODO: Change this variable name - it is not an offset,
        #   that is a poor name. this variable controls the size
        #   of the list that contains the throughput data
        offset = 800  # self.parent.meter_scale
        if netlist:
            for device in netlist:
                device_lines = gtop.netload(device).dict()
                iface = device
                rx_bytes = device_lines['bytes_in']
                tx_bytes = device_lines['bytes_out']
                address = device_lines['address']
                subnet = device_lines['subnet']
                if not iface in self.ifaces:
                    ddps = 'device_display_parameters'
                    prefs = self.parent.applet.settings[ddps]
                    sum_include = True
                    multi_include = True
                    for device_pref in prefs:
                        dpv = device_pref.split('|')
                        if dpv[0] == iface:
                            sum_include = str(dpv[1])[0].upper() == 'T'
                            multi_include = str(dpv[2])[0].upper() == 'T'
                    self.ifaces[iface] = {'collection_time': time(),
                        'status': device_lines['if_flags'],
                        'prbytes': rx_bytes,
                        'ptbytes': tx_bytes,
                        'index': 1,
                        'address': address,
                        'subnet': subnet,
                        'rx_history': [0, 0],
                        'tx_history': [0, 0],
                        'ss_history': [],
                        'sq_history': [],
                        'sum_include': sum_include,
                        'multi_include': multi_include,
                        'upload_color': \
                            self.parent.prefs.get_color(iface, 'upload'),
                        'download_color': \
                            self.parent.prefs.get_color(iface, 'download'),
                        'graph_type': 'bar'}
                collection = (
                    time() - self.ifaces[iface]['collection_time'])
                rbytes = ((rx_bytes - self.ifaces[iface]['prbytes'])
                    * self.parent.unit) / collection
                tbytes = ((tx_bytes - self.ifaces[iface]['ptbytes'])
                    * self.parent.unit) / collection
                rabytes = (rx_bytes - self.ifaces[iface]['prbytes']) \
                    / collection
                tabytes = (tx_bytes - self.ifaces[iface]['ptbytes']) \
                    / collection
                self.ifaces[iface]['rabytes'] = rabytes
                self.ifaces[iface]['tabytes'] = tabytes
                self.ifaces[iface]['address'] = address
                self.ifaces[iface]['subnet'] = subnet
                rxtx_sum = rx_bytes + tx_bytes
                if self.ifaces[iface]['sum_include']:
                    self.ifaces[_('Sum Interface')]['rx_sum'] += rx_bytes
                    self.ifaces[_('Sum Interface')]['tx_sum'] += tx_bytes
                    self.ifaces[_('Sum Interface')]['rx_bytes'] += rbytes
                    self.ifaces[_('Sum Interface')]['tx_bytes'] += tbytes
                    sum_rx_history += rabytes
                    sum_tx_history += tabytes
                if self.ifaces[iface]['multi_include']:
                    self.ifaces[_('Multi Interface')]['rx_sum'] += rx_bytes
                    self.ifaces[_('Multi Interface')]['tx_sum'] += tx_bytes
                    self.ifaces[_('Multi Interface')]['rx_bytes'] += rbytes
                    self.ifaces[_('Multi Interface')]['tx_bytes'] += tbytes
                    multi_rx_history += rabytes
                    multi_tx_history += tabytes
                self.ifaces[iface]['rx_bytes'] = rbytes
                self.ifaces[iface]['tx_bytes'] = tbytes
                self.ifaces[iface]['prbytes'] = rx_bytes
                self.ifaces[iface]['ptbytes'] = tx_bytes
                self.ifaces[iface]['rx_sum'] = rx_bytes
                self.ifaces[iface]['tx_sum'] = tx_bytes
                self.ifaces[iface]['rxtx_sum'] = rxtx_sum
                self.ifaces[iface]['status'] = device_lines['if_flags']
                self.ifaces[iface]['collection_time'] = time()
                if iface in wireless_devices:
                    ''' this is a wireless card '''
                    self.ifaces[iface]['signal'] = \
                        {'strength': wireless_devices[iface]['strength'],
                        'quality': wireless_devices[iface]['quality'],
                        'noise': wireless_devices[iface]['noise']}
                    self.ifaces[iface]['ss_history'] = \
                        self.ifaces[iface]['ss_history'][0 - offset:]
                    self.ifaces[iface]['ss_history'].append(
                        self.ifaces[iface]['signal']['strength'])
                    self.ifaces[iface]['sq_history'] = \
                        self.ifaces[iface]['sq_history'][0 - offset:]
                    self.ifaces[iface]['sq_history'].append(
                        self.ifaces[iface]['signal']['quality'])
                self.ifaces[iface]['rx_history'] = \
                    self.ifaces[iface]['rx_history'][0 - offset:]
                self.ifaces[iface]['rx_history'].append(
                    self.ifaces[iface]['rabytes'])
                self.ifaces[iface]['tx_history'] = \
                    self.ifaces[iface]['tx_history'][0 - offset:]
                self.ifaces[iface]['tx_history'].append(
                    self.ifaces[iface]['tabytes'])
                devices[iface] = 1
        self.ifaces[_('Sum Interface')]['rx_history'] = \
            self.ifaces[_('Sum Interface')]['rx_history'][0 - offset:]
        self.ifaces[_('Sum Interface')]['rx_history'].append(sum_rx_history)
        self.ifaces[_('Sum Interface')]['tx_history'] = \
            self.ifaces[_('Sum Interface')]['tx_history'][0 - offset:]
        self.ifaces[_('Sum Interface')]['tx_history'].append(sum_tx_history)
        for dev in self.ifaces.keys():
            if not dev in devices.keys() and not _('Sum Interface') in dev \
            and not _('Multi Interface') in dev:
                ''' The device does not exist, remove it.
                    del dictionary[key] is faster than dictionary.pop(key) '''
                del self.ifaces[dev]
                self.regenerate = True
        return True


class AppletBandwidthMonitor:

    def __init__(self, applet):
        self.applet = applet
        self.UI_FILE = UI_FILE
        applet.tooltip.set(_('Bandwidth Monitor'))
        self.meter_scale = 24
        icon = gtk.gdk.pixbuf_new_from_xpm_data(['1 1 1 1',
            '       c #000',
            ' '])
        self.max_tx_lbl_x = 0
        self.max_rx_lbl_x = 0

        height = self.applet.get_size()

        if height != icon.get_height():
            icon = icon.scale_simple(1, \
                1, gtk.gdk.INTERP_BILINEAR)
            self.applet.set_icon_pixbuf(icon)
        self.interface_dialog = interfaces_dialog.InterfaceDeatil(self)
        defaults = {'unit': 8,
            'interface': '',
            'draw_threshold': 0.0,
            'device_display_parameters': [],
            'background': True,
            'background_color': '#000000|0.5',
            'border': False,
            'border_color': '#000000|1.0',
            'label_control': 2,
            'display_graph': True,
            'graph_zero': 0,
            'wireless_signal_graph_type': [],
            'applet_font_size': 0,
            'applet_width': 3.0,
            'applet_size_override': 0,
            'applet_offset': 0,
            'applet_traffic_scale': 12,
            'applet_signal_scale': 12,
            'dialog_traffic_scale': 12,
            'dialog_signal_scale': 8}
        for key, value in defaults.items():
            if not key in self.applet.settings:
                self.applet.settings[key] = value
        self.iface = self.applet.settings['interface']
        self.unit = self.applet.settings['unit']
        self.label_control = self.applet.settings['label_control']
        self.background = self.applet.settings['background']
        self.background_color = self.applet.settings['background_color']
        self.border = self.applet.settings['border']
        self.border_color = self.applet.settings['border_color']
        self.graph_zero = self.applet.settings['graph_zero']
        self.display_graph = self.applet.settings['display_graph']
        self.size_override = self.applet.settings['applet_size_override']
        self.original_size = self.applet.props.size
        self.original_applet_offset = self.applet.props.offset
        self.applet.props.offset = self.original_applet_offset + \
            self.applet.settings['applet_offset']
        if not self.unit:
            self.change_unit(defaults['unit'])
        if self.applet.settings['draw_threshold'] == 0.0:
            self.ratio = 1
        else:
            ratio = self.applet.settings['draw_threshold']
            self.ratio = ratio * 1024 if self.unit == 1 else ratio * 1024 / 8
        self.prefs = bwmprefs.Preferences(self.applet, self)
        self.netstats = Netstat(self, self.unit)
        applet.tooltip.connect_becomes_visible(self.enter_notify)
        self.sum_ot = awn.OverlayText()
        self.sum_ot.props.gravity = gtk.gdk.GRAVITY_CENTER
        applet.add_overlay(self.sum_ot)
        if self.applet.settings['applet_font_size']:
            self.default_font_size = self.applet.settings['applet_font_size']
        self.sum_ot.props.apply_effects = True
        self.sum_ot.props.text = _('Scanning')
        self.sum_ot.props.text += "\n " + _('Devices')
        self.setup_context_menu()
        self.prefs.setup()
        self.interface_dialog.setup_interface_dialogs()
        ''' connect the left-click dialog button 'Change Unit' to
            the call_change_unit function, which does not call
            self.change_unit directly, instead it toggles the 'active'
            property of the checkbutton so everything that needs to
            happen, happens. '''
        gobject.timeout_add(100, self.first_paint)
        gobject.timeout_add(800, self.subsequent_paint)

    def change_draw_ratio(self, widget):
        ratio = widget.get_value()
        self.ratio = ratio * 1024 if self.unit == 1 else ratio * 1024 / 8
        self.applet.settings['draw_threshold'] = ratio

    def call_change_unit(self, *args):
        active = True if self.unit == 8 else False
        self.prefs.uomCheckbutton.set_property('active', active)

    def change_unit(self, widget=None, scaleThresholdSBtn=None, label=None):
        self.unit = 8 if self.unit == 1 else 1
        # normalize and update the label, and normalize the spinbutton
        if label:
            if self.unit == 1:
                label.set_text(_('KBps'))
                scaleThresholdSBtn.set_value(
                    self.applet.settings['draw_threshold'] / 8)
            else:
                label.set_text(_('Kbps'))
                scaleThresholdSBtn.set_value(
                    self.applet.settings['draw_threshold'] * 8)
        self.applet.settings['unit'] = self.unit

    def generate_iface_submenu(self):
        if hasattr(self, 'iface_submenu'):
            self.iface_submenu.foreach(lambda x: self.iface_submenu.remove(x))
            iface_submenu = self.iface_submenu
        else:
            iface_submenu = gtk.Menu()
        iface_item1 = None
        devices = self.netstats.ifaces.keys()
        devices.sort()
        for device in devices:
            if not iface_item1:
                iface_item1 = gtk.RadioMenuItem(label=device)
                iface_item = iface_item1
            else:
                iface_item = gtk.RadioMenuItem(iface_item1, label=device)
            iface_item.connect('toggled', self.change_iface, device)
            if device == self.iface:
                iface_item.set_active(True)
            iface_submenu.add(iface_item)
        iface_submenu.show_all()
        return iface_submenu

    def setup_context_menu(self):
        """Add options to the context menu.

        """
        menu = self.applet.dialog.menu
        menu_index = len(menu) - 1

        self.context_menu_unit = gtk.CheckMenuItem(label=_('Use KBps instead of Kbps'))
        if self.unit == 1:
            self.context_menu_unit.set_active(True)

        def menu_opened(widget):
            self.context_menu_unit.disconnect(self.context_menu_unit_handler)
            self.context_menu_unit.set_active(self.unit == 1)
            self.context_menu_unit_handler = self.context_menu_unit.connect('toggled', self.call_change_unit)
        menu.connect("show", menu_opened)
        self.context_menu_unit_handler = self.context_menu_unit.connect('toggled', self.call_change_unit)
        menu.insert(self.context_menu_unit, menu_index)

        iface_submenu = self.generate_iface_submenu()
        self.iface_submenu = iface_submenu
        map_item = gtk.MenuItem(_("Interfaces"))
        map_item.set_submenu(iface_submenu)
        menu.insert(map_item, menu_index + 1)
        menu.insert(gtk.SeparatorMenuItem(), menu_index + 2)

    def change_iface(self, widget, iface):
        self.iface = iface
        self.applet.settings['interface'] = iface

    def enter_notify(self):
        if not self.applet.dialog.is_visible('main'):
            if not self.iface in self.netstats.ifaces:
                self.applet.set_tooltip_text(
                    _('Please select a valid Network Device'))
            else:
                self.applet.set_tooltip_text(_('''\
Total Sent: %s - Total Received: %s (All Interfaces)''') % (
                        self.readable_size(
                            self.netstats.ifaces[self.iface]['tx_sum']
                            * self.unit, self.unit),
                        self.readable_size(
                            self.netstats.ifaces[self.iface]['rx_sum']
                            * self.unit, self.unit)))

    def first_paint(self):
        self.repaint()
        return False

    def subsequent_paint(self):
        self.repaint()
        return True

    def draw_wireless(self, ct, width, height, iface, scale,
          graph_source='applet'):
        try:
            force = ((width / (width / scale))) - scale
        except:
            force = 0
        graph_type = self.netstats.ifaces[iface]['graph_type'] if \
            self.netstats.ifaces[iface].has_key('graph_type') else 'bar'
        x_pos = 0
        _ss_hist = [1]
        _total_hist = [1]
        scale += force
        inverse_scale = int(scale) * -1
        inverse_scale += -2
        if iface in self.netstats.ifaces \
        and 'ss_history' in self.netstats.ifaces[iface] \
        and len(self.netstats.ifaces[iface]['ss_history']):
            _ss_hist = self.netstats.ifaces[iface]['ss_history'][inverse_scale:]
            _total_hist.extend(_ss_hist)
            _total_hist.sort()
            max_ss = _total_hist[-1]
            ct.move_to(0, 0)
            for value in self.netstats.ifaces[iface]['ss_history'][inverse_scale:]:
                if int(value) == 0:
                    value = 200
                else:
                    value = abs(int(value)) * 80 / 100
                x_pos_end = (x_pos - width) + 2 if self.border \
                and x_pos > width else 0
                if graph_source != 'applet':
                    placement = value + 30
                    opacity = 0.10
                else:
                    placement = value - height / 3 - 4
                    opacity = 0.40 if self.background else 0.18
                    #opacity = 0.10
                if value <= 40:
                    ct.set_source_rgba(0, 1, 0, opacity)
                elif value <= 60:
                    ct.set_source_rgba(1, 1, 0, opacity)
                elif value <= 90:
                    ct.set_source_rgba(1, 0.647058823529, 0, opacity)
                else:
                    ct.set_source_rgba(1, 0, 0, opacity)

                ct.line_to(x_pos - x_pos_end, placement)
                ct.line_to(x_pos - x_pos_end, height + 1)
                if graph_type == 'area_bar':
                    # The bar chart is really an area graph, but with colored bars
                    ct.line_to((x_pos - width / scale), height)
                    ct.move_to((x_pos - width / scale), placement)
                    ct.close_path()
                    ct.fill()
                    later = True
                if graph_type == 'bar':
                    ct.line_to((x_pos - width / (scale - 1)) + 1, height)
                    ct.move_to(x_pos, placement)
                    ct.close_path()
                    ct.fill()
                    later = False
                    ct.move_to(x_pos + 1, placement)
                    x_pos += (width / (scale - 1))
                elif graph_type == 'fan':
                    # The fan chart is like a fan
                    ct.line_to(0, height)
                    ct.move_to(x_pos, placement)
                    ct.close_path()
                    ct.fill()
                    x_pos += width / (scale - 1)
                    ct.move_to(x_pos, placement)
                    later = False
                elif graph_type == 'fan_bar':
                    # The fan_bar chart is like fan, but with connected bars
                    ct.line_to(0, height)
                    ct.move_to(x_pos, placement)
                    ct.close_path()
                    ct.fill()
                    later = True
                else:
                    # otherwise draw AREA Chart
                    ct.line_to(0, height)
                    later = True
                if later:
                    ct.move_to(x_pos, placement)
                    x_pos += (width / scale)
            ct.close_path()
            ct.fill()

    def draw_meter(self, ct, width, height, iface, multi=False, line_width=2,
            ratio=None, scale=4, border=None, graph_source='applet'):
        try:
            force = ((width / (width / scale))) - scale
        except:
            force = 0
        scale += force
        border = self.border if not border else border
        ratio = self.ratio if not ratio else ratio
        inverse_scale = int(scale) * -1
        inverse_scale += -1
        ct.set_line_width(line_width)
        ''' Create temporary lists to store the values of the transmit
            and receive history, which will be then placed into the
            _total_hist and sorted by size to set the proper
            scale/ratio for the line heights '''
        _rx_hist = [1]
        _tx_hist = [1]
        _total_hist = [1]
        if not multi:
            if iface in self.netstats.ifaces \
            and len(self.netstats.ifaces[iface]['rx_history']):
                _rx_hist = self.netstats.ifaces[iface]['rx_history'][inverse_scale:]
            if iface in self.netstats.ifaces \
            and len(self.netstats.ifaces[iface]['tx_history']):
                _tx_hist = self.netstats.ifaces[iface]['tx_history'][inverse_scale:]
            _total_hist.extend(_rx_hist)
            _total_hist.extend(_tx_hist)
        else:
            for device in self.netstats.ifaces:
                if self.netstats.ifaces[device]['multi_include']:
                    _total_hist.extend(
                        self.netstats.ifaces[device]['rx_history'][inverse_scale:])
                if self.netstats.ifaces[iface]['multi_include']:
                    _total_hist.extend(
                        self.netstats.ifaces[device]['tx_history'][inverse_scale:])
        _total_hist.sort()
        ''' ratio variable controls the minimum threshold for data -
            i.e. 32000 would not draw graphs for data transfers below
            3200 bytes - the initial value of ratio if set to the link
            speed will prevent the graph from scaling. If using the
            Multi Interface, the ratio will adjust based on the
            highest throughput metric. '''
        max_val = _total_hist[-1]
        ratio = max_val / 28 if max_val > self.ratio else self.ratio
        # Change the color of the upload line to configured/default
        if iface:
            color = gtk.gdk.color_parse(
                self.netstats.ifaces[iface]['upload_color'])
            ct.set_source_rgba(color.red / 65535.0,
                color.green / 65535.0,
                color.blue / 65535.0, 1.0)
        else:
            ct.set_source_rgba(0.1, 0.1, 0.1, 0.5)
        # Set the initial position
        x_pos = 2 if border else 1
        # If a transmit history exists, draw it
        if iface in self.netstats.ifaces \
        and len(self.netstats.ifaces[iface]['tx_history']):
            _temp_hist = []
            _temp_hist.extend(self.netstats.ifaces[iface]['tx_history'][inverse_scale:])
            _temp_hist.sort()
            max_tx = _temp_hist[-1]
            for value in self.netstats.ifaces[iface]['tx_history'][inverse_scale:]:
                x_pos_end = (x_pos - width) + 2 if border \
                and x_pos > width else 0
                placement = self.chart_coords(value,
                    ratio,
                    height,
                    border,
                    graph_source)
                ct.line_to(x_pos - x_pos_end, placement)
                x_offset, y_offset = 0, 0
                if graph_source == 'dialog':
                    old_x, old_y = ct.get_current_point()
                    if value == max_tx and max_tx > 1 and not old_x == 0:
                        old_rgba = ct.get_source().get_rgba()
                        ct.close_path()
                        ct.stroke()
                        ct.set_line_width(1)
                        ct.set_source_rgba(1, 1, 1)
                        max_placement = self.chart_coords(max_tx,
                            ratio,
                            height,
                            border,
                            graph_source)
                        self.max_tx_lbl_x = x_pos - x_pos_end - 60
                        if x_pos - x_pos_end - 60 < 1:
                            x_offset = 0 - (x_pos - x_pos_end - 60) + 5
                        ct.move_to(x_pos - x_pos_end - 60 + x_offset, max_placement - 7)
                        ct.show_text(self.readable_speed_ps(max_tx * self.unit, self.unit))
                        ct.fill()
                        ct.set_source_rgba(old_rgba[0], old_rgba[1], old_rgba[2])
                        ct.move_to(x_pos - x_pos_end - 60 + x_offset, max_placement - 4)
                        ct.line_to(x_pos - x_pos_end - 10 + x_offset, max_placement - 4)
                        ct.move_to(x_pos - x_pos_end - 10 + x_offset, max_placement - 4)
                        ct.line_to(x_pos - x_pos_end, max_placement)
                        ct.close_path()
                        ct.stroke()
                        ct.set_line_width(line_width)
                        ct.move_to(old_x, old_y)
                    x_offset = 0
                ct.move_to(x_pos, placement)
                x_pos += width / (scale - x_offset)
            ct.close_path()
            ct.stroke()
        # Change the color of the download line to configured/default
        if iface:
            color = gtk.gdk.color_parse(
                self.netstats.ifaces[iface]['download_color'])
            ct.set_source_rgba(color.red / 65535.0,
                color.green / 65535.0,
                color.blue / 65535.0, 1.0)
        else:
            ct.set_source_rgba(0.1, 0.1, 0.1, 0.5)
        # Reset the position
        x_pos = 2 if border else 1
        # If a receive history exists, draw it
        if iface in self.netstats.ifaces \
        and len(self.netstats.ifaces[iface]['rx_history']):
            _temp_hist = []
            _temp_hist.extend(self.netstats.ifaces[iface]['rx_history'][inverse_scale:])
            _temp_hist.sort()
            max_rx = _temp_hist[-1]
            for value in self.netstats.ifaces[iface]['rx_history'][inverse_scale:]:
                x_pos_end = (x_pos - width) + 2 if border \
                and x_pos > width else 0
                placement = self.chart_coords(value,
                    ratio,
                    height,
                    border,
                    graph_source)
                if placement < height - 2:
                    placement -= 2
                ct.line_to(x_pos - x_pos_end, placement)
                x_offset, y_offset = 0, 0
                if graph_source == 'dialog':
                    old_x, old_y = ct.get_current_point()
                    if value == max_rx and max_rx > 1 and not old_x == 0:
                        old_rgba = ct.get_source().get_rgba()
                        ct.close_path()
                        ct.stroke()
                        ct.set_line_width(1)
                        ct.set_source_rgba(1, 1, 1)
                        max_placement = self.chart_coords(max_rx,
                            ratio,
                            height,
                            border,
                            graph_source)
                        rx_lbl_x = x_pos - x_pos_end - 60
                        rx_lbl_y = max_placement - 22
                        if rx_lbl_x - self.max_tx_lbl_x < 15 and rx_lbl_x - \
                            self.max_tx_lbl_x > -15:
                            if rx_lbl_y - self.chart_coords(max_tx, ratio,
                                  height, border, graph_source) < 20 \
                                  and rx_lbl_y - self.chart_coords(max_tx,
                                    ratio,
                                    height,
                                    border) > -20:
                                y_offset = 25
                        if x_pos - x_pos_end - 60 < 1:
                            x_offset = 0 - (x_pos - x_pos_end - 60) + 5
                        ct.move_to(x_pos - x_pos_end - 60 + x_offset,
                            max_placement - 22 - y_offset)
                        ct.show_text(self.readable_speed_ps(max_rx * self.unit,
                            self.unit))
                        ct.fill()
                        ct.set_source_rgba(old_rgba[0],
                            old_rgba[1],
                            old_rgba[2])
                        ct.move_to(x_pos - x_pos_end - 60 + x_offset,
                            max_placement - 19 - y_offset)
                        ct.line_to(x_pos - x_pos_end - 5 + x_offset,
                            max_placement - 19 - y_offset)
                        ct.move_to(x_pos - x_pos_end - 5 + x_offset,
                            max_placement - 19 - y_offset)
                        ct.line_to(x_pos - x_pos_end, max_placement)
                        ct.close_path()
                        ct.stroke()
                        ct.set_line_width(line_width)
                        ct.move_to(old_x, old_y)
                    x_offset = 0
                ct.move_to(x_pos, placement)
                x_pos += width / (scale - x_offset)
            ct.close_path()
            ct.stroke()

    def chart_coords(self, value, ratio=1, height=None, border=None,
            graph_source='applet'):
        height = self.applet.get_size() if not height else height
        ratio = 1 if ratio < 1 else int(ratio)
        pos = height / 58.0
        bottom = -1 if border else -1
        bottom = 0 + self.border if not self.graph_zero else bottom
        graph_zero = -0.5 if graph_source == 'dialog' else self.graph_zero
        return (height - pos \
            * (value / ratio)) + graph_zero - bottom

    def repaint(self):
        orientation = self.applet.get_pos_type()
        applet_size = self.applet.get_size()
        width = applet_size * self.applet.settings['applet_width']
        if self.size_override:
            self.applet.props.size = self.applet.props.size + self.size_override
            self.size_override = None
        if orientation in (gtk.POS_LEFT, gtk.POS_RIGHT):
            self.applet.get_effects().set_property('reflection_visible', False)
            cs = cairo.ImageSurface(cairo.FORMAT_ARGB32, applet_size + 2,
                int(width + 1))
        else:
            cs = cairo.ImageSurface(cairo.FORMAT_ARGB32, int(width) + 1,
                applet_size + 1)

        if self.applet.settings['applet_font_size']:
            self.default_font_size = self.applet.settings['applet_font_size']
        else:
            self.default_font_size = self.sum_ot.props.font_sizing
            self.sum_ot.props.font_sizing = self.default_font_size
        self.sum_ot.props.font_sizing = self.default_font_size
        ct = cairo.Context(cs)
        if orientation in (gtk.POS_LEFT, gtk.POS_RIGHT):
            if orientation == gtk.POS_RIGHT:
                rotate_matrix = cairo.Matrix(1, 0, 0, 1, 1, width + 1.5)
                cairo.Matrix.rotate(rotate_matrix, 4.71)
            else:
                rotate_matrix = cairo.Matrix(1, 0, 0, 1, applet_size + 1.5, 0)
                cairo.Matrix.rotate(rotate_matrix, -4.71)
            ct.transform(rotate_matrix)
        if self.applet.settings['applet_traffic_scale']:
            scale = int(self.applet.settings['applet_traffic_scale'] \
              * self.applet.settings['applet_width'])
        else:
            scale = int(12 * self.applet.settings['applet_width'])
        inverse_scale = scale * -1
        ct.set_source_surface(cs)
        ct.set_line_width(2)
        if self.background and self.display_graph:
            bgColor, alpha = \
                self.applet.settings['background_color'].split('|')
            bgColor = gtk.gdk.color_parse(bgColor)
            ct.set_source_rgba(bgColor.red / 65535.0,
                bgColor.green / 65535.0,
                bgColor.blue / 65535.0,
                float(alpha))
            awn.cairo_rounded_rect(ct,
                0, 0,
                width + 1,
                applet_size + 1,
                4, awn.ROUND_ALL)
            ct.fill()
        if self.iface == _('Multi Interface') and self.display_graph:
            tmp_history = [1]
            for iface in self.netstats.ifaces:
                if self.netstats.ifaces[iface]['multi_include']:
                    tmp_history.extend(
                        self.netstats.ifaces[iface]['rx_history'][inverse_scale:])
                    tmp_history.extend(
                        self.netstats.ifaces[iface]['tx_history'][inverse_scale:])
            tmp_history.sort()
            max_val = tmp_history[-1]
            self.ratio = max_val / 28 if max_val > self.ratio else 1
            for iface in self.netstats.ifaces:
                if self.netstats.ifaces[iface]['multi_include']:
                    self.draw_meter(ct, width, applet_size,
                        iface, True, scale=scale)
        else:
            if self.iface and self.iface in self.netstats.ifaces and self.display_graph:
                if 'signal' in self.netstats.ifaces[self.iface]:
                    if self.applet.settings['applet_signal_scale']:
                        wscale = int(self.applet.settings['applet_signal_scale'] * self.applet.settings['applet_width'])
                    else:
                        wscale = int(5 * self.applet.settings['applet_width'])
                    self.draw_wireless(ct,
                        width,
                        applet_size,
                        self.iface,
                        scale=wscale,
                        graph_source='applet')
                self.draw_meter(ct,
                    width,
                    applet_size,
                    self.iface,
                    scale=scale,
                    graph_source='applet')
        if self.iface in self.netstats.ifaces:
            if self.label_control:
                if self.label_control == 2:
                    self.sum_ot.props.text = \
                        self.readable_speed_ps(
                            self.netstats.ifaces[self.iface]['tx_bytes'],
                            self.unit) + '\n' + \
                        self.readable_speed_ps(
                            self.netstats.ifaces[self.iface]['rx_bytes'],
                            self.unit)
                else:
                    self.sum_ot.props.text = \
                        self.readable_speed_ps(
                            self.netstats.ifaces[self.iface]['rx_bytes'] \
                            + self.netstats.ifaces[self.iface]['tx_bytes'],
                            self.unit)
            else:
                    self.sum_ot.props.text = ''
            self.title_text = self.readable_speed_ps(
                self.netstats.ifaces[self.iface]['tx_bytes'], self.unit)
        else:
            self.sum_ot.props.text = _('No Device')
            self.title_text = _('Please select a valid device')
        if self.border and self.display_graph:
            line_width = 2
            ct.set_line_width(line_width)
            borderColor, alpha = \
                self.applet.settings['border_color'].split('|')
            borderColor = gtk.gdk.color_parse(borderColor)
            ct.set_source_rgba(borderColor.red / 65535.0,
                borderColor.green / 65535.0,
                borderColor.blue / 65535.0,
                float(alpha))
            awn.cairo_rounded_rect(ct,
                line_width / 2,
                line_width / 2,
                width - (line_width / 2),
               applet_size - (line_width / 2) + 0.5,
               4, awn.ROUND_ALL)
            ct.stroke()
        self.applet.set_icon_context(ct)
        if self.applet.dialog.is_visible('main'):
            self.interface_dialog.do_current()
        if self.applet.dialog.is_visible('main') \
          or hasattr(self.applet.dialog.menu.window, 'is_visible') \
          and self.applet.dialog.menu.window.is_visible():
            for iface in self.netstats.ifaces:
                if not 'in_list' in self.netstats.ifaces[iface] \
                  or self.netstats.regenerate == True:
                    self.netstats.regenerate = False
                    if hasattr(self.applet.dialog.menu.window, 'is_visible') \
                      and self.applet.dialog.menu.window.is_visible():
                        self.generate_iface_submenu()
                    self.interface_dialog.interfaceListArea.rebuild()
                    self.interface_dialog.interfaceListArea.refresh()
                    self.interface_dialog.interfaceOptionsArea.refresh()
                    return True
        return True

    #TODO: combine the following 2 methods
    def readable_speed_ps(self, speed=0, unit=1):
        ''' readable_speed_ps(speed) -> string
            speed is in bytes per second
            returns a readable version of the speed given '''
        units = [_('Bps'), _('KBps'), _('MBps'), _('GBps'), _('TBps')] if unit == 1 \
        else [_('bps'), _('Kbps'), _('Mbps'), _('Gbps'), _('Tbps')]
        step = 1.0
        for u in units:
            if step > 1:
                s = '%4.2f ' % (speed / step)
                if len(s) <= 5:
                    return s + u
            if speed / step < 1024:
                return '%4.1d ' % (speed / step) + u
            step = step * 1024.0
        return '%4.1d ' % (speed / (step / 1024)) + units[-1]

    def readable_size(self, size=0, unit=1):
        ''' readable_size(size) -> string
            size is in bytes
            returns a readable version of the size given '''
        units = ['B ', 'KB', 'MB', 'GB', 'TB'] if unit == 1 \
        else ['b ', 'Kb', 'Mb', 'Gb', 'Tb']
        step = 1.0
        for u in units:
            if step > 1:
                s = '%4.2f ' % (size / step)
                if len(s) <= 5:
                    return s + u
            if size / step < 1024:
                return '%4.1d ' % (size / step) + u
            step = step * 1024.0
        return '%4.1d ' % (size / (step / 1024)) + units[-1]

if __name__ == '__main__':
    awnlib.init_start(AppletBandwidthMonitor, {'name': APPLET_NAME,
        'short': 'bandwidth-monitor',
        'version': __version__,
        'description': APPLET_DESCRIPTION,
        'logo': APPLET_ICON,
        'author': 'Kyle L. Huff',
        'copyright-year': '2010',
        'authors': APPLET_AUTHORS})