This file is indexed.

/usr/share/pyshared/pyxine/post.py is in python-pyxine 0.1alpha2-7build1.

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
# $Id: post.py,v 1.1.1.1 2003/02/08 00:42:20 dairiki Exp $
#
# Copyright (C) 2003  Geoffrey T. Dairiki <dairiki@dairiki.org>
#
# This file is part of Pyxine, Python bindings for xine.
#
# Pyxine 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.
#
# Pyxine 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, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

from pyxine import libxine, constants, constwrap, cstruct, xine
from pyxine import Error

def _tuplize(val):
    """Convert val to tuple.

    If 'val' is a sequence, just convert to tuple.
    If 'val' is None, return a 0-tuple.
    Otherwise return a 1-tuple containing 'val'.
    """
    try:
        return tuple(val)
    except TypeError:
        if val is None:
            return ()
        return (val,)
        

class _readonly_dict_base(object):
    def get(self, name, default=None):
        try:
            return self[name]
        except KeyError:
            return default
    def has_key(self, name):
        return self.get(name) is not None

    def values(self):
        return map(self.__getitem__, self.keys())
    def items(self):
        return map(lambda name: (name, self[name]), self.keys())

    def iterkeys(self):		return iter(self.keys())
    def itervalues(self):	return iter(self.values())
    def iteritems(self):	return iter(self.items())
    def __len__(self):		return len(self.keys())
    __iter__ = iterkeys

class _Post_inputs(_readonly_dict_base):
    def __init__(self, post):
        self.post = post

    def keys(self):
        return libxine.xine_post_list_inputs(self.post.this)
    
    def __getitem__(self, name):
        post = self.post
        try:
            input = libxine.xine_post_input(post.this, name)
        except Error:
            raise KeyError, "no input named '%s'" % name
        return PostInput(post, input)

class _Post_outputs(_readonly_dict_base):
    def __init__(self, post):
        self.post = post

    def keys(self):
        return libxine.xine_post_list_outputs(self.post.this)
    
    def __getitem__(self, name):
        post = self.post
        try:
            output = libxine.xine_post_output(post.this, name)
        except Error:
            raise KeyError, "no output named '%s'" % name
        return PostOutput(post, output)

class Post(object):
    """A xine post-plugin.

    Example Usage:

        To initialize and wire up the goom visualization filter:

    	    >>> goom = Post(stream, 'goom',
                            audio_target=stream.ao, video_target=stream.vo)
            >>> stream.audio_source.wire(goom.inputs['audio in'])

        When finished, to unwire the goom:

            >>> stream.audio_source.wire(stream.ao)
    """
    # Destination of the outputs (if wired)
    _dest = {}
    
    def __init__(self, xine_or_stream, name,
                 inputs=0, audio_target=[], video_target=[]):


        audio_target = _tuplize(audio_target)
        video_target = _tuplize(video_target)

        try:
            self.xine = xine_or_stream.xine # xine_or_stream is stream
        except AttributeError:
            self.xine = xine_or_stream
            
        self.this = libxine.xine_post_init(self.xine.this, name, inputs,
                                           map(lambda s: s.this, audio_target),
                                           map(lambda s: s.this, video_target))
        self.rep = cstruct.xine_post_t(self.this)
        
        def isvideo(port):
            return port.type == constants.XINE_POST_DATA_VIDEO
        def isaudio(port):
            return port.type == constants.XINE_POST_DATA_AUDIO

        outputs = self.outputs.values()
        video_outputs = filter(isvideo, outputs)
        audio_outputs = filter(isaudio, outputs)

        self._dest = {}
        for out, port in ( map(None, video_outputs, video_target) 
                           + map(None, audio_outputs, audio_target) ):
            if out and port:
                self._dest[out.name] = port

                
    def __del__(self):
        if hasattr(self, 'this'):
            libxine.xine_post_dispose(self.xine.this, self.this)
        print "Post deleted"

    type = property(
        lambda s: constwrap.XINE_POST_TYPE(s.rep.type),
        doc="The type of this plugin")

    def __get_audio_input(self):
        return map(lambda ptr: xine.AudioPort(self.xine, ptr),
                   self.rep.audio_input)
    audio_input = property(
        __get_audio_input,
        doc="""A list of the audio input ports provied by this plugin.

        The values in this list are 'AudioPort's.  You can hand these to
        other post plugin's outputs or pass them to the initialization
        of streams.
        """)

    def __get_video_input(self):
        return map(lambda ptr: xine.VideoPort(self.xine, ptr),
                   self.rep.audio_input)
    video_input = property(
        __get_audio_input,
        doc="""A list of the video input ports provied by this plugin.

        The values in this list are 'VideoPort's.  You can hand these to
        other post plugin's outputs or pass them to the initialization
        of streams.
        """)
    

    inputs = property(_Post_inputs,
        doc="""Input ports.

        This is a readonly dict (whose keys are the port names, and whose
        values are 'PostInputs') of the input ports of this Post plugin.
        You use these for rewiring post-plugins.
        """)

    outputs = property(_Post_outputs,
        doc="""Output ports.

        This is a readonly dict (whose keys are the port names, and whose
        values are 'PostOutputs') of the output ports of this Post plugin.
        You use these for rewiring post-plugins.
        """)

class PostInput(cstruct.xine_post_in_t):
    def __init__(self, post, this):
        self.post = post
        cstruct.xine_post_in_t.__init__(self, this)
        self.__super = cstruct.super(PostInput, self)

    type = property(lambda s: constwrap.XINE_POST_DATA(s.__super.type))

class PostOutput(cstruct.xine_post_out_t):
    def __init__(self, post, this):
        self.post = post                # can be stream, too
        cstruct.xine_post_out_t.__init__(self, this)
        self.__super = cstruct.super(PostOutput, self)

    type = property(lambda s: constwrap.XINE_POST_DATA(s.__super.type))

    def wire(self, target):
        if target is None:
            libxine.xine_post_wire(self.this, "NULL")
        elif isinstance(target, PostInput):
            libxine.xine_post_wire(self.this, target.this)
        elif isinstance(target, xine.VideoPort):
            libxine.xine_post_wire_video_port(self.this, target.this)
        elif isinstance(target, xine.AudioPort):
            libxine.xine_post_wire_audio_port(self.this, target.this)
        else:
            raise ValueError, "don't know how to wire to target type"

        self.post._dest[self.name] = target