chxelst.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:5k
源码类别:

Symbian

开发平台:

Visual C++

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