/* Copyright (C) 2004 Garrett A. Kajmowicz This file is part of the uClibc++ Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include #include #ifndef __STD_HEADER_MAP #define __STD_HEADER_MAP #pragma GCC visibility push(default) namespace std{ template, class Allocator = allocator > class __base_map; template, class Allocator = allocator > class map; template, class Allocator = allocator > class multimap; template class __map_iter; template class __map_citer; /* The code for the map containers is split up into two classes. * The first class, __base_map holds all of the data and does much of the iterator-based * work. Then the classes map and multimap inherit from there. This was done to reduce * the redundancy of code (And thus errors which might crop up), as well as possibly * reducing the size of binaries if both map and multimap are used, along with the same * template parameters. */ //All base classes first (__base_map, iterators, value_compare) and it's associated code template class _UCXXEXPORT __base_map{ protected: friend class __map_iter; friend class __map_citer; public: typedef __base_map map_type; typedef Key key_type; typedef T mapped_type; typedef pair value_type; typedef Compare key_compare; typedef Allocator allocator_type; typedef typename Allocator::reference reference; typedef typename Allocator::const_reference const_reference; typedef __map_iter iterator; typedef __map_citer const_iterator; typedef typename Allocator::size_type size_type; typedef typename Allocator::difference_type difference_type; typedef typename Allocator::pointer pointer; typedef typename Allocator::const_pointer const_pointer; typedef typename std::reverse_iterator reverse_iterator; typedef typename std::reverse_iterator const_reverse_iterator; class value_compare; explicit __base_map(const Compare& comp = Compare(), const Allocator& al = Allocator()); __base_map(const map_type& x); ~__base_map(); iterator begin(); const_iterator begin() const; iterator end(); const_iterator end() const; reverse_iterator rbegin(); const_reverse_iterator rbegin() const; reverse_iterator rend(); const_reverse_iterator rend() const; bool empty() const; size_type size() const; size_type max_size() const; iterator lower_bound(const key_type& x); const_iterator lower_bound(const key_type& x) const; void swap(map_type & x); void clear(); key_compare key_comp() const; // value_compare value_comp() const; protected: deque, allocator > > data; Compare c; }; //Implementations template class _UCXXEXPORT __map_citer : public std::iterator< bidirectional_iterator_tag, std::pair, typename Allocator::difference_type, std::pair*, std::pair& > { protected: typedef __base_map Map; friend class __base_map; friend class __base_map::iterator; friend class map; friend class multimap; typename Map::size_type element; const Map * container; public: __map_citer() : element(0), container(0) { } __map_citer(const typename Map::const_iterator & m) : element(m.element), container(m.container) { } __map_citer(typename Map::size_type e, const Map * const c) : element(e), container(c) { } ~__map_citer() { } typename Map::value_type operator*() const{ return container->data[element]; } const typename Map::value_type * operator->() const{ return &(container->data[element]); } __map_citer & operator=(const typename Map::const_iterator & m){ element = m.element; container = m.container; return *this; } bool operator==(const typename Map::const_iterator & m) const { return (m.element == element && m.container == container); } bool operator!=(const typename Map::const_iterator & m) const { return (m.element != element || m.container != container); } __map_citer & operator++(){ ++element; return *this; } __map_citer operator++(int){ __map_citer temp(*this); ++element; return temp; } __map_citer & operator--(){ --element; return *this; } __map_citer operator--(int){ __map_citer temp(*this); --element; return temp; } }; template class _UCXXEXPORT __map_iter : public std::iterator< bidirectional_iterator_tag, std::pair, typename Allocator::difference_type, std::pair*, std::pair& > { protected: typedef class __base_map Map; //FIXME - Find a way to use template parameters or something. This will do for now friend class __base_map; friend class __base_map::const_iterator; friend class map; friend class multimap; typename Map::size_type element; Map * container; public: __map_iter() : element(0), container(0) { } __map_iter(const typename Map::iterator & m) : element(m.element), container(m.container) { } __map_iter(typename Map::size_type e, Map * c) : element(e), container(c) { } ~__map_iter() { } typename Map::value_type & operator*(){ return container->data[element]; } const typename Map::value_type & operator*() const{ return container->data[element]; } typename Map::value_type * operator->(){ return &(container->data[element]); } __map_iter & operator=(const typename Map::iterator & m){ element = m.element; container = m.container; return *this; } bool operator==(const typename Map::iterator & m) const { return (m.element == element && m.container == container); } bool operator!=(const typename Map::iterator & m) const { return (m.element != element || m.container != container); } bool operator==(const typename Map::const_iterator & m) const { return (m.element == element && m.container == container); } bool operator!=(const typename Map::const_iterator & m) const { return (m.element != element || m.container != container); } __map_iter & operator++(){ ++element; return *this; } __map_iter operator++(int){ __map_iter temp(*this); ++element; return temp; } __map_iter & operator--(){ --element; return *this; } __map_iter operator--(int){ __map_iter temp(*this); --element; return temp; } operator typename Map::const_iterator() const{ return typename Map::const_iterator(element, container); } }; //Compare the keys of the two items template class _UCXXEXPORT __base_map::value_compare : public binary_function< typename map::value_type, typename map::value_type, bool> { friend class __base_map; protected: Compare comp; value_compare(Compare c) : comp(c) { } ~value_compare() { } public: bool operator()(const value_type& x, const value_type& y) const { return comp(x.first, y.first); } }; template __base_map::__base_map(const Compare& comp, const Allocator&) : data(), c(comp) { } template __base_map::__base_map(const __base_map& x) : data(x.data), c(x.c) { } template __base_map::~__base_map() { } template typename __base_map::iterator __base_map::begin() { return iterator(0, this); } template typename __base_map::const_iterator __base_map::begin() const { return const_iterator(0, this); } template typename __base_map::iterator __base_map::end() { return iterator(data.size(), this); } template typename __base_map::const_iterator __base_map::end() const { return const_iterator(data.size(), this); } template typename __base_map::reverse_iterator __base_map::rbegin() { return reverse_iterator(end()); } template typename __base_map::const_reverse_iterator __base_map::rbegin() const { return const_reverse_iterator(end()); } template typename __base_map::reverse_iterator __base_map::rend() { return reverse_iterator(begin()); } template typename __base_map::const_reverse_iterator __base_map::rend() const { return const_reverse_iterator(begin()); } template bool __base_map::empty() const { return (data.size() == 0); } template typename __base_map::size_type __base_map::size() const { return data.size(); } template typename __base_map::size_type __base_map::max_size() const { return data.max_size(); } template typename __base_map::iterator __base_map::lower_bound(const key_type &x) { size_type low = 0; size_type high = data.size(); while (low < high) { size_type i = (low + high) / 2; if( c(data[i].first, x) ){ low = i + 1; }else{ high = i; } } return iterator(low, this); } template typename __base_map::const_iterator __base_map::lower_bound(const key_type &x) const { size_type low = 0; size_type high = data.size(); while (low < high) { size_type i = (low + high) / 2; if( c(data[i].first, x) ){ low = i + 1; }else{ high = i; } } return const_iterator(low, this); } template void __base_map::swap(__base_map& m) { Compare n = c; c = m.c; m.c = n; data.swap(m.data); } template void __base_map::clear() { data.clear(); } template typename __base_map::key_compare __base_map::key_comp() const { return c; } // value_compare value_comp() const; /* This is the implementation for the map container. As noted above, it deviates * from ISO spec by deriving from a base class in order to reduce code redundancy. * More code could be reduced by convirting to virtual functions (thus allowing * much of the erase and insert code to be duplicated), but that would deviate from * the specifications too much to be worth the risk. */ //Implementation of map template class _UCXXEXPORT map : public __base_map { //Default value of allocator does not meet C++ standard specs, but it works for this library //Deal with it public: typedef __base_map base; typedef typename base::key_type key_type; typedef typename base::mapped_type mapped_type; typedef typename base::value_type value_type; typedef typename base::key_compare key_compare; typedef typename base::allocator_type allocator_type; typedef typename base::reference reference; typedef typename base::const_reference const_reference; typedef typename base::iterator iterator; typedef typename base::const_iterator const_iterator; typedef typename base::size_type size_type; typedef typename base::difference_type difference_type; typedef typename base::pointer pointer; typedef typename base::const_pointer const_pointer; typedef typename base::reverse_iterator reverse_iterator; typedef typename base::const_reverse_iterator const_reverse_iterator; using base::value_compare; explicit map(const Compare& comp = Compare(), const Allocator& al = Allocator()) : base(comp, al) { } template map(InputIterator first, InputIterator last, const Compare& comp = Compare(), const Allocator& = Allocator()); map(const map& x) : base(x) { } ~map() { } map& operator=(const map& x); reference operator[](const key_type& k); pair insert(const value_type& x); iterator insert(iterator position, const value_type& x); template void insert(InputIterator first, InputIterator last); void erase(iterator position); size_type erase(const key_type& x); void erase(iterator first, iterator last); using base::begin; using base::end; using base::rbegin; using base::rend; using base::empty; using base::size; using base::max_size; iterator find(const key_type& x); const_iterator find(const key_type& x) const; size_type count(const key_type& x) const; iterator upper_bound(const key_type& x); const_iterator upper_bound(const key_type& x) const; pair equal_range(const key_type& x); pair equal_range(const key_type& x) const; protected: friend class base::iterator; friend class base::const_iterator; friend bool operator==(const map& x, const map& y); using base::data; using base::c; }; template template map:: map(InputIterator first, InputIterator last, const Compare& comp, const Allocator& al) : base(comp, al) { while(first !=last){ insert(*first); ++first; } } template map::map& map::operator=(const map& x) { if( &x == this){ return *this; } c = x.c; data = x.data; return *this; } template typename map::reference map::operator[](const key_type & k) { /* iterator i = lower_bound(k); if( !c( i->first, k) && !c(k, i->first) ){ return i->second; } pair t; t.first = k; t.second = T(); return insert(t).first->second; */ //This is from the spec and is quite ugly. return (*((insert(make_pair(k, T()))).first)).second; } template pair::iterator, bool> map::insert(const value_type& x) { pair::iterator, bool> retval; //Either set is empty or element to insert goes at the begining if(data.size() == 0 || c(x.first, data[0].first) ){ data.push_front(x); retval.first = begin(); retval.second = true; return retval; } //Element to insert goes at the end if( c(data[data.size() - 1].first, x.first) ){ data.push_back(x); retval.first = end(); --retval.first; retval.second = true; return retval; } retval.first = __base_map::lower_bound(x.first); //No match - this should never happen if(retval.first == end()){ retval.second = false; return retval; } //If we have an exact match if( !c( retval.first->first, x.first) && !c(x.first, retval.first->first ) ){ retval.second = false; return retval; } typename deque, allocator > >::iterator q(&data, retval.first.element); data.insert(q, x); retval.first = __base_map::lower_bound(x.first); //Need to refind because insert can move data around retval.second = true; return retval; } template typename map::iterator map::insert(iterator, const value_type& x) { //Just reusing code. It's hard to make improvements over existing algo. //We aren't using the iterator parameter, but it's only a hint and not required to be used. insert(x); return find(x.first); } template template void map::insert(InputIterator first, InputIterator last) { while(first !=last){ insert(*first); ++first; } } template void map::erase(iterator position) { //Create a deque iterator from position information and then //Use built in erase feature because it is handy. typename deque, allocator > >::iterator pos(&data, position.element); data.erase(pos); } template typename map::size_type map::erase(const key_type& x) { typename map::iterator i = find(x); if(i!=end()){ erase(i); return 1; } return 0; } template void map::erase(iterator first, iterator last) { typename deque, allocator > >::iterator f(&data, first.element); typename deque, allocator > >::iterator l(&data, last.element); data.erase(f, l); } template typename map::iterator map:: find(const typename map::key_type& x) { if(data.size() == 0){ return end(); } iterator retval = __base_map::lower_bound(x); if(retval == end()){ return retval; } //Make sure we have an exact match.... if(!c( retval->first, x) && !c(x, retval->first )){ return retval; } return end(); } template typename map::const_iterator map::find(const key_type& x) const { if(data.size() == 0){ return end(); } const_iterator retval = __base_map::lower_bound(x); if(retval == end()){ return retval; } //Make sure we have an exact match.... if(!c( retval->first, x) && !c(x, retval->first )){ return retval; } return end(); } template typename map::size_type map::count(const typename map::key_type& x) const { if( find(x) == end()){ return 0; } return 1; } template typename map::iterator map::upper_bound(const key_type& x) { typename map::iterator i = __base_map::lower_bound(x); if( i != end() && !c(x, i->first) ){ ++i; } return i; } template typename map::const_iterator map::upper_bound(const key_type& x) const { typename map::const_iterator i = __base_map::lower_bound(x); if(i != end() && !c(x, i->first)){ ++i; } return i; } template pair< typename map::iterator, typename map::iterator > map::equal_range(const key_type& x) { pair< typename map::iterator, typename map::iterator > retval; retval.first = __base_map::lower_bound(x); retval.second = upper_bound(x); return retval; } template pair< typename map::const_iterator, typename map::const_iterator > map::equal_range(const key_type& x) const { pair< typename map::const_iterator, typename map::const_iterator > retval; retval.first = __base_map::lower_bound(x); retval.second = upper_bound(x); return retval; } template bool operator== (const map& x, const map& y) { if(x.c == y.c && x.data == y.data){ return true; } return false; } //Implementation of multimap template class _UCXXEXPORT multimap : public __base_map { //Default value of allocator does not meet C++ standard specs, but it works for this library //Deal with it public: typedef __base_map base; typedef typename base::key_type key_type; typedef typename base::mapped_type mapped_type; typedef typename base::value_type value_type; typedef typename base::key_compare key_compare; typedef typename base::allocator_type allocator_type; typedef typename base::reference reference; typedef typename base::const_reference const_reference; typedef typename base::iterator iterator; typedef typename base::const_iterator const_iterator; typedef typename base::size_type size_type; typedef typename base::difference_type difference_type; typedef typename base::pointer pointer; typedef typename base::const_pointer const_pointer; typedef typename base::reverse_iterator reverse_iterator; typedef typename base::const_reverse_iterator const_reverse_iterator; explicit multimap(const Compare& comp = Compare(), const Allocator& al = Allocator()) : base(comp, al) { } template multimap(InputIterator first, InputIterator last, const Compare& comp = Compare(), const Allocator& = Allocator()); multimap(const multimap& x) : base(x) { } ~multimap() { } multimap& operator=(const multimap& x); iterator insert(const value_type& x); iterator insert(iterator position, const value_type& x); template void insert(InputIterator first, InputIterator last); void erase(iterator position); size_type erase(const key_type& x); void erase(iterator first, iterator last); using base::begin; using base::end; using base::rbegin; using base::rend; using base::empty; using base::size; using base::max_size; iterator find(const key_type& x); const_iterator find(const key_type& x) const; size_type count(const key_type& x) const; iterator upper_bound(const key_type& x); const_iterator upper_bound(const key_type& x) const; pair equal_range(const key_type& x); pair equal_range(const key_type& x) const; protected: friend class base::iterator; friend class base::const_iterator; using base::data; using base::c; }; template template multimap:: multimap(InputIterator first, InputIterator last, const Compare& comp, const Allocator& al) : base(comp, al) { while(first !=last){ insert(*first); ++first; } } template multimap::multimap& multimap::operator=(const multimap& x) { if( &x == this){ return *this; } c = x.c; data = x.data; return *this; } template typename multimap::iterator multimap::insert(const value_type &x) { iterator retval; //Either set is empty or element to insert goes at the begining if(data.size() == 0 || c(x.first, data[0].first) ){ data.push_front(x); return begin(); } //Element to insert goes at the end if( c(data[data.size() - 1].first, x.first) ){ data.push_back(x); return end(); } retval = __base_map::lower_bound(x.first); //No match - this should never happen if(retval == end()){ return retval; } if( !c(x.first, retval->first) ){ ++retval; } typename deque, allocator > >::iterator q(&data, retval.element); data.insert(q, x); return retval; } template typename multimap::iterator multimap::insert(iterator position, const value_type& x) { //Inserting at begining if(position == begin() && !c(position->first, x.first) ){ data.push_front(x); return position; } //Inserting at end if(position == end() && !c(x.first, data[data.size() - 1].first) ){ data.push_back(x); return position; } //Inserting in middle iterator temp = position; --temp; if( !c(position->first, x.first) && !c(x.first, temp->first) ){ typename deque, allocator > >::iterator q(&data, position.element); data.insert(q, x); return position; } return insert(x); } template template void multimap::insert(InputIterator first, InputIterator last) { while(first !=last){ insert(*first); ++first; } } template void multimap::erase(iterator position) { //Create a deque iterator from position information and then //Use built in erase feature because it is handy. typename deque, allocator > >::iterator pos(&data, position.element); data.erase(pos); } template typename multimap::size_type multimap::erase(const key_type& x) { typename multimap::iterator f = __base_map::lower_bound(x); typename multimap::iterator l = upper_bound(x); size_type t = l.element - f.element; erase(f, l); return t; } template void multimap::erase(iterator first, iterator last) { typename deque, allocator > >::iterator f(&data, first.element); typename deque, allocator > >::iterator l(&data, last.element); data.erase(f, l); } template typename multimap::iterator multimap::find(const key_type& x) { if(data.size() == 0){ return end(); } iterator retval = __base_map::lower_bound(x); if(retval == end()){ return retval; } if( c(x, retval->first) || c(retval->first, x) ){ return end(); } while( retval.element > 0 && !c(retval->first, x) && !c(x, retval->first) ){ --retval; } if( c(retval->first, x)){ ++retval; } return retval; } template typename multimap::const_iterator multimap::find(const key_type& x) const { if(data.size() == 0){ return end(); } const_iterator retval = __base_map::lower_bound(x); if(retval == end()){ return retval; } if( c(x, retval->first) || c(retval->first, x) ){ return end(); } while( retval.element > 0 && !c(retval->first, x) && !c(x, retval->first) ){ --retval; } if( c(retval->first, x)){ ++retval; } return retval; } template typename multimap::size_type multimap:: count(const typename multimap::key_type& x) const { pair< typename multimap::const_iterator, typename multimap::const_iterator > temp = equal_range(x); return temp.second.element - temp.first.element; } template typename multimap::iterator multimap::upper_bound(const key_type& x) { typename multimap::iterator i = __base_map::lower_bound(x); while(i != end() && !c(x, i->first)){ ++i; } return i; } template typename multimap::const_iterator multimap::upper_bound(const key_type& x) const { typename multimap::const_iterator i = __base_map::lower_bound(x); while(i != end() && !c(x, i->first)){ ++i; } return i; } template pair< typename multimap::iterator, typename multimap::iterator > multimap::equal_range(const key_type& x) { pair< typename multimap::iterator, typename multimap::iterator > retval; retval.first = __base_map::lower_bound(x); retval.second = upper_bound(x); return retval; } template pair< typename multimap::const_iterator, typename multimap::const_iterator > multimap::equal_range(const key_type& x) const { pair< typename multimap::const_iterator, typename multimap::const_iterator > retval; retval.first = __base_map::lower_bound(x); retval.second = upper_bound(x); return retval; } /* Non-member functions. These are at the end because they are not associated with any particular class. These will be implemented as I figure out exactly what all of them are supposed to do, and I have time. */ template _UCXXEXPORT bool operator< (const map& x, const map& y); template _UCXXEXPORT bool operator!= (const map& x, const map& y); template _UCXXEXPORT bool operator> (const map& x, const map& y); template _UCXXEXPORT bool operator>= (const map& x, const map& y); template _UCXXEXPORT bool operator<= (const map& x, const map& y); template _UCXXEXPORT void swap (map& x, map& y); template _UCXXEXPORT bool operator== (const multimap& x, const multimap& y); template _UCXXEXPORT bool operator< (const multimap& x, const multimap& y); template _UCXXEXPORT bool operator!= (const multimap& x, const multimap& y); template _UCXXEXPORT bool operator> (const multimap& x, const multimap& y); template _UCXXEXPORT bool operator>= (const multimap& x, const multimap& y); template _UCXXEXPORT bool operator<= (const multimap& x, const multimap& y); template _UCXXEXPORT void swap (multimap& x, multimap& y); } #pragma GCC visibility pop #endif