/* * sl-merge.h: Part of GNU CSSC. * * * Copyright (C) 1997, Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. * * CSSC was originally Based on MySC, by Ross Ridge, which was * placed in the Public Domain. * * * Merge and remove member functions of the template range_list. * * @(#) CSSC sl-merge.c 1.1 93/11/09 17:18:03 * */ #include "cssc.h" #include "sid.h" #include "sid_list.h" #ifndef CSSC__SL_MERGE_H__ #define CSSC__SL_MERGE_H__ template range_list & range_list::merge(range_list const &list) { if (!valid() || !list.valid()) { return *this; } range *sp = list.head; if (sp == NULL) { return *this; } ASSERT(valid()); sp = do_copy_list(sp); if (head == NULL) { head = sp; } else { range *dp = head; while(dp->next != NULL) { dp = dp->next; } dp->next = sp; } clean(); return *this; } template range_list & range_list::remove(range_list const &list) { if (!valid() || !list.valid()) { return *this; } range *sp = list.head; if (sp == NULL) { return *this; } if (head == NULL) { return *this; } while(sp != NULL) { range *dp = head; while(dp != NULL) { if (sp->from <= dp->from && sp->to >= dp->from) { dp->from = sp->to; ++dp->from; } if (sp->to >= dp->to && sp->from <= dp->to) { dp->to = sp->from; --dp->to; } if (sp->from > dp->from && sp->to < dp->to) { range *p = new range; p->from = dp->from; p->to = sp->from; --p->to; sp->from = dp->to; ++sp->from; p->next = head->next; head = p; } dp = dp->next; } sp = sp->next; } clean(); return *this; } #endif /* __SL_MERGE_C__ */ /* Local variables: */ /* mode: c++ */ /* End: */