source: ntrip/trunk/BNC/src/bncfigure.cpp

Last change on this file was 10234, checked in by stuerze, 6 months ago

minor changes

File size: 6.1 KB
Line 
1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: bncFigure
30 *
31 * Purpose:
32 *
33 * Author: Perlt, Mervart
34 *
35 * Created: 11-Nov-2009
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
42
43#include <QMapIterator>
44#include <QPainter>
45#include <QTimer>
46#include <QUrl>
47#include <QVariant>
48
49#include "bncfigure.h"
50#include "bncsettings.h"
51
52using namespace std;
53
54// Constructor
55////////////////////////////////////////////////////////////////////////////
56bncFigure::bncFigure(QWidget *parent) : QWidget(parent) {
57 updateMountPoints();
58 slotNextAnimationFrame();
59 for (int ii = 0; ii <= 1000; ii++) {
60 _ran[0][ii] = qrand() % 255;
61 _ran[1][ii] = qrand() % 255;
62 _ran[2][ii] = qrand() % 255;
63 }
64}
65
66// Destructor
67////////////////////////////////////////////////////////////////////////////
68bncFigure::~bncFigure() {
69 QMapIterator<QByteArray, sumAndMean*> it(_bytes);
70 while (it.hasNext()) {
71 it.next();
72 delete it.value();
73 }
74 _bytes.clear();
75}
76
77//
78////////////////////////////////////////////////////////////////////////////
79void bncFigure::updateMountPoints() {
80 QMutexLocker locker(&_mutex);
81
82 _counter = 0;
83 _maxRate = 0;
84
85 QMapIterator<QByteArray, sumAndMean*> it1(_bytes);
86 while (it1.hasNext()) {
87 it1.next();
88 delete it1.value();
89 }
90 _bytes.clear();
91
92 bncSettings settings;
93 QListIterator<QString> it(settings.value("mountPoints").toStringList());
94 while (it.hasNext()) {
95 QStringList hlp = it.next().split(" ");
96 if (hlp.size() <= 1) continue;
97 QUrl url(hlp[0]);
98 QByteArray staID = url.path().mid(1).toLatin1();
99 _bytes[staID] = new sumAndMean();
100 }
101}
102
103//
104////////////////////////////////////////////////////////////////////////////
105void bncFigure::slotNewData(const QByteArray staID, double nbyte) {
106 QMutexLocker locker(&_mutex);
107 QMap<QByteArray, sumAndMean*>::const_iterator it = _bytes.find(staID);
108 if (it != _bytes.end()) {
109 it.value()->_sum += nbyte*8.;
110 }
111}
112
113//
114////////////////////////////////////////////////////////////////////////////
115void bncFigure::slotNextAnimationFrame() {
116 QMutexLocker locker(&_mutex);
117
118 const static int MAXCOUNTER = 10;
119
120 ++_counter;
121
122 // If counter reaches its maximal value, compute the mean rate
123 // -----------------------------------------------------------
124 if (_counter == MAXCOUNTER) {
125 _maxRate = 0.0;
126 QMapIterator<QByteArray, sumAndMean*> it(_bytes);
127 while (it.hasNext()) {
128 it.next();
129 it.value()->_mean = it.value()->_sum / _counter;
130 it.value()->_sum = 0.0;
131 if (it.value()->_mean > _maxRate) {
132 _maxRate = it.value()->_mean;
133 }
134 }
135 _counter = 0;
136 }
137
138 update();
139
140 QTimer::singleShot(1000, this, SLOT(slotNextAnimationFrame()));
141}
142
143//
144////////////////////////////////////////////////////////////////////////////
145void bncFigure::paintEvent(QPaintEvent *) {
146
147 int xMin = 0;
148 int xMax = 640;
149 int yMin = 0;
150 int yMax = 90;
151 float xLine = .60;
152
153 QPainter painter(this);
154
155 QFont font;
156 font.setPointSize(int(font.QFont::pointSize()*0.8));
157 painter.setFont(font);
158
159 // y-axis
160 // ------
161 int yLength = int((yMax-yMin)*xLine) - (yMin+10);
162 painter.drawLine(xMin+60, int((yMax-yMin)*xLine), xMin+60, yMin+10);
163
164 double maxRateRounded;
165 QString maxRateStr;
166 if (_maxRate < 1e3) {
167 maxRateRounded = int(_maxRate/200)*200 + 300;
168 maxRateStr = QString("%1 bps ").arg(int(maxRateRounded/200)*200);
169 painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+60,15,Qt::AlignRight,tr("0 bps "));
170 }
171 else if (_maxRate < 1e6) {
172 maxRateRounded = int(_maxRate/1.e3)*1.e3 + 1500;
173 maxRateStr = QString("%1 kbps ").arg(int(maxRateRounded/1.e3));
174 painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+60,15,Qt::AlignRight,tr("0 kbps "));
175 }
176 else {
177 maxRateRounded = int(_maxRate/1.e6)*1.e6 + 1500000;
178 maxRateStr = QString("%1 Mbps ").arg(int(maxRateRounded/1.e6));
179 painter.drawText(0, int((yMax-yMin)*xLine)-5, xMin+60,15,Qt::AlignRight,tr("0 Mbps "));
180 }
181
182 if(_maxRate > 0.0) {
183 painter.drawText(0, yMin+20-5, xMin+60,15,Qt::AlignRight,maxRateStr);
184 }
185
186 // x-axis
187 // ------
188 painter.drawLine(xMin+60, int((yMax-yMin)*xLine), xMax*3, int((yMax-yMin)*xLine));
189
190 int anchor = 0;
191 QMapIterator<QByteArray, sumAndMean*> it(_bytes);
192 while (it.hasNext()) {
193 it.next();
194 QByteArray staID = it.key();
195
196 int xx = xMin+80+anchor*12;
197
198 if(_maxRate > 0.0) {
199 int yy = int(yLength * (it.value()->_mean / maxRateRounded));
200 QColor color = QColor::fromRgb(_ran[0][anchor],_ran[1][anchor],_ran[2][anchor],150);
201 painter.fillRect(xx-13, int((yMax-yMin)*xLine)-yy, 9, yy,
202 QBrush(color,Qt::SolidPattern));
203 painter.setPen(Qt::black);
204 if(it.value()->_mean<=0) {
205 painter.setPen(Qt::red);
206 }
207 }
208
209 painter.save();
210 painter.translate(xx-13, int(yMax-yMin)*xLine+65);
211 painter.rotate(-90);
212 painter.drawText(-30,0,95,50,Qt::AlignRight,staID.left(10) + " ");
213 painter.restore();
214
215 anchor++;
216 }
217}
218
Note: See TracBrowser for help on using the repository browser.