This file is indexed.

/usr/share/pyshared/freevo/plugins/joy.py is in python-freevo 1.9.2b2-4.2.

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
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# A joystick control plugin for Freevo.
# -----------------------------------------------------------------------
# $Id: joy.py 11905 2011-11-14 21:54:46Z adam $
#
# Notes:
# To use this plugin make sure that your joystick is already working
# properly and then configure JOY_DEV and JOY_CMDS in your local_conf.py.
# You will also need to have plugin.activate('joy') in your config as well.
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
# Copyright (C) 2003 Krister Lagerstrom, et al.
# Please see the file freevo/Docs/CREDITS for a complete list of authors.
#
# 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 2 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 MER-
# CHANTABILITY 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, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# -----------------------------------------------------------------------
import logging
logger = logging.getLogger("freevo.plugins.joy")


import sys
import os
import select
import struct
import traceback
from time import sleep

import config
import plugin
import rc

rc = rc.get_singleton()

class PluginInterface(plugin.DaemonPlugin):
    """
    A joystick control plugin for Freevo

    To use this plugin make sure that your joystick is already working properly and
    then configure JOY_DEV and JOY_CMDS in your local_conf.py.  You will also need
    to have plugin.activate('joy') in your config as well.

    If you are using the /dev/input/eventX you can use the linux event driver
    instead.
    """

    def __init__(self):
        try:
            self.device_name = config.JOY_DEVICE
            try:
                self.joyfd = os.open(self.device_name, os.O_RDONLY|os.O_NONBLOCK)
                _debug_('self.joyfd = %s' % self.joyfd, level=5)
            except OSError:
                self.reason = 'unable to open device %r' % (self.device_name,)
                return
        except AttributeError:
            if config.JOY_DEV == 0:
                self.reason = 'Joystick input module disabled'
                return

            _debug_('JOY_DEV is deprecated, use JOY_DEVICE instead', DWARNING)
            self.device_name = '/dev/input/js' + str((config.JOY_DEV - 1))
            try:
                self.joyfd = os.open(self.device_name, os.O_RDONLY|os.O_NONBLOCK)
                _debug_('self.joyfd = %s' % self.joyfd, level=5)
            except OSError:
                self.device_name = '/dev/js' + str((config.JOY_DEV - 1))
                try:
                    self.joyfd = os.open(self.device_name, os.O_RDONLY|os.O_NONBLOCK)
                    _debug_('self.joyfd = %s' % self.joyfd, level=5)
                except OSError:
                    self.reason = 'unable to open device %r' % (self.device_name,)
                    return

        # ok, joystick is working
        plugin.DaemonPlugin.__init__(self)
        self.plugin_name = 'JOY'

        _debug_('Using joystick %s (%s) (sensitivity %s)' % (config.JOY_DEV, self.device_name, config.JOY_SENS), DINFO)

        self.poll_interval  = 0.1
        self.poll_menu_only = False
        self.enabled = True


    def config(self):
        return [
            ('JOY_DEV', 1, 'Joystick number, 1 is "/dev/js0" or "/dev/input/js0"'),
            ('JOY_DEVICE', None, 'Joystick device, i.e. "/dev/js0" or "/dev/input/js0"'),
            ('JOY_SENS', 16384, 'Joystick sensitivity'),
            ('JOY_LOCKFILE', None, 'Joystick lock file'),
            ('JOY_CMDS', config.JOY_CMDS, 'Joystick commands'),
         ]


    def shutdown(self):
        try:
            self.joyfd.close()
        except:
            pass


    def poll(self):
        if not self.enabled:
            return

        command = ''
        (r, w, e) = select.select([self.joyfd], [], [], 0)
        _debug_('r=%r, w=%r, e=%r' % (r, w, e), 3)

        self.sensitivity = config.JOY_SENS

        if not r:
            return

        c = os.read(self.joyfd, 8)
        data = struct.unpack('IhBB', c)
        _debug_('data=%r' % (data,), 2)
        if data[2] == 1 & data[1] == 1:
            button = 'button '+str((data[3] + 1))
            command = config.JOY_CMDS.get(button, '')

        if data[2] == 2:
            if ((data[3] == 1) & (data[1] < -self.sensitivity)):
                button = 'up'
                command = config.JOY_CMDS['up']
            if ((data[3] == 1) & (data[1] > self.sensitivity)):
                button = 'down'
                command = config.JOY_CMDS['down']
            if ((data[3] == 0) & (data[1] < -self.sensitivity)):
                button = 'left'
                command = config.JOY_CMDS['left']
            if ((data[3] == 0) & (data[1] > self.sensitivity)):
                button = 'right'
                command = config.JOY_CMDS['right']

        if command != '':
            _debug_('Translation: "%s" -> "%s"' % (button, command))
            command = rc.key_event_mapper(command)
            if command:
                if not config.JOY_LOCKFILE:
                    rc.post_event(command)
                elif not os.path.exists(config.JOY_LOCKFILE):
                    rc.post_event(command)


    def enable(self):
        """ enable the joystick """
        # remove any pending events
        while 1:
            (r, w, e) = select.select([self.joyfd], [], [], 0)
            _debug_('r=%r, w=%r, e=%r' % (r, w, e), 1)
            if not r:
                break
            c = os.read(self.joyfd, 8)
        self.enabled = True
        return


    def disable(self):
        """ disable the joystick """
        self.enabled = False
        return