This file is indexed.

/usr/lib/python2.7/dist-packages/autopilot/introspection/qt.py is in python-autopilot 1.4.1+15.10.20150911-0ubuntu2.

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
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
#
# Autopilot Functional Test Tool
# Copyright (C) 2012-2013 Canonical
#
# 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/>.
#


"""Classes and tools to support Qt introspection."""


import functools


class QtSignalWatcher(object):
    """A utility class to make watching Qt signals easy."""

    def __init__(self, proxy, signal_name):
        """Initialise the signal watcher.

        :param QtObjectProxyMixin proxy:
        :param string signal_name: Name of the signal being monitored.

        'proxy' is an instance of QtObjectProxyMixin.
        'signal_name' is the name of the signal being monitored.

        Do not construct this object yourself. Instead, call 'watch_signal' on
        a QtObjectProxyMixin instance.

        """
        self._proxy = proxy
        self.signal_name = signal_name
        self._data = None

    def _refresh(self):
        self._data = self._proxy.get_signal_emissions(self.signal_name)

    @property
    def num_emissions(self):
        """Get the number of times the signal has been emitted since we started
        monitoring it.

        """
        self._refresh()
        return len(self._data)

    @property
    def was_emitted(self):
        """True if the signal was emitted at least once."""
        self._refresh()
        return len(self._data) > 0


class QtObjectProxyMixin(object):
    """A class containing methods specific to querying Qt applications."""

    def _get_qt_iface(self):
        """Get the autopilot Qt-specific interface for the specified service
        name and object path.

        """

        return self._backend.qt_introspection_iface

    @property
    def slots(self):
        """An object that contains all the slots available to be called in
        this object."""
        if getattr(self, '_slots', None) is None:
            self._slots = QtSlotProxy(self)
        return self._slots

    def watch_signal(self, signal_name):
        """Start watching the 'signal_name' signal on this object.

        signal_name must be the C++ signal signature, as is usually used within
        the Qt 'SIGNAL' macro. Examples of valid signal names are:

         * 'clicked(bool)'
         * 'pressed()'

        A list of valid signal names can be retrieved from 'get_signals()'. If
        an invalid signal name is given ValueError will be raised.

        This method returns a QtSignalWatcher instance.

        By default, no signals are monitored. You must call this method once
        for each signal you are interested in.

        """
        valid_signals = self.get_signals()
        if signal_name not in valid_signals:
            raise ValueError(
                "Signal name %r is not in the valid signal list of %r" %
                (signal_name, valid_signals))

        self._get_qt_iface().RegisterSignalInterest(self.id, signal_name)
        return QtSignalWatcher(self, signal_name)

    def get_signal_emissions(self, signal_name):
        """Get a list of all the emissions of the 'signal_name' signal.

        If signal_name is not a valid signal, ValueError is raised.

        The QtSignalWatcher class provides a more convenient API than calling
        this method directly. A QtSignalWatcher instance is returned from
        'watch_signal'.

        Each item in the returned list is a tuple containing the arguments in
        the emission (possibly an empty list if the signal has no arguments).

        If the signal was not emitted, the list will be empty. You must first
        call 'watch_signal(signal_name)' in order to monitor this signal.

        Note: Some signal arguments may not be marshallable over DBus. If this
        is the case, they will be omitted from the argument list.

        """
        valid_signals = self.get_signals()
        if signal_name not in valid_signals:
            raise ValueError(
                "Signal name %r is not in the valid signal list of %r" %
                (signal_name, valid_signals))

        return self._get_qt_iface().GetSignalEmissions(self.id, signal_name)

    def get_signals(self):
        """Get a list of the signals available on this object."""
        dbus_signal_list = self._get_qt_iface().ListSignals(self.id)
        if dbus_signal_list is not None:
            return [str(sig) for sig in dbus_signal_list]
        else:
            return []

    def get_slots(self):
        """Get a list of the slots available on this object."""
        dbus_slot_list = self._get_qt_iface().ListMethods(self.id)
        if dbus_slot_list is not None:
            return [str(sig) for sig in dbus_slot_list]
        else:
            return []


class QtSlotProxy(object):
    """A class that transparently calls slots in a Qt object."""

    def __init__(self, qt_mixin):
        self._dbus_iface = qt_mixin._get_qt_iface()
        self._object_id = qt_mixin.id

        methods = self._dbus_iface.ListMethods(self._object_id)
        for method_name in methods:
            method = functools.partial(self._call_method, method_name)
            stripped_method_name = method_name[:method_name.find('(')]
            setattr(self, stripped_method_name, method)

    def _call_method(self, name, *args):
        self._dbus_iface.InvokeMethod(self._object_id, name, args)