summaryrefslogtreecommitdiff
path: root/o3tl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-07-13 13:55:15 +0200
committerMichael Stahl <mstahl@redhat.com>2012-07-17 15:28:09 +0200
commit0f57086b221eb1e7d3d9d7cdb6f3cdcb50f1edda (patch)
tree7f0561cf75ee89cd390cc7ffe074e0ea25d14af8 /o3tl
parent1d6830ec60f726b0e6ecd1d0d0062825c1edbb2a (diff)
Improvements to sorted_vector
Implement suggestionss from David Tardon, mostly around prohibiting access that could result in the vector becoming unsorted. Add front() and back() accessors. Add lower_bound() method. Add optimised insert() method. Change-Id: Icbb3597277f3e5963573b57d4f6d3cb740e896e6
Diffstat (limited to 'o3tl')
-rw-r--r--o3tl/inc/o3tl/sorted_vector.hxx115
-rw-r--r--o3tl/qa/test-sorted_vector.cxx40
2 files changed, 131 insertions, 24 deletions
diff --git a/o3tl/inc/o3tl/sorted_vector.hxx b/o3tl/inc/o3tl/sorted_vector.hxx
index c2eebab2f216..153e9950b77a 100644
--- a/o3tl/inc/o3tl/sorted_vector.hxx
+++ b/o3tl/inc/o3tl/sorted_vector.hxx
@@ -38,27 +38,24 @@ class sorted_vector
: private std::vector<Value>
, private sorted_vector_compare<Value, Compare>
{
-public:
+private:
typedef typename std::vector<Value>::iterator iterator;
- typedef typename std::vector<Value>::const_iterator const_iterator;
- typedef typename std::vector<Value>::size_type size_type;
+public:
+ typedef typename std::vector<Value>::const_iterator const_iterator;
+ typedef typename std::vector<Value>::size_type size_type;
typedef sorted_vector_compare<Value, Compare> MyCompare;
- using std::vector<Value>::begin;
- using std::vector<Value>::end;
using std::vector<Value>::clear;
using std::vector<Value>::erase;
using std::vector<Value>::empty;
using std::vector<Value>::size;
- using std::vector<Value>::operator[];
// MODIFIERS
- std::pair<iterator,bool> insert( const Value& x )
+ std::pair<const_iterator,bool> insert( const Value& x )
{
- const MyCompare& me = *this;
- iterator it = std::lower_bound( begin(), end(), x, me );
- if( it == end() || less_than(x, *it) )
+ iterator it = _lower_bound( x );
+ if( it == std::vector<Value>::end() || less_than(x, *it) )
{
it = std::vector<Value>::insert( it, x );
return std::make_pair( it, true );
@@ -68,8 +65,8 @@ public:
size_type erase( const Value& x )
{
- iterator it = find(x);
- if( it != end() )
+ iterator it = _lower_bound( x );
+ if( it != std::vector<Value>::end() && !less_than(x, *it) )
{
erase( it );
return 1;
@@ -77,31 +74,91 @@ public:
return 0;
}
+ // ACCESSORS
+
+ // Only return a const iterator, so that the vector cannot be directly updated.
+ const_iterator begin() const
+ {
+ return std::vector<Value>::begin();
+ }
+
+ // Only return a const iterator, so that the vector cannot be directly updated.
+ const_iterator end() const
+ {
+ return std::vector<Value>::end();
+ }
+
+ // Return a value rather than a reference, so that the vector cannot be directly updated,
+ // and the sorted invariant violated.
+ Value front()
+ {
+ return std::vector<Value>::front();
+ }
+
+ const Value& front() const
+ {
+ return std::vector<Value>::front();
+ }
+
+ // Return a value rather than a reference, so that the vector cannot be directly updated,
+ // and the sorted invariant violated.
+ Value back()
+ {
+ return std::vector<Value>::back();
+ }
+
+ const Value& back() const
+ {
+ return std::vector<Value>::back();
+ }
+
+ // Return a value rather than a reference, so that the vector cannot be directly updated,
+ // and the sorted invariant violated.
+ Value operator[]( size_t index )
+ {
+ return std::vector<Value>::operator[]( index );
+ }
+
+ const Value& operator[]( size_t index ) const
+ {
+ return std::vector<Value>::operator[]( index );
+ }
+
// OPERATIONS
+ const_iterator lower_bound( const Value& x ) const
+ {
+ const MyCompare& me = *this;
+ return std::lower_bound( std::vector<Value>::begin(), std::vector<Value>::end(), x, me );
+ }
+
/* Searches the container for an element with a value of x
* and returns an iterator to it if found, otherwise it returns an
* iterator to sorted_vector::end (the element past the end of the container).
+ *
+ * Only return a const iterator, so that the vector cannot be directly updated.
*/
const_iterator find( const Value& x ) const
{
- const MyCompare& me = *this;
- const_iterator it = std::lower_bound( begin(), end(), x, me );
- if( it == end() || less_than(x, *it) )
+ const_iterator it = lower_bound( x );
+ if( it == std::vector<Value>::end() || less_than(x, *it) )
{
- return end();
+ return std::vector<Value>::end();
}
return it;
}
- iterator find( const Value& x )
+
+ void insert( sorted_vector<Value,Compare> &rOther )
{
- const MyCompare& me = *this;
- iterator it = std::lower_bound( begin(), end(), x, me );
- if( it == end() || less_than(x, *it) )
- {
- return end();
- }
- return it;
+ // optimisation for the rather common case that we are overwriting this with the contents
+ // of another sorted vector
+ if ( empty() )
+ {
+ std::vector<Value>::insert( _begin(), rOther._begin(), rOther._end() );
+ }
+ else
+ for( const_iterator it = rOther.begin(); it != rOther.end(); ++it )
+ insert( *it );
}
/* Clear() elements in the vector, and free them one by one. */
@@ -119,6 +176,16 @@ private:
const MyCompare& me = *this;
return me.operator()(lhs, rhs);
}
+
+ iterator _lower_bound( const Value& x )
+ {
+ const MyCompare& me = *this;
+ return std::lower_bound( std::vector<Value>::begin(), std::vector<Value>::end(), x, me );
+ }
+
+ typename std::vector<Value>::iterator _begin() { return std::vector<Value>::begin(); }
+ typename std::vector<Value>::iterator _end() { return std::vector<Value>::end(); }
+
};
diff --git a/o3tl/qa/test-sorted_vector.cxx b/o3tl/qa/test-sorted_vector.cxx
index 11732bd5f875..16dc1dd36173 100644
--- a/o3tl/qa/test-sorted_vector.cxx
+++ b/o3tl/qa/test-sorted_vector.cxx
@@ -50,6 +50,12 @@ public:
CPPUNIT_ASSERT( aVec[0] == p1 );
CPPUNIT_ASSERT( aVec[1] == p3 );
+ CPPUNIT_ASSERT( *aVec.begin() == p1 );
+ CPPUNIT_ASSERT( *(aVec.end()-1) == p3 );
+
+ CPPUNIT_ASSERT( aVec.front() == p1 );
+ CPPUNIT_ASSERT( aVec.back() == p3 );
+
CPPUNIT_ASSERT( aVec.find(p1) != aVec.end() );
CPPUNIT_ASSERT( aVec.find(p1) - aVec.begin() == 0 );
CPPUNIT_ASSERT( aVec.find(p3) != aVec.end() );
@@ -64,6 +70,38 @@ public:
aVec.DeleteAndDestroyAll();
}
+ void testInsertRange()
+ {
+ o3tl::sorted_vector<SwContent*, o3tl::less_ptr_to<SwContent> > aVec1;
+ SwContent *p1 = new SwContent(1);
+ SwContent *p2 = new SwContent(2);
+ SwContent *p3 = new SwContent(3);
+
+ aVec1.insert(p1);
+ aVec1.insert(p2);
+ aVec1.insert(p3);
+
+ o3tl::sorted_vector<SwContent*, o3tl::less_ptr_to<SwContent> > aVec2;
+ aVec2.insert( aVec1 );
+
+ CPPUNIT_ASSERT( aVec2.size() == 3 );
+ }
+
+ void testLowerBound()
+ {
+ o3tl::sorted_vector<SwContent*, o3tl::less_ptr_to<SwContent> > aVec;
+ SwContent *p1 = new SwContent(1);
+ SwContent *p2 = new SwContent(2);
+ SwContent *p3 = new SwContent(3);
+ SwContent *p4 = new SwContent(4);
+
+ aVec.insert(p1);
+ aVec.insert(p2);
+ aVec.insert(p3);
+
+ CPPUNIT_ASSERT( aVec.lower_bound(p1) == aVec.begin() );
+ CPPUNIT_ASSERT( aVec.lower_bound(p4) == aVec.end() );
+ }
// Change the following lines only, if you add, remove or rename
// member functions of the current class,
@@ -71,6 +109,8 @@ public:
CPPUNIT_TEST_SUITE(sorted_vector_test);
CPPUNIT_TEST(testBasics);
+ CPPUNIT_TEST(testInsertRange);
+ CPPUNIT_TEST(testLowerBound);
CPPUNIT_TEST_SUITE_END();
};