queue.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * Date last modified: Jan 2001
  3. * Modifications by Dan Libby (dan@libby.com), including:
  4. * - various fixes, null checks, etc
  5. * - addition of Q_Iter funcs, macros
  6. */
  7. /*
  8. * File : q.h
  9. *
  10. * Peter Yard 02 Jan 1993.
  11. *
  12. * Disclaimer: This code is released to the public domain.
  13. */
  14. #ifndef Q__H
  15. #define Q__H
  16. #ifndef False_
  17. #define False_ 0
  18. #endif
  19. #ifndef True_
  20. #define True_ 1
  21. #endif
  22. typedef struct nodeptr datanode;
  23. typedef struct nodeptr {
  24. void *data ;
  25. datanode *prev, *next ;
  26. } node ;
  27. /* For external use with Q_Iter* funcs */
  28. typedef struct nodeptr* q_iter;
  29. typedef struct {
  30. node *head, *tail, *cursor;
  31. int size, sorted, item_deleted;
  32. } queue;
  33. typedef struct {
  34. void *dataptr;
  35. node *loc ;
  36. } index_elt ;
  37. int Q_Init(queue *q);
  38. void Q_Destroy(queue *q);
  39. int Q_IsEmpty(queue *q);
  40. int Q_Size(queue *q);
  41. int Q_AtHead(queue *q);
  42. int Q_AtTail(queue *q);
  43. int Q_PushHead(queue *q, void *d);
  44. int Q_PushTail(queue *q, void *d);
  45. void *Q_Head(queue *q);
  46. void *Q_Tail(queue *q);
  47. void *Q_PopHead(queue *q);
  48. void *Q_PopTail(queue *q);
  49. void *Q_Next(queue *q);
  50. void *Q_Previous(queue *q);
  51. void *Q_DelCur(queue *q);
  52. void *Q_Get(queue *q);
  53. int Q_Put(queue *q, void *data);
  54. int Q_Sort(queue *q, int (*Comp)(const void *, const void *));
  55. int Q_Find(queue *q, void *data,
  56. int (*Comp)(const void *, const void *));
  57. void *Q_Seek(queue *q, void *data,
  58. int (*Comp)(const void *, const void *));
  59. int Q_Insert(queue *q, void *data,
  60. int (*Comp)(const void *, const void *));
  61. /* read only funcs for iterating through queue. above funcs modify queue */
  62. q_iter Q_Iter_Head(queue *q);
  63. q_iter Q_Iter_Tail(queue *q);
  64. q_iter Q_Iter_Next(q_iter qi);
  65. q_iter Q_Iter_Prev(q_iter qi);
  66. void* Q_Iter_Get(q_iter qi);
  67. int Q_Iter_Put(q_iter qi, void* data); /* not read only! here for completeness. */
  68. void* Q_Iter_Del(queue *q, q_iter iter); /* not read only! here for completeness. */
  69. /* Fast (macro'd) versions of above */
  70. #define Q_Iter_Head_F(q) (q ? (q_iter)((queue*)q)->head : NULL)
  71. #define Q_Iter_Tail_F(q) (q ? (q_iter)((queue*)q)->tail : NULL)
  72. #define Q_Iter_Next_F(qi) (qi ? (q_iter)((node*)qi)->next : NULL)
  73. #define Q_Iter_Prev_F(qi) (qi ? (q_iter)((node*)qi)->prev : NULL)
  74. #define Q_Iter_Get_F(qi) (qi ? ((node*)qi)->data : NULL)
  75. #endif /* Q__H */