home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / LINUX / gopchop-1.1.7.tar.tar / gopchop-1.1.7.tar / gopchop-1.1.7 / src / List.cpp < prev    next >
C/C++ Source or Header  |  2003-04-27  |  2KB  |  86 lines

  1. /*
  2. #
  3. # Implements a class to hold an ordered array of Vectors
  4. #
  5. # $Id: List.cpp,v 1.7 2003/04/27 04:13:19 nemies Exp $
  6. #
  7. # Copyright (C) 2001-2003 Kees Cook
  8. # kees@outflux.net, http://outflux.net/
  9. # This program is free software; you can redistribute it and/or
  10. # modify it under the terms of the GNU General Public License
  11. # as published by the Free Software Foundation; either version 2
  12. # of the License, or (at your option) any later version.
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. # GNU General Public License for more details.
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20. # http://www.gnu.org/copyleft/gpl.html
  21. #
  22. */
  23.  
  24. #include "GOPchop.h"
  25. #include "List.h"
  26. // FIXME: why are these here?
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29.  
  30. List::List()
  31. {
  32.     max = num = 0;
  33.     map = NULL;
  34. }
  35.  
  36. void List::reset()
  37. {
  38.     uint32_t i;
  39.  
  40.     if (max > 0)
  41.     {
  42.         for (i = 0; i < num; i++)
  43.             delete map[i];
  44.         free(map);
  45.         map = NULL;
  46.         max = num = 0;
  47.     }
  48. }
  49.  
  50. List::~List()
  51. {
  52.     reset();
  53. }
  54.  
  55. #define STEP_SIZE    4096
  56. void List::add(Vector * vector)
  57. {
  58.     if (num == max)
  59.     {
  60.         max += STEP_SIZE;
  61.         if (!(map = (Vector **) realloc(map, max * sizeof(Vector *))))
  62.         {
  63.             perror("realloc");
  64.             exit(1);
  65.         }
  66.     }
  67.     map[num++] = vector;
  68. }
  69.  
  70. uint32_t List::getNum()
  71. {
  72.     return num;
  73. }
  74.  
  75. Vector *List::vector(uint32_t id)
  76. {
  77.     if (id >= num)
  78.         return NULL;
  79.     return map[id];
  80. }
  81.  
  82. /* vi:set ai ts=4 sw=4 expandtab: */
  83.