Changeset 709 in ntrip for trunk/BNC/RTCM
- Timestamp:
- Mar 7, 2008, 5:56:07 PM (17 years ago)
- Location:
- trunk/BNC/RTCM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/RTCM/RTCM2.cpp ¶
r708 r709 45 45 // 2008/03/04 AHA Fixed problems with PRN 32 46 46 // 2008/03/05 AHA Implemeted fix for Trimble 4000SSI receivers 47 // 2008/03/07 AHA Major revision of input buffer handling 48 // 2008/03/07 AHA Removed unnecessary failure flag 47 49 // 48 50 // (c) DLR/GSOC … … 63 65 // undersized packets in get(Unsigned)Bits 64 66 65 #define DEBUG 0 67 #define DEBUG 0 66 68 67 69 // Activate (1) or deactivate (0) rounding of measurement epochs to 100ms … … 136 138 void ThirtyBitWord::clear() { 137 139 W = 0; 138 };139 140 // Failure indicator for input operations141 142 bool ThirtyBitWord::fail() const {143 return failure;144 140 }; 145 141 … … 259 255 260 256 261 262 257 // Append a byte with six data bits 263 258 … … 275 270 // Bits 7 and 6 (of 0..7) must be "01" for valid data bytes 276 271 if ( (b & 0x40) != 0x40 ) { 277 failure = true;272 // We simply skip the invalid input byte and leave the word unchanged 278 273 return; 279 274 }; … … 290 285 // Get next 30bit word from string 291 286 292 void ThirtyBitWord::get(string& buf) { 287 void ThirtyBitWord::get(const string& buf) { 293 288 294 289 // Check if string is long enough 295 290 296 291 if (buf.size()<5) { 297 failure = true;292 // Ignore; users should avoid this case prior to calling get() 298 293 return; 299 294 }; … … 302 297 303 298 for (int i=0; i<5; i++) append(buf[i]); 304 buf.erase(0,5);305 299 306 300 #if (DEBUG>0) 307 301 if (!validParity()) { 308 cerr << "Parity error " 302 cerr << "Parity error in get()" 309 303 << bitset<32>(all()) << endl; 310 304 }; 311 305 #endif 312 failure = false;313 306 314 307 }; … … 328 321 #if (DEBUG>0) 329 322 if (!validParity()) { 330 cerr << "Parity error " 323 cerr << "Parity error in get()" 331 324 << bitset<32>(all()) << endl; 332 325 }; 333 326 #endif 334 failure = false;335 327 336 328 }; … … 340 332 void ThirtyBitWord::getHeader(string& buf) { 341 333 342 unsigned int W_old = W; 334 const int wordLen = 5; // Number of bytes representing a 30-bit word 335 const int spare = 1; // Number of spare words for resync of parity 336 // (same value as inRTCM2packet::getPacket()) 343 337 unsigned int i; 344 338 345 339 i=0; 346 while (!isHeader() || i<5 ) { 347 // Check if string is long enough; if not restore old word and exit 348 if (buf.size()<i+1) { 349 W = W_old; 350 failure = true; 351 return; 352 }; 340 while (!isHeader() && i<buf.size() ) { 353 341 // Process byte 354 append(buf[i]); i++; 355 }; 356 357 // Remove processed bytes from buffer 358 359 buf.erase(0,i); 342 append(buf[i]); 343 // Increment count 344 i++; 345 }; 346 347 // Remove processed bytes from buffer. Retain also the previous word to 348 // allow a resync if getHeader() is called repeatedly on the same buffer. 349 if (i>=(1+spare)*wordLen) buf.erase(0,i-(1+spare)*wordLen); 360 350 361 351 #if (DEBUG>0) 362 352 if (!validParity()) { 363 cerr << "Parity error " 353 cerr << "Parity error in getHeader()" 364 354 << bitset<32>(all()) << endl; 365 355 }; 366 356 #endif 367 failure = false; 368 357 369 358 }; 370 359 … … 385 374 #if (DEBUG>0) 386 375 if (!validParity()) { 387 cerr << "Parity error " 376 cerr << "Parity error in getHeader()" 388 377 << bitset<32>(all()) << endl; 389 378 }; 390 379 #endif 391 failure = false;392 380 393 381 }; … … 443 431 void RTCM2packet::getPacket(std::string& buf) { 444 432 445 int n; 446 ThirtyBitWord W_old = W; 447 string buf_old = buf; 448 449 // Try to read a full packet. If the input buffer is too short 450 // clear all data and restore the latest 30-bit word prior to 451 // the getPacket call. The empty header word will indicate 452 // an invalid message, which signals an unsuccessful getPacket() 453 // call. 454 455 W.getHeader(buf); 456 H1 = W.value(); 457 if (W.fail()) { clear(); W=W_old; buf=buf_old; return; }; 458 if (!W.validParity()) { clear(); return; }; 459 460 W.get(buf); 461 H2 = W.value(); 462 if (W.fail()) { clear(); W=W_old; buf=buf_old; return; }; 463 if (!W.validParity()) { clear(); return; }; 433 const int wordLen = 5; // Number of bytes representing a 30-bit word 434 const int spare = 1; // Number of spare words for resync of parity 435 // (same value as used in ThirtyBitWord::getHeader) 436 unsigned int n; 437 438 // Try to read a full packet. Processed bytes are removed from the input 439 // buffer except for the latest spare*wordLen bytes to restore the parity 440 // bytes upon subseqeunt calls of getPAcket(). 441 442 // Locate and read the first header word 443 W.getHeader(buf); 444 if (!W.isHeader()) { 445 // No header found; try again next time. buf retains only the spare 446 // words. The packet contents is cleared to indicate an unsuccessful 447 // termination of getPacket(). 448 clear(); 449 return; 450 }; 451 H1 = W.value(); 452 453 // Do we have enough bytes to read the next word? If not, the packet 454 // contents is cleared to indicate an unsuccessful termination. The 455 // previously read spare and header bytes are retained in the buffer 456 // for use in the next call of getPacket(). 457 if (buf.size()<(spare+2)*wordLen) { clear(); return; }; 458 459 // Read the second header word 460 W.get(buf.substr((spare+1)*wordLen,buf.size()-1-(spare+1)*wordLen)); 461 H2 = W.value(); 462 if (!W.validParity()) { 463 // Invalid H2 word; delete first buffer byte and try to resynch next time. 464 // The packet contents is cleared to indicate an unsuccessful termination. 465 clear(); 466 buf.erase(0,1); 467 return; 468 }; 464 469 465 470 n = nDataWords(); 471 472 // Do we have enough bytes to read the next word? If not, the packet 473 // contents is cleared to indicate an unsuccessful termination. The 474 // previously read spare and header bytes are retained in the buffer 475 // for use in the next call of getPacket(). 476 if (buf.size()<(spare+2+n)*wordLen) { clear(); return; }; 477 466 478 DW.resize(n); 467 for (int i=0; i<n; i++) { 468 W.get(buf); 469 DW[i] = W.value(); 470 if (W.fail()) { clear(); W=W_old; buf=buf_old; return; }; 471 if (!W.validParity()) { clear(); return; }; 472 }; 473 479 for (unsigned int i=0; i<n; i++) { 480 W.get(buf.substr((spare+2+i)*wordLen,buf.size()-1-(spare+2+i)*wordLen)); 481 DW[i] = W.value(); 482 if (!W.validParity()) { 483 // Invalid data word; delete first byte and try to resynch next time. 484 // The packet contents is cleared to indicate an unsuccessful termination. 485 clear(); 486 buf.erase(0,1); 487 return; 488 }; 489 }; 490 491 // Successful packet extraction; delete total number of message bytes 492 // from buffer. 493 // Note: a total of "spare" words remain in the buffer to enable a 494 // parity resynchronization when searching the next header. 495 496 buf.erase(0,(n+2)*wordLen); 497 474 498 return; 475 499 … … 487 511 W.getHeader(inp); 488 512 H1 = W.value(); 489 if ( W.fail() || !W.validParity()) { clear(); return; }513 if (inp.fail() || !W.isHeader()) { clear(); return; } 490 514 491 515 W.get(inp); 492 516 H2 = W.value(); 493 if ( W.fail() || !W.validParity()) { clear(); return; }517 if (inp.fail() || !W.validParity()) { clear(); return; } 494 518 495 519 n = nDataWords(); … … 498 522 W.get(inp); 499 523 DW[i] = W.value(); 500 if ( W.fail() || !W.validParity()) { clear(); return; }524 if (inp.fail() || !W.validParity()) { clear(); return; } 501 525 }; 502 526 -
TabularUnified trunk/BNC/RTCM/RTCM2.h ¶
r332 r709 28 28 // 2006/10/17 OMO Removed obsolete check of multiple message indicator 29 29 // 2006/11/25 OMO Revised check for presence of GLONASS data 30 // 2008/03/07 AHA Removed unnecessary failure flag 30 31 // 31 32 // (c) DLR/GSOC … … 81 82 // Input 82 83 83 void get(std::string& buf); 84 void get(const std::string& buf); 84 85 void get(std::istream& inp); 85 86 void getHeader(std::string& buf); … … 94 95 private: 95 96 96 bool failure; 97 // bool failure; 97 98 98 99 //
Note:
See TracChangeset
for help on using the changeset viewer.