403Webshell
Server IP : 182.53.201.61  /  Your IP : 216.73.217.175
Web Server : Apache/2.2.15 (Fedora)
System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686
User : apache ( 48)
PHP Version : 5.3.3
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/lib/python2.6/site-packages/papyon/media/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/lib/python2.6/site-packages/papyon/media/stream.py
# -*- coding: utf-8 -*-
#
# papyon - a python client library for Msn
#
# Copyright (C) 2009 Collabora Ltd.
#
# 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
# 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 papyon.event import EventsDispatcher
from papyon.media.constants import *

import gobject
import logging
import weakref

logger = logging.getLogger('papyon.media.stream')

__all__ = ['MediaStream']

class MediaStream(gobject.GObject, EventsDispatcher):
    """A stream used to transfer media data. It can be an audio or video
       stream and may have codecs and transport candidates associated with it.

       A stream handler implementing the L{papyon.event.MediaStreamEventInferface}
       might need to execute some actions when a stream receives remote codecs
       and candidates (e.g. codecs negotiation) or when closed. (e.g. UI
       notification). See L{papyon.media.conference.MediaStreamHandler} for a
       default implementation using Farsight 2.0."""

    __gsignals__ = {
        'prepared': (gobject.SIGNAL_RUN_FIRST,
            gobject.TYPE_NONE,
            ()),
        'ready': (gobject.SIGNAL_RUN_FIRST,
            gobject.TYPE_NONE,
            ())
    }

    def __init__(self, session, name, direction, created):
        """Initialize the media stream.

           @param session: Session that contains this stream
           @type session: L{papyon.media.session.MediaSession}
           @param name: Stream name
           @type name: string
           @param direction: Stream direction
           @type direction: L{papyon.media.constants.MediaStreamDirection}
           @param created: Whether or not the stream has been requested by the client
           @type created: bool"""

        gobject.GObject.__init__(self)
        EventsDispatcher.__init__(self)
        self._session = weakref.ref(session)
        self._name = name
        self._active = False
        self._created = created
        self._direction = direction
        self._local_codecs = []
        self._local_codecs_prepared = False
        self._local_candidate_id = None
        self._local_candidates = []
        self._local_candidates_prepared = False
        self._remote_codecs = []
        self._remote_candidate_id = None
        self._remote_candidates = []
        self.relays = []

    @property
    def session(self):
        """Parent session"""
        return self._session()

    @property
    def name(self):
        """Stream name"""
        return self._name

    @property
    def created_locally(self):
        """Is the stream created locally (outgoing call)"""
        return self._created

    @property
    def direction(self):
        """Direction of the stream
           @rtype L{papyon.media.constants.MediaStreamDirection}"""
        return self._direction

    @property
    def prepared(self):
        """Are the stream local codecs and candidates received"""
        return (self._local_codecs_prepared and
                self._local_candidates_prepared)

    @property
    def ready(self):
        """Is the candidate pair selected"""
        return (self._local_candidate_id is not None and
                self._remote_candidate_id is not None)

    def close(self):
        """Close the stream"""
        self._dispatch("on_stream_closed")

    def process_remote_description(self, desc):
        """Set remote stream informations (candidates, codecs) from the given
           stream description.

           @param desc: Remote stream description to process
           @type desc: L{papyon.media.message.MediaStreamDescription}"""

        self._remote_codecs = desc.valid_codecs

        # Remote candidates are the local ones from the remote description
        # (and vice versa)
        remote_candidates, local_candidates = desc.get_candidates()
        if remote_candidates:
            self._remote_candidates.extend(remote_candidates)

        # If the media description contains a local candidate, the active pair
        # has already been selected and the first remote candidate should be the
        # remote active one.
        if local_candidates:
            self._remote_candidate_id = remote_candidates[0].foundation

        self.process()

    def activate(self):
        """Function called once the stream handler is ready to handle the
           stream signals."""
        self._active = True
        self.process()

    def process(self):
        """Emit signals if we need to. (i.e. if we have received the list
           of remote codecs or remote candidates. Only do it once the
           stream handler is ready (self._active == True)."""

        if not self._active:
            return

        if self._remote_codecs:
            self._dispatch("on_remote_codecs_received", self._remote_codecs)
        if self._remote_candidates:
            self._dispatch("on_remote_candidates_received", self._remote_candidates)

    def get_local_codecs(self):
        """Returns the list of possible local codecs for this stream."""

        return self._local_codecs

    def get_active_local_candidates(self):
        """Returns the active local candidates or all the candidates if there
           isn't any active one. This list is meant to be sent to the other
           call participants."""

        active = self._local_candidate_id
        candidates = self._local_candidates
        if active:
            return filter(lambda x: (x.foundation == active), candidates)
        return candidates

    def get_active_remote_candidates(self):
        """Returns the active remote candidates."""

        active = self._remote_candidate_id
        candidates = self._remote_candidates
        if active is None:
            return []
        return filter(lambda x: (x.foundation == active), candidates)

    def get_default_address(self):
        """Returns the default address. We use the active local candidate if
           there is one selected, else we are using the default candidate."""

        ip = ""
        port = 0
        rtcp = 0

        active = self._local_candidate_id
        default = self.search_default_candidate()
        if not active and default:
            active = default.foundation

        for candidate in self._local_candidates:
            if candidate.foundation == active and \
               candidate.component_id is COMPONENTS.RTP:
                ip = candidate.ip
                port = candidate.port
            if candidate.foundation == active and \
               candidate.component_id is COMPONENTS.RTCP:
                rtcp = candidate.port

        return ip, port, rtcp

    def search_default_candidate(self):
        """Returns the first relay found in the local candidates or the
           candidate with the lowest priority."""
        default = None
        for candidate in self._local_candidates:
            if candidate.transport != "UDP":
                continue
            if candidate.type == "relay":
                return candidate
            if not default or candidate.priority < default.priority:
                default = candidate
        return default

    # The following functions need to be called by some kind of media stream
    # handler. See L{papyon.media.conference.StreamHandler} for a default
    # implementation using Farsight.

    def new_local_candidate(self, candidate):
        """Called by the stream handler when it finds a new local candidate
           @param candidate: New local candidate
           @type candidate: L{papyon.media.candidate.MediaCandidate}"""

        self._local_candidates.append(candidate)

    def new_active_candidate_pair(self, local, remote):
        """Called by the stream handler once the active candidate pair is selected
           @param local: Local active candidate id
           @type local: string
           @param remote: Remote active candidate id
           @type remote: string"""

        logger.debug("New active candidate pair (%s, %s)" % (local, remote))
        if self.ready:
            return # ignore other candidate pairs
        self._local_candidate_id = local
        self._remote_candidate_id = remote
        self.emit("ready")

    def local_candidates_prepared(self):
        """Called by the stream handler once all the local candidates are found"""

        if self._local_candidates_prepared:
            return
        self._local_candidates_prepared = True
        if self.prepared:
            self.emit("prepared")

    def set_local_codecs(self, codecs):
        """Called by the stream handler to set the local codecs
           @param codecs: List of local codecs
           @type codecs: list of L{papyon.media.codec.MediaCodec}"""

        self._local_codecs = codecs
        if self._local_codecs_prepared:
            return
        self._local_codecs_prepared = True
        if self.prepared:
            self.emit("prepared")


Youez - 2016 - github.com/yon3zu
LinuXploit