X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Fparray.hh;h=9ef9ddb2173b18f36dd6be1857ae91f615708c22;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=f5a2d373bf7ab4d1633c4fda204612367f89115a;hpb=c8e9703dffb4d1e774ead41c150fe9d3ef29bc4c;p=lilypond.git diff --git a/flower/include/parray.hh b/flower/include/parray.hh index f5a2d373bf..9ef9ddb217 100644 --- a/flower/include/parray.hh +++ b/flower/include/parray.hh @@ -1,9 +1,20 @@ /* - parray.hh -- declare Pointer_array + This file is part of LilyPond, the GNU music typesetter. - source file of the Flower Library + Copyright (C) 1997--2015 Han-Wen Nienhuys - (c) 1997--2006 Han-Wen Nienhuys + LilyPond 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 3 of the License, or + (at your option) any later version. + + LilyPond 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 LilyPond. If not, see . */ #ifndef PARRAY_HH @@ -11,352 +22,13 @@ #include "std-vector.hh" -/** - an array of pointers. +using namespace std; - TODO - should init to 0. -*/ template -class Link_array : private Array +class Link_array : public vector { - Link_array (Array const &v) - :Array (v) - { - } - -public: - Link_array () - { - } - - T *const &back() const - { - return (T * const &) Array::back(); - } - - T *&back () - { - return (T *&) Array::back (); - } - - Array::begin; - Array::end; - Array::clear; - Array::erase; - Array::resize; - Array::size; - Array::empty; - Array::pop_back; - - - /* Flower compat */ - Array::unordered_del; - Array::tighten_maxsize; - - static int default_compare (T *const &p1, T *const &p2) - { - /* can't do p1 -p2, since T might be an incomplete type */ - if (p1 < p2) - return -1; - if (p2 < p1) - return 1; - return 0; - } - Link_array (T *const *tp, int n) - : Array ((void **)tp, n) - { - } - - Link_array (Link_array const &src) - : Array (src) - { - } - - T *at (int i) - { - return (T *) Array::at (i); - } - T const *at (int i) const - { - return (T const *) Array::at (i); - } - - /// access element - T *&operator [] (int i) - { - return (T *&) Array::at (i); - } - /// access element - T *const operator [] (int i) const - { - return (T *const) Array::at (i); - } - T *pop () - { - T* t = (T *) Array::back (); - pop_back (); - return t; - } - void insert (iterator b, T *t) - { - Array::insert (b, t); - } - void insert (iterator pos, const_iterator b, const_iterator e) - { - Array::insert (pos, b, e); - } - void push_back (T *t) - { - Array::push_back (t); - } - - /// return last entry - T *top (int j) const - { - return (T *) Array::top (j); - } - T *& top (int i) - { - return (T *&) Array::top (i); - } - - void substitute (T *old, T *new_p) - { - int i; - while ((i = find_index (old)) >= 0) - if (new_p) - at (i) = new_p; - else - erase (begin () + i); - } - void unordered_substitute (T *old, T *new_p) - { - int i; - while ((i = find_index (old)) >= 0) - if (new_p) - at (i) = new_p; - else - unordered_del (i); - } - void default_sort () - { - sort (default_compare); - } - - // quicksort. - void sort (int (*compare) (T *const &, T *const &), - int lower = -1, int upper = -1); - - void uniq () - { - Link_array ls; - for (vsize i = 0; i < size (); i++) - if (!i || at (i - 1) != at (i)) - ls.push_back (at (i)); - *this = ls; - } - - T *& boundary (int d, int i) - { - assert (d); - if (d == 1) - return top (i); - else - return at (i); - } - T *boundary (int d, int i)const - { - assert (d); - if (d == 1) - return top (i); - else - return at (i); - } - - T ** accesses () const - { - return (T **) Array::accesses (); - } - /** - remove i-th element, and return it. - */ - T *get (vsize i) - { - T *t = at (i); - Array::erase (Array::begin () + i); - return t; - } - Link_array - slice (int l, int u) const - { - return Array::Array (begin () + l, begin () + u); - } - void concat (Link_array const &a2) - { - Array::insert (end (), a2.begin (), a2.end ()); - } - int find_index (T const *t) const - { - for (vsize i = 0; i < size (); i++) - if (at (i) == t) - return i; - return -1; - } - T const *find (T const *t) const - { - int i = find_index (t); - if (i >= 0) - return at (i); - else - return 0; - } - - void swap (vsize i, vsize j) - { - T *t ((*this)[i]); - (*this)[i] = (*this)[j]; - (*this)[j] = t; - } - void - reverse () - { - vsize h = size () / 2; - for (vsize i = 0, j = size () - 1; i < h; i++, j--) - swap (i, j); - } }; -template -Link_array -typecasts (Link_array const &a, T * /* dummy */) -{ - Link_array ret; - for (vsize i = a.size (); i--;) - ret.push_back (dynamic_cast (a[i])); // ugh? - return ret; -} - -template inline void -Link_array::sort (int (*compare) (T *const &, T *const &), int lower, int upper) -{ - if (lower < 0) - { - lower = 0; - upper = size () - 1; - } - if (lower >= upper) - return; - swap (lower, (lower + upper) / 2); - int last = lower; - for (int i = lower +1; i <= upper; i++) - if (compare (at (i), at (lower)) < 0) - swap (++last, i); - swap (lower, last); - sort (compare, lower, last - 1); - sort (compare, last + 1, upper); -} - -template -void -junk_pointers (Link_array &a) -{ - for (vsize i = 0; i < a.size (); i++) - delete a[i]; - a.clear (); -} - -/* - lookup with binsearch, return tokencode. -*/ -template -int -binsearch (Array const &arr, T t, int (*compare) (T const &, T const &)) -{ - int cmp; - int result; - int lo = 0; - int hi = arr.size (); - - /* binary search */ - do - { - cmp = (lo + hi) / 2; - - result = compare (t, arr[cmp]); - - if (result < 0) - hi = cmp; - else - lo = cmp; - } - while (hi - lo > 1); - - if (!compare (t, arr[lo])) - return lo; - /* not found */ - return -1; -} - -template -int -binsearch_links (Link_array const &arr, T *t, - int (*compare) (T *const &, T *const &)) -{ - int cmp; - int result; - int lo = 0; - int hi = arr.size (); - - if (hi == 0) - return -1; - - /* binary search */ - do - { - cmp = (lo + hi) / 2; - - result = (*compare) (t, arr[cmp]); - - if (result < 0) - hi = cmp; - else - lo = cmp; - } - while (hi - lo > 1); - - if (!compare (t, arr[lo])) - return lo; - /* not found */ - return -1; -} - -template -void -binary_search_bounds (Link_array const &table, - T const *key, int (*compare) (T *const &, T *const &), - int *lo, - int *hi) -{ - int cmp; - int result; - - /* binary search */ - do - { - cmp = (*lo + *hi) / 2; - - result = (*compare) ((T *) key, table[cmp]); - - if (result < 0) - *hi = cmp; - else - *lo = cmp; - } - while (*hi - *lo > 1); -} - - #endif // PARRAY_HH