Implemented support for multiple NetConnections

NOT WORKING!!
This commit is contained in:
Mateus Dalepiane 2014-04-23 18:13:08 -03:00
parent d913173685
commit 149bc3da58
2 changed files with 42 additions and 12 deletions

View File

@ -29,6 +29,7 @@ package org.bigbluebutton.modules.videoconf.business
import flash.net.NetConnection;
import flash.net.NetStream;
import flash.system.Capabilities;
import flash.utils.Dictionary;
import mx.collections.ArrayCollection;
@ -52,6 +53,11 @@ package org.bigbluebutton.modules.videoconf.business
private var ns:NetStream;
private var _url:String;
// Dictionary<userID,NetConnection> used for stream playing
private var playConnectionDict:Dictionary;
// Dictionary<userID,streamName> used for stream playing
private var streamNamePrefixDict:Dictionary;
private function parseOptions():void {
videoOptions = new VideoConfOptions();
videoOptions.parseOptions();
@ -67,7 +73,8 @@ package org.bigbluebutton.modules.videoconf.business
nc.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityError);
playConnectionDict = new Dictionary();
streamNamePrefixDict = new Dictionary();
}
public function connect():void {
@ -105,23 +112,41 @@ package org.bigbluebutton.modules.videoconf.business
}
public function getPlayConnectionFor(userID:String):NetConnection{
//TODO
LogUtil.debug("VideoProxy::getPlayConnectionFor:: Looking for connection for stream from [" + userID + "]");
// If connection does not exist
// Ask LB for path
if(!playConnectionDict[userID]){
// TODO: Ask LB for path
// TODO: Split path
// var connectionPath = "10.0.3.254/10.0.3.79";
// var pathIps = connectionPath.split(/);
var ipRegex:String = "([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)";
// var newUrl:String = _url.replace(ipRegex, pathIps[0]);
// var streamPrefix:String =
var newUrl:String = _url.replace(ipRegex, "10.0.3.254");
var streamPrefix:String = "10.0.3.79/";
// Open NetConnection
var connection:NetConnection = new NetConnection();
connection.connect(newUrl);
// TODO change to trace
LogUtil.debug("VideoProxy::getPlayConnectionFor:: Creating connection for stream from [" + userID + "]");
// TODO Check this connection somehow?
playConnectionDict[userID] = connection;
// Store stream name prefix
// Return connection
return new NetConnection();
streamNamePrefixDict[userID] = streamPrefix;
}
return playConnectionDict[userID];
}
public function getStreamNamePrefixFor(userID:String):String{
//TODO
// If does not exist
// Report
// Return empty
// Else
// Return prefix
return "";
if(!streamNamePrefixDict[userID]){
// TODO: change LogUtil.debug(); to trace();
LogUtil.debug("VideoProxy:: getStreamNamePrefixFor:: streamPrefix not found. NetConnection might not exist for stream from [" + userID + "]");
return "";
}
else{
return streamNamePrefixDict[userID];
}
}
public function startPublishing(e:StartBroadcastEvent):void{

View File

@ -20,6 +20,7 @@ package org.bigbluebutton.modules.videoconf.maps
{
import flash.events.IEventDispatcher;
import flash.media.Camera;
import flash.net.NetConnection;
import mx.collections.ArrayCollection;
@ -300,7 +301,11 @@ package org.bigbluebutton.modules.videoconf.maps
var bbbUser:BBBUser = UsersUtil.getUser(userID);
//TODO: change publishConnection to getPlayConnectionFor(userID)
window.startVideo(proxy.publishConnection, bbbUser.streamName);
var playConnection:NetConnection = proxy.getPlayConnectionFor(userID);
var playStream:String = proxy.getStreamNamePrefixFor(userID) + bbbUser.streamName;
LogUtil.debug("VideoEventMapDelegate:: [" + me + "] openViewWindowFor:: StreamName for [" + userID + "] : [" + playStream + "]");
window.startVideo(playConnection, playStream);
// window.startVideo(proxy.publishConnection, bbbUser.streamName);
webcamWindows.addWindow(window);
openWindow(window);