home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap09 / progress.cpp
Encoding:
Text File  |  1996-10-24  |  1.4 KB  |  45 lines

  1. //
  2. // ShowProgress
  3. //
  4. // Note: Be sure to add a DWORD member to this class called dwLastTickCount.
  5. // Initialize that member to zero. Reset it to zero in NPP_DestroyStream().
  6. void CWorker::ShowProgress (NPP instance, 
  7.                             uint32 FileSize, 
  8.                             int32 Offset, 
  9.                             int32 length)
  10. {
  11.   DWORD dwCurrentTick = GetTickCount();
  12.  
  13.   if (0 != this->dwLastTickCount)
  14.   {
  15. float BytesPerSecond = (float) length / 
  16.        ((float) (dwCurrentTick - this->dwLastTickCount) / 
  17.        (float) (dwCurrentTick - this->dwLastTickCount) / (float) 1000.0);
  18.     int SecondsRemaining = (int) ((FileSize - Offset) / BytesPerSecond);
  19.     int MinutesRemaining = SecondsRemaining / 60;
  20.     SecondsRemaining -= MinutesRemaining * 60;
  21.     CString OutPut;
  22.     int PercentComplete;
  23.  
  24.     // Sometimes FileSize is zero. Handle that case properly.
  25.     if (0 != FileSize)
  26.     {
  27.       PercentComplete = (int)((float)(100.0*Offset) / (float)FileSize);
  28.  
  29.       OutPut.Format ("%d%% of %dK (at%8.0f Kbps, %2d:%02d remaining)",
  30.         PercentComplete,
  31.         FileSize / 1024,
  32.         BytesPerSecond / 1024.0,
  33.         MinutesRemaining,
  34.         SecondsRemaining);
  35.     }
  36.     else
  37.       OutPut.Format ("%8.0f kbps)",
  38.         BytesPerSecond / 1024);
  39.     NPN_Status (instance, OutPut.GetBuffer(OutPut.GetLength()));
  40.   }
  41.  
  42.   this->dwLastTickCount = dwCurrentTick;
  43. }
  44.  
  45.