Changeset 10549 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Sep 25, 2024, 6:21:29 PM (2 months ago)
Author:
stuerze
Message:

replacement of obsolete qt-class members: at least Qt version 5.15.0 is required, warnung is added

Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3Decoder.cpp

    r10545 r10549  
    10431043    GETBITS(i, 6)
    10441044    if (i < 1 || i > 63 ) {
    1045 #ifdef BNC_DEBUG_BCEP
     1045#ifdef BNC_DEBUG_BCE
    10461046      emit(newMessage(QString("%1: Block %2 (G) PRN# is out of range: %3!")
    10471047           .arg(_staID)
     
    10541054    GETBITS(week, 10)
    10551055    if (week < 0 || week > 1023) {
    1056 #ifdef BNC_DEBUG_BCEP
     1056#ifdef BNC_DEBUG_BCE
    10571057      emit(newMessage(QString("%1: Block %2 (%3) WEEK # is out of range: %4!")
    10581058           .arg(_staID)
     
    10711071    i <<= 4;
    10721072    if (i < 0 || i > 604784) {
    1073 #ifdef BNC_DEBUG_BCEP
     1073#ifdef BNC_DEBUG_BCE
    10741074      emit(newMessage(QString("%1: Block %2 (%3) TOC is out of range: %4!")
    10751075           .arg(_staID)
     
    10931093    GETFLOAT(eph._sqrt_A,             32, 1.0 / (double )(1 << 19))
    10941094    if (eph._sqrt_A < 1000.0) {
    1095 #ifdef BNC_DEBUG_BCEP
     1095#ifdef BNC_DEBUG_BCE
    10961096      emit(newMessage(QString("%1: Block %2 (%3) SQRT_A %4 m!")
    10971097           .arg(_staID).arg(1019,4).arg(eph._prn.toString().c_str())
     
    11031103    i <<= 4;
    11041104    if (i < 0 || i > 604784) {
    1105 #ifdef BNC_DEBUG_BCEP
     1105#ifdef BNC_DEBUG_BCE
    11061106      emit(newMessage(QString("%1: Block %2 (%3) TOE is out of range: %4!")
    11071107           .arg(_staID)
     
    11631163    GETBITS(sv, 6)
    11641164    if (sv < 1 || sv > 63) {
    1165 #ifdef BNC_DEBUG_BCEP
     1165#ifdef BNC_DEBUG_BCE
    11661166      emit(newMessage(QString("%1: Block %2 (R):  SLOT# is unknown (0) or out of range: %3!")
    11671167           .arg(_staID)
     
    11751175    GETBITS(i, 5)
    11761176    if (i < 0 || i > 20) {
    1177 #ifdef BNC_DEBUG_BCEP
     1177#ifdef BNC_DEBUG_BCE
    11781178      emit(newMessage(QString("%1: Block %2 (%3): FRQ CHN# is out of range: %4")
    11791179           .arg(_staID)
     
    11901190    GETBITS(i, 5)
    11911191    if (i < 0 || i > 23) {
    1192 #ifdef BNC_DEBUG_BCEP
     1192#ifdef BNC_DEBUG_BCE
    11931193      emit(newMessage(QString("%1: Block %2 (%3): T_k (bits 11-7) is out of range: %4")
    11941194           .arg(_staID)
     
    12021202    GETBITS(i, 6)
    12031203    if (i < 0 || i > 59) {
    1204 #ifdef BNC_DEBUG_BCEP
     1204#ifdef BNC_DEBUG_BCE
    12051205      emit(newMessage(QString("%1: Block %2 (%3): T_k (bits 6-1) is out of range: %4")
    12061206           .arg(_staID)
     
    12141214    GETBITS(i, 1)
    12151215    if (i < 0 || i > 1) {
    1216 #ifdef BNC_DEBUG_BCEP
     1216#ifdef BNC_DEBUG_BCE
    12171217      emit(newMessage(QString("%1: Block %2 (%3): T_k (bit 0) is out of range: %4")
    12181218           .arg(_staID)
     
    12331233    i *= 15;
    12341234    if (i < 15 || i > 1425) {
    1235 #ifdef BNC_DEBUG_BCEP
     1235#ifdef BNC_DEBUG_BCE
    12361236      emit(newMessage(QString("%1: Block %2 (%3): T_b is out of range: %4")
    12371237           .arg(_staID)
     
    12641264    GETBITS(eph._M_NT, 11) /* GLONASS-M Nt */
    12651265    if (eph._M_NT == 0.0) {
    1266 #ifdef BNC_DEBUG_BCEP
     1266#ifdef BNC_DEBUG_BCE
    12671267      emit(newMessage(QString("%1: Block %2 (%3): NT = %4: missing data!")
    12681268           .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()).arg(eph._M_NT,4).toLatin1(), true));
     
    12731273    GETBITS(eph._additional_data_availability, 1) /* GLONASS-M The Availability of Additional Data */
    12741274    if (eph._additional_data_availability == 0.0) {
    1275 #ifdef BNC_DEBUG_BCEP
     1275#ifdef BNC_DEBUG_BCE
    12761276      emit(newMessage(QString("%1: Block %2 (%3): ADD = %4: missing data!")
    12771277           .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str())
     
    12951295    eph._xv(3) = eph._z_pos * 1.e3;
    12961296    if (eph._xv.Rows(1,3).NormFrobenius() < 1.0) {
    1297 #ifdef BNC_DEBUG_BCEP
     1297#ifdef BNC_DEBUG_BCE
    12981298      emit(newMessage(QString("%1: Block %2 (%3): zero position!")
    12991299           .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()).toLatin1(), true));
     
    13051305    eph._xv(6) = eph._z_velocity * 1.e3;
    13061306    if (eph._xv.Rows(4,6).NormFrobenius() < 1.0) {
    1307 #ifdef BNC_DEBUG_BCEP
     1307#ifdef BNC_DEBUG_BCE
    13081308      emit(newMessage(QString("%1: Block %2 (%3): zero velocity!")
    13091309           .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()).toLatin1(), true));
     
    13421342    GETBITS(i, 4)
    13431343    if (i < 1 || i > 10 ) {
    1344 #ifdef BNC_DEBUG_BCEP
     1344#ifdef BNC_DEBUG_BCE
    13451345      emit(newMessage(QString("%1: Block %2 (J) SAT ID is out of range: %3!")
    13461346           .arg(_staID)
     
    13551355    i <<= 4;
    13561356    if (i < 0 || i > 604784) {
    1357 #ifdef BNC_DEBUG_BCEP
     1357#ifdef BNC_DEBUG_BCE
    13581358      emit(newMessage(QString("%1: Block %2 (%3) TOC is out of range: %4!")
    13591359           .arg(_staID)
     
    13781378    GETFLOAT(eph._sqrt_A,      32, 1.0 / (double )(1 << 19))
    13791379    if (eph._sqrt_A < 1000.0) {
    1380 #ifdef BNC_DEBUG_BCEP
     1380#ifdef BNC_DEBUG_BCE
    13811381      emit(newMessage(QString("%1: Block %2 (%3) SQRT_A %4 m!")
    13821382           .arg(_staID).arg(1044,4).arg(eph._prn.toString().c_str())
     
    13881388    i <<= 4;
    13891389    if (i < 0 || i > 604784) {
    1390 #ifdef BNC_DEBUG_BCEP
     1390#ifdef BNC_DEBUG_BCE
    13911391      emit(newMessage(QString("%1: Block %2 (%3) TOE is out of range: %4!")
    13921392           .arg(_staID)
     
    14121412    GETBITS(week, 10)
    14131413    if (week < 0 || week > 1023) {
    1414 #ifdef BNC_DEBUG_BCEP
     1414#ifdef BNC_DEBUG_BCE
    14151415      emit(newMessage(QString("%1: Block %2 (%3) WEEK # is out of range: %4!")
    14161416           .arg(_staID)
     
    14651465    GETBITS(i, 6)
    14661466    if (i < 1 || i > 63 ) {
    1467 #ifdef BNC_DEBUG_BCEP
     1467#ifdef BNC_DEBUG_BCE
    14681468      emit(newMessage(QString("%1: Block %2 (I) PRN# is out of range: %3!")
    14691469           .arg(_staID)
     
    14761476    GETBITS(week, 10)
    14771477    if (week < 0 || week > 1023) {
    1478 #ifdef BNC_DEBUG_BCEP
     1478#ifdef BNC_DEBUG_BCE
    14791479      emit(newMessage(QString("%1: Block %2 (%3) WEEK # is out of range: %4!")
    14801480           .arg(_staID)
     
    14931493    i <<= 4;
    14941494    if (i < 0 || i > 1048560) {
    1495 #ifdef BNC_DEBUG_BCEP
     1495#ifdef BNC_DEBUG_BCE
    14961496      emit(newMessage(QString("%1: Block %2 (%3) TOC is out of range: %4!")
    14971497           .arg(_staID)
     
    15351535    i <<= 4;
    15361536    if (i < 0 || i > 1048560) {
    1537 #ifdef BNC_DEBUG_BCEP
     1537#ifdef BNC_DEBUG_BCE
    15381538      emit(newMessage(QString("%1: Block %2 (%3) TOE is out of range: %4!")
    15391539           .arg(_staID)
     
    15561556    GETFLOAT(eph._sqrt_A,       32, 1.0 / (double )(1 << 19))
    15571557    if (eph._sqrt_A < 1000.0) {
    1558 #ifdef BNC_DEBUG_BCEP
     1558#ifdef BNC_DEBUG_BCE
    15591559      emit(newMessage(QString("%1: Block %2 (%3) SQRT_A %4 m!")
    15601560           .arg(_staID).arg(1041,4).arg(eph._prn.toString().c_str())
     
    15961596    GETBITS(i, 6)
    15971597    if (i < 40 || i > 58 ) {
    1598 #ifdef BNC_DEBUG_BCEP
     1598#ifdef BNC_DEBUG_BCE
    15991599      emit(newMessage(QString("%1: Block %2 (S) PRN# is out of range: %3!")
    16001600           .arg(_staID)
     
    16091609    i <<= 4;
    16101610    if (i < 0 || i > 86384) {
    1611 #ifdef BNC_DEBUG_BCEP
     1611#ifdef BNC_DEBUG_BCE
    16121612      emit(newMessage(QString("%1: Block %2 (%3) TOC is out of range: %4!")
    16131613           .arg(_staID)
     
    16271627    pos(1) = eph._x_pos; pos(2) = eph._y_pos; pos(3) = eph._z_pos;
    16281628    if (pos.NormFrobenius() < 1.0) {
    1629 #ifdef BNC_DEBUG_BCEP
     1629#ifdef BNC_DEBUG_BCE
    16301630      emit(newMessage(QString("%1: Block %2 (%3): zero position!")
    16311631           .arg(_staID).arg(1043,4).arg(eph._prn.toString().c_str()).toLatin1(), true));
     
    16731673    GETBITS(i, 6)
    16741674    if (i < 1 || i > 36 ) { // max. constellation within I/NAV / F/NAV frames is 36
    1675 #ifdef BNC_DEBUG_BCEP
     1675#ifdef BNC_DEBUG_BCE
    16761676      emit(newMessage(QString("%1: Block %2 (E) PRN# is out of range: %3!")
    16771677           .arg(_staID)
     
    16851685    GETBITS(week, 12) //FIXME: roll-over after week 4095!!
    16861686    if (week < 0 || week > 4095) {
    1687 #ifdef BNC_DEBUG_BCEP
     1687#ifdef BNC_DEBUG_BCE
    16881688      emit(newMessage(QString("%1: Block %2 (%3) WEEK # is out of range: %4!")
    16891689           .arg(_staID)
     
    17011701    GETBITSFACTOR(i, 14, 60)
    17021702    if (i < 0 || i > 604740) {
    1703 #ifdef BNC_DEBUG_BCEP
     1703#ifdef BNC_DEBUG_BCE
    17041704      emit(newMessage(QString("%1: Block %2 (%3) TOC is out of range: %4!")
    17051705           .arg(_staID)
     
    17231723    GETBITSFACTOR(eph._TOEsec, 14, 60)
    17241724    if (i < 0 || i > 604740) {
    1725 #ifdef BNC_DEBUG_BCEP
     1725#ifdef BNC_DEBUG_BCE
    17261726      emit(newMessage(QString("%1: Block %2 (%3) TOE is out of range: %4!")
    17271727           .arg(_staID)
     
    17531753      GETBITS(eph._e1DataInValid, 1)
    17541754      if (eph._E5bHS != eph._E1_bHS) {
    1755 #ifdef BNC_DEBUG_BCEP
     1755#ifdef BNC_DEBUG_BCE
    17561756        emit(newMessage(QString("%1: Block %2 (%3) SHS E5b %4 E1B %5: inconsistent health!")
    17571757             .arg(_staID).arg(1046,4).arg(eph._prn.toString().c_str())
     
    17621762      if ((eph._BGD_1_5A == 0.0 && fabs(eph._BGD_1_5B) > 1e-9) ||
    17631763          (eph._BGD_1_5B == 0.0 && fabs(eph._BGD_1_5A) > 1e-9)) {
    1764 #ifdef BNC_DEBUG_BCEP
     1764#ifdef BNC_DEBUG_BCE
    17651765        emit(newMessage(QString("%1: Block %2 (%3) BGD_15a = %4 BGD_15b = %5: inconsistent BGD!")
    17661766             .arg(_staID).arg(1046,4).arg(eph._prn.toString().c_str())
     
    17861786
    17871787    if (eph._sqrt_A < 1000.0) {
    1788 #ifdef BNC_DEBUG_BCEP
     1788#ifdef BNC_DEBUG_BCE
    17891789      emit(newMessage(QString("%1: Block %2 (%3) SQRT_A %4 m!")
    17901790           .arg(_staID).arg(eph._inav? 1046 : 1045,4).arg(eph._prn.toString().c_str())
     
    18201820    GETBITS(i, 6)
    18211821    if (i < 1 || i > 63 ) {
    1822 #ifdef BNC_DEBUG_BCEP
     1822#ifdef BNC_DEBUG_BCE
    18231823      emit(newMessage(QString("%1: Block %2 (C) PRN# is out of range: %3!")
    18241824           .arg(_staID)
     
    18321832    GETBITS(week, 13)
    18331833    if (week < 0 || week > 8191) {
    1834 #ifdef BNC_DEBUG_BCEP
     1834#ifdef BNC_DEBUG_BCE
    18351835      emit(newMessage(QString("%1: Block %2 (%3) WEEK # is out of range: %4!")
    18361836           .arg(_staID)
     
    18491849    i <<= 3;
    18501850    if (i < 0 || i > 604792) {
    1851 #ifdef BNC_DEBUG_BCEP
     1851#ifdef BNC_DEBUG_BCE
    18521852      emit(newMessage(QString("%1: Block %2 (%3) TOC is out of range: %4!")
    18531853           .arg(_staID)
     
    18711871    GETFLOAT(eph._sqrt_A,      32, 1.0 / (double )(1 << 19))
    18721872    if (eph._sqrt_A < 1000.0) {
    1873 #ifdef BNC_DEBUG_BCEP
     1873#ifdef BNC_DEBUG_BCE
    18741874      emit(newMessage(QString("%1: Block %2 (%3) SQRT_A %4 m!")
    18751875           .arg(_staID).arg(1042,4).arg(eph._prn.toString().c_str())
     
    18811881    i <<= 3;
    18821882    if (i < 0 || i > 604792) {
    1883 #ifdef BNC_DEBUG_BCEP
     1883#ifdef BNC_DEBUG_BCE
    18841884      emit(newMessage(QString("%1: Block %2 (%3) TOE is out of range: %4!")
    18851885           .arg(_staID)
  • trunk/BNC/src/bnccore.cpp

    r10221 r10549  
    205205  QMutexLocker locker(&_mutex);
    206206  t_irc ircPut = _ephUser.putNewEph(eph, true);
    207 #ifdef BNC_DEBUG_BCEP
     207#ifdef BNC_DEBUG_BCE
    208208  if (eph->checkState() == t_eph::unhealthy) {
    209209    messagePrivate(QString("%1: UNHEALTHY %2:%3")
  • trunk/BNC/src/src.pri

    r10542 r10549  
    2121debug:DEFINES   += SPLITBLOCK
    2222#debug:DEFINES   += BNC_DEBUG_OBS
    23 #debug:DEFINES   += BNC_DEBUG_BCEP
     23#debug:DEFINES   += BNC_DEBUG_BCE
    2424#debug:DEFINES   += BNC_DEBUG_PPP
    2525#debug:DEFINES   += BNC_DEBUG_SSR
    2626#debug:DEFINES   += BNC_DEBUG_CMB
    27 #debug:DEFINES    += QT_DISABLE_DEPRECATED_BEFORE=0x050F00
     27debug:DEFINES    += QT_DISABLE_DEPRECATED_BEFORE=0x050F00
     28
     29!versionAtLeast(QT_VERSION, 5.15.0):error("Use at least Qt version 5.15.0")
    2830
    2931# Include Path
Note: See TracChangeset for help on using the changeset viewer.