LIST.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:16k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /******************************************************************************
  2. *       This is a part of the Microsoft Source Code Samples. 
  3. *       Copyright (C) 1993-1997 Microsoft Corporation.
  4. *       All rights reserved. 
  5. *       This source code is only intended as a supplement to 
  6. *       Microsoft Development Tools and/or WinHelp documentation.
  7. *       See these sources for detailed information regarding the 
  8. *       Microsoft samples programs.
  9. ******************************************************************************/
  10. /*
  11.  * LIST.H
  12.  */
  13. /*------------------------------------------------------------------------
  14. | Abstract data type LIST OF (*untyped*) object.
  15. | Different lists can have different types of object in them
  16. | Different items in a list can have different types of object in them.
  17. | The price of this lack of typing is that you have a slightly more
  18. | awkward syntax and you get no help from the compiler if you try to
  19. | put the wrong type of data into the list.
  20. |
  21. | The list is implemented as a collection of items.  Within the item
  22. | somewhere is the object.
  23. |
  24. | Objects are stored UNALIGNED within items.
  25. |
  26. | Use:
  27. |
  28. |   #include <list.h>
  29. |   . . .
  30. |   LIST MyList; (* or LIST liMyList for Hungarians *)
  31. |   . . .
  32. |   MyList = List_Create();
  33. |   List_AddLast(MyList,&MyObject,sizeof(OBJECT));
  34. |
  35. | In the abstract a LIST is a list of objects.  The representation
  36. | is a linked collection of items.  The manner of the linking is
  37. | implementation dependent (as I write this it's linear but when you
  38. | read it it might be a tree (See Knuth for why a tree)).
  39. |
  40. | A LIST is a "handle" for a list which may be thought of as a POINTER
  41. | (whether it is really a pointer or not is implementation dependent)
  42. | so that it can be copied at the risk of creating an alias. e.g.
  43. |
  44. |   L = List_Create();
  45. |   L1 = L;             (* L and L1 are both healthy and empty *)
  46. |   List_AddFirst(L, &elem, sizeof(elem));
  47. |   (* L1 may also appear to have one object, there again it may be sick *)
  48. |   L1 = L;               (* Now they both surely see the one element *)
  49. |   List_Destroy(&L1);    (* L is almost certainly sick now too *)
  50. |   L1 = List_Create();   (* All bets off as to what L is like now
  51. |                            but L1 is empty and healthy
  52. |                         *)
  53. |
  54. | If two handles compare equal then the lists must be equal, but
  55. | unequal handles could address two similar lists i.e. the same list
  56. | of objects held in two different LISTs of items (like pointers).
  57. |
  58. | A LIST can be transferred from one variable to another like this:
  59. |
  60. |   NewList = OldList;           (* copy the handle *)
  61. |   OldList = List_Create();     (* kill the old alias *)
  62. |
  63. | and the Create statement can be omitted if OldList is never touched again.
  64. |
  65. | Items are identified by Cursors.  A cursor is the address of an object
  66. | within an item in the list. i.e. it is the address of the piece of your
  67. | data that you had inserted.  (It is probably NOT the address of the item).
  68. | It is typed as pointer to void here, but you should declare it as a pointer
  69. | to whatever sort of object you are putting in the LIST.
  70. |
  71. | The operations AddFirst, AddLast, AddAfter and AddBefore
  72. | all copy elements by direct assignment.  If an element is itself
  73. | a complex structure (say a tree) then this will only copy a pointer
  74. | or an anchor block or whatever and give all the usual problems of
  75. | aliases.  Clear will make the list empty, but will only free the
  76. | storage that it can "see" directly.  SplitBefore or Split After may
  77. | also perform a Clear operation.  To deal with fancy data structures
  78. | use New rather than Add calls and copy the data yourself
  79. |   e.g.  P = List_NewLast(MyList, sizeof(MyArray[14])*(23-14+1));
  80. |         CopyArraySlice(P, MyArray, 14, 23);
  81. |
  82. | The operations NewFirst, NewLast, NewAfter, NewBefore, First and Last
  83. | all return pointers to elements and thus allow you to do any copying.
  84. | This is how you might copy a whole list of fancy structures:
  85. |
  86. |    void CopyFancyList(LIST * To, LIST From)
  87. |             (* Assumes that To has been Created and is empty *)
  88. |    { PELEMENT Cursor;
  89. |      PELEMENT P;
  90. |
  91. |      List_TRAVERSE(From, Cursor);
  92. |      { P = List_NewLast(To, sizeof(element) );
  93. |        FancyCopy(P, Cursor);    (* Copy so that *Cursor==*P afterwords *)
  94. |      }
  95. |    }
  96.  --------------------------------------------------------------------*/
  97.   typedef struct item_tag FAR * LIST;
  98.   typedef LIST FAR * PLIST;
  99.   void APIENTRY List_Init(void);
  100.   /* MUST BE CALLED BEFORE ANY OF THE OTHER FUNCTIONS. */
  101.   void APIENTRY List_Dump(LPSTR Header, LIST lst);
  102.   /* Dump the internals to current output stream -- debug only */
  103.   void APIENTRY List_Show(LIST lst);
  104.   /* Dump hex representation of handle to current out stream -- debug only */
  105.   LIST APIENTRY List_Create(void);
  106.   /* Create a list.  It will be initially empty */
  107.   void APIENTRY List_Destroy(PLIST plst);
  108.   /* Destroy *plst.  It does not need to be empty first.
  109.   |  All storage directly in the list wil be freed.
  110.   */
  111.   void APIENTRY List_AddFirst(LIST lst, LPVOID pObject, UINT uLen);
  112.   /* Add an item holding Object to the beginning of * plst */
  113.   LPVOID APIENTRY List_NewFirst(LIST lst, UINT uLen);
  114.   /* Return the address of the place for Len bytes of data in a new
  115.   |  item at the start of *plst
  116.   */
  117.   void APIENTRY List_DeleteFirst(LIST lst);
  118.   /* Delete the first item in lst.  Error if lst is empty */
  119.   void APIENTRY List_AddLast(LIST lst, LPVOID pObject, UINT uLen);
  120.   /* Add an item holding Object to the end of lst */
  121.   LPVOID APIENTRY List_NewLast(LIST lst, UINT uLen);
  122.   /* Return the address of the place for uLen bytes of data in a new
  123.   |  item at the end of lst
  124.   */
  125.   void APIENTRY List_DeleteLast(LIST lst);
  126.   /* Delete the last item in lst.  Error if lst is empty */
  127.   void APIENTRY List_AddAfter( LIST lst
  128.                     , LPVOID Curs
  129.                     , LPVOID pObject
  130.                     , UINT uLen
  131.                     );
  132.   /*--------------------------------------------------------------------
  133.   | Add an item holding *pObject to lst immediately after Curs.
  134.   | List_AddAfter(lst, NULL, pObject, Len) adds it to the start of the lst
  135.    ---------------------------------------------------------------------*/
  136.   LPVOID APIENTRY List_NewAfter(LIST lst, LPVOID Curs, UINT uLen);
  137.   /*--------------------------------------------------------------------
  138.   | Return the address of the place for uLen bytes of data in a new
  139.   | item immediately after Curs.
  140.   | List_NewAfter(Lst, NULL, uLen) returns a pointer
  141.   | to space for uLen bytes in a new first element.
  142.    ---------------------------------------------------------------------*/
  143.   void APIENTRY List_AddBefore( LIST lst
  144.                      , LPVOID Curs
  145.                      , LPVOID pObject
  146.                      , UINT uLen
  147.                      );
  148.   /*--------------------------------------------------------------------
  149.   | Add an item holding Object to lst immediately before Curs.
  150.   | List_AddBefore(Lst, NULL, Object, uLen) adds it to the end of the list
  151.    ---------------------------------------------------------------------*/
  152.   LPVOID APIENTRY List_NewBefore(LIST lst, LPVOID Curs, UINT uLen );
  153.   /*--------------------------------------------------------------------
  154.   | Return the address of the place for uLen bytes of data in a new
  155.   | item immediately before Curs.
  156.   | List_NewBefore(Lst, NULL, uLen) returns a pointer
  157.   | to space for uLen bytes in a new last element.
  158.    ---------------------------------------------------------------------*/
  159.   void APIENTRY List_Delete(LPVOID Curs);
  160.   /*------------------------------------------------------------------
  161.   | Delete the item that Curs identifies.
  162.   | This will be only a few (maybe as little as 3) machine instructions
  163.   | quicker than DeleteAndNext or DeleteAndPrev but leaves Curs dangling.
  164.   | It is therefore NOT usually to be preferred.
  165.   | It may be useful when you have a function which returns an LPVOID
  166.   | since the argument does not need to be a variable.
  167.   |     Trivial example: List_Delete(List_First(L));
  168.    -------------------------------------------------------------------*/
  169.   int APIENTRY List_ItemLength(LPVOID Curs);
  170.   /* Return the length of the object identified by the cursor Curs */
  171.   /*------------------------------------------------------------------
  172.   | TRAVERSING THE ULIST
  173.   |
  174.   | LIST lst;
  175.   | object * Curs;
  176.   | . . .
  177.   | Curs = List_First(lst);
  178.   | while (Curs!=NULL)
  179.   | {  DoSomething(*Curs);   (* Curs points to YOUR data not to chain ptrs *)
  180.   |    Curs = List_Next(Curs);
  181.   | }
  182.   |
  183.   | This is identically equal to
  184.   | List_TRAVERSE(lst, Curs)  // note NO SEMI COLON!
  185.   | {  DoSomething(*Curs); }
  186.    -------------------------------------------------------------------*/
  187.   #define List_TRAVERSE(lst, curs)  for(  curs=List_First(lst)            
  188.                                        ;  curs!=NULL                      
  189.                                        ;  curs = List_Next((LPVOID)curs)  
  190.                                        )
  191.   LPVOID APIENTRY List_First(LIST lst);
  192.   /*------------------------------------------------------------------
  193.   | Return the address of the first object in lst
  194.   |  If lst is empty then Return NULL.
  195.   --------------------------------------------------------------------*/
  196.   LPVOID APIENTRY List_Last(LIST lst);
  197.   /*------------------------------------------------------------------
  198.   | Return the address of the last object in lst
  199.   | If lst is empty then return NULL.
  200.   --------------------------------------------------------------------*/
  201.   LPVOID APIENTRY List_Next(LPVOID Curs);
  202.   /*------------------------------------------------------------------
  203.   | Return the address of the object after Curs^.
  204.   | List_Next(List_Last(lst)) == NULL;  List_Next(NULL) is an error.
  205.   | List_Next(List_Prev(curs)) is illegal if curs identifies first el
  206.   --------------------------------------------------------------------*/
  207.   LPVOID APIENTRY List_Prev(LPVOID Curs);
  208.   /*------------------------------------------------------------------
  209.   | Return the address of the object after Curs^.
  210.   | List_Prev(List_First(L)) == NULL;  List_Prev(NULL) is an error.
  211.   | List_Prev(List_Next(curs)) is illegal if curs identifies last el
  212.   --------------------------------------------------------------------*/
  213.   /*------------------------------------------------------------------
  214.   |  Whole list operations
  215.    -----------------------------------------------------------------*/
  216.   void APIENTRY List_Clear(LIST lst);
  217.   /* arrange that lst is empty after this */
  218.   BOOL APIENTRY List_IsEmpty(LIST lst);
  219.   /* Return TRUE if and only if lst is empty */
  220.   void APIENTRY List_Join(LIST l1, LIST l2);
  221.   /*-----------------------------------------------------------------------
  222.   | l1 := l1||l2; l2 := empty
  223.   | The elements themselves are not moved, so pointers to them remain valid.
  224.   |
  225.   | l1 gets all the elements of l1 in their original order followed by
  226.   | all the elements of l2 in the order they were in in l2.
  227.   | l2 becomes empty.
  228.    ------------------------------------------------------------------------*/
  229.   void APIENTRY List_InsertListAfter(LIST l1, LIST l2, LPVOID Curs);
  230.   /*-----------------------------------------------------------------------
  231.   | l1 := l1[...Curs] || l2 || l1[Curs+1...]; l2 := empty
  232.   | Curs=NULL means insert l2 at the start of l1
  233.   | The elements themselves are not moved, so pointers to them remain valid.
  234.   |
  235.   | l1 gets the elements of l1 from the start up to and including the element
  236.   | that Curs points at, in their original order,
  237.   | followed by all the elements that were in l2, in their original order,
  238.   | followed by the rest of l1
  239.    ------------------------------------------------------------------------*/
  240.   void APIENTRY List_InsertListBefore(LIST l1, LIST l2, LPVOID Curs);
  241.   /*-----------------------------------------------------------------------
  242.   | l1 := l1[...Curs-1] || l2 || l1[Curs...]; l2 := empty
  243.   | Curs=NULL means insert l2 at the end of l1
  244.   | The elements themselves are not moved, so pointers to them remain valid.
  245.   |
  246.   | l1 gets the elements of l1 from the start up to but not including the
  247.   | element that Curs points at, in their original order,
  248.   | followed by all the elements that were in l2, in their original order,
  249.   | followed by the rest of l1.
  250.    ------------------------------------------------------------------------*/
  251.   void APIENTRY List_SplitAfter(LIST l1, LIST l2, LPVOID Curs);
  252.   /*-----------------------------------------------------------------------
  253.   | Let l1 be l1 and l2 be l2
  254.   | Split l2 off from the front of l1:    final l2,l1 = original l1
  255.   |
  256.   | Split l1 into l2: objects of l1 up to and including Curs object
  257.   |               l1: objects of l1 after Curs
  258.   | Any original contents of l2 are freed.
  259.   | List_Spilt(l1, l2, NULL) splits l1 before the first object so l1 gets all.
  260.   | The elements themselves are not moved.
  261.    ------------------------------------------------------------------------*/
  262.   void APIENTRY List_SplitBefore(LIST l1, LIST l2, LPVOID Curs);
  263.   /*----------------------------------------------------------------------
  264.   | Split l2 off from the back of l1:  final l1,l2 = original l1
  265.   |
  266.   | Split l1 into l1: objects of l1 up to but not including Curs object
  267.   |               l2: objects of l1 from Curs onwards
  268.   | Any original contants of l2 are freed.
  269.   | List_Spilt(l1, l2, NULL) splits l1 after the last object so l1 gets all.
  270.   | The elements themselves are not moved.
  271.    -----------------------------------------------------------------------*/
  272.   int APIENTRY List_Card(LIST lst);
  273.   /* Return the number of items in L */
  274.   /*------------------------------------------------------------------
  275.   | Error handling.
  276.   |
  277.   | Each list has within it a flag which indicates whether any illegal
  278.   | operation has been detected (e.g. DeleteFirst when empty).
  279.   | Rather than have a flag on every operation, there is a flag held
  280.   | within the list that can be queried when convenient.  Many operations
  281.   | do not have enough redundancy to allow any meaningful check.  This
  282.   | is a design compromise (for instance to allow P = List_Next(P);
  283.   | rather than P = List_Next(L, P); which is more awkward, especially
  284.   | if L is actually a lengthy phrase).
  285.   |
  286.   | List_IsOK tests this flag (so is a very simple, quick operation).
  287.   | MakeOK sets the flag to TRUE, in other words to accept the current
  288.   | state of the list.
  289.   |
  290.   | It is possible for a list to be damaged (whether or not the flag
  291.   | says OK) for instance by the storage being overwritten.
  292.   |
  293.   | List_Check attempts to verify that the list is sound (for instance where
  294.   | there are both forward and backward pointers they should agree).
  295.   |
  296.   | List_Recover attempts to make a sound list out of whatever debris is left.
  297.   | If the list is damaged, Recover may trap (e.g. address error) but
  298.   | if the list was damaged then ANY operation on it may trap.
  299.   | If Check succeeds without trapping then so will Recover.
  300.    -----------------------------------------------------------------*/
  301.   BOOL APIENTRY List_IsOK(LIST lst);
  302.   /* Check return code */
  303.   void APIENTRY List_MakeOK(LIST lst);
  304.   /* Set return code to good */
  305.   BOOL APIENTRY List_Check(LIST lst);
  306.   /* Attempt to validate the chains */
  307.   void APIENTRY List_Recover(PLIST plst);
  308.   /* Desperate stuff.  Attempt to reconstruct something */
  309. /*------------------------------------------------------------------
  310. |  It is designed to be as easy to USE as possible, consistent
  311. |  only with being an opaque type.
  312. |
  313. |  In particular, the decision to use the address of an object a list cursor
  314. |  means that there is a small amount of extra arithmetic (in the
  315. |  IMPLEMENTATION) in cursor operations (e.g. Next and Prev).
  316. |  and spurious arguments are avoided whenever possible, even though
  317. |  it would allow greater error checking.
  318. |
  319. | Of the "whole list" operations, Clear is given because it seems to be
  320. | a common operation, even though the caller can implement it with almost
  321. | the same efficiency as the List implementation module.
  322. | Join, Split and InsertListXxx cannot be implemented efficiently without
  323. | knowing the representation.
  324.  --------------------------------------------------------------------*/