1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

fixed some display bugs when showing stats

svn path=/trunk/icecast/; revision=5527
This commit is contained in:
oddsock 2003-10-31 19:24:00 +00:00
parent fe95280339
commit 97229d9548

View File

@ -484,25 +484,35 @@ void CollectStats(stats_event_t *event)
strcpy(tempSource, event->source); strcpy(tempSource, event->source);
} }
if (strlen(tempSource) == 0) {
strcpy(tempSource, "Global Stat");
}
int foundit = 0; int foundit = 0;
for (int i=0;i<numMainStats;i++) { for (int i=0;i<numMainStats;i++) {
if (!strcmp(gStats[i].source, tempSource)) { if (!strcmp(tempSource, "Global Stat")) {
int foundit2 = 0; if (gStats[i].stats[0].name == tempElement.name) {
gStats[i].populated = 1; gStats[i].stats[0].value = tempElement.value;
for (int j=0;j<gStats[i].numStats;j++) { }
if (gStats[i].stats[j].name == tempElement.name) { }
gStats[i].stats[j].value = tempElement.value; else {
if (!strcmp(gStats[i].source, tempSource)) {
int foundit2 = 0;
gStats[i].populated = 1;
for (int j=0;j<gStats[i].numStats;j++) {
if (gStats[i].stats[j].name == tempElement.name) {
gStats[i].stats[j].value = tempElement.value;
foundit2 = 1; foundit2 = 1;
}
} }
if (!foundit2) {
gStats[i].stats[j].name = tempElement.name;
gStats[i].stats[j].value = tempElement.value;
gStats[i].numStats++;
}
foundit = 1;
} }
if (!foundit2) {
gStats[i].stats[j].name = tempElement.name;
gStats[i].stats[j].value = tempElement.value;
gStats[i].numStats++;
}
foundit = 1;
} }
} }
if (!foundit) { if (!foundit) {
@ -871,6 +881,7 @@ void CIcecast2winDlg::UpdateStatsLists()
lvi.iSubItem = 2; lvi.iSubItem = 2;
lvi.pszText = (LPTSTR)(LPCTSTR)gStats[i].stats[k].value; lvi.pszText = (LPTSTR)(LPCTSTR)gStats[i].stats[k].value;
statusTab.m_GlobalStatList.SetItem(&lvi); statusTab.m_GlobalStatList.SetItem(&lvi);
break;
} }
if (gStats[i].stats[k].titleFlag) { if (gStats[i].stats[k].titleFlag) {
CString windowTitle = gStats[i].source + " - " + gStats[i].stats[k].name + " - " + gStats[i].stats[k].value; CString windowTitle = gStats[i].source + " - " + gStats[i].stats[k].name + " - " + gStats[i].stats[k].value;