chxelst.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "hxtypes.h"
  36. #include "hxresult.h"
  37. #include "hxcom.h"
  38. #include "ihxpckts.h"
  39. #include "hxfiles.h"
  40. #include "hxcore.h"
  41. #include "chxeven.h"
  42. #include "chxelst.h"
  43. #include "hxheap.h"
  44. #ifdef _DEBUG
  45. #undef HX_THIS_FILE
  46. static const char HX_THIS_FILE[] = __FILE__;
  47. #endif
  48. HX_RESULT CHXEventList::InsertEvent(CHXEvent* pEvent)
  49. {
  50.     HX_RESULT theErr = HXR_OK;
  51.     // enqueue the event into event queue
  52.     CHXEvent* event = NULL;
  53.     BOOL earlierPacketFound = FALSE;
  54.     UINT32 currentPos = 0;
  55.     UINT32 startPos = pEvent->GetTimeStartPos();
  56.     // Loop we are done or we find an event that is after this
  57.     // time stamp...
  58.     LISTPOSITION position = GetTailPosition();
  59.     while (position != NULL && !earlierPacketFound && theErr == HXR_OK )
  60.     {
  61. event = GetPrev(position);
  62. // This event must be valid or else it shouldn't be
  63. // in this list!
  64. HX_ASSERT_VALID_PTR(event);
  65. currentPos = event->GetTimeStartPos();
  66. // either   a) 0xFA 0xFB 0xFC (0xFD)
  67. // or     b) 0xFA .. 0xFF [roll over] (0x01)
  68. if ((currentPos <= startPos && (startPos - currentPos) < MAX_TIMESTAMP_GAP) ||
  69.     (currentPos > startPos && (currentPos - startPos) > MAX_TIMESTAMP_GAP))
  70. {
  71.     // Remember that we found an earlier packet...
  72.     earlierPacketFound = TRUE;
  73.     // If the position is null, then event was the first
  74.     // item in the list, and we need to do some fancy footwork...
  75.     if (!position)
  76.     {
  77. POSITION theHead = GetHeadPosition();
  78. LISTPOSITION listRet = InsertAfter(theHead,pEvent);
  79.                 if( listRet == NULL )
  80.                 {
  81.                     theErr = HXR_OUTOFMEMORY;
  82.                 }
  83.     }
  84.     // otherwise, roll ahead one...
  85.     else
  86.     {
  87. GetNext(position);
  88. // Now if the position is null, then event was the last
  89. // item in the list, and we need to do some more fancy footwork...
  90. if (!position)
  91. {
  92.     AddTail(pEvent);
  93. }
  94. else
  95. // otherwise, we have a normal case and we want to insert
  96. // right after the position of event
  97. {
  98.     LISTPOSITION listRet = InsertAfter(position,pEvent);
  99.                     if( listRet == NULL )
  100.                     {
  101.                         theErr = HXR_OUTOFMEMORY;
  102.     }
  103. }
  104.     }
  105.     // We don't need to search any more...
  106.     break; // while
  107. }
  108.     } // end while...
  109.     // If we didn't find an earlier packet, then we should insert at
  110.     // the head of the event list...
  111.     if (!theErr && !earlierPacketFound)
  112.     {
  113. AddHead(pEvent);
  114.     }
  115.     return theErr;
  116. }