[vlc-commits] chromecast: the device ip/ port is constant during the chromecast_ctrl lifetime
Steve Lhomme
git at videolan.org
Tue May 3 13:22:58 CEST 2016
vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | Thu Apr 28 14:18:35 2016 +0200| [83eb9d1c7309777eb66d90ca63e63910c800d4e7] | committer: Thomas Guillem
chromecast: the device ip/port is constant during the chromecast_ctrl lifetime
same for the HTTP port where the Chromecast should look for data
Signed-off-by: Thomas Guillem <thomas at gllm.fr>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=83eb9d1c7309777eb66d90ca63e63910c800d4e7
---
modules/stream_out/chromecast/chromecast.h | 7 ++-
modules/stream_out/chromecast/chromecast_ctrl.cpp | 53 +++++++++++++++++----
2 files changed, 50 insertions(+), 10 deletions(-)
diff --git a/modules/stream_out/chromecast/chromecast.h b/modules/stream_out/chromecast/chromecast.h
index 6998c22..622686c 100644
--- a/modules/stream_out/chromecast/chromecast.h
+++ b/modules/stream_out/chromecast/chromecast.h
@@ -78,11 +78,14 @@ enum receiver_state {
*****************************************************************************/
struct intf_sys_t
{
- intf_sys_t(vlc_object_t * const p_this);
+ intf_sys_t(vlc_object_t * const p_this, int local_port, std::string device_addr, int device_port = 0);
~intf_sys_t();
vlc_object_t * const p_module;
+ const int i_port;
std::string serverIP;
+ const int i_target_port;
+ std::string targetIP;
std::string mime;
std::string appTransportId;
@@ -119,7 +122,7 @@ struct intf_sys_t
}
}
- int connectChromecast(char *psz_ipChromecast);
+ int connectChromecast();
void disconnectChromecast();
void msgPing();
diff --git a/modules/stream_out/chromecast/chromecast_ctrl.cpp b/modules/stream_out/chromecast/chromecast_ctrl.cpp
index 7bc3224..0e95c48 100644
--- a/modules/stream_out/chromecast/chromecast_ctrl.cpp
+++ b/modules/stream_out/chromecast/chromecast_ctrl.cpp
@@ -98,8 +98,11 @@ void intf_sys_t::buildMessage(const std::string & namespace_,
/*****************************************************************************
* intf_sys_t: class definition
*****************************************************************************/
-intf_sys_t::intf_sys_t(vlc_object_t * const p_this)
+intf_sys_t::intf_sys_t(vlc_object_t * const p_this, int port, std::string device_addr, int device_port)
: p_module(p_this)
+ , i_port(port)
+ , i_target_port(device_port)
+ , targetIP(device_addr)
, receiverState(RECEIVER_IDLE)
, i_sock_fd(-1)
, p_creds(NULL)
@@ -141,20 +144,23 @@ intf_sys_t::~intf_sys_t()
* @brief Connect to the Chromecast
* @return the opened socket file descriptor or -1 on error
*/
-int intf_sys_t::connectChromecast(char *psz_ipChromecast)
+int intf_sys_t::connectChromecast()
{
- int fd = net_ConnectTCP( p_module, psz_ipChromecast, CHROMECAST_CONTROL_PORT);
+ unsigned devicePort = i_target_port;
+ if (devicePort == 0)
+ devicePort = CHROMECAST_CONTROL_PORT;
+ int fd = net_ConnectTCP( p_module, targetIP.c_str(), devicePort);
if (fd < 0)
return -1;
- p_creds = vlc_tls_ClientCreate( p_module );
+ p_creds = vlc_tls_ClientCreate( p_module->p_parent );
if (p_creds == NULL)
{
net_Close(fd);
return -1;
}
- p_tls = vlc_tls_ClientSessionCreateFD(p_creds, fd, psz_ipChromecast,
+ p_tls = vlc_tls_ClientSessionCreateFD(p_creds, fd, targetIP.c_str(),
"tcps", NULL, NULL);
if (p_tls == NULL)
@@ -624,7 +630,7 @@ void intf_sys_t::msgPlayerLoad()
std::stringstream ss;
ss << "{\"type\":\"LOAD\","
<< "\"media\":{\"contentId\":\"http://" << serverIP << ":"
- << var_InheritInteger(p_module, CONTROL_CFG_PREFIX"http-port")
+ << i_port
<< "/stream\","
<< "\"streamType\":\"LIVE\","
<< "\"contentType\":\"" << std::string(psz_mime) << "\"},"
@@ -757,10 +763,41 @@ void intf_sys_t::pushMediaPlayerMessage(const std::stringstream & payload) {
*****************************************************************************/
static void* ChromecastThread(void* p_data)
{
- int canc = vlc_savecancel();
- // Not cancellation-safe part.
+ int canc;
intf_thread_t *p_stream = reinterpret_cast<intf_thread_t*>(p_data);
intf_sys_t *p_sys = p_stream->p_sys;
+ p_sys->setConnectionStatus( CHROMECAST_DISCONNECTED );
+
+ p_sys->i_sock_fd = p_sys->connectChromecast();
+ if (p_sys->i_sock_fd < 0)
+ {
+ canc = vlc_savecancel();
+ msg_Err( p_sys->p_module, "Could not connect the Chromecast" );
+ vlc_mutex_lock(&p_sys->lock);
+ p_sys->setConnectionStatus(CHROMECAST_CONNECTION_DEAD);
+ vlc_mutex_unlock(&p_sys->lock);
+ vlc_restorecancel(canc);
+ return NULL;
+ }
+
+ char psz_localIP[NI_MAXNUMERICHOST];
+ if (net_GetSockAddress(p_sys->i_sock_fd, psz_localIP, NULL))
+ {
+ canc = vlc_savecancel();
+ msg_Err( p_sys->p_module, "Cannot get local IP address" );
+ vlc_mutex_lock(&p_sys->lock);
+ p_sys->setConnectionStatus(CHROMECAST_CONNECTION_DEAD);
+ vlc_mutex_unlock(&p_sys->lock);
+ vlc_restorecancel(canc);
+ return NULL;
+ }
+
+ canc = vlc_savecancel();
+ p_sys->serverIP = psz_localIP;
+
+ vlc_mutex_lock(&p_sys->lock);
+ p_sys->setConnectionStatus(CHROMECAST_TLS_CONNECTED);
+ vlc_mutex_unlock(&p_sys->lock);
p_sys->msgAuth();
vlc_restorecancel(canc);
More information about the vlc-commits
mailing list