jamulus/src/llconserverdlg.cpp

176 lines
6.1 KiB
C++
Raw Normal View History

/******************************************************************************\
* Copyright (c) 2004-2009
*
* Author(s):
* Volker Fischer
*
******************************************************************************
*
* 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
2008-03-28 22:46:13 +01:00
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
2008-03-28 22:46:13 +01:00
* 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
2008-03-28 22:46:13 +01:00
* 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
2008-03-28 22:46:13 +01:00
* this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
\******************************************************************************/
#include "llconserverdlg.h"
/* Implementation *************************************************************/
CLlconServerDlg::CLlconServerDlg ( CServer* pNServP, QWidget* parent )
: pServer ( pNServP ), QDialog ( parent ),
2008-03-28 22:46:13 +01:00
BitmCubeGreen ( LED_WIDTH_HEIGHT_SIZE_PIXEL, LED_WIDTH_HEIGHT_SIZE_PIXEL ),
BitmCubeRed ( LED_WIDTH_HEIGHT_SIZE_PIXEL, LED_WIDTH_HEIGHT_SIZE_PIXEL ),
BitmCubeYellow ( LED_WIDTH_HEIGHT_SIZE_PIXEL, LED_WIDTH_HEIGHT_SIZE_PIXEL )
{
2008-01-22 20:58:53 +01:00
setupUi ( this );
// set text for version and application name
2006-12-29 11:52:25 +01:00
TextLabelNameVersion->setText ( QString ( APP_NAME ) +
tr ( " server " ) + QString ( VERSION ) );
2008-01-22 20:58:53 +01:00
// create bitmaps
2008-03-28 22:46:13 +01:00
BitmCubeGreen.fill ( QColor ( 0, 255, 0 ) );
BitmCubeRed.fill ( QColor ( 255, 0, 0 ) );
2006-12-29 11:52:25 +01:00
BitmCubeYellow.fill ( QColor ( 255, 255, 0 ) );
// set up list view for connected clients
2006-12-29 11:52:25 +01:00
ListViewClients->setColumnWidth ( 0, 170 );
// TODO QT4
// ListViewClients->setColumnAlignment ( 1, Qt::AlignLeft );
2006-12-29 11:52:25 +01:00
ListViewClients->setColumnWidth ( 1, 150 );
// ListViewClients->setColumnAlignment ( 2, Qt::AlignCenter );
// ListViewClients->setColumnAlignment ( 3, Qt::AlignCenter );
// ListViewClients->setColumnAlignment ( 4, Qt::AlignRight );
// ListViewClients->setColumnAlignment ( 5, Qt::AlignRight );
// ListViewClients->setColumnAlignment ( 6, Qt::AlignRight );
ListViewClients->clear();
/* insert items in reverse order because in Windows all of them are
always visible -> put first item on the top */
vecpListViewItems.Init(MAX_NUM_CHANNELS);
2007-09-08 12:45:14 +02:00
for ( int i = MAX_NUM_CHANNELS - 1; i >= 0; i-- )
{
2007-09-08 12:45:14 +02:00
vecpListViewItems[i] = new CServerListViewItem ( ListViewClients );
2008-03-28 22:46:13 +01:00
vecpListViewItems[i]->setHidden ( true );
}
// Init timing jitter text label
2007-09-08 12:45:14 +02:00
TextLabelResponseTime->setText ( "" );
2006-01-28 12:29:22 +01:00
2008-01-22 20:58:53 +01:00
// Main menu bar -----------------------------------------------------------
2007-09-08 12:45:14 +02:00
pMenu = new QMenuBar ( this );
pMenu->addMenu ( new CLlconHelpMenu ( this ) );
2006-01-28 12:29:22 +01:00
// Now tell the layout about the menu
layout()->setMenuBar ( pMenu );
2006-01-28 12:29:22 +01:00
2008-01-22 20:58:53 +01:00
// Connections -------------------------------------------------------------
// timers
2007-09-08 12:45:14 +02:00
QObject::connect ( &Timer, SIGNAL ( timeout() ), this, SLOT ( OnTimer() ) );
2008-01-22 20:58:53 +01:00
// Timers ------------------------------------------------------------------
// start timer for GUI controls
2007-09-08 12:45:14 +02:00
Timer.start ( GUI_CONTRL_UPDATE_TIME );
}
void CLlconServerDlg::OnTimer()
{
CVector<CHostAddress> vecHostAddresses;
2008-01-22 22:15:04 +01:00
CVector<QString> vecsName;
CVector<int> veciJitBufSize;
CVector<int> veciNetwOutBlSiFact;
CVector<int> veciNetwInBlSiFact;
double dCurTiStdDev;
ListViewMutex.lock();
2006-12-29 11:52:25 +01:00
pServer->GetConCliParam ( vecHostAddresses, vecsName, veciJitBufSize,
veciNetwOutBlSiFact, veciNetwInBlSiFact );
2008-01-22 20:58:53 +01:00
// fill list with connected clients
2006-12-29 11:52:25 +01:00
for ( int i = 0; i < MAX_NUM_CHANNELS; i++ )
{
if ( !( vecHostAddresses[i].InetAddr == QHostAddress ( (quint32) 0 ) ) )
{
2006-12-29 11:52:25 +01:00
// IP, port number
2008-03-28 22:46:13 +01:00
vecpListViewItems[i]->setText ( 0, QString("%1 : %2" ).
arg ( vecHostAddresses[i].InetAddr.toString() ).
arg ( vecHostAddresses[i].iPort ) );
2006-12-29 11:52:25 +01:00
// name
2008-01-22 22:15:04 +01:00
vecpListViewItems[i]->setText ( 1, vecsName[i] );
2006-12-29 11:52:25 +01:00
// jitter buffer size (polling for updates)
vecpListViewItems[i]->setText ( 4,
QString().setNum ( veciJitBufSize[i] ) );
// in/out network block sizes
vecpListViewItems[i]->setText ( 5,
QString().setNum (
double ( veciNetwInBlSiFact[i] * MIN_BLOCK_DURATION_MS ), 'f', 2 ) );
2008-03-28 22:46:13 +01:00
vecpListViewItems[i]->setText ( 6,
2006-12-29 11:52:25 +01:00
QString().setNum (
double ( veciNetwOutBlSiFact[i] * MIN_BLOCK_DURATION_MS ), 'f', 2 ) );
2008-03-28 22:46:13 +01:00
vecpListViewItems[i]->setHidden ( false );
}
else
{
2008-03-28 22:46:13 +01:00
vecpListViewItems[i]->setHidden ( true );
}
}
ListViewMutex.unlock();
2006-01-28 12:29:22 +01:00
2006-12-29 11:52:25 +01:00
// response time (if available)
if ( pServer->GetTimingStdDev ( dCurTiStdDev ) )
{
2006-12-29 11:52:25 +01:00
TextLabelResponseTime->setText ( QString().
setNum ( dCurTiStdDev, 'f', 2 ) + " ms" );
}
else
{
2006-12-29 11:52:25 +01:00
TextLabelResponseTime->setText ( "---" );
}
}
void CLlconServerDlg::customEvent ( QEvent* Event )
{
2006-12-29 11:52:25 +01:00
if ( Event->type() == QEvent::User + 11 )
{
ListViewMutex.lock();
2006-12-29 11:52:25 +01:00
const int iMessType = ( (CLlconEvent*) Event )->iMessType;
2008-03-28 22:46:13 +01:00
const int iStatus = ( (CLlconEvent*) Event )->iStatus;
const int iChanNum = ( (CLlconEvent*) Event )->iChanNum;
switch(iMessType)
{
case MS_JIT_BUF_PUT:
2006-12-29 11:52:25 +01:00
vecpListViewItems[iChanNum]->SetLight ( 0, iStatus );
break;
case MS_JIT_BUF_GET:
2006-12-29 11:52:25 +01:00
vecpListViewItems[iChanNum]->SetLight ( 1, iStatus );
break;
}
ListViewMutex.unlock();
}
}