slist.C 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*
  24. * $XConsortium: slist.cc /main/4 1996/07/18 14:30:12 drk $
  25. *
  26. * Copyright (c) 1993 HAL Computer Systems International, Ltd.
  27. * All rights reserved. Unpublished -- rights reserved under
  28. * the Copyright Laws of the United States. USE OF A COPYRIGHT
  29. * NOTICE IS PRECAUTIONARY ONLY AND DOES NOT IMPLY PUBLICATION
  30. * OR DISCLOSURE.
  31. *
  32. * THIS SOFTWARE CONTAINS CONFIDENTIAL INFORMATION AND TRADE
  33. * SECRETS OF HAL COMPUTER SYSTEMS INTERNATIONAL, LTD. USE,
  34. * DISCLOSURE, OR REPRODUCTION IS PROHIBITED WITHOUT THE
  35. * PRIOR EXPRESS WRITTEN PERMISSION OF HAL COMPUTER SYSTEMS
  36. * INTERNATIONAL, LTD.
  37. *
  38. * RESTRICTED RIGHTS LEGEND
  39. * Use, duplication, or disclosure by the Government is subject
  40. * to the restrictions as set forth in subparagraph (c)(l)(ii)
  41. * of the Rights in Technical Data and Computer Software clause
  42. * at DFARS 252.227-7013.
  43. *
  44. * HAL COMPUTER SYSTEMS INTERNATIONAL, LTD.
  45. * 1315 Dell Avenue
  46. * Campbell, CA 95008
  47. *
  48. */
  49. #include "dstr/slist.h"
  50. #include "utility/funcs.h"
  51. slist::slist(slist_cell* x) : v_ct(0), v_head(0), v_tail(0)
  52. {
  53. if ( x )
  54. insert_as_tail(x);
  55. }
  56. slist::~slist()
  57. {
  58. slist_cell* y = 0;
  59. slist_cell* x = v_head;
  60. while (x) {
  61. y = x -> v_succ;
  62. delete x;
  63. x = y;
  64. }
  65. }
  66. void slist::append(slist* tail_list)
  67. {
  68. if ( tail_list == 0 ) return;
  69. if ( v_tail != 0 )
  70. v_tail -> v_succ = tail_list -> v_head;
  71. if ( v_head == 0 )
  72. v_head = tail_list -> v_head;
  73. v_tail = tail_list -> v_tail;
  74. v_ct += tail_list -> v_ct;
  75. tail_list -> v_head = tail_list -> v_tail = 0;
  76. tail_list -> v_ct = 0;
  77. }
  78. void slist::insert_as_tail(slist_cell* x)
  79. {
  80. if ( v_head == 0 ) {
  81. v_head = v_tail = x;
  82. } else {
  83. v_tail -> v_succ = x;
  84. v_tail = x;
  85. }
  86. x -> v_succ = 0;
  87. v_ct++;
  88. }
  89. void slist::delete_head()
  90. {
  91. if ( v_ct == 1 )
  92. v_head = v_tail = 0;
  93. else {
  94. v_head = v_head -> v_succ;
  95. }
  96. v_ct--;
  97. }
  98. long slist::first()
  99. {
  100. return long(v_head);
  101. }
  102. long slist::last()
  103. {
  104. return long(v_tail);
  105. }
  106. void slist::next(long& index)
  107. {
  108. if ( index == long(v_tail) )
  109. index = 0;
  110. else
  111. index = long( ((slist_cell*)(index)) -> v_succ );
  112. }
  113. slist* slist::concate_with(slist* first_list ...)
  114. {
  115. va_list ap;
  116. va_start (ap, first_list);
  117. this -> append(first_list);
  118. for (;;) {
  119. slist* p = va_arg(ap, slist*);
  120. if ( p == 0 )
  121. break;
  122. else
  123. this -> append(p);
  124. }
  125. va_end(ap);
  126. return this;
  127. }