ftp.nice.ch/pub/next/developer/resources/libraries/libcoll.930521.s.tar.gz#/libcoll-930521/GapArray.m

This is GapArray.m in view mode; [Download] [Up]

/* Implementation for Objective-C GapArray collection object

   Copyright (C) 1993 R. Andrew McCallum <mccallum@cs.rochester.edu>
   Dept. of Computer Science, U. of Rochester, Rochester, NY  14627
   Copyright (C) 1993 Kresten Krab Thorup <krab@iesd.auc.dk>
   Dept. of Mathematics and Computer Science, Aalborg U., Denmark

   This file is part of the GNU Objective-C Collection library.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.
   
   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with this library; if not, write to the Free
   Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ 


#include <coll/GapArray.h>
#include <coll/GapArrayPrivate.h>

@implementation GapArray

+ initialize
{
    if (self == [GapArray class])
	[self setVersion:-1];	/* alpha release */
    return self;
}

/* This is the designated initializer of this class */
- initDescription: (const char *)type capacity: (unsigned)aCapacity
{
  [super initDescription:type capacity:aCapacity];
  _gap_start = 0;
  _gap_size  = aCapacity;
  return self;
}


- setCapacity: (unsigned)newCapacity
{
  if (newCapacity > _count)
    {
      gapMoveGapTo (self, _capacity-_gap_size); /* move gap to end */
      [super setCapacity: newCapacity];	/* resize */
      _gap_size = _capacity - _gap_start;
    }
  return self;
}
      
- (elt) removeElementAtIndex: (unsigned)index
{
  elt res;
  if (INDEX_RANGE_WARNING(index, _count))
    return COLL_NO_ELEMENT;
  res = _contents_array[GAP_TO_BASIC (index)];
  gapFillHoleAt (self, index);
  decrementCount(self);
  return res;
}

- (elt) removeFirstElement
{
  elt res = _contents_array[GAP_TO_BASIC (0)];
  gapFillHoleAt (self, 0);
  decrementCount(self);
  return res;
}

- (elt) removeLastElement
{
  return [self removeElementAtIndex: _count-1];
}

- (elt) elementAtIndex: (unsigned)index
{
  if (INDEX_RANGE_WARNING(index, _count))
    return COLL_NO_ELEMENT;
  return _contents_array[GAP_TO_BASIC(index)];
}

- appendElement: (elt)newElement
{
  incrementCount(self);
  gapMakeHoleAt (self, _count-1);
  _contents_array[_count-1] = newElement;
  return self;
}

- prependElement: (elt)newElement
{
  incrementCount(self);
  gapMakeHoleAt (self, 0);
  _contents_array[0] = newElement;
  return self;
}

- insertElement: (elt)newElement atIndex: (unsigned)index
{
  if (INDEX_RANGE_WARNING(index, _count+1))
    return nil;
  incrementCount(self);
  gapMakeHoleAt (self, index);
  _contents_array[index] = newElement;
  return self;
}

- (elt) replaceElementAtIndex: (unsigned)index with: (elt)newElement
{
  elt ret;

  if (INDEX_RANGE_WARNING(index, _count))
    return nil;
  ret = _contents_array[GAP_TO_BASIC(index)];
  _contents_array[GAP_TO_BASIC(index)] = newElement;
  return self;
}

- swapAtIndeces: (unsigned)index1 : (unsigned)index2
{
  elt tmp;

  if (INDEX_RANGE_WARNING(index1, _count)
      || INDEX_RANGE_WARNING(index2, _count))
    return nil;
  index1 = GAP_TO_BASIC(index1);
  index2 = GAP_TO_BASIC(index2);
  tmp = _contents_array[index1];
  _contents_array[index1] = _contents_array[index2];
  _contents_array[index2] = tmp;
  return self;
}

/* Let IndexedCollection take care of this
- shallowCopyReplaceFrom: (unsigned)start to: (unsigned)stop 
    using: (id <Collecting>)replaceCollection
{
  id newColl = [self shallowCopy];
  unsigned index = start;
  BOOL cont = YES;
  void doIt (elt e)
    {
      [newColl replaceElementAtIndex: index with: e];
      cont = (index++ != stop);
    }
  [replaceCollection withElementsCall: doIt whileTrue: &cont];
  return newColl;
}
*/

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.