Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cairo_perf_test.py
blob: bea9e928b52473dd5b9518a8d1431a18b63107da (plain)
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
#!/usr/bin/env python
# Copyright (C) 2012, One Laptop Per Child
# Author, Gonzalo Odiard <gonzalo@laptop.org>

from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import GObject
from gi.repository import PangoCairo
from gi.repository import Pango
import cairo
import math
import random
import time
import os
import logging

colors = [(1.0, 0.0, 0.0, 1.0), (0.0, 1.0, 0.0, 1.0), (0.0, 0.0, 1.0, 1.0),
        (1.0, 1.0, 0.0, 1.0), (1.0, 0.0, 1.0, 1.0), (0.0, 1.0, 1.0, 1.0)]

test_text = 'Hello World!'
png_test_file = '/usr/share/icons/gnome/256x256/emotes/face-cool.png'
cant_objects = 100

POWERD_INHIBIT_DIR = '/var/run/powerd-inhibit-suspend'


class CairoTest(Gtk.DrawingArea):

    tests = ['box', 'circle', 'text', 'bitmap', 'bitmap_ops', 'gradient', \
            'bitmap_sim', 'bitmap_ops_sim']

    def __init__(self, repeat=1):
        self._test_number = 0
        self._test = CairoTest.tests[self._test_number]
        self._repeat = repeat
        self._count = 1
        self._results = {}
        self._im_surface = cairo.ImageSurface.create_from_png(png_test_file)
        self._im_surface_similar = None
        self._im_width = self._im_surface.get_width()
        super(CairoTest, self).__init__()

        # init random values
        random.seed()
        self._random_color_a = []
        self._random_color_b = []
        self._random_width = []
        self._random_x = []
        self._random_y = []
        self._random_font_size = []
        self._random_angle = []
        for n in range(cant_objects):
            self._random_color_a.append(random.randint(0, 5))
            self._random_color_b.append(random.randint(0, 5))
            self._random_width.append(random.randint(30, 100))
            self._random_x.append(random.randint(1, Gdk.Screen.width()))
            self._random_y.append(random.randint(1, Gdk.Screen.height()))
            self._random_font_size.append(random.randint(12, 40))
            self._random_angle.append(2 * math.pi * random.random())

        self._inhibit_suspend()
        self.connect('draw', self.__draw_cb)
        GObject.timeout_add(1000, self._change_test)

        def map_cb(widget):
            cursor = Gdk.Cursor.new(Gdk.CursorType.BLANK_CURSOR)
            self.get_window().set_cursor(cursor)

        self.connect('map', map_cb)

    def __draw_cb(self, widget, ctx):
        if self._im_surface_similar == None:
            self._im_surface_similar = ctx.get_target().create_similar(
                    cairo.CONTENT_COLOR_ALPHA, self._im_width, self._im_width)
            ctx_similar = cairo.Context(self._im_surface_similar)
            ctx_similar.set_source_surface(self._im_surface)
            ctx_similar.paint()

        timeini = time.time()
        for n in range(cant_objects):
            ctx.set_source_rgba(*colors[self._random_color_a[n]])
            x = self._random_x[n]
            y = self._random_y[n]
            width = self._random_width[n]
            if self._test == 'circle':
                ctx.arc(x, y, width, 0., 2 * math.pi)
            if self._test == 'box':
                ctx.rectangle(x, y, width, width)
            if self._test == 'text':
                pango_layout = PangoCairo.create_layout(ctx)
                fd = Pango.FontDescription('Sans %d' %
                        self._random_font_size[n])
                pango_layout.set_font_description(fd)
                pango_layout.set_text(unicode(test_text),
                    len(unicode(test_text)))
                ctx.move_to(x, y)
                PangoCairo.show_layout(ctx, pango_layout)
                ctx.stroke()
            if self._test == 'bitmap':
                ctx.save()
                ctx.translate(x, y)
                ctx.set_source_surface(self._im_surface)
                ctx.paint()
                ctx.restore()
            if self._test == 'bitmap_ops':
                ctx.save()
                ctx.translate(x, y)
                scale = width / float(self._im_width)
                angle = self._random_angle[n]
                ctx.scale(scale, scale)
                ctx.rotate(angle)
                ctx.set_source_surface(self._im_surface)
                ctx.paint()
                ctx.restore()
            if self._test == 'gradient':
                ctx.rectangle(x, y, width, width)
                pat = cairo.LinearGradient(x, y, x + width, y + width)
                r, g, b, a = colors[self._random_color_a[n]]
                pat.add_color_stop_rgba(0, r, g, b, a)
                r, g, b, a = colors[self._random_color_b[n]]
                pat.add_color_stop_rgba(1, r, g, b, a)
                ctx.set_source(pat)
            if self._test == 'bitmap_sim':
                ctx.save()
                ctx.translate(x, y)
                ctx.set_source_surface(self._im_surface_similar)
                ctx.paint()
                ctx.restore()
            if self._test == 'bitmap_ops_sim':
                ctx.save()
                ctx.translate(x, y)
                scale = width / float(self._im_width)
                angle = self._random_angle[n]
                ctx.scale(scale, scale)
                ctx.rotate(angle)
                ctx.set_source_surface(self._im_surface_similar)
                ctx.paint()
                ctx.restore()
            ctx.fill()
        #logging.error("Time test %s = %f s.", self._test,
        #        (time.time() - timeini))
        self._add_result(self._test, (time.time() - timeini))

    def _add_result(self, test, time):
        if not test in self._results:
            self._results[test] = []
        self._results[test].append(time)

    def _print_results(self):
        logging.error('RESULTS: %s', self._results)
        logging.error('REPEAT %d TIMES', self._count)
        for test in CairoTest.tests:
            if test in self._results:
                values = self._results[test]
                logging.error('%-20s average = %f, max = %f, min = %f',
                    test, sum(values) / len(values), max(values), min(values))

    def _change_test(self):
        if self._test_number < len(CairoTest.tests) - 1:
            self._test_number += 1
            self._test = CairoTest.tests[self._test_number]
            self.queue_draw()
        else:
            if self._count < self._repeat:
                self._count += 1
                self._test_number = 0
                self._test = CairoTest.tests[self._test_number]
                self.queue_draw()
            else:
                self.quit(None)
        return True

    def quit(self, widget):
        self._print_results()
        self._inhibit_suspend()
        Gtk.main_quit()

    def powerd_running(self):
        using_powerd = os.access(POWERD_INHIBIT_DIR, os.W_OK)
        logging.error("using_powerd: %d", using_powerd)
        return using_powerd

    def _inhibit_suspend(self):
        if self.powerd_running():
            fd = open(POWERD_INHIBIT_DIR + "/%u" % os.getpid(), 'w')
            logging.error("inhibit_suspend file is %s", (POWERD_INHIBIT_DIR \
                    + "/%u" % os.getpid()))
            fd.close()
            return True

    def _allow_suspend(self):
        if self.powerd_running():
            if os.path.exists(POWERD_INHIBIT_DIR + "/%u" % os.getpid()):
                os.unlink(POWERD_INHIBIT_DIR + "/%u" % os.getpid())
            logging.error("allow_suspend unlinking %s", (POWERD_INHIBIT_DIR \
                    + "/%u" % os.getpid()))
            return True


if __name__ == "__main__":
    window = Gtk.Window()
    cairo_test = CairoTest(10)
    window.add(cairo_test)
    window.connect("destroy", cairo_test.quit)
    window.maximize()
    window.show_all()
    Gtk.main()